:root {
  --steel-900: #16191d;
  --steel-800: #1e2228;
  --steel-700: #2a2f37;
  --steel-100: #f4f5f7;
  --orange: #f47b20;
  --orange-dark: #d96510;
  --text-light: #e8eaed;
  --text-muted: #9aa1ab;
  --text-dark: #23272e;
  --heading: 'Oswald', sans-serif;
  --body: 'Source Sans 3', sans-serif;
  
  
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--text-dark);
  background: var(--steel-100);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--steel-900);
  border-bottom: 3px solid var(--orange);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

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

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 6px;
}

.brand-name {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.brand-sub {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.18em;
}

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

.site-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.site-nav a:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* ---------- Hero ---------- */

.hero {
  background:
    linear-gradient(135deg, rgba(22, 25, 29, 0.97) 0%, rgba(42, 47, 55, 0.94) 100%),
    repeating-linear-gradient(45deg, #1a1d22 0, #1a1d22 2px, #20242a 2px, #20242a 14px);
  color: var(--text-light);
}

.hero-inner {
  padding-top: 88px;
  padding-bottom: 88px;
  text-align: center;
}

.hero-kicker {
  font-family: var(--heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--orange);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  text-transform: uppercase;
  color: #fff;
}

.hero h1 .accent { color: var(--orange); }

.hero-lede {
  max-width: 720px;
  margin: 22px auto 0;
  font-size: 1.15rem;
  color: var(--text-muted);
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 13px 32px;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: background 0.15s, color 0.15s;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover { background: var(--orange-dark); }

.btn-outline {
  border: 2px solid var(--text-muted);
  color: var(--text-light);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.territory-strip {
  background: var(--steel-800);
  border-top: 1px solid var(--steel-700);
  padding: 14px 0;
}

.territory-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  font-family: var(--heading);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.territory-list .diamond { color: var(--orange); }

/* ---------- Sections ---------- */

.section-title {
  font-family: var(--heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  background: var(--orange);
  margin-top: 10px;
}

.section-lede {
  color: #5b6470;
  margin-bottom: 36px;
}

/* ---------- Manufacturers ---------- */

.manufacturers {
  background: var(--steel-900);
  color: var(--text-light);
  padding: 72px 0 88px;
}

.manufacturers .section-lede { color: var(--text-muted); }

.manufacturers .section-title { color: #fff; }

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}

.logo-card {
  background: #fff;
  border-radius: 8px;
  padding: 22px 20px 18px;
  text-align: center;
  text-decoration: none;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 4px solid transparent;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  border-bottom-color: var(--orange);
}

.logo-img {
  height: 90px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.logo-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.logo-img--cougartron {
  background: #0b3d91;
  border-radius: 6px;
  padding: 8px 14px;
}

.logo-card h3 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.logo-card p {
  font-size: 0.88rem;
  color: #5b6470;
  margin-top: 4px;
}

/* ---------- About / Mission ---------- */

.about {
  background: var(--steel-100);
  padding: 72px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
}

.about p + p { margin-top: 14px; }

/* ---------- Contact ---------- */

.contact {
  background: var(--steel-800);
  color: var(--text-light);
  padding: 72px 0 88px;
}

.contact .section-title { color: #fff; }

.contact .section-lede { color: var(--text-muted); }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  gap: 22px;
}

.contact-card {
  background: var(--steel-700);
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  padding: 26px 28px;
}

.contact-card h3 {
  font-family: var(--heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 10px;
}

.contact-card a {
  display: block;
  color: var(--text-light);
  text-decoration: none;
  margin-top: 6px;
  word-break: break-all;
}

.contact-card a:hover { color: var(--orange); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--steel-900);
  color: var(--text-muted);
  border-top: 3px solid var(--orange);
  padding: 36px 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.footer-territory {
  margin-top: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Responsive ---------- */

@media (max-width: 760px) {
  .header-inner { flex-direction: column; gap: 10px; }
  .site-nav { flex-wrap: wrap; justify-content: center; gap: 10px 16px; }
  .site-nav a { font-size: 0.82rem; letter-spacing: 0.04em; }
  .hero-inner { padding-top: 56px; padding-bottom: 56px; }
  .hero h1 br { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
}
