/* ===== Tokens ===== */
:root {
  --red: #c81e25;
  --red-dark: #9c161b;
  --red-light: #e33840;
  --black: #100f0d;
  --charcoal: #1b1a18;
  --gray-900: #201f1d;
  --gray-700: #55524e;
  --gray-500: #857f78;
  --gray-200: #e7e3de;
  --gray-100: #f3f1ee;
  --white: #ffffff;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(16, 15, 13, 0.08);
  --shadow-lg: 0 20px 50px rgba(16, 15, 13, 0.16);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { line-height: 1.15; margin: 0 0 .5em; font-weight: 800; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--gray-700); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: all .2s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; }
.btn--primary { background: var(--red); color: var(--white); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn--outline { border-color: var(--white); color: var(--white); }
.btn--outline:hover { background: rgba(255,255,255,.12); }
.btn--outline-dark { border-color: var(--black); color: var(--black); }
.btn--outline-dark:hover { background: rgba(16,15,13,.06); }
.btn--light { background: var(--white); color: var(--red); }
.btn--light:hover { background: var(--gray-100); }
.btn--lg { padding: 16px 30px; font-size: 16px; }

/* ===== Topbar ===== */
.topbar {
  background: var(--black);
  color: var(--gray-200);
  font-size: 13px;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar__contact a { color: var(--gray-200); }
.topbar__contact a:hover { color: var(--white); }
.topbar__phone { font-weight: 700; color: var(--white) !important; }
.divider { margin: 0 10px; color: var(--gray-500); }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand__logo { height: 48px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name { font-weight: 800; font-size: 17px; color: var(--black); }
.brand__sub { font-size: 12px; color: var(--red); font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }

.nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--gray-900);
  position: relative;
  padding: 6px 0;
}
.nav a:hover { color: var(--red); }

.header__actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--black);
  border-radius: 2px;
  transition: all .25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(16,15,13,.96) 0%, rgba(16,15,13,.86) 38%, rgba(16,15,13,.55) 70%, rgba(16,15,13,.4) 100%),
    radial-gradient(circle at 85% 80%, rgba(200,30,37,.2), transparent 55%),
    url("assets/img/hero-bg.jpg");
  background-size: cover, cover, cover;
  background-position: center, center, center 35%;
}
.hero__inner {
  position: relative;
  padding: 110px 24px 96px;
  max-width: 820px;
}
.eyebrow {
  color: var(--red-light);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--red-light); }
.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  margin-bottom: 20px;
}
.hero__lead {
  font-size: 18px;
  color: var(--gray-200);
  max-width: 640px;
  margin-bottom: 32px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__tags li {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-200);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  padding: 7px 14px;
  border-radius: 999px;
}

/* ===== Trust strip ===== */
.trust { background: var(--red); }
.trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 24px;
  gap: 16px;
  text-align: center;
}
.trust__item { display: flex; flex-direction: column; gap: 4px; color: var(--white); }
.trust__num { font-size: 28px; font-weight: 800; }
.trust__label { font-size: 13px; font-weight: 600; opacity: .92; }

/* ===== Section ===== */
.section { padding: 88px 0; }
.section--tint { background: var(--gray-100); }
.section--dark { background: var(--black); color: var(--white); }
.section--dark p { color: var(--gray-200); }
.section__head { max-width: 620px; margin-bottom: 48px; }
.section__head h2 { font-size: clamp(26px, 3.4vw, 38px); color: var(--black); }
.section--dark .section__head h2 { color: var(--white); }
.section__lead { font-size: 16px; }

.sales-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 16px;
  border: 1px solid var(--red-light);
  border-radius: 999px;
  color: var(--white);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.sales-badge .icon { width: 16px; height: 16px; stroke: var(--red-light); fill: none; stroke-width: 2.4; }
.sales-badge:hover { background: var(--red); border-color: var(--red); }

