/* Collins Manufacturing Company — modern industrial */

:root {
  --steel-900: #0d1218;
  --steel-800: #161c25;
  --steel-700: #232c39;
  --steel-600: #3a4554;
  --steel-300: #c2c8d2;
  --steel-200: #e2e6ec;
  --steel-100: #f3f5f8;
  --accent: #c8102e;          /* CMC red accent */
  --accent-dark: #9b0c24;
  --gold: #d4a017;
  --text: #1c2330;
  --text-muted: #5a6473;
  --white: #ffffff;
  --shadow: 0 8px 28px rgba(13, 18, 24, 0.08);
  --radius: 4px;
  --radius-lg: 8px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--steel-900);
  line-height: 1.15;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 2.5vw, 2.25rem); }
h3 { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.04em; }
p  { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--steel-200);
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 32px;
  width: 100%;
  max-width: none;
}
.brand { flex: 0 0 auto; }
.brand img { height: 84px; width: auto; max-height: 96px; display: block; }
@media (max-width: 600px) {
  .brand img { height: 64px; }
  .header-inner { padding: 12px 16px; }
}
.primary-nav {
  flex: 1 1 auto;
  min-width: 0;
}
.primary-nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
}
.primary-nav ul ul { list-style: none; margin: 0; padding: 0; }
.primary-nav a {
  color: var(--steel-800);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}
.primary-nav a:hover,
.primary-nav a.active { background: var(--steel-100); color: var(--steel-900); }
.primary-nav a.cta {
  background: var(--accent);
  color: var(--white);
  margin-left: 6px;
}
.primary-nav a.cta:hover,
.primary-nav a.cta.active { background: var(--accent-dark); color: var(--white); }

.has-sub { position: relative; }
.has-sub > a::after {
  content: "▾";
  margin-left: 6px;
  font-size: 0.7em;
  color: var(--steel-600);
}
.sub-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  min-width: 220px;
  flex-direction: column;
  padding: 8px;
  z-index: 10;
}
.has-sub:hover .sub-nav { display: flex; }
.has-sub.is-open > .sub-nav { display: flex; }
.sub-nav a { width: 100%; font-size: 0.9rem; padding: 9px 12px; }
.sub-nav a.active { background: var(--steel-100); color: var(--accent); }

.header-phone {
  font-weight: 700;
  color: var(--steel-900);
  white-space: nowrap;
  border-left: 1px solid var(--steel-200);
  padding-left: 16px;
  flex: 0 0 auto;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--steel-900);
  border-radius: 2px;
}

/* Tighten spacing slightly on narrow desktop sizes so nav doesn't overflow. */
@media (max-width: 1200px) {
  .primary-nav a { font-size: 0.88rem; padding: 9px 10px; }
  .header-phone { padding-left: 12px; font-size: 0.92rem; }
}
@media (max-width: 1080px) {
  .header-phone { display: none; }
  .header-inner { gap: 16px; padding: 14px 20px; }
}

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--steel-200);
    display: none;
    padding: 12px 24px;
  }
  .primary-nav.open { display: block; }
  .primary-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    flex-wrap: nowrap;
  }
  .primary-nav a { width: 100%; padding: 12px; }
  .primary-nav a.cta { margin-left: 0; }
  .has-sub > a::after { display: none; }
  .sub-nav { display: flex; position: static; box-shadow: none; border: 0;
             padding-left: 16px; min-width: 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  background-color: var(--steel-900);
  background-image:
    linear-gradient(135deg,
      rgba(13, 18, 24, 0.86) 0%,
      rgba(13, 18, 24, 0.62) 45%,
      rgba(13, 18, 24, 0.35) 100%),
    url("../images/hero-laser.avif");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 2px,
                                     transparent 2px 12px);
  pointer-events: none;
}
@media (max-width: 860px) {
  .hero {
    background-image:
      linear-gradient(180deg,
        rgba(13, 18, 24, 0.78) 0%,
        rgba(13, 18, 24, 0.55) 60%,
        rgba(13, 18, 24, 0.85) 100%),
      url("../images/hero-laser.avif");
    background-position: center;
  }
}
.hero-inner {
  position: relative;
  padding-top: 96px;
  padding-bottom: 80px;
  /* horizontal padding is provided by the .container class */
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { color: var(--white); }
.hero h1 strong { color: var(--accent); }
.hero p.lead {
  font-size: 1.15rem;
  color: var(--steel-200);
  max-width: 56ch;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(6px);
}
.hero-card h2 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 16px;
}
.hero-card .stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-card .stat:last-child { border-bottom: 0; }
.hero-card .stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.hero-card .stat-lbl {
  color: var(--steel-200);
  font-size: 0.95rem;
}

