/* Signal Track Industrial — Channelview Garage Door Repair */
:root {
  --carbon: #202328;
  --black: #111316;
  --red: #e43d37;
  --concrete: #f1f0ec;
  --paper: #fff;
  --steel: #667079;
  --line: #d7d7d2;
  --shadow: 0 22px 55px rgba(16, 19, 22, 0.16);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--concrete);
  color: var(--carbon);
  font:
    18px/1.65 "Roboto",
    sans-serif;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: var(--carbon);
  text-underline-offset: 4px;
}
a:hover {
  color: var(--red);
}
p:last-child {
  margin-bottom: 0;
}
h1,
h2,
h3,
h4 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.025em;
}
h1,
h2,
h3 {
  color: var(--carbon);
}
h1 {
  font-size: clamp(4.2rem, 9vw, 9rem);
}
h2 {
  font-size: clamp(2.8rem, 5.6vw, 5.6rem);
}
h3 {
  font-size: 1.85rem;
}
.container {
  max-width: 1320px;
}
.section {
  padding: clamp(5rem, 8vw, 8.5rem) 0;
}
.section-heading {
  max-width: 860px;
  margin-bottom: 3.2rem;
}
.section-heading h2 {
  margin: 0.5rem 0 1rem;
  text-wrap: balance;
}
.eyebrow,
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.eyebrow::before,
.hero-kicker::before {
  content: "";
  width: 28px;
  height: 8px;
  background: repeating-linear-gradient(
    135deg,
    var(--red) 0 3px,
    transparent 3px 6px
  );
}
.topbar {
  position: relative;
  z-index: 1040;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding: 0.52rem 1rem;
}
.topbar-inner span:last-child {
  margin-left: auto;
}
.navbar {
  min-height: 92px;
  background: rgba(32, 35, 40, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.2s;
}
.navbar.scrolled {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}
.navbar-brand {
  margin-right: 2rem;
  padding: 0.45rem 0;
}
.navbar-brand img {
  display: block;
  width: 220px;
  height: auto;
  filter: brightness(0) invert(1);
}
.navbar-nav {
  gap: 0.1rem;
}
.nav-link {
  color: #fff !important;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.86rem 0.7rem !important;
}
.nav-link:hover,
.nav-link.active {
  background: var(--red);
}
.dropdown-menu {
  border: 0;
  border-top: 4px solid var(--red);
  border-radius: 0;
  padding: 0.5rem;
  box-shadow: var(--shadow);
}
.dropdown-item {
  padding: 0.72rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 700;
}
.dropdown-item:hover,
.dropdown-item:active {
  background: var(--carbon);
  color: #fff;
}
.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 0;
  min-width: 48px;
  min-height: 48px;
  box-shadow: none !important;
}
.navbar-toggler-icon {
  filter: invert(1);
}
.btn {
  min-height: 52px;
  border: 0;
  border-radius: 0;
  padding: 0.82rem 1.55rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  clip-path: polygon(
    0 0,
    calc(100% - 13px) 0,
    100% 13px,
    100% 100%,
    13px 100%,
    0 calc(100% - 13px)
  );
}
.btn-accent {
  background: var(--red);
  color: #fff;
}
.btn-accent:hover {
  background: #fff;
  color: var(--carbon);
  transform: translateY(-2px);
}
.btn-light {
  background: #fff;
  color: var(--carbon);
}
.btn-light:hover {
  background: var(--red);
  color: #fff;
}
.header-phone {
  margin-left: 1rem;
  white-space: nowrap;
}
.hero {
  position: relative;
  min-height: 790px;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(0.82) contrast(1.06);
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(10, 12, 14, 0.97) 0%,
      rgba(10, 12, 14, 0.89) 38%,
      rgba(10, 12, 14, 0.28) 70%,
      rgba(10, 12, 14, 0.08)
    ),
    linear-gradient(0deg, rgba(10, 12, 14, 0.55), transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px !important;
  margin: auto !important;
  padding: clamp(5rem, 10vw, 8rem) 1rem 7rem !important;
  text-align: left;
}
.hero-content::before {
  content: "OPEN • CLOSE • SECURE";
  position: absolute;
  left: 1rem;
  top: 2.3rem;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.32em;
}
.hero-content h1 {
  max-width: 820px;
  color: #fff;
  margin: 0.72rem 0 1.2rem;
  text-wrap: balance;
}
.hero-content p {
  max-width: 720px;
  color: #d6d9dc;
  font-size: 1.08rem;
  border-left: 5px solid var(--red);
  padding-left: 1.2rem;
}
.hero-kicker {
  color: #fff;
}
.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.hero-actions .btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  background: rgba(17, 19, 22, 0.4);
}
.hero-actions .btn-outline-light:hover {
  background: #fff;
  color: var(--carbon);
}
.hero-offer {
  position: absolute;
  z-index: 3;
  right: max(1rem, calc((100vw - 1320px) / 2));
  bottom: 0;
  display: grid;
  min-width: 370px;
  background: var(--red);
  color: #fff;
  padding: 1.35rem 2rem 1.2rem 4.4rem;
  clip-path: polygon(48px 0, 100% 0, 100% 100%, 0 100%, 0 48px);
}
.hero-offer::before {
  content: "//";
  position: absolute;
  left: 1.35rem;
  top: 0.82rem;
  font-family: "Bebas Neue";
  font-size: 2.8rem;
  color: rgba(255, 255, 255, 0.42);
}
.hero-offer strong {
  font-family: "Bebas Neue";
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}
.hero-offer span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-grid > div {
  position: relative;
  padding: 1.65rem 1.5rem 1.55rem 3.6rem;
  border-right: 1px solid var(--line);
}
.trust-grid > div:last-child {
  border-right: 0;
}
.trust-grid > div::before {
  content: "+";
  position: absolute;
  left: 1.3rem;
  top: 1.15rem;
  color: var(--red);
  font-family: "Bebas Neue";
  font-size: 2.3rem;
}
.trust-grid strong,
.trust-grid span {
  display: block;
}
.trust-grid strong {
  font-family: "Bebas Neue";
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}
.trust-grid span {
  color: var(--steel);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.services-section {
  background: var(--carbon);
  color: #fff;
}
.services-section h2 {
  color: #fff;
}
.services-section .section-heading p {
  color: #b9bec3;
}
.services-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1.5rem;
  scrollbar-color: var(--red) rgba(255, 255, 255, 0.12);
}
.service-card {
  position: relative;
  flex: 0 0 min(350px, 82vw);
  min-height: 280px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  background: #2b2f34;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  overflow: hidden;
  transition: 0.25s;
}
.service-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 100px;
  height: 100px;
  border: 16px solid rgba(255, 255, 255, 0.035);
  transform: rotate(45deg);
}
.service-card:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-5px);
}
.service-number {
  font-family: "Bebas Neue";
  font-size: 4.7rem;
  line-height: 1;
  color: var(--red);
}
.service-card:hover .service-number {
  color: #fff;
}
.service-card h3 {
  max-width: 240px;
  color: #fff;
  font-size: 2.3rem;
  margin: 1.5rem 0;
}
.service-card > span:last-child {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.approved-content {
  background: var(--concrete);
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  counter-reset: content;
}
.content-card {
  position: relative;
  counter-increment: content;
  padding: clamp(2rem, 4.5vw, 4.5rem) clamp(1.8rem, 5vw, 5.5rem)
    clamp(2rem, 4.5vw, 4.5rem) clamp(4.8rem, 9vw, 9rem);
  background: #fff;
  border-left: 9px solid var(--carbon);
  box-shadow: 0 1px 0 var(--line);
}
.content-card::before {
  content: counter(content, decimal-leading-zero);
  position: absolute;
  left: 1.5rem;
  top: 2.1rem;
  color: var(--red);
  font-family: "Bebas Neue";
  font-size: 2.8rem;
  line-height: 1;
}
.content-card:nth-child(even) {
  margin-left: 8%;
  border-left-color: var(--red);
}
.content-card:nth-child(odd):not(.content-card-featured) {
  margin-right: 8%;
}
.content-card h2 {
  font-size: clamp(2.25rem, 3.5vw, 3.7rem);
  margin: 0 0 1rem;
}
.content-card p {
  max-width: 1040px;
  color: #566069;
}
.content-card-featured {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  padding: 0;
  background: var(--carbon);
  border-left: 0;
  color: #fff;
}
.content-card-featured::before {
  z-index: 2;
  left: calc(45% + 2rem);
  top: 2rem;
}
.content-card-image {
  min-height: 600px;
}
.content-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-card-copy {
  padding: clamp(4.5rem, 7vw, 7rem) clamp(2.5rem, 6vw, 6rem);
  align-self: center;
}
.content-card-featured h2 {
  color: #fff;
}
.content-card-featured p {
  color: #cbd0d4;
}
.proof-section {
  background: #fff;
}
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--carbon);
  border: 12px solid var(--carbon);
}
.before-after figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.before-after figure + figure {
  border-left: 6px solid var(--carbon);
}
.before-after img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.06);
}
.before-after figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0.65rem 2rem;
  background: var(--carbon);
  color: #fff;
  font-family: "Bebas Neue";
  font-size: 1.5rem;
  letter-spacing: 0.07em;
}
.before-after figure:last-child figcaption {
  background: var(--red);
}
.gallery-section {
  background: var(--concrete);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 280px;
  gap: 10px;
}
.gallery-item {
  position: relative;
  grid-column: span 2;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: var(--carbon);
  cursor: zoom-in;
}
.gallery-item::after {
  content: "VIEW +";
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.5rem 0.8rem;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
  transition: 0.3s;
}
.gallery-item:hover img {
  filter: saturate(1);
  transform: scale(1.035);
}
.gallery-item:nth-child(n + 4) {
  grid-column: span 3;
}
.coupon-section {
  background: var(--carbon);
}
.coupon-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: center;
  gap: 4rem;
  background: #fff;
  padding: clamp(2.3rem, 5vw, 5rem);
  overflow: hidden;
}
.coupon-panel::before {
  content: "SERVICE SAVINGS";
  position: absolute;
  left: -1.2rem;
  bottom: -1.1rem;
  color: rgba(32, 35, 40, 0.045);
  font-family: "Bebas Neue";
  font-size: clamp(5rem, 12vw, 12rem);
  white-space: nowrap;
}
.coupon-panel > div,
.coupon-link {
  position: relative;
  z-index: 1;
}
.coupon-panel h2 {
  margin: 0.7rem 0 1rem;
}
.coupon-panel p {
  color: var(--steel);
}
.coupon-link {
  display: block;
  background: var(--red);
  padding: 12px 12px 0 0;
  transition: 0.2s;
}
.coupon-link:hover {
  transform: rotate(-1deg) scale(1.015);
}
.coupon-link img {
  display: block;
  width: 100%;
}
.faq-section {
  background: #fff;
}
.faq-section .section-heading h2 {
  font-family: "Roboto", sans-serif;
  font-size: clamp(2.15rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
}
.accordion {
  max-width: 1050px;
  border-top: 7px solid var(--carbon);
}
.accordion-item {
  border: 0 !important;
  border-bottom: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: transparent;
}
.accordion-button {
  min-height: 82px;
  padding: 1.35rem 0.2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: var(--carbon);
  font-size: 1.05rem;
  background: transparent;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--red);
}
.accordion-button::after {
  filter: grayscale(1);
}
.cta-band {
  position: relative;
  background: var(--red);
  padding: 3.7rem 0;
  color: #fff;
  overflow: hidden;
}
.cta-band::after {
  content: "77530";
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-48%);
  font-family: "Bebas Neue";
  font-size: 13rem;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
}
.cta-band .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  margin: 0.3rem 0 0;
}
.cta-band .eyebrow {
  color: #fff;
  font-size: 0.68rem;
}
.contact-section {
  background: var(--concrete);
}
.contact-shell {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  background: #fff;
  box-shadow: var(--shadow);
}
.contact-copy {
  position: relative;
  padding: clamp(2.7rem, 5vw, 5rem);
  background: var(--carbon);
  color: #fff;
  overflow: hidden;
}
.contact-copy::after {
  content: "//";
  position: absolute;
  right: 1.5rem;
  bottom: -1rem;
  font-family: "Bebas Neue";
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.06);
}
.contact-copy h2 {
  color: #fff;
  margin: 0.6rem 0 1rem;
}
.contact-copy .eyebrow,
.contact-copy a {
  color: #fff;
}
.contact-points {
  padding-left: 1.2rem;
  margin-top: 2rem;
}
.contact-points li::marker {
  color: var(--red);
}
form.CUS {
  padding: clamp(1.8rem, 4vw, 4rem);
  margin: 0;
}
form.CUS fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
form.CUS p {
  margin-bottom: 1rem;
}
.form-control {
  min-height: 55px;
  border: 1px solid #ccd0d3;
  border-radius: 0;
  padding: 0.8rem 0.9rem;
  font-size: 1rem;
  background: #f8f8f6;
}
.form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(228, 61, 55, 0.13);
  background: #fff;
}
.service-textarea {
  height: 132px;
}
.btn-submit {
  width: 100%;
  margin-top: 0.5rem;
}
.inner-hero {
  position: relative;
  padding: clamp(6rem, 11vw, 10rem) 0;
  background: var(--carbon);
  color: #fff;
  overflow: hidden;
  border-bottom: 12px solid var(--red);
}
.inner-hero::before {
  content: "";
  position: absolute;
  right: 5%;
  top: -40%;
  width: 420px;
  height: 180%;
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.035) 0 16px,
    transparent 16px 34px
  );
  transform: skewX(-12deg);
}
.inner-hero::after {
  content: "CHANNELVIEW • 77530";
  position: absolute;
  right: 3%;
  bottom: 1rem;
  color: rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
}
.inner-hero .container {
  position: relative;
  z-index: 1;
}
.inner-hero h1 {
  max-width: 1050px;
  color: #fff;
}
.inner-hero p {
  max-width: 780px;
  font-size: 1.15rem;
  color: #c9ced2;
  border-left: 5px solid var(--red);
  padding-left: 1.2rem;
}
.narrow-copy {
  max-width: 1020px;
}
.narrow-copy > p {
  font-size: 1.12rem;
}
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.info-cards article,
.answer-card {
  padding: 2rem;
  background: #fff;
  border-left: 6px solid var(--red);
  box-shadow: 0 8px 25px rgba(32, 35, 40, 0.07);
}
.info-cards h2,
.info-cards h3,
.answer-card h2 {
  font-size: 1.8rem;
}
.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.location-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.location-feature iframe,
.footer-map iframe {
  border: 0;
  width: 100%;
}
.status-card {
  max-width: 800px;
  text-align: center;
  background: #fff;
  padding: clamp(2rem, 6vw, 5rem);
  border-top: 9px solid var(--red);
  box-shadow: var(--shadow);
}
.status-icon,
.error-code {
  display: block;
  color: var(--red);
  font-family: "Bebas Neue";
  font-size: 6rem;
  line-height: 1;
}
.error-code {
  font-size: clamp(6rem, 16vw, 12rem);
}
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.sitemap-card {
  padding: 1.5rem;
  background: #fff;
  border-left: 5px solid var(--red);
  text-decoration: none;
  font-weight: 700;
}
.site-footer {
  background: var(--black);
  color: #aeb4b9;
  padding: 0 0 1.5rem;
}
.site-footer a {
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.6fr 1.7fr;
  gap: 0;
}
.footer-grid > div:not(.footer-map) {
  padding: 4.5rem 2rem 3rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand {
  padding-left: 0 !important;
}
.footer-brand img {
  width: 270px;
  height: auto;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  max-width: 340px;
}
.site-footer h2 {
  font-family: "Bebas Neue";
  font-size: 1.45rem;
  color: var(--red);
  margin-bottom: 1rem;
  letter-spacing: 0.07em;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li {
  margin: 0.4rem 0;
}
.footer-map {
  position: relative;
  min-height: 390px;
}
.footer-map h2 {
  position: absolute;
  z-index: 1;
  left: 1rem;
  top: 1rem;
  background: var(--red);
  color: #fff;
  margin: 0;
  padding: 0.55rem 1rem;
}
.footer-map iframe {
  height: 100%;
  min-height: 390px;
  filter: grayscale(1) invert(0.9) contrast(0.85);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
}
.mobile-call {
  display: none;
}
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s,
    transform 0.5s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.blog-content {
  max-width: 1050px;
}
.blogbox,
.blogpost {
  padding: clamp(1.5rem, 3vw, 3rem);
  background: #fff;
  border-left: 7px solid var(--red);
  box-shadow: var(--shadow);
  clear: both;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.blogbox .blogimg img,
.blogpost .blog_wrapper img {
  float: right;
  width: 35%;
  height: auto;
  margin: 0 0 1rem 1.5rem;
  filter: saturate(0.78);
}
.blogbox .read-more a {
  display: inline-flex;
  background: var(--red);
  color: #fff;
  padding: 0.7rem 1.1rem;
  text-decoration: none;
}
.socialbox {
  text-align: center;
  width: 100%;
}
.social-share-btns {
  display: inline-flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.social-share-btns .share-btn {
  padding: 0.55rem 0.9rem;
  color: #fff;
  background: var(--carbon);
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: rgba(17, 19, 22, 0.96);
  padding: 2rem;
}
.lightbox[hidden] {
  display: none;
}
.lightbox img {
  max-width: min(1100px, 95vw);
  max-height: 88vh;
}
.lightbox-close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  width: 48px;
  height: 48px;
  border: 0;
  background: var(--red);
  color: #fff;
  font-size: 1.5rem;
}
body.home-page main {
  display: flex;
  flex-direction: column;
}
.home-page .hero-home {
  order: 1;
}
.home-page .trust-strip {
  order: 2;
}
.home-page .services-section {
  order: 3;
}
.home-page .approved-content {
  order: 4;
}
.home-page .gallery-section {
  order: 5;
}
.home-page .proof-section {
  order: 6;
}
.home-page .coupon-section {
  order: 7;
}
.home-page .faq-section {
  order: 8;
}
.home-page .cta-band {
  order: 9;
}
.home-page .contact-section {
  order: 10;
}
@media (max-width: 1199.98px) {
  .navbar-collapse {
    padding: 1rem 0;
  }
  .navbar-nav .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.5rem;
    border: 0;
    border-left: 4px solid var(--red);
    box-shadow: none;
  }
  .navbar-nav .dropdown-item {
    padding: 0.7rem 0.9rem;
    min-height: 44px;
    white-space: normal;
  }
  .header-phone {
    margin: 1rem 0 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-map {
    grid-column: 1/-1;
  }
  .content-card-featured::before {
    left: calc(45% + 1.5rem);
  }
}
@media (max-width: 991.98px) {
  .hero {
    min-height: 760px;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 12, 14, 0.94), rgba(10, 12, 14, 0.55)),
      linear-gradient(0deg, rgba(10, 12, 14, 0.65), transparent);
  }
  .hero-content {
    padding: 5rem 1.5rem 8rem !important;
  }
  .content-card-featured,
  .coupon-panel,
  .contact-shell,
  .location-feature {
    grid-template-columns: 1fr;
  }
  .content-card-featured::before {
    left: 1.5rem;
    top: calc(390px + 2rem);
  }
  .content-card-image {
    min-height: 390px;
  }
  .content-card-copy {
    padding: 5rem 2.5rem 3rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item,
  .gallery-item:nth-child(n + 4) {
    grid-column: auto;
  }
  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .sitemap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .coupon-link {
    max-width: 520px;
    margin: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767.98px) {
  body {
    font-size: 16px;
    padding-bottom: 64px;
  }
  .topbar-inner {
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.62rem;
  }
  .topbar-inner span:last-child {
    display: none;
  }
  .navbar {
    min-height: 76px;
  }
  .navbar-brand img {
    width: 185px;
  }
  .hero {
    min-height: 720px;
    align-items: flex-end;
  }
  .hero-media img {
    object-position: 62% center;
  }
  .hero-shade {
    background: linear-gradient(
      0deg,
      rgba(10, 12, 14, 0.99) 0%,
      rgba(10, 12, 14, 0.84) 58%,
      rgba(10, 12, 14, 0.18) 100%
    );
  }
  .hero-content {
    padding: 14rem 1rem 8.3rem !important;
  }
  .hero-content::before {
    display: none;
  }
  .hero-content h1 {
    font-size: clamp(4rem, 18vw, 6rem);
  }
  .hero-content p {
    font-size: 0.98rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero-offer {
    left: 0;
    right: 0;
    bottom: 0;
    min-width: 0;
    padding: 0.8rem 1rem 0.75rem 3.6rem;
    clip-path: none;
  }
  .hero-offer::before {
    left: 1rem;
    top: 0.25rem;
    font-size: 2.2rem;
  }
  .hero-offer strong {
    font-size: 1.35rem;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-grid > div {
    padding: 1.3rem 0.8rem 1.2rem 2.7rem;
    border-bottom: 1px solid var(--line);
  }
  .trust-grid > div::before {
    left: 0.8rem;
    top: 0.9rem;
  }
  .section {
    padding: 4.5rem 0;
  }
  .services-grid {
    margin-right: -1rem;
  }
  .content-card,
  .content-card:nth-child(even),
  .content-card:nth-child(odd):not(.content-card-featured) {
    margin: 0;
    padding: 4.5rem 1.4rem 1.8rem;
    border-left-width: 6px;
  }
  .content-card::before {
    left: 1.3rem;
    top: 1.1rem;
  }
  .content-card-featured {
    padding: 0;
  }
  .content-card-featured::before {
    top: calc(300px + 1.3rem);
  }
  .content-card-image {
    min-height: 300px;
  }
  .content-card-copy {
    padding: 4.7rem 1.5rem 2rem;
  }
  .before-after,
  .answer-grid {
    grid-template-columns: 1fr;
  }
  .before-after figure + figure {
    border-left: 0;
    border-top: 6px solid var(--carbon);
  }
  .before-after img {
    height: 320px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .gallery-item,
  .gallery-item:nth-child(n + 4) {
    grid-column: auto;
  }
  .coupon-panel {
    padding: 2rem 1.4rem;
    gap: 2rem;
  }
  .cta-band .container {
    align-items: flex-start;
    flex-direction: column;
  }
  .cta-band .eyebrow {
    font-size: 1rem;
  }
  .info-cards,
  .sitemap-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:not(.footer-map) {
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer-map {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .mobile-call {
    position: fixed;
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
    bottom: 0;
    height: 64px;
    background: var(--red);
    color: #fff !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    text-decoration: none;
    box-shadow: 0 -8px 24px rgba(17, 19, 22, 0.25);
  }
  .blogbox .blogimg img,
  .blogpost .blog_wrapper img {
    float: none;
    width: 100%;
    margin: 0 0 1rem;
  }
}
@media (max-width: 420px) {
  .hero-actions .btn {
    width: 100%;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .navbar-brand img {
    width: 165px;
  }
  .before-after img {
    height: 280px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .service-card,
  .gallery-item img {
    transition: none;
  }
}
