:root {
  --ink: #f4f4f4;
  --ink-soft: #d3d3d3;
  --charcoal: #242122;
  --charcoal-2: #302d2e;
  --charcoal-3: #171516;
  --orange: #f47a20;
  --orange-dark: #cc5c0d;
  --paper: #f4f4f4;
  --paper-2: #e9e9e9;
  --dark-text: #262324;
  --line: rgba(255, 255, 255, .18);
  --shadow: 0 18px 42px rgba(0, 0, 0, .28);
  --radius: 2px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  position: relative;
  z-index: 0;
  margin: 0;
  color: var(--ink);
  background: var(--charcoal);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(rgba(30, 28, 29, .08), rgba(30, 28, 29, .08)),
    url("assets/images/gray-gradient.jpg") center top / cover no-repeat;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: #fff;
  background: var(--orange);
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { transform: none; }

.topbar {
  position: relative;
  z-index: 30;
  color: #ececec;
  background: #171516;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .81rem;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.topbar-contact {
  display: flex;
  gap: 28px;
  align-items: center;
}
.topbar a { text-decoration: none; }
.topbar a:hover, .topbar a:focus-visible { color: var(--orange); }
.topbar-contact span { color: var(--orange); margin-right: 7px; }
.topbar-quote {
  align-self: stretch;
  display: grid;
  place-items: center;
  padding-inline: 22px;
  color: #fff !important;
  background: var(--orange);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.topbar-quote:hover, .topbar-quote:focus-visible { background: var(--orange-dark); }

.site-header {
  position: absolute;
  z-index: 20;
  top: 38px;
  left: 0;
  right: 0;
  color: #fff;
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.site-header.sticky {
  position: fixed;
  top: 0;
  color: #fff;
  background: rgba(35, 32, 33, .96);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .30);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  min-height: 112px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  transition: min-height .25s ease;
}
.brand {
  flex: 0 0 auto;
  display: block;
  width: 245px;
  text-decoration: none;
  filter: drop-shadow(0 5px 8px rgba(0,0,0,.35));
  transition: width .25s ease, filter .25s ease;
}
.brand img {
  width: 100%;
  height: 102px;
  object-fit: contain;
  object-position: left center;
  transition: height .25s ease;
}

/* Compact navigation after the page begins scrolling. */
.site-header.sticky .nav-wrap {
  min-height: 76px;
}
.site-header.sticky .brand {
  width: 152px;
  filter: drop-shadow(0 3px 5px rgba(0,0,0,.28));
}
.site-header.sticky .brand img {
  height: 62px;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
  text-shadow: 0 2px 7px rgba(0,0,0,.55);
}
.primary-nav a {
  position: relative;
  color: inherit;
  text-decoration: none;
  padding-block: 10px;
}
.primary-nav > a:not(.nav-call)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 3px;
  background: var(--orange);
  transition: right .2s ease;
}
.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after,
.primary-nav > a.active::after { right: 0; }
.nav-call {
  border: 2px solid var(--orange);
  padding: 11px 20px !important;
  color: #fff !important;
  background: var(--orange);
  text-shadow: none;
}
.nav-call:hover, .nav-call:focus-visible { background: var(--orange-dark); border-color: var(--orange-dark); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal-3);
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media {
  background-image: url("assets/images/hero-26.jpg");
  background-position: center 53%;
  background-size: cover;
  transform: scale(1.015);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(24, 21, 22, .93) 0%, rgba(36, 33, 34, .78) 43%, rgba(36, 33, 34, .25) 75%, rgba(24, 21, 22, .10) 100%),
    linear-gradient(0deg, rgba(18, 16, 17, .35), transparent 52%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 155px;
  padding-bottom: 85px;
}
.eyebrow {
  margin: 0 0 13px;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--orange); }
.hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.2rem, 5vw, 4.6rem);
  font-weight: 400;
  line-height: .96;
  letter-spacing: .018em;
  text-transform: uppercase;
  text-shadow: 0 5px 25px rgba(0, 0, 0, .55);
}
.hero-subtitle {
  max-width: 690px;
  margin: 26px 0 0;
  color: #f3f3f3;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 600;
  text-shadow: 0 3px 12px rgba(0,0,0,.65);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: 1px;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--orange); }