@media (max-width: 1080px) {
  .hero-inner {
    padding-top: 56px;
    padding-bottom: 56px;
    gap: 32px;
  }
  .container { padding-left: 28px; padding-right: 28px; }
}
@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 36px;
    padding-bottom: 48px;
    gap: 24px;
  }
  .hero-card { padding: 24px; }
}
@media (max-width: 600px) {
  .hero-inner {
    padding-top: 24px;
    padding-bottom: 36px;
  }
  .container { padding-left: 20px; padding-right: 20px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); color: var(--white); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--white); }
.btn-ghost:hover { background: var(--white); color: var(--steel-900); text-decoration: none; }
.btn-outline { background: transparent; color: var(--steel-900); border-color: var(--steel-900); }
.btn-outline:hover { background: var(--steel-900); color: var(--white); text-decoration: none; }

/* ---------- Section utilities ---------- */
section { padding: 72px 0; }
section.tight { padding: 48px 0; }
section.dark { background: var(--steel-900); color: var(--white); }
section.dark h1, section.dark h2, section.dark h3 { color: var(--white); }
section.muted { background: var(--steel-100); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-head .eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.section-head p { color: var(--text-muted); font-size: 1.05rem; }
section.dark .section-head p { color: var(--steel-200); }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--steel-900), var(--steel-700));
  color: var(--white);
  padding: 72px 0 56px;
}
.page-hero h1 { color: var(--white); }
.page-hero .crumb {
  color: var(--steel-300);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
@media (max-width: 1080px) {
  .page-hero { padding: 48px 0 40px; }
}
@media (max-width: 600px) {
  .page-hero { padding: 32px 0 32px; }
}

/* ---------- Service cards (home + services) ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleY(1); }
.service-card .num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.15em;
}
.service-card h3 {
  margin: 8px 0 12px;
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 1.3rem;
  color: var(--steel-900);
}
.service-card p { color: var(--text-muted); margin: 0; }

/* ---------- Pillars (home) ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.pillar {
  text-align: center;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
}
.pillar h4 {
  color: var(--white);
  margin: 8px 0 6px;
  font-size: 1.1rem;
}
.pillar p { color: var(--steel-300); margin: 0; font-size: 0.95rem; }
.pillar .icon {
  width: 48px; height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-weight: 800;
}

/* ---------- About / leadership ---------- */
.bio-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.bio-card {
  background: var(--steel-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.bio-card .avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--steel-300);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--steel-700), var(--steel-600));
}
.bio-card h2 { font-size: 1.4rem; margin-bottom: 4px; }
.bio-card .role { color: var(--accent); font-weight: 700; text-transform: uppercase;
                  letter-spacing: 0.08em; font-size: 0.85rem; }
.bio-card dl { margin: 16px 0 0; text-align: left; }
.bio-card dt { font-weight: 700; color: var(--steel-700); margin-top: 8px; font-size: 0.85rem;
               text-transform: uppercase; letter-spacing: 0.04em; }
.bio-card dd { margin: 0; color: var(--text); }
.bio-body p { font-size: 1.05rem; }

@media (max-width: 720px) {
  .bio-grid { grid-template-columns: 1fr; }
}

/* ---------- Capabilities table ---------- */
.naics-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 8px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.naics-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--steel-200);
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: baseline;
}
.naics-list .code {
  font-weight: 800;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

/* ---------- Careers ---------- */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.benefits li {
  background: var(--white);
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-weight: 600;
  color: var(--steel-800);
}
.position-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.position-card {
  background: var(--white);
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}
.position-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.position-card h3 {
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--steel-900);
}
.position-card p { color: var(--text-muted); margin: 0; flex: 1; }
.position-card details { margin-top: 12px; }
.position-card summary {
  cursor: pointer; color: var(--accent); font-weight: 700;
  font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em;
}
.position-card details[open] summary { margin-bottom: 12px; }

