:root {
  --onyx: #0b0b0d;
  --charcoal: #1e1e20;
  --slate: #5a5a5f;
  --stone: #f2f2f2;
  --blue: #005bff;
  --blue-dark: #003cab;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--stone);
  background: var(--onyx);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  background: rgba(11, 11, 13, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  transition: padding 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(11, 11, 13, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand-logo {
  display: block;
  width: clamp(156px, 18vw, 250px);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav a {
  padding: 8px 0;
  transition: color 160ms ease;
}

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

.header-call {
  justify-self: end;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(11, 11, 13, 0.98) 0%, rgba(14, 16, 21, 0.94) 42%, rgba(0, 91, 255, 0.2) 100%),
    linear-gradient(145deg, transparent 0 42%, rgba(255, 255, 255, 0.08) 42.2% 42.6%, transparent 42.8% 100%),
    radial-gradient(circle at 82% 18%, rgba(0, 91, 255, 0.22), transparent 34%),
    #0b0b0d;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(11, 11, 13, 0), var(--onyx));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  min-height: 92vh;
  margin: 0 auto;
  padding: 116px 0 64px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--blue);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.split-copy h2,
.work-band h2,
.contact h2 {
  margin: 0;
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 740px;
  font-size: clamp(42px, 8vw, 92px);
  line-height: 0.94;
}

.hero-lede {
  max-width: 670px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 21px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 32px rgba(0, 91, 255, 0.22);
}

.btn-primary:hover {
  background: #1267ff;
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 650px;
  margin: 42px 0 0;
}

.hero-stats div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.hero-stats dt {
  color: var(--white);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 28px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.estimate-panel {
  align-self: end;
  padding: 28px;
  background: rgba(14, 15, 18, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.estimate-panel h2 {
  margin: 0;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.estimate-panel p {
  margin: 8px 0 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.estimate-panel label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.estimate-panel input,
.estimate-panel select {
  width: 100%;
  min-height: 46px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3px;
  padding: 10px 12px;
  outline: none;
}

.estimate-panel input:focus,
.estimate-panel select:focus {
  border-color: var(--blue);
}

.estimate-panel select option {
  color: var(--onyx);
}

.estimate-panel .btn {
  width: 100%;
}

.estimate-panel .form-status {
  min-height: 21px;
  margin-bottom: 0;
  color: var(--white);
  font-weight: 700;
}

.ghl-form-slot {
  margin: 20px 0 16px;
}

.ghl-form-slot iframe {
  display: block;
  width: 100%;
  min-height: 440px;
  background: var(--white);
  border: 0;
  border-radius: 3px;
}

.ghl-placeholder {
  display: grid;
  place-items: center;
  min-height: 270px;
  padding: 26px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(0, 91, 255, 0.12), transparent 48%),
    rgba(255, 255, 255, 0.07);
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-radius: 3px;
}

.ghl-placeholder span {
  color: var(--white);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ghl-placeholder p {
  max-width: 260px;
  margin: 10px auto 0;
}

.ghl-fallback {
  width: 100%;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #08090a;
}

.trust-strip div {
  min-height: 116px;
  padding: 26px clamp(18px, 3vw, 38px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 14px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 116px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.65fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  margin-bottom: 42px;
}

.section-heading.compact {
  display: block;
  max-width: 820px;
}

.section h2,
.split-copy h2,
.work-band h2,
.contact h2 {
  font-size: clamp(31px, 4.8vw, 58px);
  line-height: 1.02;
}

.section-heading p,
.split-copy p,
.contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-grid article {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 28px;
  background: #111215;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  color: var(--blue);
  border: 1px solid rgba(0, 91, 255, 0.55);
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 800;
}

.service-grid h3,
.timeline h3,
.work-grid h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.service-grid p,
.timeline p,
.work-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
}

.service-grid a {
  margin-top: auto;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.split-section {
  display: block;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  background: #101114;
}

.split-copy {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
}

.split-mark {
  position: absolute;
  top: 34px;
  right: clamp(18px, 4vw, 54px);
  width: clamp(74px, 10vw, 130px);
  opacity: 0.15;
  pointer-events: none;
  filter: grayscale(1) drop-shadow(0 14px 28px rgba(0, 0, 0, 0.35));
}

.split-copy p {
  margin-top: 22px;
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.76);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 13px;
  height: 2px;
  background: var(--blue);
}

.cleaning-cta {
  padding: clamp(72px, 8vw, 106px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(115deg, rgba(0, 91, 255, 0.18), transparent 44%),
    linear-gradient(180deg, #f2f2f2, #dfe1e5);
  color: var(--onyx);
}

.cleaning-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.cleaning-copy .eyebrow {
  color: var(--blue-dark);
}

.cleaning-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--onyx);
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  text-transform: uppercase;
}

.cleaning-copy p {
  max-width: 660px;
  margin: 20px 0 30px;
  color: rgba(11, 11, 13, 0.7);
  font-size: 17px;
}

.cleaning-price-card {
  padding: clamp(26px, 4vw, 40px);
  background: var(--onyx);
  color: var(--white);
  border: 1px solid rgba(11, 11, 13, 0.2);
  box-shadow: 0 24px 60px rgba(11, 11, 13, 0.22);
}

.cleaning-price-card > span {
  display: block;
  margin-bottom: 24px;
  color: var(--blue);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: end;
}

.price-old,
.price-new {
  display: grid;
  gap: 8px;
}

.price-old small,
.price-new small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-old strong,
.price-new strong {
  font-family: Montserrat, Inter, sans-serif;
  line-height: 0.95;
  text-transform: uppercase;
}

.price-old strong {
  position: relative;
  width: fit-content;
  color: rgba(255, 255, 255, 0.42);
  font-size: clamp(42px, 5vw, 68px);
}

.price-old strong::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 54%;
  height: 5px;
  background: var(--blue);
  transform: rotate(-11deg);
  transform-origin: center;
}

.price-new strong {
  color: var(--white);
  font-size: clamp(58px, 7vw, 94px);
  text-shadow: 0 0 28px rgba(0, 91, 255, 0.28);
}

.cleaning-price-card p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-top: 38px;
}

.timeline article {
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.timeline span {
  display: block;
  margin-bottom: 34px;
  color: var(--blue);
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.gallery {
  padding-top: clamp(54px, 7vw, 90px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-grid article {
  overflow: hidden;
  background: #111215;
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.gallery-grid .project-featured {
  grid-column: span 2;
  background:
    linear-gradient(145deg, rgba(0, 91, 255, 0.1), transparent 40%),
    #111215;
}

.project-video-wrap {
  position: relative;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 46%),
    radial-gradient(circle at 70% 22%, rgba(0, 91, 255, 0.26), transparent 34%),
    linear-gradient(35deg, #16191f 0 34%, #464c56 34% 36%, #101217 36% 58%, #2e3540 58% 60%, #090a0d 60% 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.video-label {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 1;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}

.project-video-wrap video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: transparent;
}

.project-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.project-photo-grid img {
  width: 100%;
  height: 172px;
  object-fit: cover;
}

.project-photo-grid .project-photo-main {
  grid-column: 1 / -1;
  height: 285px;
  object-position: center 46%;
}

.friendswood-photo-grid .project-photo-main {
  object-position: center 42%;
}

.friendswood-photo-grid img:nth-child(2) {
  object-position: center 40%;
}

.friendswood-photo-grid img:nth-child(4) {
  grid-column: 1 / -1;
  object-position: center 58%;
}

.pasadena-project .project-copy {
  background:
    linear-gradient(115deg, rgba(0, 91, 255, 0.08), transparent 42%),
    #111215;
}

.friendswood-project .project-copy {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.05), transparent 40%),
    #111215;
}

.deer-park-photo-grid .project-photo-main {
  object-position: center 48%;
}

.deer-park-photo-grid img:nth-child(2) {
  object-position: center 54%;
}

.deer-park-photo-grid img:nth-child(3) {
  object-position: center 56%;
}

.deer-park-photo-grid img:nth-child(4) {
  grid-column: 1 / -1;
  object-position: center 58%;
}

.deer-park-project .project-copy {
  background:
    linear-gradient(115deg, rgba(0, 91, 255, 0.07), transparent 44%),
    #111215;
}

.project-visual {
  position: relative;
  min-height: 240px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 45%),
    linear-gradient(35deg, #181a1f 0 35%, #30333a 35% 37%, #111318 37% 52%, #3b3f47 52% 54%, #17191e 54% 100%);
}

.project-visual::before,
.project-visual::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  transform: skewY(-12deg);
  border-radius: 2px;
}

.project-visual::before {
  top: 32%;
  height: 38%;
  background: repeating-linear-gradient(90deg, #4a4f58 0 12px, #343941 12px 24px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.3);
}

.project-visual::after {
  top: 54%;
  height: 4px;
  background: var(--blue);
  opacity: 0.9;
}

.project-visual-two {
  background:
    radial-gradient(circle at 72% 24%, rgba(0, 91, 255, 0.2), transparent 30%),
    linear-gradient(35deg, #111318 0 36%, #555b64 36% 38%, #171a20 38% 56%, #333944 56% 58%, #101116 58% 100%);
}

.project-visual-three {
  background:
    linear-gradient(180deg, rgba(0, 91, 255, 0.12), transparent 48%),
    repeating-linear-gradient(0deg, #242831 0 22px, #1a1d24 22px 44px);
}

.project-visual-three::before {
  top: 22%;
  height: 56%;
  transform: none;
  background: linear-gradient(90deg, #323844, #565d68, #262c36);
}

.project-visual-four {
  background:
    linear-gradient(145deg, transparent 0 48%, rgba(0, 91, 255, 0.18) 48% 50%, transparent 50% 100%),
    linear-gradient(35deg, #191b20 0 32%, #686e78 32% 35%, #14161b 35% 60%, #3c424c 60% 63%, #111217 63% 100%);
}

.project-copy {
  padding: 22px;
}

.project-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-copy h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.project-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.reviews-section {
  padding: clamp(72px, 9vw, 112px) 0;
  background: #08090a;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.reviews-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.reviews-inner h2 {
  margin: 0;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(31px, 4.8vw, 58px);
  line-height: 1.02;
  text-transform: uppercase;
}

.reviews-grid {
  display: grid;
  gap: 18px;
}

.reviews-grid article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.stars {
  margin-bottom: 18px;
  color: var(--blue);
  letter-spacing: 0.08em;
}

.reviews-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.reviews-grid footer {
  display: grid;
  gap: 3px;
  margin-top: 20px;
}

.reviews-grid strong {
  color: var(--white);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reviews-grid span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
}

.work-band {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  padding: clamp(72px, 9vw, 112px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(0, 91, 255, 0.16), rgba(0, 91, 255, 0)),
    var(--charcoal);
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.work-grid article {
  min-height: 220px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(30px, 7vw, 90px);
  align-items: center;
  padding: clamp(32px, 6vw, 72px);
  background: var(--stone);
  color: var(--onyx);
}

.contact-card .eyebrow {
  color: var(--blue-dark);
}

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

.contact p {
  margin-top: 16px;
  color: rgba(11, 11, 13, 0.68);
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-actions a,
.contact-actions span {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(11, 11, 13, 0.18);
  color: var(--onyx);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-link {
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  letter-spacing: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px clamp(18px, 4vw, 58px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-values span {
  position: relative;
}

.footer-values span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 2px;
  height: 2px;
  background: var(--blue);
  transform: translateY(-50%);
}

.footer-logo {
  width: clamp(176px, 20vw, 280px);
}

.mobile-call {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    justify-self: end;
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
    cursor: pointer;
  }

  .nav-toggle span {
    height: 2px;
    background: var(--white);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    grid-column: 1 / -1;
    padding: 18px;
    background: rgba(11, 11, 13, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav.is-open {
    display: grid;
  }

  .header-call {
    display: none;
  }

  .hero-inner,
  .section-heading,
  .split-section,
  .work-band,
  .cleaning-inner,
  .reviews-inner,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(11, 11, 13, 0.98) 0%, rgba(14, 16, 21, 0.92) 52%, rgba(11, 11, 13, 0.98) 100%),
      linear-gradient(140deg, transparent 0 42%, rgba(255, 255, 255, 0.08) 42.2% 42.8%, transparent 43% 100%),
      radial-gradient(circle at 82% 12%, rgba(0, 91, 255, 0.2), transparent 42%),
      #0b0b0d;
  }

  .estimate-panel {
    align-self: auto;
  }

  .trust-strip,
  .service-grid,
  .timeline,
  .gallery-grid,
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid .project-featured {
    grid-column: span 2;
  }

}

@media (max-width: 620px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand-logo {
    width: 158px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 108px;
  }

  .hero-actions,
  .hero-stats,
  .trust-strip,
  .service-grid,
  .timeline,
  .gallery-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid .project-featured {
    grid-column: auto;
  }

  .hero-actions {
    display: grid;
  }

  .hero-stats {
    gap: 12px;
  }

  .estimate-panel {
    padding: 22px;
  }

  .trust-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .service-grid article {
    min-height: 250px;
  }

  .split-copy {
    padding-inline: 18px;
  }

  .contact-card {
    padding-inline: 20px;
  }

  .cleaning-cta {
    padding-inline: 18px;
  }

  .price-compare {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
    padding-bottom: 96px;
  }

  .footer-values {
    justify-content: flex-start;
    gap: 9px 14px;
    font-size: 11px;
    line-height: 1.7;
  }

  .footer-values span:not(:last-child)::after {
    right: -8px;
  }

  .mobile-call {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    color: var(--white);
    background: var(--blue);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 4px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
}
