/* Lincoln Forge restrained premium v3
   Palette derived from the Lincoln Forge mark: navy #003352, red #b10000.
   Neutrals are navy-tinted. Red is reserved for CTAs and small ticks. */

:root {
  --navy: #003352;
  --navy-deep: #04263c;
  --navy-footer: #021c2e;
  --ink: #16293a;
  --steel-050: #f4f7f9;
  --steel-150: #e2e9ee;
  --steel-400: #8aa0b1;
  --steel-600: #51687b;
  --on-navy-muted: #a7bac9;
  --paper: #fdfdfd;
  --red: #b10000;
  --red-deep: #8e0202;
  --line-dark: rgba(255, 255, 255, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

a:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}

.hero a:focus-visible,
.closer a:focus-visible,
.site-footer a:focus-visible {
  outline-color: #ebf1f5;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
}

.shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 2px;
  white-space: nowrap;
}

.btn-lg { padding: 16px 28px; font-size: 14px; }

.btn-red {
  background: var(--red);
  color: #fdf6f4;
}
.btn-red:hover { background: var(--red-deep); }

.btn-ghost {
  border: 1px solid var(--line-dark);
  color: #f1f5f8;
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.4); }

/* ---------- eyebrows ---------- */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-600);
}

.eyebrow .tick {
  width: 18px;
  height: 2px;
  background: var(--red);
  flex: none;
}

.eyebrow-dark { color: var(--on-navy-muted); }

/* ---------- header ---------- */

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--steel-150);
}

.header-row {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.brand-mark { width: 38px; height: 38px; }

.brand-text { display: flex; flex-direction: column; }

.brand-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.2;
}

.brand-sub {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-600);
  line-height: 1.4;
}

.site-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.site-nav a {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.site-nav a:hover { color: var(--red); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: none;
}

.header-phone {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}

.cta-short { display: none; }

/* ---------- hero ---------- */

.hero {
  background: var(--navy-deep);
}

.hero-row {
  display: flex;
  align-items: center;
  gap: 64px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero-copy { flex: 1 1 0; min-width: 0; }

.hero h1 {
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #f4f8fa;
  margin: 22px 0 20px;
  max-width: 18ch;
}

.nowrap { white-space: nowrap; }

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--on-navy-muted);
  max-width: 52ch;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-phone {
  margin-top: 22px;
  font-size: 14px;
  color: var(--steel-400);
}

.hero-phone a {
  color: #e8eef2;
  font-weight: 600;
  border-bottom: 1px solid var(--line-dark);
}

.hero-photo {
  flex: none;
  width: 380px;
}

.hero-photo img {
  width: 100%;
  padding: 12px;
  background: #ebf1f5;
}

.hero-photo figcaption {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--steel-400);
}

/* ---------- proof strip ---------- */

.proof {
  background: var(--paper);
  border-bottom: 1px solid var(--steel-150);
}

.proof-row {
  display: flex;
}

.proof-cell {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 26px 32px;
  border-left: 1px solid var(--steel-150);
}

.proof-cell:first-child { border-left: none; padding-left: 0; }

.proof-value {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--navy);
  line-height: 1.2;
}

.proof-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-600);
}

/* ---------- sections ---------- */

section h2 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 16px 0 14px;
}

.section-head { max-width: 640px; }

.section-lead {
  font-size: 17px;
  color: var(--steel-600);
  max-width: 50ch;
}

/* capabilities */

.capabilities {
  padding: 96px 0;
}

.cap-cols {
  display: flex;
  gap: 48px;
  margin-top: 56px;
}

.cap-col {
  flex: 1 1 0;
  border-top: 2px solid var(--navy);
  padding-top: 24px;
}

.cap-col h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.cap-col ul { list-style: none; }

.cap-col li {
  font-size: 15px;
  color: var(--steel-600);
  padding: 7px 0;
  border-bottom: 1px solid var(--steel-150);
}

.cap-col li:last-child { border-bottom: none; }

/* plant */

.plant {
  background: var(--steel-050);
  padding: 96px 0;
}

.plant-row {
  display: flex;
  align-items: flex-start;
  gap: 64px;
}

