:root {
  --red:       #ee2a23;
  --red-dark:  #8B2E24;
  --black:     #111111;
  --dark-gray: #1C1C1C;
  --mid-gray:  #2D2D2D;
  --light-gray:#F5F5F5;
  --white:     #FFFFFF;
  --text-muted:#888888;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  background: var(--white);
}

h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.02em;
}

/* ── NAVBAR ─────────────────────────────────────── */
.site-nav {
  background: var(--white);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.site-nav .logo img { height: 52px; }

.site-nav .nav-cta {
  background: var(--red);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 10px 24px;
  border: none;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s;
}
.site-nav .nav-cta:hover { background: var(--red-dark); color: var(--white); }

.site-nav .phone-link {
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.site-nav .phone-link:hover { color: var(--red); }
.site-nav .phone-link i { color: var(--red); margin-right: 6px; }

/* ── HERO ────────────────────────────────────────── */
.hero {
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
}

/* Diagonal stripe accent */
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 520px; height: 520px;
  background: var(--red);
  opacity: 0.08;
  transform: rotate(45deg);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 10%;
  width: 320px; height: 320px;
  background: var(--red);
  opacity: 0.05;
  transform: rotate(30deg);
  pointer-events: none;
}

/* Mountain silhouette decoration */
.hero-mountain {
  position: absolute;
  bottom: 0; right: 0;
  width: 45%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.hero-mountain svg {
  position: absolute;
  bottom: 0; right: 0;
  width: 100%;
  height: auto;
  opacity: 0.06;
}

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--red); }