.sales-catalog-cta { margin-top: 40px; display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ===== Grids ===== */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--secondary { margin-top: 20px; }

.credentials-cta {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.credentials-cta p { margin: 0; font-size: 14.5px; color: var(--gray-700); max-width: 480px; }

.areas-statewide {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.areas-statewide p { margin: 0; font-size: 14.5px; color: var(--gray-700); max-width: 480px; }

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(200,30,37,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 16px;
}
.card h3 { font-size: 18px; color: var(--black); margin-bottom: 8px; }
.card p { font-size: 14.5px; margin-bottom: 0; }

.pill {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 999px;
  padding: 14px 18px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--black);
}

.feature-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px;
}
.feature-card h3 { color: var(--white); font-size: 19px; margin-bottom: 10px; }
.feature-card h3::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  margin-right: 10px;
}

.grid--types { gap: 20px; }
.type {
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0;
  transition: box-shadow .2s ease, transform .2s ease;
}
.type:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.type img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  background: var(--gray-100);
  padding: 16px;
}
.type figcaption {
  border-top: 3px solid var(--red);
  padding: 12px 16px;
  font-weight: 700;
  font-size: 14px;
  color: var(--black);
  text-align: center;
}

/* Sales layout */
.sales-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 32px;
  align-items: stretch;
}
.sales-image {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sales-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}

/* Areas */
.areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.areas__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 22px;
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
  text-align: center;
  position: relative;
}
.areas__item::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

/* Why */
.why { padding: 8px 0; }
.why__num {
  font-size: 40px;
  font-weight: 800;
  color: var(--gray-200);
  display: block;
  margin-bottom: 8px;
}
.why h3 { font-size: 19px; color: var(--black); margin-bottom: 8px; }
.why p { font-size: 14.5px; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
}
.cta-banner__inner {
  padding: 64px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.cta-banner h2 { color: var(--white); font-size: clamp(24px, 3vw, 32px); margin-bottom: 4px; }
.cta-banner p { color: rgba(255,255,255,.9); margin-bottom: 24px; }

/* Contact */
.contact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.contact__card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: box-shadow .2s ease, transform .2s ease;
}
a.contact__card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--red); }
.contact__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.contact__card h3 { font-size: 16px; color: var(--black); margin-bottom: 6px; }
.contact__card p { font-size: 14.5px; margin-bottom: 0; word-break: break-word; }

/* Footer */
.footer { background: var(--black); color: var(--gray-500); padding: 40px 0; }
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__logo {
  height: 34px;
  width: auto;
  background: var(--white);
  border-radius: 6px;
  padding: 5px 8px;
}
.footer__brand p { color: var(--gray-200); font-weight: 700; margin: 0; font-size: 14px; }
.footer__copy { font-size: 13px; margin: 0; color: var(--gray-200); }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all .25s ease;
  z-index: 90;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--red-dark); }
.back-to-top svg { width: 20px; height: 20px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .grid--3, .grid--4, .contact { grid-template-columns: repeat(2, 1fr); }
  .areas { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .sales-layout { grid-template-columns: 1fr; }
  .sales-image img { min-height: 200px; }
}

@media (max-width: 980px) and (min-width: 0px) {
  .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 8px 24px 20px;
    gap: 4px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: all .2s ease;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
}

@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4, .contact, .areas { grid-template-columns: 1fr; }
  .trust__inner { grid-template-columns: repeat(2, 1fr); }
  .topbar__inner { flex-direction: column; align-items: flex-start; gap: 4px; }
  .hero__inner { padding: 64px 24px 56px; }
  .footer__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .header__inner { padding: 10px 14px; gap: 10px; }
  .brand { gap: 8px; flex-shrink: 1; min-width: 0; }
  .brand__logo { height: 36px; flex-shrink: 0; }
  .brand__text { min-width: 0; }
  .brand__name { font-size: 13px; white-space: normal; }
  .brand__sub {
    font-size: 8.5px;
    letter-spacing: .01em;
    white-space: normal;
    overflow-wrap: break-word;
  }
  .header__actions { gap: 8px; flex-shrink: 0; }
  .header__actions .btn--primary {
    padding: 10px;
    border-radius: 50%;
    gap: 0;
  }
  .header__actions .btn--primary .btn-label { display: none; }
  .header__actions .btn--primary .icon { width: 20px; height: 20px; }
}