/* ---------- News ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.news-card.news-card-has-image { padding: 0; overflow: hidden; }
.news-card .news-card-image {
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--steel-100);
  overflow: hidden;
}
.news-card .news-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-card-link:hover .news-card-image img { transform: scale(1.04); }
.news-card .news-card-body {
  display: block;
  padding: 24px 28px 28px;
}
.news-card .date {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  display: block;
}
.news-card h3 {
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--steel-900);
}
.news-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.news-card-link:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
  text-decoration: none;
}
.news-card-link:hover h3 { color: var(--accent); }
.news-card-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.news-card .news-arrow {
  display: inline-block;
  margin-left: 6px;
  color: var(--accent);
  font-weight: 700;
}
.news-card .news-readmore {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.news-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.news-card-meta .date {
  display: inline-block;
  margin: 0;
}
.news-card .news-ext-flag {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 999px;
  background: var(--steel-100);
  color: var(--steel-700);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.6;
}

/* ---------- News article (detail) ---------- */
.article-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.news-article p {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text);
}
.news-article-figure {
  margin: 0 0 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--steel-100);
  border: 1px solid var(--steel-200);
}
.news-article-figure img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  object-fit: cover;
}
.news-article .external-cta {
  margin: 32px 0 8px;
  padding: 24px;
  background: var(--steel-100);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
}
.news-article .external-cta a.btn { margin: 0; }

.article-nav {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--steel-200);
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 16px;
  align-items: center;
}
.article-nav-link {
  display: block;
  padding: 14px 18px;
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--steel-900);
  background: var(--white);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.article-nav-link:hover {
  border-color: var(--accent);
  text-decoration: none;
  transform: translateY(-2px);
  color: var(--accent);
}
.article-nav-link span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.article-nav-link strong {
  display: block;
  font-size: 1rem;
  margin-top: 2px;
}

@media (max-width: 720px) {
  .article-nav { grid-template-columns: 1fr; }
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.gallery-item {
  background: var(--steel-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .caption {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(13,18,24,0.85));
  color: var(--white);
  padding: 32px 16px 14px;
  font-weight: 600;
}
.gallery-empty {
  text-align: center;
  padding: 48px;
  background: var(--steel-100);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info p { font-size: 1.05rem; }
.contact-info strong { color: var(--steel-900); }
form.cmc-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
form.cmc-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--steel-800);
  font-size: 0.9rem;
}
form.cmc-form input,
form.cmc-form select,
form.cmc-form textarea {
  width: 100%;
  border: 1px solid var(--steel-300);
  border-radius: var(--radius);
  padding: 12px 14px;
  font: inherit;
  background: var(--white);
  color: var(--text);
}
form.cmc-form textarea { min-height: 140px; resize: vertical; }
form.cmc-form input:focus,
form.cmc-form select:focus,
form.cmc-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  margin-bottom: 16px;
}
.alert-success { background: #e8f6ec; border-color: #b6dec1; color: #1f5c2f; }
.alert-error { background: #fdecee; border-color: #f3b8be; color: #79111e; }
.alert-info { background: #e7f0fa; border-color: #b8cfeb; color: #1c4577; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--steel-900);
  color: var(--steel-200);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  padding-bottom: 48px;
}
.site-footer h3 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-footer h3.mt { margin-top: 24px; }
.site-footer .footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-list li { padding: 4px 0; color: var(--steel-300); }
.site-footer a { color: var(--steel-200); }
.site-footer a:hover { color: var(--accent); }
.footer-bar {
  background: var(--steel-800);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem;
}
.footer-bar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bar p { margin: 0; color: var(--steel-300); }

/* ---------- Equipment vendors strip ---------- */
.vendors-strip {
  background: var(--white);
  padding: 56px 0;
  border-bottom: 1px solid var(--steel-200);
  text-align: center;
}
.vendors-strip .eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.vendors-strip h2 { margin-bottom: 8px; }
.vendors-strip p.muted { max-width: 60ch; margin: 0 auto 28px; }
.vendors-strip .vendors-logos {
  display: block;
  max-width: 1024px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .vendors-strip { padding: 40px 0; }
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--accent);
  color: var(--white);
  padding: 48px 0;
}
.cta-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip h2 { color: var(--white); margin: 0; font-size: 1.6rem; }
.cta-strip a.btn {
  background: var(--white); color: var(--accent); border-color: var(--white);
}
.cta-strip a.btn:hover { background: var(--steel-900); color: var(--white); }

/* ---------- Two-column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; } }

/* Quote */
blockquote.quote {
  border-left: 4px solid var(--accent);
  padding: 8px 0 8px 24px;
  margin: 24px 0;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--steel-700);
}
blockquote.quote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ID grid */
.id-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px 24px;
}
.id-list li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--steel-200);
}
.id-list strong { color: var(--steel-900); }

/* misc */
.text-center { text-align: center; }
.muted { color: var(--text-muted); }
.mt { margin-top: 24px; }

/* Print */
@media print {
  .site-header, .site-footer, .nav-toggle, .hero-actions, .cta-strip { display: none; }
  body { color: #000; }
}