.hero-sub {
  color: #ccc;
  font-size: 1.08rem;
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-cta-primary {
  background: var(--red);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.hero-cta-primary:hover { background: var(--red-dark); color: var(--white); transform: translateY(-2px); }

.hero-cta-secondary {
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 28px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  margin-left: 14px;
  transition: border-color 0.2s, color 0.2s;
}
.hero-cta-secondary:hover { border-color: var(--red); color: var(--red); }

/* Hero image col */
.hero .col-lg-6 img { 
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 6px 6px 0 0;
  opacity: 0.88;
}

/* Stats bar */
.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stats > div {
  flex: 1 1 140px;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-stats > div:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Climate alert badge */
.climate-alert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(176,58,46,0.15);
  border: 1px solid rgba(176,58,46,0.35);
  border-radius: 4px;
  padding: 10px 18px;
  margin-top: 32px;
  color: #eee;
  font-size: 0.9rem;
}
.climate-alert i { color: var(--red); font-size: 1.1rem; }

/* ── SECTION HELPERS ──────────────────────────────────────── */
.section-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.15;
}
.section-title.light { color: var(--white); }
.section-divider {
  width: 52px; height: 4px;
  background: var(--red);
  margin: 18px 0 28px;
  border: none;
}
.section-divider.mx-auto { margin-left: auto; margin-right: auto; }

/* ── INTRO SECTION ─────────────────────────────────────────── */
.intro-section { padding: 80px 0; background: var(--white); }
.intro-section p { color: #444; font-size: 1.05rem; }

/* Mountain climate callout box */
.climate-box {
  background: var(--light-gray);
  border-left: 4px solid var(--red);
  border-radius: 0 6px 6px 0;
  padding: 24px 28px;
  margin-top: 24px;
}
.climate-box p { margin: 0; font-size: 0.97rem; color: #555; }
.climate-box strong { color: var(--black); }

/* ── SERVICES ──────────────────────────────────────────────── */
.services-section { padding: 80px 0; background: var(--light-gray); }

.service-card {
  background: var(--white);
  border-radius: 6px;
  border-top: 4px solid var(--red);
  padding: 34px 26px 30px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 32px rgba(0,0,0,0.12); }
.service-card .icon-wrap {
  width: 54px; height: 54px;
  background: rgba(176,58,46,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card .icon-wrap i { font-size: 1.5rem; color: var(--red); }
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--black);
}
.service-card p { color: #555; font-size: 0.97rem; margin-bottom: 0; }

/* Service detail list inside card */
.service-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}
.service-list li {
  font-size: 0.93rem;
  color: #555;
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── AREAS SERVED ─────────────────────────────────────────── */
.areas-section { padding: 80px 0; background: var(--dark-gray); }
.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.area-pill:hover { background: rgba(176,58,46,0.25); border-color: var(--red); color: var(--white); }
.area-pill i { color: var(--red); font-size: 0.85rem; }

/* ── WHO WE SERVE ─────────────────────────────────────────── */
.who-section { padding: 80px 0; background: var(--white); }

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.client-tile {
  background: var(--light-gray);
  border-radius: 6px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.client-tile:hover {
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.client-tile i {
  font-size: 1.5rem;
  color: var(--red);
}
.client-tile span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
}


.client-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid #eee;
}
.client-item:last-child { border-bottom: none; }
.client-item i {
  width: 36px; height: 36px;
  background: rgba(176,58,46,0.1);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.client-item span { font-size: 1rem; color: #333; }

/* Service images row */
.who-section .service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  border-top: 3px solid var(--red);
}

/* ── BENEFITS ─────────────────────────────────────────────── */
.benefits-section { padding: 80px 0; background: var(--black); }
.benefit-card {
  padding: 28px 24px;
  border-left: 3px solid var(--red);
  background: rgba(255,255,255,0.04);
  border-radius: 0 6px 6px 0;
  height: 100%;
  transition: background 0.2s;
}
.benefit-card:hover { background: rgba(255,255,255,0.07); }
.benefit-card i { font-size: 1.8rem; color: var(--red); margin-bottom: 14px; display: block; }
.benefit-card h4 { color: var(--white); font-size: 1.05rem; font-weight: 600; text-transform: uppercase; margin-bottom: 8px; }
.benefit-card p { color: #aaa; font-size: 0.92rem; margin-bottom: 0; }

/* ── WHY CHOOSE US ────────────────────────────────────────── */
.why-section { padding: 80px 0; background: var(--light-gray); }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}
.why-item:last-child { margin-bottom: 0; }
.why-icon {
  width: 48px; height: 48px;
  background: var(--red);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.why-item h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--black);
}
.why-item p { font-size: 0.93rem; color: #555; margin: 0; }

/* ── CTA STRIP ────────────────────────────────────────────── */
.cta-strip { background: var(--red); padding: 60px 0; }
.cta-strip h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
}
.cta-strip p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.btn-cta-white {
  background: var(--white);
  color: var(--red);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-cta-white:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }

/* ── LOCATION CARDS (main page) ───────────────────────────── */
.location-card {
  background: var(--white);
  border-radius: 6px;
  border-bottom: 4px solid var(--red);
  padding: 30px 26px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.location-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,0.12); color: inherit; }
.location-card .loc-state {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
  display: block;
}
.location-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 10px;
}
.location-card p { font-size: 0.9rem; color: #666; margin: 0; }
.location-card .loc-arrow {
  margin-top: 16px;
  font-size: 0.85rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}

/* ── CONTACT FORM ─────────────────────────────────────────── */
.contact-section { padding: 80px 0; background: var(--light-gray); }
.contact-card {
  background: var(--white);
  border-radius: 8px;
  padding: 44px 40px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.08);
}
.contact-card .form-control,
.contact-card .form-select {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 0.97rem;
  transition: border-color 0.2s;
}
.contact-card .form-control:focus,
.contact-card .form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(176,58,46,0.12);
}
.contact-card label {
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 6px;
}
.btn-submit {
  background: var(--red);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 40px;
  border: none;
  border-radius: 4px;
  width: 100%;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}
.btn-submit:hover { background: var(--red-dark); transform: translateY(-2px); }

.contact-info-block { padding: 0; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-item .ci-icon {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item h5 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-info-item p { font-size: 1rem; color: var(--black); font-weight: 600; margin: 0; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer { background: #0A0A0A; padding: 50px 0 28px; color: #888; }
.site-footer .footer-logo img { height: 44px; filter: brightness(0) invert(1); opacity: 0.85; }
.site-footer h6 {
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul li a { color: #888; text-decoration: none; font-size: 0.93rem; transition: color 0.2s; }
.site-footer ul li a:hover { color: var(--red); }
.footer-divider { border-color: rgba(255,255,255,0.07); margin: 36px 0 20px; }
.footer-copy { font-size: 0.82rem; color: #555; }
.footer-copy a { color: #666; text-decoration: none; }
.footer-copy a:hover { color: var(--red); }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 992px) {
  .hero { padding: 60px 0 0; }
  .hero .col-lg-6 img { height: 320px; border-radius: 6px; }
}
@media (max-width: 768px) {
  .hero-cta-secondary { margin-left: 0; margin-top: 12px; }
  .hero-stats > div { padding: 16px 18px; }
  .contact-card { padding: 28px 20px; }
  .hero .col-lg-6 img { height: 240px; margin-top: 30px; }
}

.image-xs {
	max-height: 125px;
	width: 100%;
	object-fit: cover;
	object-position: center;		
}