.plant-photos {
  flex: 1 1 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.plant-photos figure:first-child { flex: 1.4 1 0; }
.plant-photos figure:last-child { flex: 1 1 0; }

.plant-photos img {
  border: 1px solid var(--steel-150);
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.plant-photos figcaption {
  margin-top: 8px;
  font-size: 12px;
  color: var(--steel-600);
}

.plant-copy { flex: 1 1 0; }

.fact-list {
  list-style: none;
  margin-top: 28px;
}

.fact-list li {
  font-size: 16px;
  line-height: 1.55;
  color: var(--steel-600);
  padding: 14px 0;
  border-bottom: 1px solid var(--steel-150);
}

.fact-list li:first-child { padding-top: 0; }
.fact-list li:last-child { border-bottom: none; }

.fact-list strong { color: var(--ink); font-weight: 600; }

/* industries */

.industries {
  padding: 96px 0;
}

.industry-row {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-top: 40px;
  border-top: 1px solid var(--steel-150);
  border-bottom: 1px solid var(--steel-150);
}

.industry-row li {
  flex: 1 1 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  padding: 20px 8px;
  border-left: 1px solid var(--steel-150);
  white-space: nowrap;
}

.industry-row li:first-child { border-left: none; }

.parts-strip {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  align-items: stretch;
}

.parts-strip img {
  flex: 1 1 0;
  min-width: 0;
  height: 132px;
  width: auto;
  object-fit: cover;
  border: 1px solid var(--steel-150);
  background: #fff;
}

.strip-caption {
  margin-top: 12px;
  font-size: 12px;
  color: var(--steel-600);
}

/* quality */

.quality {
  background: var(--steel-050);
  padding: 96px 0;
}

.quality-row {
  display: flex;
  align-items: center;
  gap: 64px;
}

.quality-copy { flex: 1 1 0; }

.cert-cells {
  flex: 1 1 0;
  display: flex;
  flex-wrap: wrap;
}

.cert-cell {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 24px 28px;
  border: 1px solid var(--steel-150);
  margin: -1px 0 0 -1px;
  background: var(--paper);
}

.cert-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--navy);
}

.cert-status {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-600);
}

/* closer */

.closer {
  background: var(--navy-deep);
  padding: 96px 0;
}

.closer-row {
  display: flex;
  align-items: center;
  gap: 80px;
}

.closer-copy { flex: 1.2 1 0; }

.closer h2 {
  color: #f4f8fa;
  margin-top: 0;
}

.closer-copy > p {
  font-size: 17px;
  color: var(--on-navy-muted);
  max-width: 46ch;
}

.motto {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #dce6ec;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.motto span {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--steel-400);
}

.closer-contact {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding-left: 64px;
  border-left: 1px solid var(--line-dark);
}

.closer-phone {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: #f4f8fa;
}

.closer-address {
  font-size: 15px;
  line-height: 1.6;
  color: var(--on-navy-muted);
  margin-bottom: 8px;
}

/* footer */

.site-footer {
  background: var(--navy-footer);
  padding: 28px 0;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--on-navy-muted);
}

.footer-brand .brand-mark { width: 26px; height: 26px; }

.footer-meta {
  font-size: 13px;
  color: var(--steel-400);
}

/* ---------- mobile ---------- */

@media (max-width: 880px) {
  .shell { padding: 0 20px; }

  .site-nav { display: none; }

  .eyebrow-loc { display: none; }

  .header-row { height: 64px; gap: 16px; }

  .brand-sub { display: none; }

  .brand-mark { width: 32px; height: 32px; }

  .brand-name { font-size: 15px; }

  .header-actions { margin-left: auto; gap: 12px; }

  .header-phone { display: none; }

  .header-actions .cta-full { display: none; }
  .header-actions .cta-short { display: inline; }

  .btn { padding: 10px 18px; font-size: 12px; }

  .hero-row {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero h1 { margin-top: 16px; max-width: none; }

  .hero-sub { font-size: 15.5px; }

  .btn-lg { padding: 14px 20px; font-size: 13px; }

  .hero-photo { width: 100%; }

  .hero-photo img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center 62%;
  }

  .proof-row { flex-wrap: wrap; }

  .proof-cell {
    flex: 1 1 40%;
    padding: 18px 16px;
  }

  .proof-cell:nth-child(odd) { border-left: none; padding-left: 0; }

  .proof-cell:nth-child(n+3) { border-top: 1px solid var(--steel-150); }

  .proof-value { font-size: 19px; }

  .proof-label { font-size: 10.5px; }

  .capabilities, .plant, .industries, .quality, .closer { padding: 64px 0; }

  .cap-cols { flex-direction: column; gap: 36px; margin-top: 40px; }

  .plant-row { flex-direction: column; gap: 40px; }

  .plant-photos { flex-direction: column; gap: 28px; }

  .industry-row li {
    flex: 1 1 50%;
    border-top: 1px solid var(--steel-150);
    margin-top: -1px;
    font-size: 12px;
    padding: 14px 6px;
  }

  .industry-row li:nth-child(odd) { border-left: none; }

  .parts-strip { flex-wrap: wrap; }

  .parts-strip img { flex: 1 1 28%; height: 100px; }

  .quality-row { flex-direction: column; gap: 40px; align-items: stretch; }

  .closer-row { flex-direction: column; gap: 48px; align-items: stretch; }

  .closer-contact {
    padding-left: 0;
    border-left: none;
    padding-top: 40px;
    border-top: 1px solid var(--line-dark);
  }
}
