/* ============================================================
   Sugar Land home-service redesign: orange / white / charcoal
   ============================================================ */
.top-strip {
  background: var(--ink);
  color: rgba(255, 255, 255, .88);
  border-bottom: 3px solid var(--orange);
}

.top-strip__inner {
  margin: 0 auto;
  display: grid;
  align-items: center;
  justify-self: center;
  padding: 12px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

.top-strip__inner p {
  color: rgba(255, 255, 255, .88);
  font-size: 12px;
  line-height: 1.2;
}

.top-strip__inner p::before {
  color: var(--orange);
  margin-right: 8px;
}

.top-strip__inner p:first-child::before {
  content: "•";
}

.top-strip__center::before {
  content: "✓" !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

.site-header__inner {
  max-width: 1500px;
  min-height: 82px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
}

.logo {
  display: inline-grid;
  line-height: 1;
}

.logo__primary {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--ink);
}

.logo__secondary {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: .24em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.main-nav .nav-menu,
.main-nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav .nav-menu {
  align-items: center;
  display: flex;
  gap: 28px;
}

.main-nav .menu-item {
  position: relative;
}

.main-nav a {
  position: relative;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 800;
}

.main-nav a::after {
  display: none;
}

.main-nav .sub-menu {
  display: none !important;
}

.main-nav .menu-item:hover > .sub-menu,
.main-nav .menu-item:focus-within > .sub-menu {
  display: none !important;
}

.main-nav .sub-menu a {
  display: block;
  padding: 10px 12px;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-actions {
  display: none;
}

.menu-toggle {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(24, 25, 28, .16);
  border-radius: 999px;
  display: none;
  height: 46px;
  justify-content: center;
  padding: 0;
  width: 46px;
}

.menu-toggle__lines,
.menu-toggle__lines::before,
.menu-toggle__lines::after {
  background: var(--ink);
  border-radius: 999px;
  content: "";
  display: block;
  height: 2px;
  transition: transform .2s ease, opacity .2s ease;
  width: 18px;
}

.menu-toggle__lines {
  position: relative;
}

.menu-toggle__lines::before,
.menu-toggle__lines::after {
  left: 0;
  position: absolute;
}

.menu-toggle__lines::before {
  top: -6px;
}

.menu-toggle__lines::after {
  top: 6px;
}

.mobile-menu-open .menu-toggle__lines {
  background: transparent;
}

.mobile-menu-open .menu-toggle__lines::before {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-open .menu-toggle__lines::after {
  transform: translateY(-6px) rotate(-45deg);
}

.call-link {
  display: grid;
  color: var(--ink);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -.01em;
}

.call-link span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 6px;
}

.text-link span {
  color: var(--orange);
}

.marquee {
  background: var(--white);
  border-block: 1px solid var(--line-soft);
}

.marquee__inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.marquee__label {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.marquee__list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 30px;
  padding: 0;
  list-style: none;
}

.marquee__list li {
  color: var(--ink-2);
  font-size: 18px;
  font-weight: 900;
}

.marquee__list li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  background: var(--orange);
  vertical-align: middle;
}


.section-head h2 {
  max-width: 760px;
}

.section-head__note {
  color: var(--muted);
}

.statement {
  background: var(--off);
}

.statement__grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}

.statement__headline {
  color: var(--ink);
  font-size: 46px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.statement__body {
  padding: 34px 0 0 42px;
  border-left: 4px solid var(--orange);
}

.statement__body p {
  font-size: 17px;
  color: var(--graphite);
}

.stat-row {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-block: 1px solid var(--line);
}

.stat {
  padding: 22px 20px 22px 0;
}

.stat+.stat {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.stat dt {
  color: var(--orange);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.stat dd {
  margin: 8px 0 0;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.services {
  background: #f5f5f7;
}

.services__grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 30px;
}

.foot-section-description{
  text-align: center;
  margin-top: 39px;
}

.foot-section-description p{
  margin-bottom: 30px;
  line-height: 27px;
}
.service {
  position: relative;
  grid-column: span 4;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(24, 25, 28, .06);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff 0%, #f2f3f5 58%, #e8eaee 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82), 0 18px 50px rgba(24, 25, 28, .07);
  color: var(--ink);
}

.service:nth-child(1) {
  grid-column: span 7;
  min-height: 410px;
}

.service:nth-child(2) {
  grid-column: span 5;
  min-height: 410px;
  background: linear-gradient(145deg, #fefefe 0%, #f4f2ef 52%, #e7e3dd 100%);
}

.service:nth-child(3) {
  background: linear-gradient(145deg, #ffffff 0%, #f1f4f6 55%, #e3e9ee 100%);
}

.service:nth-child(4) {
  background: linear-gradient(145deg, #ffffff 0%, #f5f5f3 55%, #e8e6e1 100%);
}

.service:nth-child(5) {
  background: linear-gradient(145deg, #ffffff 0%, #f4f3f6 55%, #e7e4ed 100%);
}

.service__frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.service__frame img {
  position: absolute;
  right: -82px;
  bottom: -48px;
  width: 88%;
  height: 84%;
  object-fit: contain;
  padding: 0;
  opacity: .3;
  filter: grayscale(1) contrast(1.08) brightness(1.03);
  mix-blend-mode: multiply;
}

.service:nth-child(1) .service__frame img {
  right: -88px;
  bottom: -62px;
  width: 57%;
  height: 100%;
  opacity: .32;
}

.service:nth-child(2) .service__frame img {
  right: -118px;
  bottom: -54px;
  width: 102%;
  height: 90%;
}

.service:nth-child(3) .service__frame img,
.service:nth-child(4) .service__frame img {
  right: -136px;
  bottom: -54px;
  width: 100%;
  height: 96%;
  opacity: .32;
}

.service:nth-child(5) .service__frame img{
  right: -186px;
  bottom: -74px;
  width: 100%;
  height: 100%;
  opacity: .32;
}

.service__text {
  position: relative;
  z-index: 1;
  max-width: 350px;
  padding-right: 42px;
}

.service:nth-child(1) .service__text {
  max-width: 470px;
}

.service__cat {
  display: block;
  margin-bottom: 12px;
  color: var(--orange-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service__text h3 {
  font-size: 29px;
  line-height: 1.02;
  letter-spacing: -.045em;
}

.service:nth-child(1) .service__text h3 {
  font-size: 40px;
}

.service__text p {
  margin-top: 30px;
  /* max-width: 30ch; */
  padding-left: 14px;
  border-left: 2px solid #cfbfb9;
  color: #625e5a;
  font-family: var(--avenir);
  font-size: 14px;
  letter-spacing: .5px;
  line-height: 1.55;
  font-weight: 500;
}

.service__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin-top: 28px;
  padding: 12px 15px;
  border-radius: 999px;
  color: var(--orange-deep);
  font-size: 11px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid var(--orange-deep);
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.service:hover .service__link,
.service:focus-within .service__link {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.service__link i {
  color: currentColor;
  font-style: normal;
}

.technical {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #17191d;
  color: var(--white);
}

.technical__media {
  height: clamp(520px, 58vw, 880px);
  overflow: hidden;
  position: relative;
  background: #111318;
}

.technical__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95) contrast(1.05);
}

.technical__repair-shard {
clip-path: polygon(0 0, 100% 0, 0 100%);
    display: block;
    height: min(100%, 590px);
    left: 0;
    object-fit: cover;
    object-position: 42% 40%;
    position: absolute;
    top: 0;
    width: min(100%, 590px);
    z-index: 2;
}

.technical__panel {
  align-self: center;
  padding: 80px;;
  background: linear-gradient(135deg, #17191d, #20242b);
  border-left: 5px solid var(--orange);
}

.technical__panel h2 {
  color: var(--white);
}

.technical__lead {
  margin-top: 24px;
  max-width: 48ch;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
}

.numbered {
  margin: 34px 0 36px;
  padding: 0;
  list-style: none;
  max-width: 520px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.numbered li {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.numbered span {
  color: var(--orange);
}

.technical .text-link {
  color: var(--white);
}

.process {
  background: var(--off);
}

.process__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0;
  list-style: none;
  border-block: 0;
  background:
    linear-gradient(90deg, transparent 0%, var(--line) 14%, var(--line) 86%, transparent 100%) top / 100% 1px no-repeat,
    linear-gradient(90deg, transparent 0%, var(--line) 14%, var(--line) 86%, transparent 100%) bottom / 100% 1px no-repeat;
}

.process__step {
  padding: 36px 34px 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .7), rgba(255, 255, 255, .25));
}

.process__step+.process__step {
  border-left: 0;
  background-image: linear-gradient(180deg, transparent 0%, var(--line) 18%, var(--line) 82%, transparent 100%);
  background-position: left center;
  background-size: 1px 100%;
  background-repeat: no-repeat;
}

.process__num {
  display: inline-flex;
  min-width: 86px;
  padding-bottom: 10px;
  color: #1f252b;
  font-family: var(--avenir);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--orange) 0 54px, transparent 54px) left bottom / 100% 2px no-repeat;
}

.process__tag {
  display: block;
  margin: 12px 0 18px;
  color: var(--bluegray);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.process__step h3 {
  margin-bottom: 12px;
  font-size: 25px;
}

.process__actions {
  margin-top: 38px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.process__actions{
  justify-content: center;
}

.brands {
  background: var(--ink);
  color: var(--white);
}

.brands h2,
.section-head--light h2 {
  color: var(--white);
}

.section-head--light {
  border-bottom-color: rgba(255, 255, 255, .14);
}

.section-head--light .section-head__note {
  color: rgba(255, 255, 255, .7);
}

.brands__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.brands__list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.brands__list li:nth-child(odd) {
  padding-right: 42px;
}

.brands__list li:nth-child(even) {
  padding-left: 42px;
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.brands__name {
  color: var(--white);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.brands__origin {
  color: rgba(255, 255, 255, .48);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.issues {
  background: var(--white);
}

.issues__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 48px;
}

.issue {
  padding: 26px 0 0;
  border-top: 3px solid var(--orange);
}

.issue__icon {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  fill: none;
  stroke: #aeb7bf;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.issue h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.issue p {
  font-size: 15px;
}

.areas {
  background: var(--cool);
}

.areas__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(44px, 6vw, 88px);
  align-items: center;
}

.areas__map {
  min-height: 540px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.areas__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .12;
  filter: grayscale(.45) contrast(1.08);
}

.areas__map::after {
  content: "Sugar Land\A Fort Bend County\A West Houston";
  white-space: pre-line;
  position: absolute;
  left: 36px;
  bottom: 36px;
  right: 36px;
  color: var(--white);
  font-size: 45px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.05em;
}

.map-pin {
  display: none;
}

.map-caption {
  position: absolute;
  left: 36px;
  top: 34px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.areas__intro {
  margin: 24px 0 34px;
  max-width: 52ch;
  color: var(--graphite);
  font-size: 17px;
}

.areas__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 34px;
  border-top: 1px solid var(--line);
}

.areas__links a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.areas__links a:nth-child(even) {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.areas__links a span {
  color: var(--orange);
}

.appointment {
  background: var(--white);
}

.appointment__grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(42px, 6vw, 86px);
  align-items: start;
}

.appointment__lead {
  margin-top: 22px;
  font-size: 17px;
  color: var(--graphite);
}

.appointment__contact {
  margin: 30px 0;
  padding: 22px 0;
  border-block: 1px solid var(--line);
  display: grid;
  gap: 6px;
}

.appointment__contact span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.appointment__contact a {
  color: var(--orange);
  font-size: 30px;
  font-weight: 900;
}

.appointment__reassure {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.appointment__reassure li {
  color: var(--graphite);
  font-weight: 800;
}

.appointment__reassure li::before {
  content: "✓";
  color: var(--orange);
  margin-right: 10px;
}

.appointment__form {
  min-height: 600px;
  border: 1px solid var(--line);
  background: var(--off);
  box-shadow: var(--shadow-soft);
}

.appointment__form iframe {
  display: block;
  min-height: 600px;
}

.faq {
  background: var(--off);
}

.faq__grid {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: clamp(42px, 6vw, 84px);
}

.faq__intro p {
  margin: 22px 0 24px;
}

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

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 42px 24px 0;
  position: relative;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

summary::-webkit-details-marker {
  display: none;
}

.faq__toggle {
  width: 18px;
  height: 18px;
  position: relative;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.faq__toggle::before,
.faq__toggle::after {
  content: "";
  position: absolute;
  background: var(--orange);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__toggle::before {
  width: 18px;
  height: 2px;
}

.faq__toggle::after {
  width: 2px;
  height: 18px;
}

details[open] .faq__toggle::after {
  display: none;
}

details p {
  padding: 0 42px 24px 0;
}

.closing {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
}

.closing--emergency {
  min-height: 430px;
  background: #17181b;
}

.closing__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  opacity: .36;
  filter: saturate(.95) contrast(1.08);
}

.closing__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 17, 19, .96), rgba(16, 17, 19, .72) 48%, rgba(201, 15, 50, .72)),
    linear-gradient(180deg, rgba(16, 17, 19, .1), rgba(16, 17, 19, .72));
}

.closing__inner {
  position: relative;
  z-index: 2;
}

.closing__emergency {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 48px;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
}

.closing__headline h2 {
  color: var(--white);
  max-width: 680px;
  margin: 0;
  font-size: clamp(44px, 5vw, 76px);
  line-height: .94;
}

.closing__eyebrow {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.closing__lead {
  max-width: 560px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .72);
  font-size: 19px;
  line-height: 1.55;
}

.closing__callout {
  position: relative;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-top: 5px solid var(--orange);
  background: rgba(9, 10, 12, .64);
  padding: 30px;
}

.closing__callout span,
.closing__callout small {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.closing__callout a {
  color: var(--white);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 900;
  line-height: 1;
}

.closing__ticker {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, .16);
}

.closing__ticker li {
  background: rgba(9, 10, 12, .54);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
  padding: 15px 10px;
}

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

.simple-box {
  padding: 28px;
  border: 1px solid #f0edec;
  background: var(--white);
}

.simple-box h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.simple-box p {
  font-size: 15px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-card {
  padding: 34px;
  background: var(--ink);
  color: var(--white);
}

.contact-card h2 {
  color: var(--white);
}

.contact-card p,
.contact-card a {
  color: rgba(255, 255, 255, .76);
}

.contact-card a.big {
  display: block;
  margin-top: 22px;
  color: var(--orange);
  font-size: 32px;
  font-weight: 900;
}

/* ============================================================
   2026 practical Sugar Land rebuild — structure/detail pass
   ============================================================ */
.top-strip {
  border-bottom: 0;
  background: #111318;
}


.top-strip__inner p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .86);
  font-weight: 800;
  letter-spacing: .02em;
}

.top-strip__inner p::before {
  content: none !important;
}

.top-strip__center {
  justify-self: end;
  color: rgba(255, 255, 255, .7) !important;
}

.top-strip__inner span {
  color: var(--orange);
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, .985);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 26px rgba(24, 25, 28, .055);
}

.site-header__inner {
  min-height: 92px;
  grid-template-columns: minmax(230px, auto) 1fr auto;
  gap: 32px;
}

.logo__primary {
  font-size: 26px;
  letter-spacing: -.045em;
}

.logo__secondary {
  margin-top: 7px;
  color: var(--orange);
  letter-spacing: .18em;
}

.main-nav {
  gap: 8px;
  justify-content: center;
}

.main-nav .nav-menu {
  gap: 8px;
}

.main-nav a {
  padding: 10px 12px;
  color: #303740;
  font-size: 16px;
  font-weight: 600;
}

.main-nav a::after {
  display: none;
}

.header-actions {
  gap: 16px;
}

.call-link {
  padding-right: 16px;
  border-right: 1px solid var(--line);
  font-size: 18px;
}


/*=================================================
  QUICK-BAR
=================================================*/

.quick-bar__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.quick-bar{
  background: var(--ink-2);
}

.bar-item h4{
  margin: 7px 0 10px 0;
  color : #e1dcda;
}

.bar-item p{
  color : #8d8684;
}

.quick-bar__grid > div {
  min-width: 0;
  padding: 28px 34px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.bar-item span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.bar-item span::after {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(232, 106, 23, .58);
}



.section-label,
.eyebrow {
  letter-spacing: .13em;
  font-weight: 900;
}

.statement {
  background: #fff;
}

.statement__grid {
  align-items: center;
}

.statement__body {
  padding: 34px 0 34px 42px;
  border-left: 5px solid var(--orange);
  background: linear-gradient(90deg, #fff7f1, transparent 88%);
}

.stat-row {
  border-color: var(--line-soft);
  background: #fff;
}

.stat dt {
  color: var(--orange);
  font-size: 36px;
}

.stat dd {
  font-weight: 850;
  color: var(--graphite);
}

.home-systems {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf8 100%);
}

.home-systems::before {
  content: "";
  position: absolute;
  left: 0;
  top: 96px;
  width: 9px;
  height: calc(100% - 192px);
  background: var(--orange);
}

.home-systems__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 96px;
  align-items: start;
}

.home-systems__intro p:not(.section-label) {
  margin-top: 28px;
  max-width: 42ch;
  color: #424b55;
  font-family: var(--avenir);
  font-size: 19px;
  line-height: 1.72;
}

.systems-list {
  display: grid;
  position: relative;
  padding-top: 5px;
  color: var(--ink);
}

.systems-list div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 42px;
  align-items: baseline;
  min-height: 116px;
  padding: 28px 0;
  border-top: 1px solid rgba(22, 24, 28, .14);
}

.systems-list div:last-child {
  border-bottom: 1px solid rgba(22, 24, 28, .14);
}

.systems-list span {
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
}


.systems-list strong {
    max-width: 31ch;
    color: rgb(23, 25, 29);
    font-size: 21px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.03em;
}


.numbered li span {
  font-family: var(--avenir);
  color: var(--orange);
  font-weight: 950;
}

.process {
  background: #fff;
}

.process__list {
  border-top: 0;
  border-bottom: 0;
  gap: 0;
}

.process__step {
  padding: 34px 34px 36px 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.process__step+.process__step {
  border-left: 0;
  padding-left: 34px;
}

.brands {
  background: #15171b;
}

.brand-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.brand-wall li {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  background: rgba(255, 255, 255, .02);
}

.brand-wall a {
  align-items: center;
  color: inherit;
  display: flex;
  height: 100%;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

.commercial-brand-strip {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-top: 0;
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr;
  padding: 18px 22px;
}

.commercial-brand-strip h3 {
  color: var(--brass);
  font-size: 18px;
  margin: 0;
  text-transform: uppercase;
}

.commercial-brand-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.commercial-brand-strip a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.service-tile-link {
  color: inherit;
  text-decoration: none;
  transition: color .2s var(--ease);
}

.service-tile-link:hover,
.service-tile-link:focus-visible {
  color: inherit;
}

.service-tile-link .simple-box__body span {
  align-items: center;
  background: transparent;
  border: 1px solid var(--orange-deep);
  border-radius: 999px;
  color: var(--orange-deep);
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: .08em;
  margin-top: 22px;
  min-width: 0;
  padding: 12px 15px;
  text-transform: uppercase;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
  width: fit-content;
}

.service-tile-link:hover .simple-box__body span,
.service-tile-link:focus-visible .simple-box__body span {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.locations-template-grid .simple-box__media::after {
  background:
    linear-gradient(180deg, rgba(17, 19, 24, .04), rgba(17, 19, 24, .30)),
    linear-gradient(90deg, rgba(232, 106, 23, .20), transparent 42%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.locations-template-grid .simple-box__media {
  position: relative;
}

.location-section-head {
  margin: 0 0 30px;
  max-width: 820px;
}

.location-section-head h2 {
  margin: 0 0 14px;
}

.location-section-head p:not(.section-label) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

.location-section-head--nearby {
  border-top: 1px solid var(--line);
  margin-top: 58px;
  padding-top: 48px;
}

.location-tile-link .simple-box__body {
  background: transparent;
}

.top-strip {
  background: #111318;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}


.top-strip__inner p {
  margin: 0;
}

.top-strip__inner p::before,
.top-strip__center::before {
  content: none !important;
}

.top-strip__center {
  justify-self: end;
}

body,
body p,
body a,
body ul,
body ol,
body li,
body span,
body strong,
body small,
body label,
body summary,
body details,
body input,
body select,
body textarea,
body button,
body .button,
body .logo,
body .section-label,
body .eyebrow,
body .service__cat,
body .service__link,
body .process__num,
body .process__tag,
body .brand-wall,
body .commercial-brand-strip,
body .top-strip,
body .main-nav {
  font-family: var(--avenir);
}

body h1,
body h2,
body h3,
body h4,
body h1 *,
body h2 *,
body h3 *,
body h4 * {
  font-family: var(--sans);
}

.issues {
  background: #fff;
}

.issue {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.issue__icon {
  stroke: #aeb7bf;
}

.areas {
  background: var(--cool);
}

.areas__map {
  box-shadow: none;
  border: 1px solid var(--line);
}


.appointment__form {
  box-shadow: none;
  border: 1px solid var(--line);
}

.closing__overlay {
     background: linear-gradient(90deg, rgb(23 25 29 / 45%), rgb(23 25 29 / 32%) 56%, rgba(232, 106, 23, .24));
}


/* Inner service/location pages: clean image cards */
.simple-grid--media {
  align-items: stretch;
  gap: 30px;
}

.simple-box--media {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 249, 250, .88)),
    var(--white);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(24, 25, 28, .075);
  display: grid;
  grid-template-rows: 216px 1fr;
  gap: 0;
  overflow: hidden;
  padding: 12px;
  position: relative;
}

.simple-box--media::before {
  background: linear-gradient(90deg, rgba(232, 106, 23, .65), transparent);
  content: "";
  height: 2px;
  left: 32px;
  position: absolute;
  top: 232px;
  width: 88px;
  z-index: 2;
}

.simple-box__media {
  background: #17191d;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
}

.simple-box__media::before {
  background:
    linear-gradient(180deg, rgba(17, 19, 24, .02), rgba(17, 19, 24, .26)),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, .14), transparent 30%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.simple-box__media img {
  filter: saturate(1.03) contrast(1.015);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.simple-box__body {
  /* min-height: 224px; */
  padding: 32px 18px 18px;
  position: relative;
}

.simple-box__body::after {
  background: linear-gradient(180deg, rgba(232, 106, 23, .18), transparent);
  content: "";
  height: 88px;
  position: absolute;
  right: 6px;
  top: 26px;
  width: 1px;
}

.simple-box__body h3 {
  color: #17191d;
  font-size: 24px;
  line-height: 1.14;
  margin-bottom: 13px;
  max-width: 15ch;
}

.simple-box__body p {
  color: #59616b;
  font-size: 15px;
  line-height: 1.68;
  max-width: 36ch;
}

.services-template-grid .simple-box__body::before,
.locations-template-grid .simple-box__body::before {
  content: none;
}

.simple-box__body span::after {
  content: none;
}