.button-primary:hover, .button-primary:focus-visible { background: var(--orange-dark); }
.button-ghost { color: #fff; border-color: rgba(255, 255, 255, .78); background: rgba(0, 0, 0, .18); }
.button-ghost:hover, .button-ghost:focus-visible { border-color: #fff; background: #fff; color: var(--dark-text); }
.button-dark { color: #fff; background: var(--charcoal-3); }
.button-dark:hover, .button-dark:focus-visible { background: #000; }
.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 25px;
  left: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  transform: translateX(-50%);
  animation: float 1.8s ease-in-out infinite;
}
@keyframes float { 50% { transform: translate(-50%, 7px); } }

.section { padding: 100px 0; }
.specialties,
.testimonials,
.contact-section { background: rgba(24, 22, 23, .16); }
.section-heading { margin-bottom: 48px; }
.centered { max-width: 860px; margin-inline: auto; text-align: center; }
.section-heading h2,
.story-copy h2,
.contact-copy h2,
.cta-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.1;
  letter-spacing: -.035em;
}
.heading-rule {
  width: 68px;
  height: 4px;
  display: inline-block;
  margin: 20px 0 23px;
  background: var(--orange);
}
.heading-rule.light { background: var(--orange); }
.section-intro {
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.service-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: var(--radius);
  background: rgba(24, 22, 23, .88);
  box-shadow: 0 9px 28px rgba(0, 0, 0, .20);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: rgba(244,122,32,.72); }
.service-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #312f30;
}
.service-image-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: var(--orange);
}
.service-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.service-card:hover .service-image-wrap img { transform: scale(1.045); }
.service-card-body { padding: 27px 27px 29px; }
.service-card h3 { margin: 0 0 10px; color: #fff; font-size: 1.35rem; }
.service-card p { min-height: 78px; margin: 0; color: #d2d2d2; }
.text-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: 19px;
  padding: 9px 14px;
  color: #fff;
  background: var(--orange);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link:hover, .text-link:focus-visible { background: var(--orange-dark); }
.text-link:hover span { transform: translateX(4px); }
.text-link span { transition: transform .18s ease; }

.story-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: #fff;
  background: rgba(12, 11, 11, .68);
  border-block: 1px solid rgba(255,255,255,.10);
}
.story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(24, 21, 22, .96), rgba(49, 46, 47, .76)),
    url("assets/images/about-yard.jpg") center / cover no-repeat;
  opacity: .38;
}
.story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 70px;
}
.story-copy p:not(.eyebrow) { max-width: 690px; color: #e7e7e7; }
.story-copy .button { margin-top: 18px; }
.story-image {
  position: relative;
  padding: 13px 13px 0 0;
}
.story-image::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 72%;
  border: 5px solid var(--orange);
}
.story-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .42);
}

