:root {
  --red: #df271f;
  --red-dark: #b91f19;
  --green: #15592a;
  --green-light: #2f8d4d;
  --dark: #202020;
  --deeper: #101010;
  --muted: #666;
  --light: #f5f6f4;
  --line: #e5e7e2;
  --white: #fff;
  --radius: 8px;
  --shadow: 0 14px 34px rgba(0, 0, 0, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #333;
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--white);
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

a:focus-visible {
  outline: 3px solid rgba(47, 141, 77, .4);
  outline-offset: 3px;
}

p {
  margin: 0 0 18px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  background: var(--white);
  color: var(--dark);
  padding: 10px 14px;
}

.skip-link:focus {
  left: 12px;
}

.container {
  width: min(1170px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--white);
  box-shadow: 0 5px 22px rgba(0, 0, 0, .12);
}

.top-bar {
  color: var(--white);
  background: #151515;
  font-size: 15px;
  text-transform: uppercase;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  width: min(1170px, calc(100% - 32px));
  min-height: 48px;
  margin: 0 auto;
  padding: 7px 0;
}

.phone-link strong {
  color: #8fcf67;
}

.quote-link,
.button,
.quote-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  padding: 11px 20px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .16);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.quote-link,
.quote-phone {
  background: var(--red);
}

.quote-link:hover,
.quote-phone:hover {
  background: var(--red-dark);
  box-shadow: 0 12px 24px rgba(223, 39, 31, .28);
  transform: translateY(-1px);
}

.button:hover {
  background: var(--green-light);
  box-shadow: 0 12px 24px rgba(21, 89, 42, .22);
  transform: translateY(-1px);
}

.button-light {
  background: rgba(255, 255, 255, .95);
  color: #1f1f1f;
}

.button-light:hover {
  background: var(--white);
  color: #111;
}

.nav-shell {
  background: var(--white);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1170px, calc(100% - 32px));
  min-height: 96px;
  margin: 0 auto;
  padding: 16px 0;
}

.brand img {
  width: min(380px, 52vw);
  height: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #333;
  transition: background-color .18s ease, color .18s ease;
}

.site-nav a:hover {
  background: var(--green);
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(460px, 50vw, 620px);
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .32) 52%, rgba(0, 0, 0, .62)), url("../images/bgTop.jpg");
  background-position: center;
  background-size: cover;
}

.hero-content {
  padding: 74px 0;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin-bottom: 14px;
  color: var(--green-light);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(42px, 5.6vw, 72px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.hero-content p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.intro {
  padding: 72px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 48%);
  align-items: center;
  gap: 48px;
}

.intro-copy h2,
.section-title h2,
.contact h2 {
  margin: 0 0 18px;
  color: #222;
  font-size: clamp(31px, 3.2vw, 46px);
  line-height: 1.1;
  font-weight: 400;
  text-transform: uppercase;
}

.intro-grid img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.services,
.solutions,
.features {
  padding: 72px 0;
  background: var(--light);
}

.support,
.contact {
  padding: 72px 0;
  background: var(--white);
}

.section-title {
  margin-bottom: 36px;
}

.section-title.centered {
  text-align: center;
}

.section-title .section-kicker {
  margin-bottom: 10px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card,
.solution-grid article,
.feature-grid article,
.support-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 7px 20px rgba(0, 0, 0, .08);
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
  transition: box-shadow .18s ease, transform .18s ease;
}

.service-card:hover,
.support-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(21, 89, 42, .09);
  color: var(--green);
}

.icon-badge svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.service-card h3,
.support-card h3,
.solution-grid h3,
.feature-grid h3 {
  margin: 0 0 14px;
  color: var(--dark);
  font-size: 21px;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
}

.text-link {
  width: fit-content;
  margin-top: auto;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
}

.text-link:hover {
  color: var(--red);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.support-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  transition: box-shadow .18s ease, transform .18s ease;
}

.support-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.support-card div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
}

.support-card p {
  color: var(--muted);
}

.support-card .button {
  margin-top: auto;
}

.solution-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.solution-grid article,
.feature-grid article {
  padding: 30px;
}

.features {
  background: #1a1a1a;
  color: #d8d8d8;
}

.features .section-title h2,
.features .feature-grid h3 {
  color: var(--white);
}

.features .feature-grid article {
  background: #242424;
  border-color: rgba(255, 255, 255, .12);
}

.contact {
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr;
  gap: 48px;
  align-items: center;
}

address {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--light);
  font-style: normal;
}

address strong {
  color: var(--green);
  font-size: 20px;
}

address a {
  width: fit-content;
  margin-top: 10px;
  color: var(--green);
  font-weight: 700;
}

.site-footer {
  background: #171717;
  color: #d6d6d6;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 36px;
  padding: 48px 0;
}

.footer-about img {
  max-width: 250px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-main h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}

.footer-links a,
.footer-about a {
  display: block;
  margin-bottom: 8px;
  color: #d9d9d9;
}

.footer-links a::before {
  content: "> ";
  color: #8fcf67;
  font-weight: 700;
}

.call-number {
  color: #8fcf67;
  font-size: 20px;
  font-weight: 700;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 10px;
}

.social-links h2 {
  flex: 1 0 100%;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: #2d2d2d;
  color: var(--white);
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.social-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.social-icon:hover {
  border-color: var(--green-light);
  background: var(--green-light);
  transform: translateY(-2px);
}

.social-icon.pinterest:hover {
  background: #bd081c;
  border-color: #bd081c;
}

.social-icon.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social-icon.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.social-icon.linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
}

.post-footer {
  background: #101010;
  color: #bdbdbd;
}

.post-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  font-size: 14px;
}

.post-footer p {
  margin: 0;
}

.post-footer a {
  color: #f99200;
}

@media (max-width: 1024px) {
  .nav-inner {
    min-height: 86px;
  }

  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .top-bar-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
    padding: 10px 16px;
    text-align: center;
  }

  .nav-inner {
    min-height: auto;
    padding: 18px 0;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    text-align: center;
  }

  .brand img {
    width: 260px;
  }

  .site-nav {
    justify-content: center;
    font-size: 14px;
  }

  .hero {
    min-height: 430px;
  }

  .hero-content {
    padding: 54px 0;
    text-align: center;
  }

  .hero-content h1,
  .hero-content p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .intro,
  .services,
  .support,
  .solutions,
  .features,
  .contact {
    padding: 52px 0;
  }

  .service-grid,
  .support-grid,
  .solution-grid,
  .feature-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .post-footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 24px, 1170px);
  }

  .quote-link,
  .phone-link {
    width: auto;
    min-height: 36px;
    padding: 9px 12px;
    font-size: 13px;
  }

  .brand img {
    width: 224px;
  }

  .site-nav a {
    padding: 8px 9px;
  }

  .hero {
    min-height: 430px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-actions .quote-phone,
  .hero-actions .button {
    width: 100%;
  }

  .service-card,
  .support-card div,
  .solution-grid article,
  .feature-grid article,
  address {
    padding: 22px;
  }

  .intro-copy h2,
  .section-title h2,
  .contact h2 {
    font-size: 29px;
  }
}