.testimonials { background: rgba(18, 16, 17, .23); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.review-card {
  position: relative;
  margin: 0;
  padding: 37px 30px 32px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.52);
  background: rgba(242, 242, 242, .96);
  color: var(--dark-text);
  box-shadow: 0 9px 24px rgba(0, 0, 0, .18);
}
.review-card::before {
  content: "“";
  position: absolute;
  top: 20px;
  left: 28px;
  color: rgba(244, 122, 32, .20);
  font: 700 5rem Georgia, serif;
  line-height: 1;
}
.review-card.featured { border-top: 6px solid var(--orange); transform: translateY(-12px); }
.review-card img {
  width: 86px;
  height: 86px;
  margin: 0 auto 21px;
  border: 4px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px var(--orange);
}
.review-card blockquote { position: relative; margin: 0; color: #545051; font-size: .98rem; }
.review-card figcaption { margin-top: 20px; color: var(--dark-text); font-weight: 900; }

.cta-band {
  padding: 62px 0;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 10px 30px rgba(0,0,0,.24);
}
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 35px; }
.cta-band .eyebrow { color: #3f1b06; }
.cta-band h2 { margin-bottom: 10px; }
.cta-band p { margin: 0; font-size: 1.05rem; }
.cta-band p a { font-weight: 900; }

.contact-section { background: rgba(24, 22, 23, .22); }
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-copy > p:not(.eyebrow) { color: var(--ink-soft); }
.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 31px;
}
.contact-details a {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  min-width: 0;
  color: #fff;
  text-decoration: none;
}
.contact-details a:hover strong { color: var(--orange); }
.contact-details span {
  color: var(--orange);
  font-size: 1.15rem;
}
.contact-details strong { min-width: 0; overflow-wrap: anywhere; }
.quote-form {
  padding: 40px;
  border-top: 6px solid var(--orange);
  background: rgba(19, 17, 18, .94);
  color: #fff;
  box-shadow: var(--shadow);
}
.quote-form h3 { margin: 0 0 5px; font-size: 1.7rem; }
.quote-form > p { margin-top: 0; color: #d0d0d0; }
.quote-form label { display: grid; gap: 7px; margin-top: 17px; }
.quote-form label span { color: #f1f1f1; font-size: .83rem; font-weight: 800; letter-spacing: .04em; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #5b5658;
  border-radius: 0;
  padding: 12px 13px;
  color: #fff;
  background: #302d2e;
  outline: none;
}
.quote-form select option { color: #111; background: #fff; }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(244, 122, 32, .18); }
.quote-form textarea { resize: vertical; min-height: 125px; }
.submit-button { width: 100%; margin-top: 23px; border: 0; }
.form-note { margin: 13px 0 0 !important; font-size: .76rem; line-height: 1.45; }
.form-status { min-height: 1.5em; margin: 10px 0 0 !important; color: var(--orange) !important; font-weight: 700; }

.site-footer {
  position: relative;
  padding: 75px 0 24px;
  color: #d9d9d9;
  background: #171516;
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer-mountain { display: none; }
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr .7fr 1.2fr .65fr;
  gap: 42px;
}
.footer-brand img {
  width: 210px;
  height: 132px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 4px 5px rgba(0,0,0,.35));
}
.footer-brand p { max-width: 340px; margin: 13px 0 0; color: #aaa6a7; }
.site-footer h2 { margin: 20px 0 17px; color: #fff; font-size: .86rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-nav, .site-footer address { display: grid; gap: 9px; font-style: normal; }
.site-footer a { text-decoration: none; }
.site-footer a:hover, .site-footer a:focus-visible { color: var(--orange); }
.site-footer address a { overflow-wrap: anywhere; }
.social-links { display: flex; flex-wrap: wrap; gap: 9px; }
.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #686365;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .025);
  transition: color .18s ease, border-color .18s ease, background-color .18s ease, transform .18s ease;
}
.social-links svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}
.social-links a:hover,
.social-links a:focus-visible {
  color: #fff;
  border-color: var(--orange);
  background: var(--orange);
  transform: translateY(-2px);
}
.copyright {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #393536;
  color: #858182;
  font-size: .78rem;
}
.copyright p { margin: 0; }
.mobile-call { display: none; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

@media (max-width: 980px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-grid { gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1.4fr .7fr 1fr; }
  .footer-grid > :last-child { grid-column: 2 / 4; }
}

@media (max-width: 780px) {
  body { padding-bottom: 58px; }
  .topbar-contact a:nth-child(2) { display: none; }
  .topbar-quote { padding-inline: 15px; }
  .site-header { top: 38px; }
  .nav-wrap { min-height: 88px; }
  .brand { width: 175px; }
  .brand img { height: 73px; }
  .site-header.sticky .nav-wrap { min-height: 68px; }
  .site-header.sticky .brand { width: 132px; }
  .site-header.sticky .brand img { height: 54px; }
  .menu-toggle {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .65);
    color: #fff;
    background: rgba(32, 29, 30, .50);
  }
  .menu-toggle-lines,
  .menu-toggle-lines::before,
  .menu-toggle-lines::after {
    width: 23px;
    height: 2px;
    display: block;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
  }
  .menu-toggle-lines { position: relative; }
  .menu-toggle-lines::before,
  .menu-toggle-lines::after { content: ""; position: absolute; left: 0; }
  .menu-toggle-lines::before { top: -7px; }
  .menu-toggle-lines::after { top: 7px; }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines { background: transparent; }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines::before { top: 0; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines::after { top: 0; transform: rotate(-45deg); }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 12px 20px 20px;
    background: rgba(23, 21, 22, .98);
    box-shadow: 0 16px 30px rgba(0, 0, 0, .34);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
  }
  .primary-nav.open { transform: none; opacity: 1; visibility: visible; }
  .primary-nav a { padding: 13px 2px; border-bottom: 1px solid #413d3e; }
  .primary-nav .nav-call { margin-top: 12px; text-align: center; border-bottom: 0; }
  .hero { min-height: 690px; }
  .hero-media { background-position: 50% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(25,22,23,.91), rgba(25,22,23,.47)); }
  .hero-content { padding-top: 132px; }
  .hero h1 { max-width: 620px; font-size: clamp(2.65rem, 11.5vw, 4rem); }
  .section { padding: 78px 0; }
  .story-section { padding: 82px 0; }
  .story-grid { grid-template-columns: 1fr; }
  .story-image { max-width: 560px; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card.featured { transform: none; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
  .mobile-call {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    height: 58px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--orange);
    font-weight: 900;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 -5px 18px rgba(0, 0, 0, .28);
  }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar-contact { font-size: .75rem; }
  .topbar-quote { font-size: .69rem; }
  .hero { min-height: 650px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card p { min-height: 0; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 31px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
