:root {
  --bg: #05070a;
  --bg-soft: #090d12;
  --ink: #030509;
  --panel: #0d131a;
  --panel-2: #111922;
  --line: rgba(255, 255, 255, 0.075);
  --text: #f6f8fb;
  --muted: #a7b0bc;
  --soft: #d8e0e9;
  --blue: #32a7ea;
  --blue-deep: #1267d9;
  --orange: #f28a2e;
  --orange-soft: #f3bd72;
  --success: #dff7ff;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
  --max: 1180px;
  color-scheme: dark;
}

/* Final design-system refactor: matte technical, quieter, less template-like. */
:root {
  --bg: #070807;
  --bg-soft: #0b0d0e;
  --panel: #111416;
  --panel-2: #161a1d;
  --line: rgba(238, 233, 224, 0.09);
  --text: #f1eee8;
  --muted: #a8adb1;
  --soft: #c9ced1;
  --orange: #e5842d;
  --orange-soft: #d8a263;
  --blue: #7caec8;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

body {
  background:
    linear-gradient(180deg, #090a0a 0%, #070807 42%, #0a0b0b 100%),
    var(--bg);
  color: var(--text);
  letter-spacing: 0;
}

body::before {
  opacity: 0.26;
  background-size: 180px 180px;
  mask-image: linear-gradient(to bottom, black, transparent 48%);
}

.site-header {
  border-bottom-color: rgba(238, 233, 224, 0.075);
  background: rgba(8, 9, 9, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.site-header::after,
.section::before,
.contact-section::before,
.services::after,
.contact-form::before {
  display: none;
}

.brand-mark,
.footer-logo {
  border-color: rgba(238, 233, 224, 0.1);
  background: #0a0b0b;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.nav {
  color: #c4c8c9;
  font-size: 0.94rem;
  font-weight: 620;
}

.nav a::after {
  bottom: 7px;
  background: rgba(229, 132, 45, 0.72);
}

.header-call,
.menu-toggle,
.mobile-nav {
  border-color: rgba(238, 233, 224, 0.11);
  background: rgba(12, 14, 15, 0.9);
  box-shadow: none;
}

.header-call {
  color: #eee7dd;
}

.header-call .icon,
.mobile-nav-call .icon,
.btn .icon {
  width: 16px;
  height: 16px;
}

.eyebrow {
  margin-bottom: 12px;
  color: #c99a63;
  font-size: 0.68rem;
  font-weight: 680;
  letter-spacing: 0.12em;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 4.05rem);
  font-weight: 780;
  line-height: 1.04;
}

h2 {
  font-size: clamp(1.48rem, 2vw, 2.15rem);
  font-weight: 720;
  line-height: 1.14;
}

h3 {
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  font-weight: 690;
  line-height: 1.28;
}

p,
li,
small,
input,
select,
textarea {
  line-height: 1.62;
}

.section,
.contact-section {
  padding: clamp(82px, 9vw, 126px) clamp(18px, 4vw, 56px);
}

.section-heading,
.services-layout,
.brand-section-inner,
.client-layout,
.why,
.process-heading,
.process-steps,
.reviews-heading,
.review-grid,
.reviews-cta,
.contact-shell,
.footer-inner,
.footer-bottom {
  max-width: 1120px;
}

.services,
.brand-section,
.reviews,
.client-types,
.process,
.contact-section,
.site-footer {
  background-image: none;
}

.services,
.reviews {
  background: #090a0a;
}

.brand-section,
.process {
  background: #0d0f10;
}

.client-types,
.contact-section {
  background: #080909;
}

.section-heading p:last-child,
.services-intro p:not(.eyebrow),
.brand-section-copy p:not(.eyebrow),
.client-intro p:not(.eyebrow),
.why-copy p,
.process-heading p:last-child,
.reviews-heading p:last-child,
.contact-copy p:not(.eyebrow, .contact-proof) {
  color: #aeb4b7;
  font-size: clamp(0.96rem, 1.15vw, 1.04rem);
  line-height: 1.68;
}

.btn,
.service-card-cta,
.mobile-call,
.mobile-nav-call {
  min-height: 50px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 720;
  letter-spacing: 0;
}

.btn-primary,
.hero .btn-primary,
.service-card-cta,
.mobile-call,
.mobile-nav-call {
  border: 1px solid rgba(238, 159, 81, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 211, 157, 0.2), transparent 42%),
    #e5842d;
  color: #17100a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 10px 22px rgba(0, 0, 0, 0.16);
}

.btn-primary:hover,
.hero .btn-primary:hover,
.service-card-cta:hover,
.mobile-call:hover,
.mobile-nav-call:hover {
  border-color: rgba(244, 186, 124, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 221, 181, 0.24), transparent 42%),
    #ec8f36;
  filter: none;
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 14px 26px rgba(0, 0, 0, 0.18);
}

.btn-secondary,
.hero .btn-secondary {
  border-color: rgba(238, 233, 224, 0.15);
  background: rgba(238, 233, 224, 0.035);
  color: #ebe7df;
  box-shadow: none;
}

.btn-secondary:hover,
.hero .btn-secondary:hover {
  border-color: rgba(238, 233, 224, 0.25);
  background: rgba(238, 233, 224, 0.065);
}

.hero {
  min-height: min(790px, 82svh);
  background-image:
    linear-gradient(90deg, rgba(7, 8, 7, 0.94) 0%, rgba(7, 8, 7, 0.78) 38%, rgba(7, 8, 7, 0.26) 74%, rgba(7, 8, 7, 0.1) 100%),
    linear-gradient(0deg, rgba(7, 8, 7, 0.52), rgba(7, 8, 7, 0.04) 54%, rgba(7, 8, 7, 0.28)),
    url("assets/hero-actions-gaz-equipment.png");
  background-position: 70% center;
}

.hero::before {
  background: linear-gradient(270deg, rgba(229, 132, 45, 0.055), transparent 34%);
}

.hero-copy {
  max-width: 650px;
}

.hero-panel {
  width: min(100%, 300px);
  padding: 16px;
  border-color: rgba(238, 233, 224, 0.13);
  background: rgba(10, 12, 13, 0.76);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.hero-panel span {
  color: #c99a63;
  font-size: 0.72rem;
  font-weight: 660;
}

.hero-panel a {
  font-weight: 760;
}

.services-layout {
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 70px);
}

.services-intro {
  position: sticky;
  top: 108px;
  display: block;
}

.service-assurance,
.services-bottom-cta {
  border-color: rgba(238, 233, 224, 0.1);
  background: #101315;
  box-shadow: none;
}

.service-assurance {
  padding: 14px 0 0;
  border-width: 1px 0 0;
  border-radius: 0;
  background: transparent;
}

.service-assurance span {
  min-height: 34px;
  color: #cfd4d5;
  font-weight: 620;
}

.service-assurance .icon {
  color: #c99a63;
}

.service-categories {
  grid-template-columns: 1fr;
  gap: 12px;
}

.service-category,
.client-item,
.review-card,
.process-call,
.contact-form,
.contact-link,
.legal-card {
  border: 1px solid rgba(238, 233, 224, 0.09);
  border-radius: 6px;
  background: #111416;
  box-shadow: none;
}

.service-category {
  padding: clamp(22px, 2.5vw, 30px);
}

.service-category::after,
.service-category::before,
.review-card::before {
  display: none;
}

.service-category:hover,
.client-item:hover {
  border-color: rgba(238, 233, 224, 0.16);
  background: #14181a;
}

.service-card-head {
  margin-bottom: 18px;
}

.service-icon {
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
}

.service-icon .title-icon,
.title-icon,
.client-icon,
.proof-icon {
  color: #9eb8c5;
}

.service-category h3 {
  font-size: clamp(1.12rem, 1.35vw, 1.36rem);
}

.service-category p:not(.category-label) {
  margin-bottom: 20px;
  color: #aeb4b7;
}

.category-label {
  color: #b98a55;
  font-weight: 650;
}

.service-category li::before {
  background: rgba(201, 154, 99, 0.72);
}

.services-bottom-cta {
  padding: clamp(20px, 3vw, 28px);
  background: #0d1011;
}

.services-bottom-cta span {
  color: #b98a55;
}

.brand-logo-grid {
  gap: 10px;
}

.brand-logo-grid img {
  height: 82px;
  padding: 17px 22px;
  border-color: rgba(238, 233, 224, 0.13);
  background: #e8ecef;
  filter: none;
  opacity: 1;
  box-shadow: none;
}

.why-media {
  min-height: 480px;
  box-shadow: none;
}

.proof-list {
  gap: 0 28px;
}

.proof-list div {
  padding: 18px 0;
}

.proof-list strong {
  font-size: 1rem;
  font-weight: 680;
}

.proof-list span {
  color: #aeb4b7;
}

.client-grid {
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(238, 233, 224, 0.085);
  border-radius: 6px;
  background: rgba(238, 233, 224, 0.085);
}

.client-item {
  min-height: 150px;
  border: 0;
  border-radius: 0;
  background: #111416;
}

.client-item span {
  font-size: 1.04rem;
  font-weight: 680;
}

.client-item small {
  color: #aeb4b7;
}

.location-card,
.client-check,
.reviews-cta {
  border-color: rgba(238, 233, 224, 0.09);
  background: transparent;
  box-shadow: none;
}

.location-card {
  max-width: 310px;
}

.process-call {
  border: 0;
  background: transparent;
}

.process-steps {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.process-steps::before {
  background: rgba(238, 233, 224, 0.09);
}

.process-steps article {
  min-height: 190px;
  padding: 28px;
  border-top: 1px solid rgba(238, 233, 224, 0.1);
  background: transparent;
}

.process-steps article + article {
  border-left-color: rgba(238, 233, 224, 0.1);
}

.process-steps span {
  margin-bottom: 24px;
  color: #b98a55;
  font-size: 0.78rem;
}

.process-steps h3 {
  font-size: 1.02rem;
}

.reviews-heading {
  margin-bottom: 28px;
}

.review-grid {
  gap: 12px;
}

.review-card {
  min-height: 230px;
  background: #111416;
}

.review-card-featured {
  background: #141719;
}

.stars {
  color: #c99a63;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.review-meta span {
  border-color: rgba(238, 233, 224, 0.11);
  color: #aebfca;
  background: transparent;
}

.review-card blockquote {
  color: #d5d9da;
  font-size: 0.98rem;
  line-height: 1.64;
}

.contact-shell {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.9fr);
  border: 1px solid rgba(238, 233, 224, 0.09);
  border-radius: 6px;
  background: #0e1112;
  box-shadow: none;
}

.contact-copy {
  padding: clamp(28px, 4vw, 48px);
}

.contact-phone {
  border-color: rgba(229, 132, 45, 0.34);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(229, 132, 45, 0.09), transparent 70%),
    #141719;
}

.contact-phone strong {
  color: #f3d2ad;
}

.contact-link {
  background: transparent;
}

.contact-form {
  padding: clamp(26px, 3.4vw, 38px);
  border-width: 0 0 0 1px;
  border-radius: 0;
  background: #121618;
}

input,
select,
textarea {
  border-color: rgba(238, 233, 224, 0.11);
  border-radius: 5px;
  background: #090b0c;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(229, 132, 45, 0.42);
  box-shadow: 0 0 0 3px rgba(229, 132, 45, 0.08);
}

.site-footer {
  background: #060707;
}

@media (max-width: 1040px) {
  .services-layout,
  .services-intro,
  .brand-section-inner,
  .client-layout,
  .why,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .services-intro,
  .client-intro {
    position: static;
  }

  .contact-form {
    border-width: 1px 0 0;
  }
}

@media (max-width: 680px) {
  .section,
  .contact-section {
    padding: 66px 16px;
  }

  h2 {
    font-size: clamp(1.36rem, 6vw, 1.76rem);
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto auto auto minmax(0, 1fr) auto;
    min-height: max(590px, calc(100svh - 78px));
    padding: clamp(54px, 9svh, 82px) 16px 128px;
    background-image:
      linear-gradient(90deg, rgba(7, 8, 7, 0.94) 0%, rgba(7, 8, 7, 0.72) 56%, rgba(7, 8, 7, 0.16) 100%),
      linear-gradient(0deg, rgba(7, 8, 7, 0.68), rgba(7, 8, 7, 0.08) 48%, rgba(7, 8, 7, 0.3)),
      url("assets/hero-actions-gaz-equipment.png");
    background-position: 86% center;
  }

  .hero-copy {
    display: contents;
  }

  .hero .eyebrow {
    grid-row: 2;
  }

  .hero h1 {
    grid-row: 3;
    font-size: clamp(1.92rem, 9.2vw, 2.42rem);
  }

  .hero-panel {
    grid-row: 4;
    margin-top: 26px;
  }

  .hero-actions {
    grid-row: 6;
    padding-top: 32px;
  }

  .service-assurance {
    display: none;
  }

  .service-categories,
  .review-grid,
  .process-steps {
    display: flex;
    gap: 12px;
    margin-inline: -16px;
    padding: 0 16px 10px;
    overflow-x: auto;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
  }

  .service-category,
  .review-card,
  .process-steps article {
    flex: 0 0 min(84vw, 340px);
    scroll-snap-align: start;
  }

  .client-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .client-item {
    min-height: auto;
  }

  .brand-logo-grid img {
    height: 58px;
  }

  .contact-shell {
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: max(570px, calc(100svh - 74px));
    padding: clamp(42px, 8svh, 66px) 14px 120px;
    background-position: 90% center;
  }
}

.brand-logo-grid img {
  height: 82px;
  padding: 17px 22px;
  border-color: rgba(238, 233, 224, 0.13);
  background: #e8ecef;
  filter: none;
  opacity: 1;
  box-shadow: none;
}

@media (max-width: 680px) {
  .brand-logo-grid img {
    height: 70px;
  }
}

.client-item .client-icon,
.proof-icon,
.service-assurance .icon,
.contact-phone .icon,
.contact-link .icon,
.process-call .icon {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo-grid img {
  height: 82px;
  padding: 17px 22px;
  border-color: rgba(238, 233, 224, 0.13);
  background: #e8ecef;
  filter: none;
  opacity: 1;
  box-shadow: none;
}

@media (max-width: 680px) {
  .brand-logo-grid img {
    height: 70px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #080b10 0%, var(--bg) 48%, #07090d 100%),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.011) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.011) 1px, transparent 1px);
  background-size: 128px 128px;
  mask-image: linear-gradient(to bottom, black, transparent 64%);
}

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

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon,
.title-icon,
.client-icon,
.proof-icon {
  flex: 0 0 auto;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: relative;
  z-index: 20;
  overflow: visible;
  padding: 12px clamp(16px, 4vw, 44px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(5, 8, 12, 0.82);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(20px) saturate(1.2);
}

.site-header::after {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 0;
  left: clamp(18px, 4vw, 56px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 138, 29, 0.34), rgba(54, 169, 255, 0.12), transparent);
  z-index: 0;
}

.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 42px);
  width: min(100%, 1360px);
  min-height: 76px;
  margin: 0 auto;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  margin-block: -14px -40px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(2, 4, 7, 0.76);
  box-shadow:
    0 0 0 8px rgba(5, 8, 12, 0.88),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.32);
  transform: translateY(20px);
}

.brand img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.nav {
  display: flex;
  gap: clamp(20px, 2.5vw, 34px);
  align-items: center;
  color: #c4ccd6;
  font-size: 0.96rem;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 12px 0;
  transition:
    color 180ms ease,
    text-shadow 180ms ease;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transform: scaleX(0.45);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  text-shadow: 0 0 18px rgba(255, 138, 29, 0.16);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 17px;
  border: 1px solid rgba(255, 138, 29, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(130deg, rgba(255, 138, 29, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(2, 4, 7, 0.58);
  color: #fff3e2;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.header-call:hover {
  border-color: rgba(255, 138, 29, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 34px rgba(255, 138, 29, 0.15);
  transform: translateY(-1px);
}

.header-call .icon {
  width: 18px;
  height: 18px;
  color: var(--orange-soft);
}

.header-call span,
.header-call small,
.header-call strong {
  display: block;
}

.header-call small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-call strong {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.015em;
}

.menu-toggle {
  position: relative;
  z-index: 3;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
    rgba(4, 7, 11, 0.72);
  color: var(--text);
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    background 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(255, 138, 29, 0.36);
  color: #fff4e5;
  outline: none;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  left: auto;
  z-index: 2;
  display: none;
  width: min(360px, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(5, 8, 12, 0.94);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px) saturate(1.15);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.site-header.is-menu-open .mobile-nav {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 7px;
  color: #d7dee8;
  font-size: 0.98rem;
  font-weight: 850;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  outline: none;
}

.mobile-nav-call {
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
  border: 1px solid rgba(255, 208, 138, 0.44);
  background: linear-gradient(180deg, #ffd18a 0%, #f29a36 48%, #d96e1f 100%);
  color: #140904 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    inset 0 -1px 0 rgba(95, 36, 0, 0.2),
    0 12px 26px rgba(223, 118, 34, 0.22);
}

.mobile-nav-call .icon {
  width: 17px;
  height: 17px;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.34fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  align-content: center;
  min-height: min(860px, 85svh);
  padding: clamp(70px, 8vw, 112px) clamp(18px, 4vw, 56px) clamp(42px, 5vw, 64px);
  max-width: none;
  margin: 0 auto;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(3, 5, 9, 0.93) 0%, rgba(3, 5, 9, 0.74) 38%, rgba(3, 5, 9, 0.22) 70%, rgba(3, 5, 9, 0.12) 100%),
    linear-gradient(0deg, rgba(3, 5, 9, 0.62), rgba(3, 5, 9, 0.02) 52%, rgba(3, 5, 9, 0.34)),
    url("assets/hero-actions-gaz-equipment.png");
  background-position: 62% center;
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(54, 169, 255, 0.07), transparent 30%),
    linear-gradient(270deg, rgba(255, 138, 29, 0.13), transparent 34%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 34%;
  content: "";
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-copy {
  max-width: 700px;
  padding: clamp(18px, 3vw, 28px) 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.eyebrow {
  margin: 0 0 14px;
  color: #ffd08a;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.45vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 2.55vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.06rem;
  line-height: 1.22;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--soft);
  font-size: clamp(1.04rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-proof {
  margin: 0;
  color: #e5d8c9;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  line-height: 1;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(105deg, #ff8a1d, #f7b64b);
  color: #160b03;
  box-shadow:
    0 14px 34px rgba(255, 138, 29, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.hero .btn-primary {
  padding-inline: 29px;
  background: linear-gradient(105deg, #ff8a1d, #efad46);
  box-shadow:
    0 10px 26px rgba(255, 138, 29, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hero .btn-primary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 14px 32px rgba(255, 138, 29, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.hero .btn-secondary {
  padding-inline: 27px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(5, 8, 12, 0.32);
}

.hero .btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(5, 8, 12, 0.46);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(5, 8, 12, 0.36);
  color: #fff7ec;
  backdrop-filter: blur(10px);
}

.hero-panel {
  justify-self: end;
  align-self: end;
  display: grid;
  gap: 8px;
  width: min(100%, 340px);
  padding: 19px;
  border: 1px solid rgba(255, 138, 29, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 138, 29, 0.035), rgba(255, 255, 255, 0.024)),
    rgba(5, 8, 13, 0.56);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transform: translateY(64px);
}

.hero-panel span,
.hero-panel a,
.hero-panel small,
.hero-panel em {
  display: block;
}

.hero-panel span {
  color: var(--orange-soft);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel small {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-panel em {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #d9e9f7;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 750;
}

.hero-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: clamp(1.45rem, 1.9vw, 1.85rem);
  font-weight: 950;
  line-height: 1;
}

.hero-service-strip {
  grid-column: 1 / -1;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  margin-top: clamp(16px, 3vw, 30px);
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(5, 8, 13, 0.34);
  backdrop-filter: blur(10px);
}

.hero-service-strip span {
  padding: 5px 10px;
  color: #e7d8c6;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-service-strip span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.section,
.contact-section {
  position: relative;
  padding: clamp(64px, 9vw, 112px) clamp(18px, 4vw, 56px);
}

.section::before,
.contact-section::before {
  position: absolute;
  top: 0;
  right: clamp(18px, 4vw, 56px);
  left: clamp(18px, 4vw, 56px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 138, 29, 0.36), rgba(255, 255, 255, 0.1), transparent);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
  gap: 26px;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto 38px;
}

.section-heading p:last-child,
.why-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.03rem;
}

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

.services {
  background:
    linear-gradient(120deg, rgba(54, 169, 255, 0.045), transparent 34%),
    linear-gradient(300deg, rgba(255, 138, 29, 0.07), transparent 38%),
    rgba(255, 255, 255, 0.012);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.86fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.services-intro {
  position: sticky;
  top: 112px;
}

.services-intro p:not(.eyebrow) {
  max-width: 390px;
  color: var(--muted);
  font-size: 1.03rem;
}

.service-inline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 16px;
  align-items: center;
  margin-top: 28px;
}

.service-categories {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.service-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-category {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: clamp(22px, 2.5vw, 28px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.024)),
    rgba(9, 14, 21, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 12px 34px rgba(0, 0, 0, 0.12);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.service-category::before {
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 138, 29, 0.5), rgba(54, 169, 255, 0.22), transparent);
}

.service-category:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 138, 29, 0.28);
}

.category-label {
  margin-bottom: 14px;
  color: #ffd08a;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-category h3 {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  font-size: clamp(1.28rem, 1.65vw, 1.7rem);
}

.title-icon {
  width: 26px;
  height: 26px;
  color: var(--orange-soft);
}

.service-category p:not(.category-label) {
  max-width: 530px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1rem;
}

.service-category ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-category li {
  position: relative;
  padding-left: 20px;
  color: var(--soft);
}

.service-category li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: rgba(255, 138, 29, 0.86);
  box-shadow: 0 0 16px rgba(255, 138, 29, 0.38);
}

.service-card-cta {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  padding: 13px 16px;
  border-radius: 8px;
  background: linear-gradient(105deg, #ff8a1d, #ffc15d);
  color: #160b03;
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(255, 138, 29, 0.12);
}

.text-cta {
  color: #ffe0b8;
  font-size: 0.95rem;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(255, 138, 29, 0.45);
  text-underline-offset: 6px;
}

.client-types {
  background:
    linear-gradient(120deg, rgba(255, 138, 29, 0.08), transparent 34%),
    linear-gradient(280deg, rgba(54, 169, 255, 0.045), transparent 42%),
    rgba(255, 255, 255, 0.025);
}

.client-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.client-intro {
  position: sticky;
  top: 94px;
}

.client-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.03rem;
}

.location-card {
  display: grid;
  gap: 7px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(255, 138, 29, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(130deg, rgba(255, 138, 29, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(8, 13, 20, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.location-card span {
  color: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-card strong {
  color: var(--text);
  font-size: 1.22rem;
  line-height: 1.1;
}

.location-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 8px;
  color: #fff0db;
  font-size: 0.94rem;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(255, 138, 29, 0.45);
  text-underline-offset: 6px;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.client-item {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.024)),
    rgba(10, 16, 24, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 14px 40px rgba(0, 0, 0, 0.12);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.client-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 138, 29, 0.07), rgba(54, 169, 255, 0.025)),
    rgba(10, 16, 24, 0.78);
}

.client-item span,
.client-item small {
  display: block;
}

.client-item span {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 0;
  font-size: 1.3rem;
  font-weight: 900;
}

.client-icon {
  width: 24px;
  height: 24px;
  color: var(--orange-soft);
}

.client-item small {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.client-check {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 138, 29, 0.095), rgba(54, 169, 255, 0.025)),
    rgba(8, 13, 20, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.client-check p {
  max-width: 560px;
  margin: 0;
  color: var(--soft);
  font-size: 0.98rem;
}

.why {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: stretch;
  max-width: var(--max);
  margin: 0 auto;
}

.why-media {
  min-height: 520px;
  border-radius: 8px;
  background-image:
    linear-gradient(180deg, rgba(3, 5, 9, 0.02), rgba(3, 5, 9, 0.54)),
    linear-gradient(90deg, rgba(3, 5, 9, 0.06), rgba(255, 138, 29, 0.08)),
    url("assets/technician-actions-gaz.png");
  background-position: 42% center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.why-content {
  display: grid;
  align-content: center;
  gap: 28px;
}

.why-copy p {
  max-width: 680px;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.proof-list div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 6px 12px;
  padding: 22px 22px 24px;
  border-radius: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 138, 29, 0.08), transparent),
    rgba(255, 255, 255, 0.04);
}

.proof-icon {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 8px;
  color: var(--orange-soft);
  background: rgba(255, 138, 29, 0.1);
}

.proof-list strong {
  color: var(--text);
  font-size: 1.08rem;
}

.proof-list span {
  color: var(--muted);
}

.contact-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 138, 29, 0.1), transparent 30%),
    linear-gradient(135deg, rgba(54, 169, 255, 0.045), transparent 42%),
    linear-gradient(315deg, rgba(255, 138, 29, 0.07), transparent 38%),
    #070b12;
}

.process {
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 138, 29, 0.08), transparent 32%),
    linear-gradient(260deg, rgba(54, 169, 255, 0.055), transparent 34%),
    rgba(255, 255, 255, 0.012);
}

.process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.34fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: end;
  max-width: var(--max);
  margin: 0 auto 34px;
}

.process-heading h2 {
  max-width: 660px;
}

.process-heading p:last-child {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.03rem;
}

.process-call {
  display: grid;
  gap: 6px;
  padding: 20px;
  border-radius: 8px;
  background:
    linear-gradient(105deg, rgba(255, 138, 29, 0.18), rgba(255, 193, 93, 0.08)),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.process-call span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-call strong {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #fff0db;
  font-size: 1.05rem;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(8, 13, 20, 0.86);
  box-shadow: var(--shadow);
}

.process-steps::before {
  position: absolute;
  top: 45px;
  right: 52px;
  left: 52px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(255, 138, 29, 0.45), rgba(54, 169, 255, 0.18), rgba(255, 138, 29, 0.34));
}

.process-steps article {
  position: relative;
  min-height: 235px;
  padding: 30px clamp(22px, 3vw, 34px) 28px;
  background: rgba(5, 9, 15, 0.34);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.process-steps article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.process-steps article:hover {
  background: rgba(255, 255, 255, 0.045);
}

.process-steps span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  border: 1px solid rgba(255, 138, 29, 0.5);
  border-radius: 50%;
  background: #080d14;
  color: var(--orange-soft);
  font-size: 0.85rem;
  font-weight: 900;
  box-shadow: 0 0 0 8px rgba(8, 13, 20, 0.84);
}

.process-steps h3 {
  max-width: 260px;
  margin-bottom: 14px;
  font-size: 1.12rem;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.reviews {
  background:
    linear-gradient(120deg, rgba(54, 169, 255, 0.035), transparent 34%),
    linear-gradient(290deg, rgba(255, 138, 29, 0.072), transparent 34%),
    rgba(255, 255, 255, 0.014);
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: var(--max);
  margin: 0 auto 42px;
}

.reviews-heading h2 {
  max-width: 760px;
}

.reviews-heading p:last-child {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.03rem;
}

.review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) repeat(2, minmax(0, 0.96fr));
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}

.review-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 292px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.066), rgba(255, 255, 255, 0.024)),
    rgba(8, 13, 20, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.075),
    0 16px 48px rgba(0, 0, 0, 0.18);
}

.review-card-featured {
  background:
    linear-gradient(145deg, rgba(255, 138, 29, 0.1), transparent 42%),
    linear-gradient(300deg, rgba(54, 169, 255, 0.06), transparent 42%),
    rgba(8, 13, 20, 0.82);
}

.review-card::before {
  position: absolute;
  top: 0;
  right: 26px;
  left: 26px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--orange), rgba(54, 169, 255, 0.42));
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.review-meta span {
  padding: 6px 9px;
  border: 1px solid rgba(54, 169, 255, 0.18);
  border-radius: 999px;
  color: #c9eaff;
  font-size: 0.76rem;
  font-weight: 850;
}

.stars {
  margin-bottom: 0;
  color: var(--orange-soft);
  font-size: 0.86rem;
  letter-spacing: 0.18em;
}

.review-card blockquote {
  margin: 0 0 24px;
  color: var(--soft);
  font-size: 1.08rem;
  line-height: 1.55;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.reviews-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 24px auto 0;
  padding: 22px 24px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 138, 29, 0.12), rgba(54, 169, 255, 0.035)),
    rgba(8, 13, 20, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.075);
}

.reviews-cta p {
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 900;
}

.reviews-cta div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.contact-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.78fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: stretch;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.024)),
    rgba(5, 8, 13, 0.72);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(18px) saturate(1.08);
}

.contact-shell::before {
  position: absolute;
  top: 8%;
  bottom: 10%;
  left: 4%;
  width: min(420px, 42%);
  content: "";
  background: radial-gradient(circle, rgba(255, 138, 29, 0.18), transparent 68%);
  opacity: 0.8;
  pointer-events: none;
}

.contact-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  padding: clamp(12px, 2.4vw, 26px);
}

.contact-copy h2 {
  max-width: 560px;
}

.contact-copy p:not(.eyebrow, .contact-proof) {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.03rem;
}

.contact-methods {
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin-top: clamp(22px, 3vw, 34px);
}

.contact-phone {
  position: relative;
  display: grid;
  gap: 9px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 138, 29, 0.34);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 138, 29, 0.13), rgba(255, 255, 255, 0.035) 52%, rgba(54, 169, 255, 0.035)),
    rgba(2, 4, 7, 0.54);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.contact-phone:hover,
.contact-phone:focus-visible {
  border-color: rgba(255, 138, 29, 0.58);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 138, 29, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  outline: none;
  transform: translateY(-2px);
}

.contact-phone span,
.contact-phone small,
.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-phone span {
  color: #ffd08a;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-phone strong {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--text);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.01em;
}

.contact-phone strong .icon {
  color: var(--orange-soft);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.028);
  color: #e7f2fb;
  font-size: 0.95rem;
  font-weight: 650;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
  outline: none;
}

.contact-link .icon {
  color: var(--orange-soft);
}

.contact-link b {
  color: var(--text);
}

.contact-proof {
  width: fit-content;
  margin: 20px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #ead9c3;
  font-size: 0.86rem;
  font-weight: 850;
}

.contact-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 15px;
  align-self: stretch;
  padding: clamp(22px, 3.3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.028)),
    rgba(8, 13, 20, 0.66);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.075),
    0 18px 54px rgba(0, 0, 0, 0.2);
}

.form-heading {
  margin-bottom: 8px;
}

.form-heading h3 {
  margin-bottom: 8px;
  font-size: clamp(1.22rem, 1.8vw, 1.5rem);
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 8px;
  background: rgba(2, 4, 7, 0.38);
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

input,
select {
  min-height: 54px;
  padding: 0 15px;
}

textarea {
  min-height: 126px;
  padding: 13px 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 138, 29, 0.48);
  background: rgba(2, 4, 7, 0.54);
  box-shadow: 0 0 0 4px rgba(255, 138, 29, 0.09);
  outline: none;
  outline-offset: 2px;
}

.form-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 6px;
  border: 0;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(255, 138, 29, 0.14);
}

.form-note {
  margin: 0;
  text-align: center;
}

.site-footer {
  padding: clamp(42px, 6vw, 72px) clamp(18px, 4vw, 56px) 24px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(130deg, rgba(255, 138, 29, 0.075), transparent 34%),
    linear-gradient(280deg, rgba(54, 169, 255, 0.035), transparent 38%),
    rgba(5, 8, 13, 0.78);
  color: var(--muted);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 86px);
  max-width: var(--max);
  margin: 0 auto;
}

.footer-brand {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 26px;
  align-items: start;
}

.footer-logo {
  display: grid;
  place-items: center;
  width: 148px;
  height: 148px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.024)),
    rgba(2, 4, 7, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-logo img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.footer-brand strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.25rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 360px;
  margin-bottom: 16px;
  color: var(--muted);
}

.footer-call {
  display: inline-flex;
  width: fit-content;
  padding: 11px 14px;
  border: 1px solid rgba(255, 138, 29, 0.34);
  border-radius: 8px;
  color: #fff0db;
  font-weight: 900;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 48px);
}

.footer-nav div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-nav span {
  margin-bottom: 8px;
  color: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav a {
  color: #c7d0db;
  font-size: 0.94rem;
  transition: color 180ms ease;
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  max-width: var(--max);
  margin: 42px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #909ba8;
  font-size: 0.86rem;
}

/* Refined visual system: restrained, technical, local-service premium. */
.site-header {
  border-bottom-color: rgba(255, 255, 255, 0.06);
  background: rgba(5, 7, 10, 0.88);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.site-header::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), rgba(242, 138, 46, 0.18), transparent);
}

.brand-mark,
.footer-logo {
  border-color: rgba(255, 255, 255, 0.08);
  background: #07090d;
  box-shadow:
    0 0 0 8px rgba(5, 7, 10, 0.9),
    0 16px 34px rgba(0, 0, 0, 0.25);
}

.nav {
  color: #c8d0d9;
  font-size: 1rem;
  font-weight: 650;
}

.nav a:hover,
.nav a:focus-visible {
  text-shadow: none;
}

.nav a::after {
  bottom: 3px;
  background: var(--orange);
}

.header-call,
.menu-toggle,
.mobile-nav {
  background: rgba(7, 10, 14, 0.82);
  box-shadow: none;
}

.header-call:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.hero {
  min-height: min(820px, 84svh);
  background-image:
    linear-gradient(90deg, rgba(3, 5, 8, 0.9) 0%, rgba(3, 5, 8, 0.72) 36%, rgba(3, 5, 8, 0.34) 66%, rgba(3, 5, 8, 0.16) 100%),
    linear-gradient(0deg, rgba(3, 5, 8, 0.52), rgba(3, 5, 8, 0.02) 54%, rgba(3, 5, 8, 0.22)),
    url("assets/hero-actions-gaz-equipment.png");
  background-position: 63% center;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(50, 167, 234, 0.04), transparent 28%),
    linear-gradient(270deg, rgba(242, 138, 46, 0.08), transparent 36%);
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  color: #e9bb7a;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

h1 {
  max-width: 620px;
  font-size: clamp(2rem, 3.15vw, 3.28rem);
  font-weight: 850;
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.55rem, 2.25vw, 2.34rem);
  font-weight: 820;
  line-height: 1.12;
}

h3 {
  font-weight: 800;
}

.hero-lede,
.section-heading p:last-child,
.services-intro p:not(.eyebrow),
.client-intro p:not(.eyebrow),
.why-copy p,
.process-heading p:last-child,
.reviews-heading p:last-child,
.contact-copy p:not(.eyebrow, .contact-proof) {
  color: #b1bac5;
}

.hero-lede {
  max-width: 585px;
  font-size: clamp(1rem, 1.55vw, 1.16rem);
}

.btn {
  border-radius: 7px;
  font-weight: 800;
}

.btn-primary,
.hero .btn-primary,
.service-card-cta,
.mobile-call,
.mobile-nav-call {
  border-color: rgba(255, 208, 138, 0.44);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(180deg, #ffd18a 0%, #f29a36 48%, #d96e1f 100%);
  color: #140904;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -1px 0 rgba(95, 36, 0, 0.22),
    0 16px 34px rgba(223, 118, 34, 0.2),
    0 4px 10px rgba(0, 0, 0, 0.16);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.btn-primary:hover,
.hero .btn-primary:hover,
.service-card-cta:hover,
.mobile-nav-call:hover,
.mobile-call:hover {
  border-color: rgba(255, 224, 184, 0.68);
  filter: saturate(1.04) brightness(1.02);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.54),
    inset 0 -1px 0 rgba(95, 36, 0, 0.2),
    0 20px 42px rgba(223, 118, 34, 0.24),
    0 7px 16px rgba(0, 0, 0, 0.18);
}

.btn-secondary,
.hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.035);
  color: #f5f0e8;
  backdrop-filter: none;
}

.hero-panel {
  width: min(100%, 330px);
  border-color: rgba(242, 138, 46, 0.2);
  background: rgba(7, 10, 14, 0.66);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.hero-panel span {
  color: #e9bb7a;
  font-weight: 750;
}

.hero-service-strip {
  border-color: rgba(255, 255, 255, 0.065);
  background: rgba(7, 10, 14, 0.46);
  backdrop-filter: none;
}

.section,
.contact-section {
  padding-block: clamp(70px, 8vw, 104px);
}

.section::before,
.contact-section::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.services,
.reviews,
.process,
.client-types,
.contact-section,
.site-footer {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent),
    #070a0f;
}

.services {
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(7, 10, 15, 0.96) 0%, rgba(7, 10, 15, 0.9) 34%, rgba(7, 10, 15, 0.78) 68%, rgba(7, 10, 15, 0.92) 100%),
    linear-gradient(180deg, rgba(7, 10, 15, 0.92), rgba(7, 10, 15, 0.76)),
    url("assets/service-heating-plumbing.png");
  background-position: center;
  background-size: cover;
}

.process {
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(7, 10, 15, 0.78) 0%, rgba(7, 10, 15, 0.52) 42%, rgba(7, 10, 15, 0.24) 100%),
    linear-gradient(180deg, rgba(7, 10, 15, 0.42), rgba(7, 10, 15, 0.62)),
    url("assets/service-heating-plumbing.png");
  background-position: center right;
  background-size: cover;
}

.services-layout {
  grid-template-columns: 1fr;
  gap: clamp(30px, 4vw, 48px);
}

.services-intro {
  position: static;
  top: auto;
  max-width: 860px;
}

.service-categories,
.service-stack,
.proof-list,
.client-grid,
.review-grid {
  gap: 12px;
}

.service-categories {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-category,
.client-item,
.review-card,
.process-call,
.location-card,
.client-check,
.contact-shell,
.contact-form,
.contact-phone,
.contact-link,
.reviews-cta,
.legal-card {
  border-color: rgba(255, 255, 255, 0.065);
  background: #0b1016;
  box-shadow: none;
}

.service-category {
  padding: clamp(20px, 2.2vw, 26px);
  min-height: 100%;
}

.service-category::before,
.review-card::before {
  display: none;
}

.service-category:hover,
.client-item:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.12);
  background: #0d131a;
}

.category-label {
  margin-bottom: 12px;
  color: #dfb475;
  font-size: 0.72rem;
  font-weight: 780;
}

.service-category h3 {
  gap: 10px;
  font-size: clamp(1.14rem, 1.35vw, 1.42rem);
}

.title-icon {
  width: 20px;
  height: 20px;
  color: #90c9ee;
}

.service-category .title-icon {
  display: none;
}

.service-category li {
  color: #d2dbe5;
  font-size: 0.96rem;
}

.service-category li::before {
  top: 0.78em;
  width: 5px;
  height: 5px;
  background: rgba(242, 138, 46, 0.76);
  box-shadow: none;
}

.service-card-cta {
  margin-top: 20px;
  padding: 12px 15px;
  font-weight: 820;
}

.services {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(7, 10, 15, 0.97) 0%, rgba(7, 10, 15, 0.91) 38%, rgba(7, 10, 15, 0.8) 72%, rgba(7, 10, 15, 0.94) 100%),
    linear-gradient(180deg, rgba(7, 10, 15, 0.94), rgba(7, 10, 15, 0.76)),
    url("assets/service-heating-plumbing.png");
  background-position: center;
  background-size: cover;
}

.services::after {
  position: absolute;
  inset: clamp(22px, 4vw, 54px);
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 8px;
  content: "";
  pointer-events: none;
}

.services-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3.5vw, 38px);
}

.services-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  max-width: none;
}

.services-intro p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.65;
}

.service-assurance {
  display: grid;
  gap: 10px;
  max-width: none;
  margin-top: 0;
  padding: 16px;
  border: 1px solid rgba(242, 138, 46, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 138, 46, 0.075), transparent 62%),
    rgba(3, 6, 10, 0.48);
}

.service-assurance span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  color: #dbe5ef;
  font-size: 0.93rem;
  font-weight: 800;
}

.service-assurance .icon {
  width: 17px;
  height: 17px;
  color: #efc184;
}

.service-categories {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-stack {
  gap: 14px;
}

.service-category {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(22px, 2.7vw, 32px);
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.016)),
    rgba(8, 13, 20, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 62px rgba(0, 0, 0, 0.2);
}

.service-category::after {
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(242, 138, 46, 0.42), rgba(144, 201, 238, 0.18), transparent);
}

.service-category:hover {
  border-color: rgba(239, 193, 132, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.024)),
    rgba(10, 16, 24, 0.9);
}

.service-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(22px, 3.2vw, 34px);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(144, 201, 238, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(144, 201, 238, 0.12), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  color: #9fd4f4;
}

.service-icon .title-icon {
  display: block;
  width: 22px;
  height: 22px;
  color: currentColor;
}

.service-card-head .category-label {
  margin: 0;
  text-align: right;
}

.service-category h3 {
  display: block;
  max-width: 560px;
  margin-bottom: 13px;
  font-size: clamp(1.22rem, 1.6vw, 1.55rem);
  letter-spacing: 0;
}

.service-category p:not(.category-label) {
  max-width: 560px;
  margin-bottom: 26px;
  color: #b7c1cd;
  line-height: 1.62;
}

.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 6px 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
}

.service-feature-grid span {
  min-height: 52px;
  padding: 15px 16px;
  background: rgba(5, 9, 14, 0.72);
  color: #e5edf5;
  font-size: 0.93rem;
  font-weight: 780;
}

.service-category ul {
  gap: 11px;
  margin-top: auto;
}

.service-category li {
  color: #d8e1eb;
}

.service-card-cta {
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid rgba(255, 208, 138, 0.44);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(180deg, #ffd18a 0%, #f29a36 48%, #d96e1f 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -1px 0 rgba(95, 36, 0, 0.22),
    0 16px 34px rgba(223, 118, 34, 0.2),
    0 4px 10px rgba(0, 0, 0, 0.16);
}

.services-bottom-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  padding: clamp(22px, 3.2vw, 34px);
  border: 1px solid rgba(242, 138, 46, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(242, 138, 46, 0.12), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(7, 11, 17, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 62px rgba(0, 0, 0, 0.18);
}

.services-bottom-cta span {
  display: block;
  margin-bottom: 8px;
  color: #efc184;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-bottom-cta h3 {
  max-width: 660px;
  margin-bottom: 8px;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
}

.services-bottom-cta p {
  max-width: 660px;
  margin: 0;
  color: #b7c1cd;
}

.services-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.brand-section {
  background:
    linear-gradient(120deg, rgba(144, 201, 238, 0.045), transparent 34%),
    linear-gradient(300deg, rgba(242, 138, 46, 0.05), transparent 42%),
    #070a0f;
}

.brand-section-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.brand-section-copy p:not(.eyebrow) {
  max-width: 620px;
  color: #b1bac5;
  font-size: 1.03rem;
}

.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.brand-logo-grid img {
  width: 100%;
  height: 86px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #f6f8fb;
  object-fit: contain;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 18px 38px rgba(0, 0, 0, 0.18);
}

.text-cta,
.location-card a {
  color: #efc184;
  font-weight: 760;
}

.why {
  gap: clamp(30px, 5vw, 62px);
}

.why-media {
  min-height: 500px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.proof-list div {
  grid-template-columns: 26px 1fr;
  gap: 4px 12px;
  padding: 0 0 20px;
  border-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 0;
  background: transparent;
}

.proof-icon {
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 0;
  color: #e9bb7a;
  background: transparent;
}

.proof-list strong,
.client-item span,
.reviews-cta p {
  font-weight: 800;
}

.client-layout {
  gap: clamp(30px, 5vw, 62px);
}

.location-card {
  max-width: 340px;
  padding: 18px 0 0;
  border-width: 1px 0 0;
  border-radius: 0;
  background: transparent;
}

.client-item {
  min-height: 176px;
  padding: 22px;
}

.client-item span {
  gap: 10px;
  font-size: 1.12rem;
}

.client-icon {
  width: 20px;
  height: 20px;
  color: #dfb475;
}

.client-check,
.reviews-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 0;
  background: transparent;
}

.process-call {
  padding: 0;
  background: transparent;
}

.process-call strong {
  color: #f4d2aa;
}

.process-steps {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(10, 15, 21, 0.48);
  box-shadow: none;
  backdrop-filter: blur(2px);
}

.process-steps::before {
  background: rgba(255, 255, 255, 0.08);
}

.process-steps article {
  min-height: 210px;
  background: rgba(5, 8, 13, 0.08);
}

.process-steps article:hover {
  background: rgba(255, 255, 255, 0.035);
}

.process-steps span {
  width: auto;
  height: auto;
  margin-bottom: 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #dfb475;
  box-shadow: none;
}

.review-card {
  min-height: 260px;
  padding: 24px;
}

.review-card-featured {
  background: #0b1016;
}

.review-meta span {
  border-color: rgba(255, 255, 255, 0.08);
  color: #c4d7e8;
}

.stars {
  color: #e9bb7a;
}

.review-card blockquote {
  color: #d7e0e9;
  font-size: 1rem;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(242, 138, 46, 0.035), transparent 34%),
    #070a0f;
}

.contact-shell {
  padding: clamp(18px, 2.6vw, 26px);
  background: #090e14;
  backdrop-filter: none;
}

.contact-shell::before {
  width: min(360px, 34%);
  background: radial-gradient(circle, rgba(242, 138, 46, 0.12), transparent 70%);
}

.contact-phone {
  border-color: rgba(242, 138, 46, 0.24);
  background:
    linear-gradient(90deg, rgba(242, 138, 46, 0.08), transparent 62%),
    #0b1016;
}

.contact-phone:hover,
.contact-phone:focus-visible {
  border-color: rgba(242, 138, 46, 0.4);
  box-shadow: none;
}

.contact-phone span,
.location-card span,
.footer-nav span {
  color: #dfb475;
}

.contact-link {
  background: transparent;
}

.contact-form {
  background: #0c1117;
}

input,
select,
textarea {
  border-color: rgba(255, 255, 255, 0.095);
  background: #070b10;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(242, 138, 46, 0.42);
  box-shadow: 0 0 0 3px rgba(242, 138, 46, 0.08);
}

.site-footer {
  background: #05070a;
}

.footer-call {
  border-color: rgba(242, 138, 46, 0.22);
  color: #f4d2aa;
}

.contact-shell {
  grid-template-columns: minmax(0, 0.74fr) minmax(380px, 0.9fr);
  gap: 0;
  padding: clamp(18px, 2.5vw, 24px);
  border-color: rgba(255, 255, 255, 0.055);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018), transparent 45%),
    #080c12;
}

.contact-shell::before {
  top: 18%;
  bottom: auto;
  left: 52%;
  width: min(420px, 34%);
  height: 420px;
  background: radial-gradient(circle, rgba(242, 138, 46, 0.09), transparent 70%);
}

.contact-copy {
  padding: clamp(18px, 3vw, 36px) clamp(24px, 4vw, 48px) clamp(18px, 3vw, 36px) clamp(18px, 3vw, 28px);
}

.contact-copy h2 {
  max-width: 520px;
  font-size: clamp(1.65rem, 2.35vw, 2.55rem);
}

.contact-copy p:not(.eyebrow, .contact-proof) {
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.65;
}

.contact-methods {
  max-width: 500px;
  margin-top: clamp(26px, 4vw, 46px);
}

.contact-phone {
  gap: 8px;
  padding: 22px 24px;
  border-color: rgba(242, 138, 46, 0.22);
  background:
    linear-gradient(90deg, rgba(242, 138, 46, 0.06), transparent 74%),
    rgba(255, 255, 255, 0.025);
}

.contact-phone strong {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.contact-phone small {
  font-size: 0.88rem;
}

.contact-link {
  min-height: 50px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.018);
}

.contact-proof {
  margin-top: 22px;
  color: #c6ced8;
  font-weight: 760;
}

.contact-form {
  margin: 0;
  padding: clamp(24px, 3.4vw, 38px);
  border-color: rgba(242, 138, 46, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #10161e;
  box-shadow:
    -1px 0 0 rgba(255, 255, 255, 0.055),
    0 24px 54px rgba(0, 0, 0, 0.2);
}

.contact-form::before {
  position: absolute;
  top: 0;
  right: 26px;
  left: 26px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(242, 138, 46, 0.42), transparent);
}

.form-heading {
  padding-bottom: 18px;
  margin-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.form-heading h3 {
  font-size: clamp(1.35rem, 2vw, 1.72rem);
}

.form-heading p {
  max-width: 560px;
  line-height: 1.62;
}

label {
  gap: 8px;
  font-weight: 760;
}

input,
select,
textarea {
  border-color: rgba(255, 255, 255, 0.13);
  background: #080c11;
}

input,
select {
  min-height: 52px;
}

textarea {
  min-height: 142px;
}

.form-submit {
  margin-top: 10px;
  background: linear-gradient(180deg, #f0a34d, #df7c2c);
}

.legal-page {
  min-height: 100vh;
}

.legal-header {
  padding: 28px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 8, 12, 0.86);
}

.legal-header .brand-mark {
  width: 76px;
  height: 76px;
  margin: 0;
  transform: none;
}

.legal-main {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) clamp(18px, 4vw, 32px);
}

.legal-main h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.legal-main > p {
  max-width: 720px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-card {
  display: grid;
  gap: 24px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 8px;
  background: #0b1016;
}

.legal-card section {
  display: grid;
  gap: 8px;
}

.legal-card h2 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.legal-card p,
.legal-card li {
  margin: 0;
  color: var(--muted);
}

.legal-card ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 0;
}

.legal-card a {
  color: #ffe0b8;
  text-decoration: underline;
  text-decoration-color: rgba(255, 138, 29, 0.45);
  text-underline-offset: 5px;
}

.mobile-call {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 208, 138, 0.44);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(180deg, #ffd18a 0%, #f29a36 48%, #d96e1f 100%);
  color: #160b03;
  font-weight: 900;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -1px 0 rgba(95, 36, 0, 0.22),
    0 18px 36px rgba(223, 118, 34, 0.22),
    0 8px 18px rgba(0, 0, 0, 0.28);
}

.js-enabled .reveal-item {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js-enabled .reveal-item.is-visible,
.js-enabled.reduce-motion .reveal-item {
  opacity: 1;
  transform: none;
}

.service-category,
.client-item,
.review-card {
  transform:
    perspective(900px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translateY(0);
  transform-style: preserve-3d;
}

.service-category.is-tilting,
.client-item.is-tilting,
.review-card.is-tilting {
  border-color: rgba(239, 193, 132, 0.36);
  transition:
    transform 90ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.service-icon,
.proof-icon,
.client-icon {
  will-change: transform;
}

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

  .js-enabled .reveal-item {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    display: grid;
  }

  .header-inner {
    gap: 18px;
  }

  .brand-mark {
    width: 104px;
    height: 104px;
    margin-block: -8px -26px;
    padding: 7px;
    box-shadow:
      0 0 0 7px rgba(5, 7, 10, 0.9),
      0 16px 34px rgba(0, 0, 0, 0.25);
    transform: translateY(16px);
  }

  .hero,
  .brand-section-inner,
  .contact-section,
  .contact-shell,
  .why,
  .services-layout,
  .client-layout,
  .section-heading,
  .process-heading,
  .reviews-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    justify-self: start;
  }

  .process-steps,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-intro {
    position: static;
    grid-template-columns: 1fr;
  }

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

  .review-card-featured {
    grid-column: 1 / -1;
  }

  .process-call {
    max-width: 360px;
  }

  .process-steps::before {
    display: none;
  }

  .process-steps article:nth-child(odd) {
    border-left: 0;
  }

  .process-steps article:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .client-intro {
    position: static;
  }

  .why-media {
    min-height: 360px;
    background-position: center;
  }

  .proof-list {
    grid-template-columns: 1fr;
  }

  .footer-inner,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .contact-shell::before {
    top: 0;
    bottom: auto;
    left: -10%;
    width: 70%;
    height: 360px;
  }

  .contact-shell {
    gap: 18px;
  }

  .contact-form {
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 76px;
  }

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

  .header-inner {
    justify-content: space-between;
    min-height: 58px;
  }

  .mobile-nav {
    top: calc(100% + 10px);
    right: 0;
    width: calc(100vw - 32px);
  }

  .brand-mark {
    width: 104px;
    height: 104px;
    margin-block: -6px -18px;
    padding: 5px;
    box-shadow:
      0 0 0 6px rgba(5, 7, 10, 0.9),
      0 14px 30px rgba(0, 0, 0, 0.26);
    transform: translateY(11px);
  }

  .header-call {
    display: none;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto auto auto minmax(0, 1fr) auto;
    gap: 0;
    align-content: center;
    align-items: stretch;
    min-height: max(590px, calc(100svh - 78px));
    padding: clamp(54px, 9svh, 82px) 16px 128px;
    background-image:
      linear-gradient(90deg, rgba(3, 5, 8, 0.94) 0%, rgba(3, 5, 8, 0.7) 54%, rgba(3, 5, 8, 0.18) 100%),
      linear-gradient(0deg, rgba(3, 5, 8, 0.72), rgba(3, 5, 8, 0.1) 48%, rgba(3, 5, 8, 0.28)),
      url("assets/hero-actions-gaz-equipment.png");
    background-position: 82% center;
  }

  .hero::after {
    height: 46%;
  }

  .hero-copy {
    display: contents;
    max-width: 100%;
    padding: 0;
  }

  .hero .eyebrow {
    grid-row: 2;
    max-width: 320px;
    margin-bottom: 16px;
    font-size: 0.68rem;
    line-height: 1.45;
    letter-spacing: 0.1em;
  }

  h1 {
    font-size: clamp(2rem, 9.3vw, 2.78rem);
  }

  .hero h1 {
    grid-row: 3;
    max-width: 14ch;
    margin-bottom: 0;
    line-height: 1.09;
  }

  h2 {
    font-size: clamp(1.45rem, 6.5vw, 2.05rem);
  }

  .hero-actions {
    grid-row: 6;
    gap: 14px;
    margin-bottom: 0;
    padding-top: 34px;
  }

  .btn {
    width: 100%;
  }

  .hero .btn-primary,
  .hero .btn-secondary {
    min-height: 51px;
    padding-inline: 16px;
    font-size: 0.95rem;
    line-height: 1.15;
  }

  .hero-panel {
    grid-row: 4;
    width: 100%;
    gap: 9px;
    margin-top: 30px;
    padding: 16px;
    transform: none;
  }

  .hero-panel a {
    font-size: clamp(1.35rem, 7vw, 1.62rem);
  }

  .hero-panel small {
    font-size: 0.84rem;
  }

  .hero-proof {
    font-size: 0.88rem;
  }

  .hero-service-strip {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }

  .hero-service-strip span {
    flex: 1;
    text-align: center;
  }

  .section,
  .contact-section {
    padding: 58px 16px;
  }

  .contact-shell {
    gap: 18px;
    padding: 14px;
  }

  .contact-copy {
    padding: 20px;
  }

  .contact-form {
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  }

  .contact-copy,
  .contact-form {
    padding: 20px;
  }

  .footer-brand {
    grid-template-columns: 118px 1fr;
    gap: 18px;
  }

  .footer-logo {
    width: 118px;
    height: 118px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .contact-phone,
  .contact-link {
    width: 100%;
  }

  .contact-phone strong {
    font-size: clamp(1.42rem, 7vw, 2rem);
  }

  .service-stack,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .service-inline-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .service-assurance {
    display: none;
  }

  .services-bottom-cta {
    grid-template-columns: 1fr;
  }

  .services-bottom-actions {
    justify-content: stretch;
  }

  .services-bottom-actions .btn {
    flex: 1 1 220px;
  }

  .brand-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-categories {
    display: flex;
    gap: 14px;
    margin-inline: -16px;
    padding: 0 16px 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .service-category {
    flex: 0 0 min(82vw, 360px);
    scroll-snap-align: start;
  }

  .service-card-head {
    margin-bottom: 24px;
  }

  .review-grid {
    display: flex;
    gap: 14px;
    margin-inline: -16px;
    padding: 0 16px 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .review-card-featured {
    grid-column: auto;
  }

  .review-card {
    flex: 0 0 min(82vw, 360px);
    min-height: 270px;
    scroll-snap-align: start;
  }

  .reviews-heading {
    margin-bottom: 26px;
  }

  .reviews-cta,
  .reviews-cta div {
    align-items: stretch;
    flex-direction: column;
  }

  .client-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 5px 13px;
    align-items: start;
    padding: 15px;
    min-height: auto;
  }

  .client-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .client-types {
    background:
      linear-gradient(180deg, rgba(255, 138, 29, 0.07), transparent 42%),
      rgba(255, 255, 255, 0.018);
  }

  .client-layout {
    gap: 22px;
  }

  .client-intro h2 {
    margin-bottom: 12px;
  }

  .client-intro p:not(.eyebrow) {
    margin-bottom: 0;
    font-size: 0.98rem;
  }

  .location-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    max-width: none;
    margin-top: 18px;
    padding: 16px;
    border: 1px solid rgba(255, 138, 29, 0.18);
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(255, 138, 29, 0.12), rgba(54, 169, 255, 0.035)),
      rgba(8, 13, 20, 0.76);
  }

  .location-card strong {
    font-size: 1.12rem;
  }

  .location-card a {
    justify-content: center;
    width: 100%;
    min-height: 44px;
    margin-top: 6px;
    border: 1px solid rgba(255, 138, 29, 0.28);
    border-radius: 7px;
    background: rgba(255, 138, 29, 0.08);
    text-decoration: none;
  }

  .client-item .client-icon {
    grid-row: 1 / span 2;
    width: 38px;
    height: 38px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 138, 29, 0.1);
  }

  .client-item span {
    display: contents;
    font-size: 1rem;
  }

  .client-label {
    align-self: end;
    font-size: 1.05rem;
    line-height: 1.15;
  }

  .client-item small {
    grid-column: 2;
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .client-check,
  .client-check .btn {
    width: 100%;
  }

  .client-check {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
  }

  .client-check p {
    font-size: 0.93rem;
  }

  .process-heading {
    gap: 18px;
    margin-bottom: 24px;
  }

  .process-call {
    max-width: none;
  }

  .process-steps {
    display: flex;
    gap: 24px;
    margin-inline: -16px;
    padding: 2px 16px 14px;
    overflow-x: auto;
    overflow-y: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .process-steps article,
  .process-steps article + article,
  .process-steps article:nth-child(n + 3) {
    flex: 0 0 min(78vw, 330px);
    min-height: 230px;
    padding: 24px 22px;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background:
      linear-gradient(155deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
      rgba(8, 13, 20, 0.9);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 18px 38px rgba(0, 0, 0, 0.18);
    scroll-snap-align: start;
  }

  .process-steps span {
    margin-bottom: 22px;
  }

  .process-steps article:not(:last-child)::after {
    position: absolute;
    top: 35px;
    right: -31px;
    z-index: 3;
    width: 38px;
    height: 38px;
    content: "";
    border: 1px solid rgba(255, 138, 29, 0.32);
    border-radius: 50%;
    background:
      linear-gradient(145deg, rgba(255, 138, 29, 0.22), rgba(54, 169, 255, 0.08)),
      #0b1016;
    box-shadow:
      0 0 0 6px rgba(5, 7, 10, 0.76),
      0 12px 26px rgba(0, 0, 0, 0.28);
  }

  .process-steps article:not(:last-child)::before {
    position: absolute;
    top: 48px;
    right: -15px;
    z-index: 4;
    width: 9px;
    height: 9px;
    content: "";
    border-top: 2px solid #f3bd72;
    border-right: 2px solid #f3bd72;
    transform: rotate(45deg);
  }

  .service-category {
    min-height: auto;
  }

  .why-media {
    min-height: 280px;
  }

  .site-footer {
    padding: 22px 16px;
  }

  .mobile-call {
    right: 16px;
    left: 16px;
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .brand-mark {
    width: 98px;
    height: 98px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .hero {
    min-height: max(570px, calc(100svh - 74px));
    padding: clamp(42px, 8svh, 66px) 14px 120px;
    background-position: 88% center;
  }

  .hero .eyebrow {
    max-width: 280px;
    font-size: 0.64rem;
  }

  .hero h1 {
    max-width: 14ch;
    margin-bottom: 0;
    font-size: clamp(1.92rem, 9.8vw, 2.42rem);
  }

  .hero-actions {
    gap: 12px;
    padding-top: 28px;
  }

  .hero .btn-primary,
  .hero .btn-secondary {
    min-height: 49px;
    padding-inline: 13px;
    font-size: 0.9rem;
  }

  .hero-panel {
    margin-top: 26px;
    padding: 15px;
  }

  .hero-panel span {
    font-size: 0.72rem;
  }

  .hero-panel a {
    font-size: 1.34rem;
  }

  .hero-service-strip {
    gap: 0;
  }

  .hero-service-strip span {
    padding: 0 6px;
    font-size: 0.72rem;
  }

  .brand-logo-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .brand-logo-grid img {
    max-width: min(72vw, 360px);
    height: 50px;
  }

  .service-categories,
  .review-grid {
    margin-inline: -14px;
    padding-inline: 14px;
    scroll-padding-inline: 14px;
  }

  .service-category,
  .review-card {
    flex-basis: min(86vw, 340px);
  }

  .service-category,
  .client-item,
  .review-card,
  .process-steps article {
    padding: 20px;
  }

  .client-item {
    padding: 14px;
  }

  .client-item small {
    font-size: 0.84rem;
  }

  .location-card,
  .client-check {
    padding: 14px;
  }

  .service-feature-grid {
    grid-template-columns: 1fr;
  }

  .service-card-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .service-card-head .category-label {
    text-align: left;
  }

  .contact-copy,
  .contact-form {
    padding: 18px;
  }

  .contact-shell {
    padding: 10px;
  }

  .contact-link {
    align-items: flex-start;
  }

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

  .footer-logo {
    width: 128px;
    height: 128px;
  }
}

/* Final cascade lock: mature matte technical art direction. */
body {
  background: linear-gradient(180deg, #090a0a 0%, #070807 48%, #0a0b0b 100%);
  color: #f1eee8;
}

body::before {
  opacity: 0.18;
  background-size: 180px 180px;
}

.site-header {
  border-bottom-color: rgba(238, 233, 224, 0.075);
  background: rgba(8, 9, 9, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.site-header::after,
.section::before,
.contact-section::before,
.services::after,
.service-category::before,
.service-category::after,
.review-card::before,
.contact-form::before {
  display: none;
}

.brand-mark,
.footer-logo {
  border-color: rgba(238, 233, 224, 0.1);
  background: #0a0b0b;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.nav {
  color: #c4c8c9;
  font-size: 0.94rem;
  font-weight: 620;
}

.nav a::after {
  background: rgba(229, 132, 45, 0.72);
}

.header-call,
.menu-toggle,
.mobile-nav {
  border-color: rgba(238, 233, 224, 0.11);
  background: rgba(12, 14, 15, 0.9);
  box-shadow: none;
}

.eyebrow {
  color: #c99a63;
  font-size: 0.68rem;
  font-weight: 680;
  letter-spacing: 0.12em;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 4.05rem);
  font-weight: 780;
  line-height: 1.04;
}

h2 {
  font-size: clamp(1.48rem, 2vw, 2.15rem);
  font-weight: 720;
  line-height: 1.14;
}

h3 {
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  font-weight: 690;
}

p,
li,
small,
input,
select,
textarea {
  line-height: 1.62;
}

.section,
.contact-section {
  padding-block: clamp(82px, 9vw, 126px);
}

.section-heading,
.services-layout,
.brand-section-inner,
.client-layout,
.why,
.process-heading,
.process-steps,
.reviews-heading,
.review-grid,
.reviews-cta,
.contact-shell,
.footer-inner,
.footer-bottom {
  max-width: 1120px;
}

.services,
.reviews {
  background: #090a0a;
  background-image: none;
}

.brand-section,
.process {
  background: #0d0f10;
  background-image: none;
}

.client-types,
.contact-section {
  background: #080909;
  background-image: none;
}

.site-footer {
  background: #060707;
}

.section-heading p:last-child,
.services-intro p:not(.eyebrow),
.brand-section-copy p:not(.eyebrow),
.client-intro p:not(.eyebrow),
.why-copy p,
.process-heading p:last-child,
.reviews-heading p:last-child,
.contact-copy p:not(.eyebrow, .contact-proof),
.service-category p:not(.category-label),
.client-item small,
.proof-list span,
.review-card p {
  color: #aeb4b7;
  font-size: clamp(0.96rem, 1.15vw, 1.04rem);
  line-height: 1.68;
}

.btn,
.service-card-cta,
.mobile-call,
.mobile-nav-call {
  min-height: 50px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 720;
  letter-spacing: 0;
}

.btn-primary,
.hero .btn-primary,
.service-card-cta,
.mobile-call,
.mobile-nav-call {
  border: 1px solid rgba(238, 159, 81, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 211, 157, 0.2), transparent 42%),
    #e5842d;
  color: #17100a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 10px 22px rgba(0, 0, 0, 0.16);
}

.btn-primary:hover,
.hero .btn-primary:hover,
.service-card-cta:hover,
.mobile-call:hover,
.mobile-nav-call:hover {
  border-color: rgba(244, 186, 124, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 221, 181, 0.24), transparent 42%),
    #ec8f36;
  filter: none;
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 14px 26px rgba(0, 0, 0, 0.18);
}

.btn-secondary,
.hero .btn-secondary {
  border-color: rgba(238, 233, 224, 0.15);
  background: rgba(238, 233, 224, 0.035);
  color: #ebe7df;
  box-shadow: none;
}

.hero {
  min-height: min(790px, 82svh);
  background-image:
    linear-gradient(90deg, rgba(7, 8, 7, 0.94) 0%, rgba(7, 8, 7, 0.78) 38%, rgba(7, 8, 7, 0.26) 74%, rgba(7, 8, 7, 0.1) 100%),
    linear-gradient(0deg, rgba(7, 8, 7, 0.52), rgba(7, 8, 7, 0.04) 54%, rgba(7, 8, 7, 0.28)),
    url("assets/hero-actions-gaz-equipment.png");
  background-position: 70% center;
}

.hero::before {
  background: linear-gradient(270deg, rgba(229, 132, 45, 0.055), transparent 34%);
}

.hero-panel {
  width: min(100%, 300px);
  padding: 16px;
  border-color: rgba(238, 233, 224, 0.13);
  background: rgba(10, 12, 13, 0.76);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.hero-panel span,
.location-card span,
.contact-phone span,
.footer-nav span,
.services-bottom-cta span {
  color: #c99a63;
}

.hero-panel a,
.contact-phone strong {
  font-weight: 760;
}

.services-layout {
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 70px);
}

.services-intro {
  position: sticky;
  top: 108px;
  display: block;
}

.service-assurance {
  padding: 14px 0 0;
  border: 1px solid rgba(238, 233, 224, 0.1);
  border-width: 1px 0 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.service-assurance span {
  min-height: 34px;
  color: #cfd4d5;
  font-weight: 620;
}

.service-categories {
  grid-template-columns: 1fr;
  gap: 12px;
}

.service-category,
.client-item,
.review-card,
.contact-form,
.contact-link,
.legal-card {
  border: 1px solid rgba(238, 233, 224, 0.09);
  border-radius: 6px;
  background: #111416;
  box-shadow: none;
}

.service-category {
  padding: clamp(22px, 2.5vw, 30px);
}

.service-category:hover,
.client-item:hover {
  border-color: rgba(238, 233, 224, 0.16);
  background: #14181a;
  transform: none;
}

.service-card-head {
  margin-bottom: 18px;
}

.service-icon {
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
}

.service-icon .title-icon,
.title-icon,
.client-icon,
.proof-icon {
  width: 18px;
  height: 18px;
  color: #9eb8c5;
}

.service-category h3 {
  font-size: clamp(1.12rem, 1.35vw, 1.36rem);
}

.category-label {
  color: #b98a55;
  font-weight: 650;
}

.service-category li::before {
  background: rgba(201, 154, 99, 0.72);
  box-shadow: none;
}

.services-bottom-cta {
  grid-column: 1 / -1;
  border-color: rgba(238, 233, 224, 0.1);
  background: #0d1011;
  box-shadow: none;
}

.brand-logo-grid {
  gap: 10px;
}

.brand-logo-grid img {
  height: 76px;
  padding: 18px 20px;
  border-color: rgba(238, 233, 224, 0.08);
  background: #141719;
  filter: grayscale(0.15) brightness(0.88) contrast(0.96);
  opacity: 0.9;
  box-shadow: none;
}

.why-media {
  min-height: 480px;
  box-shadow: none;
}

.proof-list {
  gap: 0 28px;
}

.proof-list div {
  padding: 18px 0;
  border-top: 0;
  border-bottom: 1px solid rgba(238, 233, 224, 0.075);
  border-radius: 0;
  background: transparent;
}

.proof-list strong {
  font-size: 1rem;
  font-weight: 680;
}

.client-grid {
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(238, 233, 224, 0.085);
  border-radius: 6px;
  background: rgba(238, 233, 224, 0.085);
}

.client-item {
  min-height: 150px;
  border: 0;
  border-radius: 0;
}

.client-item span {
  font-size: 1.04rem;
  font-weight: 680;
}

.location-card,
.client-check,
.reviews-cta,
.process-call {
  border-color: rgba(238, 233, 224, 0.09);
  background: transparent;
  box-shadow: none;
}

.process-steps {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.process-steps::before {
  background: rgba(238, 233, 224, 0.09);
}

.process-steps article {
  min-height: 190px;
  padding: 28px;
  border-top: 1px solid rgba(238, 233, 224, 0.1);
  background: transparent;
}

.process-steps article + article {
  border-left-color: rgba(238, 233, 224, 0.1);
}

.process-steps span {
  margin-bottom: 24px;
  color: #b98a55;
  font-size: 0.78rem;
}

.review-card {
  min-height: 230px;
}

.review-card-featured {
  background: #141719;
}

.stars {
  color: #c99a63;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.review-card blockquote {
  color: #d5d9da;
  font-size: 0.98rem;
  line-height: 1.64;
}

.contact-shell {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.9fr);
  border: 1px solid rgba(238, 233, 224, 0.09);
  border-radius: 6px;
  background: #0e1112;
  box-shadow: none;
}

.contact-shell::before {
  display: none;
}

.contact-copy {
  padding: clamp(28px, 4vw, 48px);
}

.contact-phone {
  border-color: rgba(229, 132, 45, 0.34);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(229, 132, 45, 0.09), transparent 70%),
    #141719;
  box-shadow: none;
}

.contact-link {
  background: transparent;
}

.contact-form {
  padding: clamp(26px, 3.4vw, 38px);
  border-width: 0 0 0 1px;
  border-radius: 0;
  background: #121618;
}

input,
select,
textarea {
  border-color: rgba(238, 233, 224, 0.11);
  border-radius: 5px;
  background: #090b0c;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(229, 132, 45, 0.42);
  box-shadow: 0 0 0 3px rgba(229, 132, 45, 0.08);
}

@media (max-width: 1040px) {
  .services-layout,
  .services-intro,
  .brand-section-inner,
  .client-layout,
  .why,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .services-intro,
  .client-intro {
    position: static;
  }

  .contact-form {
    border-width: 1px 0 0;
  }
}

@media (max-width: 680px) {
  .section,
  .contact-section {
    padding: 66px 16px;
  }

  h2 {
    font-size: clamp(1.36rem, 6vw, 1.76rem);
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto auto auto minmax(0, 1fr) auto;
    min-height: max(590px, calc(100svh - 78px));
    padding: clamp(54px, 9svh, 82px) 16px 128px;
    background-image:
      linear-gradient(90deg, rgba(7, 8, 7, 0.94) 0%, rgba(7, 8, 7, 0.72) 56%, rgba(7, 8, 7, 0.16) 100%),
      linear-gradient(0deg, rgba(7, 8, 7, 0.68), rgba(7, 8, 7, 0.08) 48%, rgba(7, 8, 7, 0.3)),
      url("assets/hero-actions-gaz-equipment.png");
    background-position: 86% center;
  }

  .hero-copy {
    display: contents;
  }

  .hero .eyebrow {
    grid-row: 2;
  }

  .hero h1 {
    grid-row: 3;
    font-size: clamp(1.92rem, 9.2vw, 2.42rem);
  }

  .hero-panel {
    grid-row: 4;
    margin-top: 26px;
  }

  .hero-actions {
    grid-row: 6;
    padding-top: 32px;
  }

  .service-assurance {
    display: none;
  }

  .services-bottom-cta {
    grid-template-columns: 1fr;
  }

  .services-bottom-actions {
    justify-content: stretch;
  }

  .services-bottom-actions .btn {
    width: 100%;
  }

  .service-categories,
  .review-grid,
  .process-steps {
    display: flex;
    gap: 12px;
    margin-inline: -16px;
    padding: 0 16px 10px;
    overflow-x: auto;
    overflow-y: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
  }

  .service-category,
  .review-card,
  .process-steps article {
    flex: 0 0 min(84vw, 340px);
    scroll-snap-align: start;
  }

  .process-steps article {
    border: 1px solid rgba(238, 233, 224, 0.09);
    border-radius: 6px;
    background: #111416;
  }

  .process-steps article:not(:last-child)::after {
    top: 40px;
    right: -23px;
    width: 22px;
    height: 1px;
    border: 0;
    border-radius: 0;
    background: rgba(201, 154, 99, 0.55);
    box-shadow: none;
  }

  .process-steps article:not(:last-child)::before {
    top: 36px;
    right: -25px;
    width: 8px;
    height: 8px;
    border-top-color: rgba(201, 154, 99, 0.8);
    border-right-color: rgba(201, 154, 99, 0.8);
  }

  .client-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .client-item {
    min-height: auto;
  }

  .brand-logo-grid img {
    height: 70px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: max(570px, calc(100svh - 74px));
    padding: clamp(42px, 8svh, 66px) 14px 120px;
    background-position: 90% center;
  }
}

.brand-logo-grid img {
  height: 82px;
  padding: 17px 22px;
  border-color: rgba(238, 233, 224, 0.13);
  background: #e8ecef;
  filter: none;
  opacity: 1;
  box-shadow: none;
}

@media (max-width: 680px) {
  .brand-logo-grid img {
    height: 70px;
  }
}
/* Final hero polish: must stay at the end of the stylesheet. */
.site-header {
  padding: 10px clamp(16px, 4vw, 44px);
  border-bottom-color: rgba(238, 233, 224, 0.08);
  background: rgba(7, 8, 8, 0.82);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px) saturate(1.08);
}

.site-header::after {
  right: clamp(18px, 4vw, 56px);
  left: clamp(18px, 4vw, 56px);
  background: linear-gradient(90deg, transparent, rgba(201, 154, 99, 0.34), transparent);
}

.header-inner {
  width: min(100%, 1120px);
  min-height: 66px;
  gap: clamp(18px, 3vw, 34px);
}

.brand-mark {
  width: 82px;
  height: 82px;
  margin: -8px 0 -18px;
  padding: 5px;
  border-color: rgba(238, 233, 224, 0.13);
  border-radius: 8px;
  background: rgba(10, 11, 11, 0.9);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: none;
}

.brand img {
  border-radius: 6px;
}

.nav {
  gap: clamp(18px, 2vw, 28px);
  color: #d4d2ca;
  font-size: 0.9rem;
  font-weight: 650;
}

.nav a {
  padding: 10px 0;
}

.nav a::after {
  bottom: 3px;
  background: linear-gradient(90deg, transparent, rgba(201, 154, 99, 0.95), transparent);
}

.header-call {
  min-height: 44px;
  padding: 0 14px;
  border-color: rgba(201, 154, 99, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(201, 154, 99, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(13, 15, 16, 0.72);
  color: #f3e9dc;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.header-call:hover {
  border-color: rgba(201, 154, 99, 0.42);
  background:
    linear-gradient(135deg, rgba(201, 154, 99, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(15, 17, 18, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 26px rgba(0, 0, 0, 0.2);
}

.header-call .icon {
  color: #c99a63;
}

.header-call small {
  color: #adaaa2;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

.header-call strong {
  color: #f4eee5;
  font-size: 0.86rem;
  letter-spacing: 0;
}

.hero {
  display: grid;
  grid-template-columns:
    minmax(clamp(16px, 4vw, 48px), 1fr)
    minmax(0, 670px)
    minmax(240px, 330px)
    minmax(clamp(16px, 4vw, 48px), 1fr);
  column-gap: clamp(20px, 3.4vw, 52px);
  row-gap: 22px;
  align-items: center;
  min-height: min(790px, calc(100svh - 86px));
  padding: clamp(88px, 10vw, 132px) 0 clamp(78px, 8vw, 108px);
  background-image:
    linear-gradient(90deg, rgba(7, 8, 8, 0.94) 0%, rgba(7, 8, 8, 0.78) 39%, rgba(7, 8, 8, 0.34) 67%, rgba(7, 8, 8, 0.13) 100%),
    linear-gradient(180deg, rgba(7, 8, 8, 0.08) 0%, rgba(7, 8, 8, 0.08) 55%, rgba(7, 8, 8, 0.42) 100%),
    url("assets/hero-actions-gaz-equipment.png");
  background-position: 66% center;
  background-size: cover;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(124, 174, 200, 0.055), transparent 32%),
    linear-gradient(270deg, rgba(201, 154, 99, 0.12), transparent 42%);
}

.hero::after {
  height: 28%;
  background: linear-gradient(180deg, transparent, #090a0a);
}

.hero-copy {
  grid-column: 2;
  min-width: 0;
  max-width: 690px;
  padding: 0;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.42);
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 20px;
  padding: 0 12px;
  border: 1px solid rgba(201, 154, 99, 0.18);
  border-radius: 999px;
  background: rgba(13, 15, 16, 0.54);
  color: #d2a66f;
  font-size: 0.7rem;
  font-weight: 730;
  letter-spacing: 0.11em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 28px;
  color: #f6f1e9;
  font-size: clamp(2.55rem, 4.6vw, 4.45rem);
  font-weight: 780;
  line-height: 1.01;
}

.hero-actions {
  gap: 14px;
  margin-bottom: 14px;
}

.hero .btn-primary {
  min-height: 56px;
  padding-inline: 25px 28px;
  border-color: rgba(229, 132, 45, 0.4);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 221, 178, 0.24), transparent 44%),
    #d98b3d;
  color: #160f08;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 14px 30px rgba(0, 0, 0, 0.2),
    0 10px 22px rgba(217, 139, 61, 0.12);
}

.hero .btn-primary:hover {
  border-color: rgba(235, 166, 92, 0.56);
  background:
    linear-gradient(180deg, rgba(255, 229, 198, 0.27), transparent 44%),
    #e19646;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 16px 34px rgba(0, 0, 0, 0.24),
    0 12px 26px rgba(217, 139, 61, 0.16);
}

.hero .btn-primary .icon {
  width: 17px;
  height: 17px;
  transform: translateY(-0.5px);
}

.hero-panel {
  grid-column: 3;
  justify-self: end;
  align-self: end;
  min-width: 0;
  width: min(100%, 330px);
  margin-bottom: clamp(-20px, -2vw, -8px);
  padding: 18px;
  border-color: rgba(238, 233, 224, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(201, 154, 99, 0.09), rgba(124, 174, 200, 0.035)),
    rgba(12, 14, 15, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px) saturate(1.08);
  transform: none;
}

.hero-panel span {
  color: #c99a63;
  font-size: 0.7rem;
  font-weight: 730;
  letter-spacing: 0.1em;
}

.hero-panel a {
  gap: 9px;
  color: #f5eee4;
  font-size: clamp(1.28rem, 1.6vw, 1.58rem);
  font-weight: 780;
}

.hero-panel a .icon {
  width: 18px;
  height: 18px;
  color: #c99a63;
}

.hero-panel small {
  color: #b9b5ad;
  font-size: 0.86rem;
  font-weight: 620;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns:
      minmax(clamp(18px, 4vw, 42px), 1fr)
      minmax(0, 660px)
      minmax(clamp(18px, 4vw, 42px), 1fr);
    min-height: 720px;
    background-position: 72% center;
  }

  .hero-copy,
  .hero-panel {
    grid-column: 2;
  }

  .hero h1 {
    max-width: 13.5ch;
    font-size: clamp(2.45rem, 5.6vw, 3.85rem);
  }

  .hero-panel {
    justify-self: start;
    align-self: start;
    width: min(100%, 330px);
    margin-top: 8px;
    margin-bottom: 0;
  }
}

@media (max-width: 1040px) {
  .brand-mark {
    width: 74px;
    height: 74px;
    margin-bottom: -14px;
  }

  .hero {
    grid-template-columns:
      minmax(clamp(18px, 4vw, 40px), 1fr)
      minmax(0, 620px)
      minmax(clamp(18px, 4vw, 40px), 1fr);
    min-height: 720px;
    background-position: 72% center;
  }

  .hero-copy,
  .hero-panel {
    grid-column: 2;
  }

  .hero-panel {
    justify-self: start;
    align-self: start;
    margin-top: 10px;
    margin-bottom: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 8px 14px;
  }

  .header-inner {
    min-height: 58px;
  }

  .brand-mark {
    width: 62px;
    height: 62px;
    margin: -3px 0;
    padding: 4px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 8px;
  }

  .mobile-nav {
    top: calc(100% + 8px);
    border-radius: 8px;
    background: rgba(12, 14, 15, 0.96);
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 20px;
    min-height: auto;
    padding: clamp(72px, 12svh, 104px) 16px 74px;
    background-image:
      linear-gradient(90deg, rgba(7, 8, 8, 0.94) 0%, rgba(7, 8, 8, 0.78) 60%, rgba(7, 8, 8, 0.34) 100%),
      linear-gradient(180deg, rgba(7, 8, 8, 0.08) 0%, rgba(7, 8, 8, 0.16) 56%, rgba(7, 8, 8, 0.54) 100%),
      url("assets/hero-actions-gaz-equipment.png");
    background-position: 82% center;
  }

  .hero-copy {
    display: block;
    grid-column: 1;
    max-width: 100%;
  }

  .hero .eyebrow {
    margin-bottom: 17px;
    font-size: 0.63rem;
  }

  .hero h1 {
    max-width: 16ch;
    margin-bottom: 24px;
    font-size: clamp(2.08rem, 10.4vw, 3rem);
    line-height: 1.04;
  }

  .hero-actions {
    display: flex;
    margin-bottom: 12px;
    padding-top: 0;
  }

  .hero .btn-primary {
    width: 100%;
    min-height: 54px;
    padding-inline: 16px;
    font-size: 0.91rem;
  }

  .hero-panel {
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
    width: 100%;
    max-width: 360px;
    margin: 8px 0 0;
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: auto;
    padding: 62px 14px 64px;
    background-position: 86% center;
  }

  .hero h1 {
    max-width: 15ch;
    font-size: clamp(1.96rem, 10vw, 2.54rem);
  }

  .hero-panel a {
    font-size: 1.28rem;
  }
}

/* Final services polish: horizontal service cards on desktop. */
.services {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(201, 154, 99, 0.035), transparent 34%),
    #090a0a;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
  gap: clamp(30px, 4.5vw, 58px);
  align-items: start;
}

.services-intro {
  position: sticky;
  top: 104px;
  min-width: 0;
}

.services-intro h2 {
  max-width: 11.5em;
}

.services-intro p:not(.eyebrow) {
  max-width: 34ch;
}

.service-assurance {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(238, 233, 224, 0.1);
}

.service-assurance span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  color: #d7d0c5;
  font-size: 0.92rem;
}

.service-assurance .icon {
  color: #c99a63;
}

.service-categories {
  display: flex;
  grid-column: 2;
  min-width: 0;
  gap: 16px;
  margin: -4px min(-24px, -2vw) 0 0;
  padding: 4px 24px 18px 2px;
  overflow-x: auto;
  overflow-y: visible;
  overscroll-behavior-x: contain;
  scroll-padding-inline: 2px 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 154, 99, 0.46) rgba(238, 233, 224, 0.08);
}

.service-categories::-webkit-scrollbar {
  height: 8px;
}

.service-categories::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(238, 233, 224, 0.08);
}

.service-categories::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(201, 154, 99, 0.46);
}

.service-category {
  position: relative;
  display: flex;
  flex: 0 0 clamp(300px, 31vw, 365px);
  flex-direction: column;
  min-height: 365px;
  padding: clamp(22px, 2.4vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(238, 233, 224, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    linear-gradient(180deg, rgba(201, 154, 99, 0.055), transparent 48%),
    #111416;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 40px rgba(0, 0, 0, 0.18);
  scroll-snap-align: start;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.service-category::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(201, 154, 99, 0.45), transparent);
}

.service-category:hover {
  border-color: rgba(201, 154, 99, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.024)),
    linear-gradient(180deg, rgba(201, 154, 99, 0.075), transparent 48%),
    #141719;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 46px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.service-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(238, 233, 224, 0.12);
  border-radius: 8px;
  background: rgba(238, 233, 224, 0.045);
}

.service-icon .title-icon,
.service-category .title-icon {
  width: 20px;
  height: 20px;
  color: #c99a63;
}

.service-card-head .category-label {
  max-width: 14ch;
  margin: 0;
  color: #c99a63;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
}

.service-category h3 {
  margin-bottom: 12px;
  color: #f1eee8;
  font-size: clamp(1.18rem, 1.45vw, 1.42rem);
  line-height: 1.16;
}

.service-category p:not(.category-label) {
  margin-bottom: 24px;
  color: #aeb4b7;
  font-size: 0.96rem;
  line-height: 1.58;
}

.service-category ul {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding: 0;
}

.service-category li {
  color: #d9d6ce;
  font-size: 0.94rem;
  line-height: 1.42;
}

.service-category li::before {
  background: rgba(201, 154, 99, 0.78);
  box-shadow: none;
}

.services-bottom-cta {
  grid-column: 1 / -1;
  margin-top: clamp(8px, 1.8vw, 18px);
  border-color: rgba(238, 233, 224, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(201, 154, 99, 0.09), transparent 62%),
    #0d1011;
}

@media (max-width: 1040px) {
  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-intro {
    position: static;
  }

  .services-intro h2,
  .services-intro p:not(.eyebrow) {
    max-width: 720px;
  }

  .service-categories {
    grid-column: 1;
    margin-inline: -18px;
    padding-inline: 18px;
    scroll-padding-inline: 18px;
  }
}

@media (max-width: 680px) {
  .service-assurance {
    display: none;
  }

  .service-categories {
    gap: 12px;
    margin-inline: -16px;
    padding: 0 16px 12px;
    scroll-padding-inline: 16px;
  }

  .service-category {
    flex-basis: min(84vw, 340px);
    min-height: 350px;
    padding: 22px;
  }

  .service-card-head {
    margin-bottom: 20px;
  }

  .services-bottom-cta {
    grid-template-columns: 1fr;
  }
}

/* Hero layout reset: simple, non-overlapping composition. */
.site-header {
  position: relative;
  z-index: 20;
  padding-block: 8px;
}

.header-inner {
  min-height: 68px;
}

.brand-mark {
  width: 64px;
  height: 64px;
  margin: 0;
  transform: none;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 5vw, 76px);
  min-height: min(760px, calc(100svh - 84px));
  padding:
    clamp(86px, 9vw, 124px)
    clamp(18px, 5vw, 72px)
    clamp(72px, 8vw, 104px);
}

.hero-copy {
  display: block;
  flex: 0 1 720px;
  grid-column: auto;
  min-width: 0;
  max-width: 720px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 4.4vw, 4.3rem);
}

.hero-actions {
  padding-top: 0;
}

.hero-panel {
  flex: 0 0 min(330px, 28vw);
  grid-column: auto;
  grid-row: auto;
  align-self: center;
  justify-self: auto;
  width: min(100%, 330px);
  max-width: 330px;
  margin: 0;
  transform: none;
}

@media (max-width: 1120px) {
  .hero {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    padding:
      clamp(82px, 10vw, 118px)
      clamp(18px, 5vw, 56px)
      clamp(68px, 8vw, 96px);
  }

  .hero-copy {
    flex-basis: auto;
    max-width: 720px;
  }

  .hero h1 {
    max-width: 15ch;
    font-size: clamp(2.35rem, 5.8vw, 3.8rem);
  }

  .hero-panel {
    flex-basis: auto;
    width: min(100%, 360px);
    max-width: 360px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding-block: 7px;
  }

  .header-inner {
    min-height: 56px;
  }

  .brand-mark {
    width: 56px;
    height: 56px;
  }

  .hero {
    gap: 18px;
    padding: 64px 16px 64px;
  }

  .hero .eyebrow {
    white-space: normal;
  }

  .hero h1 {
    max-width: 16ch;
    font-size: clamp(1.95rem, 9.4vw, 2.58rem);
  }

  .hero-panel {
    width: 100%;
    max-width: none;
  }
}

/* Services layout repair: full-width intro + desktop horizontal rail. */
.services-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 42px);
  max-width: 1120px;
}

.services-intro {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.38fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: end;
}

.services-intro h2 {
  max-width: 760px;
}

.services-intro p:not(.eyebrow) {
  max-width: 620px;
}

.service-assurance {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(238, 233, 224, 0.1);
  border-radius: 8px;
  background: rgba(17, 20, 22, 0.72);
}

.service-categories {
  display: flex;
  grid-column: 1;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 2px 2px 18px;
  overflow-x: auto;
  overflow-y: visible;
  overscroll-behavior-x: contain;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
}

.service-category {
  flex: 0 0 clamp(360px, 38vw, 440px);
  min-height: 340px;
}

.services-bottom-cta {
  grid-column: 1;
  margin-top: 0;
}

@media (max-width: 900px) {
  .services-intro {
    grid-template-columns: 1fr;
  }

  .service-assurance {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-category {
    flex-basis: min(82vw, 380px);
  }
}

@media (max-width: 680px) {
  .services-layout {
    gap: 22px;
  }

  .service-assurance {
    display: none;
  }

  .service-categories {
    gap: 12px;
    margin-inline: -16px;
    width: auto;
    padding: 0 16px 12px;
    scroll-padding-inline: 16px;
  }

  .service-category {
    flex-basis: min(86vw, 340px);
    min-height: auto;
  }
}

/* Header polish: premium navigation with larger brand mark. */
.site-header {
  overflow: visible;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(238, 233, 224, 0.06);
  background-image:
    linear-gradient(90deg, rgba(7, 8, 8, 0.94) 0%, rgba(7, 8, 8, 0.76) 46%, rgba(7, 8, 8, 0.38) 100%),
    linear-gradient(180deg, rgba(7, 8, 8, 0.7), rgba(7, 8, 8, 0.28)),
    url("assets/hero-actions-gaz-equipment.png");
  background-position: 66% center;
  background-size: cover;
  box-shadow: none;
  backdrop-filter: blur(18px) saturate(1.08);
}

.site-header::after {
  right: clamp(20px, 4vw, 56px);
  left: clamp(20px, 4vw, 56px);
  background: linear-gradient(90deg, transparent, rgba(201, 154, 99, 0.38), transparent);
}

.header-inner {
  width: min(100%, 1180px);
  min-height: 112px;
  gap: clamp(18px, 3vw, 38px);
}

.brand-mark {
  width: 136px;
  height: 136px;
  margin: -10px 0 -34px;
  padding: 7px;
  border: 1px solid rgba(238, 233, 224, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #0a0b0b;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(18px);
}

.brand img {
  border-radius: 7px;
}

.nav {
  display: flex;
  align-self: center;
  align-items: stretch;
  gap: clamp(6px, 1vw, 10px);
  min-height: 48px;
  padding: 6px;
  border: 1px solid rgba(238, 233, 224, 0.09);
  border-radius: 12px;
  background: rgba(8, 10, 10, 0.28);
  color: #e3ddd3;
  font-size: 0.88rem;
  font-weight: 720;
  box-shadow: none;
  backdrop-filter: blur(12px) saturate(1.04);
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 0 12px;
  border-radius: 8px;
  line-height: 1;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

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

.nav a:hover,
.nav a:focus-visible {
  color: #fff7ec;
  background: rgba(201, 154, 99, 0.14);
  box-shadow: inset 0 0 0 1px rgba(201, 154, 99, 0.2);
  outline: none;
  text-shadow: none;
  transform: none;
}

.header-call {
  min-height: 54px;
  padding: 0 18px;
  border-color: rgba(201, 154, 99, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(201, 154, 99, 0.14), rgba(255, 255, 255, 0.028)),
    rgba(14, 16, 17, 0.76);
  color: #f5eee4;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.18);
}

.header-call:hover {
  border-color: rgba(201, 154, 99, 0.52);
  background:
    linear-gradient(135deg, rgba(201, 154, 99, 0.18), rgba(255, 255, 255, 0.038)),
    rgba(17, 19, 20, 0.9);
}

.header-call .icon {
  width: 18px;
  height: 18px;
  color: #d4a56c;
}

.header-call small {
  color: #bdb6aa;
  font-size: 0.63rem;
  letter-spacing: 0.1em;
}

.header-call strong {
  color: #f6f1e9;
  font-size: 0.94rem;
}

@media (max-width: 1120px) {
  .header-inner {
    min-height: 94px;
  }

  .brand-mark {
    width: 108px;
    height: 108px;
    margin: -6px 0 -24px;
    transform: translateY(12px);
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    display: grid;
    top: calc(100% + 10px);
    width: min(360px, calc(100vw - 28px));
    padding: 8px;
    border: 1px solid rgba(238, 233, 224, 0.14);
    border-radius: 10px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
      rgba(10, 12, 13, 0.96);
    box-shadow:
      0 24px 56px rgba(0, 0, 0, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .mobile-nav a {
    min-height: 50px;
    padding: 0 14px;
    border-radius: 8px;
    color: #eee8de;
    font-size: 0.98rem;
    font-weight: 760;
    box-shadow: inset 0 -1px 0 rgba(238, 233, 224, 0.07);
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus-visible {
    background: rgba(201, 154, 99, 0.13);
    box-shadow: inset 0 0 0 1px rgba(201, 154, 99, 0.18);
  }

  .mobile-nav-call {
    margin-top: 8px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.34),
      0 12px 24px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 10px 14px;
  }

  .header-inner {
    min-height: 72px;
    gap: 12px;
  }

  .brand-mark {
    width: 82px;
    height: 82px;
    margin: -4px 0 -16px;
    padding: 5px;
    transform: translateY(8px);
  }

  .header-call {
    display: none;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    border-radius: 999px;
  }
}

/* Header over hero: use the actual hero image behind the nav. */
.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: transparent;
  background-image: none;
}

.hero {
  padding-top: clamp(128px, 12vw, 168px);
}

@media (max-width: 1120px) {
  .hero {
    padding-top: clamp(122px, 13vw, 154px);
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 108px;
  }
}

/* Keep the full logo artwork visible instead of cropping it into a square. */
.brand-mark {
  width: 156px;
  height: auto;
  aspect-ratio: 1153 / 887;
}

.brand img,
.footer-logo img {
  object-fit: contain;
}

.nav {
  min-height: 84px;
  padding-block: 0;
  align-items: center;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 100%;
  padding-block: 4px 0;
  line-height: 1.1;
}

.hero-copy {
  transform: translateY(40px);
}

@media (max-width: 1120px) {
  .brand-mark {
    width: 124px;
  }
}

@media (max-width: 680px) {
  .brand-mark {
    width: 92px;
  }
}

/* Cohesive navigation redesign. */
.site-header {
  padding: 18px clamp(18px, 4vw, 48px);
}

.header-inner {
  width: min(100%, 1180px);
  min-height: 76px;
  gap: clamp(16px, 2.4vw, 30px);
}

.brand-mark {
  width: 142px;
  height: auto;
  aspect-ratio: 1153 / 887;
  margin: 0;
  padding: 7px;
  border: 1px solid rgba(238, 233, 224, 0.12);
  border-radius: 12px;
  background: rgba(6, 7, 7, 0.62);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transform: none;
  backdrop-filter: blur(14px) saturate(1.08);
}

.brand img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: contain;
}

.nav {
  position: relative;
  display: flex;
  align-self: center;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 56px;
  padding: 5px;
  border: 1px solid rgba(238, 233, 224, 0.13);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(7, 8, 8, 0.58);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #eee8dc;
  font-size: 0.91rem;
  font-weight: 760;
  backdrop-filter: blur(18px) saturate(1.08);
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 17px;
  border-radius: 10px;
  color: inherit;
  line-height: 1;
  white-space: nowrap;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.nav a:hover,
.nav a:focus-visible {
  color: #fff8ee;
  background: rgba(238, 233, 224, 0.08);
  box-shadow: inset 0 0 0 1px rgba(238, 233, 224, 0.08);
  outline: none;
  text-shadow: none;
}

.nav a:last-child {
  color: #ffd6a4;
}

.nav a:last-child:hover,
.nav a:last-child:focus-visible {
  background: rgba(229, 132, 45, 0.16);
  box-shadow: inset 0 0 0 1px rgba(229, 132, 45, 0.22);
}

.header-call {
  min-height: 56px;
  padding: 0 17px;
  border: 1px solid rgba(229, 132, 45, 0.28);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(229, 132, 45, 0.18), rgba(255, 255, 255, 0.032)),
    rgba(8, 9, 9, 0.62);
  color: #fff2e4;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px) saturate(1.08);
}

.header-call small {
  color: #d9b889;
}

.header-call strong {
  color: #fff7ee;
}

.menu-toggle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(8, 9, 9, 0.68);
  backdrop-filter: blur(16px) saturate(1.08);
}

.mobile-nav {
  top: calc(100% + 12px);
  padding: 8px;
  border-color: rgba(238, 233, 224, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(8, 9, 9, 0.96);
}

.mobile-nav a {
  min-height: 50px;
  border-radius: 10px;
  color: #eee8dc;
  font-weight: 760;
}

@media (max-width: 1120px) {
  .site-header {
    padding: 14px 16px;
  }

  .header-inner {
    min-height: 66px;
  }

  .brand-mark {
    width: 118px;
  }

  .nav {
    display: none;
  }

  .header-call {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 14px;
  }

  .header-inner {
    min-height: 58px;
  }

  .brand-mark {
    width: 96px;
    padding: 5px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
  }
}

/* Premium editorial services redesign. */
#services.services {
  overflow: hidden;
  padding: clamp(82px, 9vw, 126px) clamp(18px, 4vw, 56px);
  background:
    radial-gradient(circle at 18% 12%, rgba(229, 132, 45, 0.12), transparent 34%),
    linear-gradient(180deg, #090a0a 0%, #0d0f10 58%, #080909 100%);
}

#services .services-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 4vw, 42px);
  width: min(100%, 1120px);
  max-width: 1120px;
  margin: 0 auto;
}

#services .services-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding-bottom: clamp(22px, 3vw, 34px);
  border-bottom: 1px solid rgba(238, 233, 224, 0.1);
}

#services .services-intro {
  position: static;
  max-width: 720px;
}

#services .services-intro h2 {
  max-width: 13.5em;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

#services .services-intro p:not(.eyebrow) {
  max-width: 62ch;
  color: #b7b4ae;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.72;
}

#services .service-assurance {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(238, 233, 224, 0.11);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(12, 14, 15, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

#services .service-assurance span {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  min-height: 58px;
  padding: 0 18px;
  color: #eee8dc;
  font-size: 0.95rem;
  font-weight: 720;
}

#services .service-assurance span + span {
  border-top: 1px solid rgba(238, 233, 224, 0.08);
}

#services .service-assurance strong {
  color: #c99a63;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.14em;
}

#services .service-categories {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(16px, 2.4vw, 26px);
  overflow: visible;
}

#services .service-category {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: clamp(22px, 2.7vw, 34px);
  border: 1px solid rgba(238, 233, 224, 0.11);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
    rgba(12, 14, 15, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  transform: none;
}

#services .service-category::before,
#services .service-category::after {
  display: none;
}

#services .service-category:hover {
  transform: none;
}

#services .service-featured {
  min-height: clamp(430px, 42vw, 520px);
  justify-content: space-between;
  overflow: hidden;
  border-color: rgba(229, 132, 45, 0.28);
  background:
    linear-gradient(135deg, rgba(229, 132, 45, 0.18), transparent 36%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.014)),
    rgba(13, 15, 16, 0.76);
}

#services .service-featured::before {
  position: absolute;
  top: 0;
  right: clamp(24px, 4vw, 52px);
  left: clamp(24px, 4vw, 52px);
  display: block;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(229, 132, 45, 0.95), transparent);
}

#services .service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

#services .category-label {
  margin: 0;
  color: #d5a56a;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

#services .service-mark {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(229, 132, 45, 0.24);
  border-radius: 999px;
  color: #f1c083;
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#services .service-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.55fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: end;
}

#services .service-category h3 {
  max-width: 12em;
  margin: 18px 0 14px;
  color: #f5f0e8;
  font-size: clamp(1.45rem, 2.4vw, 2.55rem);
  line-height: 1.04;
  letter-spacing: 0;
}

#services .service-category p:not(.category-label) {
  max-width: 52ch;
  margin: 0;
  color: #b8b3aa;
  font-size: clamp(0.98rem, 1.1vw, 1.05rem);
  line-height: 1.68;
}

#services .service-category small {
  display: block;
  max-width: 44ch;
  margin-top: 22px;
  padding-left: 16px;
  border-left: 2px solid rgba(229, 132, 45, 0.62);
  color: #ead8bf;
  font-size: 0.94rem;
  line-height: 1.58;
}

#services .service-category ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

#services .service-category li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 0 0 22px;
  border-top: 1px solid rgba(238, 233, 224, 0.08);
  color: #eee7dc;
  font-size: 0.94rem;
  font-weight: 680;
}

#services .service-category li::before {
  position: absolute;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(229, 132, 45, 0.8);
  border-radius: 50%;
  content: "";
  background: rgba(229, 132, 45, 0.22);
}

#services .service-secondary-grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: clamp(16px, 2.4vw, 26px);
}

#services .service-secondary {
  justify-content: space-between;
  min-height: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
    rgba(10, 12, 13, 0.66);
}

#services .service-secondary-alt {
  border-color: rgba(124, 174, 200, 0.18);
}

#services .service-secondary h3 {
  margin-top: 14px;
  font-size: clamp(1.28rem, 1.8vw, 1.72rem);
}

#services .service-secondary ul {
  margin-top: 22px;
}

#services .service-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(238, 233, 224, 0.1);
  border-radius: 14px;
  background: rgba(8, 9, 9, 0.42);
}

#services .service-process span {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  min-height: 68px;
  padding: 0 clamp(16px, 2vw, 24px);
  color: #eee8dc;
  font-size: clamp(0.92rem, 1vw, 1rem);
  font-weight: 720;
}

#services .service-process span + span {
  border-left: 1px solid rgba(238, 233, 224, 0.08);
}

#services .service-process strong {
  color: #c99a63;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
}

#services .services-bottom-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  margin: 0;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(238, 233, 224, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(229, 132, 45, 0.1), transparent 44%),
    rgba(10, 12, 13, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

#services .services-bottom-cta::before {
  position: absolute;
  top: 0;
  right: clamp(22px, 4vw, 44px);
  left: clamp(22px, 4vw, 44px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(229, 132, 45, 0.9), transparent);
}

#services .services-bottom-cta span {
  display: block;
  margin-bottom: 10px;
  color: #d5a56a;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

#services .services-bottom-cta h3 {
  max-width: 720px;
  margin: 0 0 8px;
  color: #f5f0e8;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.14;
}

#services .services-bottom-cta p {
  max-width: 620px;
  margin: 0;
  color: #b7b1a8;
}

#services .services-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

#services .services-bottom-actions .btn {
  min-height: 48px;
  border-radius: 10px;
}

@media (max-width: 980px) {
  #services .services-head,
  #services .service-categories,
  #services .services-bottom-cta {
    grid-template-columns: 1fr;
  }

  #services .service-assurance {
    grid-template-columns: repeat(3, 1fr);
  }

  #services .service-assurance span + span {
    border-top: 0;
    border-left: 1px solid rgba(238, 233, 224, 0.08);
  }

  #services .service-card-body {
    grid-template-columns: 1fr;
  }

  #services .service-secondary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  #services .services-bottom-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  #services.services {
    padding: 72px 14px;
  }

  #services .services-layout {
    gap: 22px;
  }

  #services .services-head {
    gap: 22px;
    padding-bottom: 20px;
  }

  #services .services-intro h2 {
    font-size: clamp(1.9rem, 9vw, 2.75rem);
  }

  #services .service-assurance,
  #services .service-secondary-grid,
  #services .service-process {
    grid-template-columns: 1fr;
  }

  #services .service-assurance span + span,
  #services .service-process span + span {
    border-top: 1px solid rgba(238, 233, 224, 0.08);
    border-left: 0;
  }

  #services .service-featured {
    min-height: 0;
  }

  #services .service-category {
    padding: 22px;
    border-radius: 14px;
  }

  #services .service-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  #services .service-category h3 {
    font-size: clamp(1.42rem, 8vw, 2rem);
  }

  #services .service-process span {
    min-height: 58px;
  }

  #services .services-bottom-cta {
    padding: 22px;
    border-radius: 14px;
  }

  #services .services-bottom-actions,
  #services .services-bottom-actions .btn {
    width: 100%;
  }
}

/* Isolated services layout fix: avoids legacy service-card rules and scripts. */
#services .services-editorial {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
  width: min(100%, 1120px);
  margin: 0 auto;
}

#services .services-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding-bottom: clamp(22px, 3vw, 34px);
  border-bottom: 1px solid rgba(238, 233, 224, 0.1);
}

#services .services-copy {
  min-width: 0;
  max-width: 740px;
}

#services .services-copy h2 {
  max-width: 13.5em;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

#services .services-copy p:not(.eyebrow) {
  max-width: 62ch;
  color: #b7b4ae;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.72;
}

#services .services-proof {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(238, 233, 224, 0.11);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(12, 14, 15, 0.58);
}

#services .services-proof span,
#services .services-process span {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: #eee8dc;
  font-weight: 720;
}

#services .services-proof span {
  min-height: 58px;
  padding: 0 18px;
  font-size: 0.95rem;
}

#services .services-proof span + span {
  border-top: 1px solid rgba(238, 233, 224, 0.08);
}

#services .services-proof strong,
#services .services-process strong {
  flex: 0 0 auto;
  color: #c99a63;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.14em;
}

#services .services-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(16px, 2.4vw, 26px);
  align-items: stretch;
  min-width: 0;
}

#services .services-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(22px, 2.7vw, 34px);
  border: 1px solid rgba(238, 233, 224, 0.11);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
    rgba(12, 14, 15, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

#services .services-card-featured {
  min-height: clamp(380px, 36vw, 470px);
  gap: clamp(22px, 3vw, 32px);
  justify-content: flex-start;
  overflow: hidden;
  border-color: rgba(229, 132, 45, 0.28);
  background:
    linear-gradient(135deg, rgba(229, 132, 45, 0.18), transparent 36%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.014)),
    rgba(13, 15, 16, 0.76);
}

#services .services-card-featured::before {
  position: absolute;
  top: 0;
  right: clamp(24px, 4vw, 52px);
  left: clamp(24px, 4vw, 52px);
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(229, 132, 45, 0.95), transparent);
}

#services .services-card-media {
  position: relative;
  width: calc(100% + clamp(44px, 5.4vw, 68px));
  margin: 0 calc(clamp(22px, 2.7vw, 34px) * -1);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  border-block: 1px solid rgba(238, 233, 224, 0.1);
  background: #080909;
}

#services .services-card-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 9, 9, 0.78), transparent 42%, rgba(8, 9, 9, 0.42)),
    linear-gradient(0deg, rgba(8, 9, 9, 0.48), transparent 52%);
}

#services .services-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  opacity: 0.88;
}

#services .services-card-secondary .services-card-media {
  width: calc(100% + clamp(44px, 5.4vw, 68px));
  margin: 14px calc(clamp(22px, 2.7vw, 34px) * -1) 18px;
  aspect-ratio: 16 / 8;
}

#services .services-card-media-heating img {
  object-position: 76% center;
}

#services .services-card-media-plumbing img {
  object-position: 18% center;
}

#services .services-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

#services .services-card-label {
  margin: 0;
  color: #d5a56a;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

#services .services-card-mark {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(229, 132, 45, 0.24);
  border-radius: 999px;
  color: #f1c083;
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#services .services-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.52fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
}

#services .services-card h3 {
  max-width: 12em;
  margin: 18px 0 14px;
  color: #f5f0e8;
  font-size: clamp(1.45rem, 2.4vw, 2.55rem);
  line-height: 1.04;
  letter-spacing: 0;
}

#services .services-card p:not(.services-card-label) {
  max-width: 52ch;
  margin: 0;
  color: #b8b3aa;
  font-size: clamp(0.98rem, 1.1vw, 1.05rem);
  line-height: 1.68;
}

#services .services-card small {
  display: block;
  max-width: 44ch;
  margin-top: 22px;
  padding-left: 16px;
  border-left: 2px solid rgba(229, 132, 45, 0.62);
  color: #ead8bf;
  font-size: 0.94rem;
  line-height: 1.58;
}

#services .services-card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

#services .services-card li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0 0 22px;
  border-top: 1px solid rgba(238, 233, 224, 0.08);
  color: #eee7dc;
  font-size: 0.94rem;
  font-weight: 680;
}

#services .services-card li::before {
  position: absolute;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(229, 132, 45, 0.8);
  border-radius: 50%;
  content: "";
  background: rgba(229, 132, 45, 0.22);
}

#services .services-secondary-grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: clamp(16px, 2.4vw, 26px);
  min-width: 0;
}

#services .services-card-secondary {
  justify-content: space-between;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
    rgba(10, 12, 13, 0.66);
}

#services .services-card-plumbing {
  border-color: rgba(124, 174, 200, 0.18);
}

#services .services-card-secondary h3 {
  margin-top: 14px;
  font-size: clamp(1.28rem, 1.8vw, 1.72rem);
}

#services .services-card-secondary ul {
  margin-top: 22px;
}

#services .services-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(238, 233, 224, 0.1);
  border-radius: 14px;
  background: rgba(8, 9, 9, 0.42);
}

#services .services-process span {
  min-height: 66px;
  padding: 0 clamp(16px, 2vw, 24px);
  font-size: clamp(0.92rem, 1vw, 1rem);
}

#services .services-process span + span {
  border-left: 1px solid rgba(238, 233, 224, 0.08);
}

#services .services-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(238, 233, 224, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(229, 132, 45, 0.1), transparent 44%),
    rgba(10, 12, 13, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

#services .services-cta::before {
  position: absolute;
  top: 0;
  right: clamp(22px, 4vw, 44px);
  left: clamp(22px, 4vw, 44px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(229, 132, 45, 0.9), transparent);
}

#services .services-cta span {
  display: block;
  margin-bottom: 10px;
  color: #d5a56a;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

#services .services-cta h3 {
  max-width: 720px;
  margin: 0 0 8px;
  color: #f5f0e8;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.14;
}

#services .services-cta p {
  max-width: 620px;
  margin: 0;
  color: #b7b1a8;
}

#services .services-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  min-width: 0;
}

#services .services-cta-actions .btn {
  min-height: 48px;
  border-radius: 10px;
}

@media (max-width: 980px) {
  #services .services-head,
  #services .services-showcase,
  #services .services-cta {
    grid-template-columns: 1fr;
  }

  #services .services-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #services .services-proof span + span {
    border-top: 0;
    border-left: 1px solid rgba(238, 233, 224, 0.08);
  }

  #services .services-card-body {
    grid-template-columns: 1fr;
  }

  #services .services-secondary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  #services .services-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  #services .services-editorial {
    gap: 22px;
  }

  #services .services-head {
    gap: 22px;
    padding-bottom: 20px;
  }

  #services .services-copy h2 {
    font-size: clamp(1.9rem, 9vw, 2.75rem);
  }

  #services .services-proof,
  #services .services-secondary-grid,
  #services .services-process {
    grid-template-columns: 1fr;
  }

  #services .services-proof span + span,
  #services .services-process span + span {
    border-top: 1px solid rgba(238, 233, 224, 0.08);
    border-left: 0;
  }

  #services .services-card-featured {
    min-height: 0;
  }

  #services .services-card-media {
    width: calc(100% + 44px);
    margin-inline: -22px;
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  #services .services-card-media::after {
    background:
      linear-gradient(90deg, rgba(8, 9, 9, 0.42), transparent 48%, rgba(8, 9, 9, 0.2)),
      linear-gradient(0deg, rgba(8, 9, 9, 0.32), transparent 58%);
  }

  #services .services-card-media img {
    object-position: 72% center;
    opacity: 1;
  }

  #services .services-card-secondary .services-card-media {
    width: calc(100% + 44px);
    margin: 16px -22px 18px;
    min-height: 170px;
    aspect-ratio: 16 / 10;
  }

  #services .services-card-media-heating img {
    object-position: 78% center;
  }

  #services .services-card-media-plumbing img {
    object-position: 20% center;
  }

  #services .services-card {
    padding: 22px;
    border-radius: 14px;
  }

  #services .services-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  #services .services-card h3 {
    font-size: clamp(1.42rem, 8vw, 2rem);
  }

  #services .services-process span {
    min-height: 58px;
  }

  #services .services-cta {
    padding: 22px;
    border-radius: 14px;
  }

  #services .services-cta-actions,
  #services .services-cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .mobile-call {
    right: 18px;
    bottom: 18px;
    left: auto;
    display: inline-flex;
    width: 54px;
    min-width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 0;
    overflow: hidden;
    border-radius: 50%;
    font-size: 0;
  }

  .mobile-call .icon {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 680px) {
  .hero {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 100svh;
    min-height: 100dvh;
    gap: 16px;
    padding:
      clamp(84px, 12svh, 108px)
      16px
      max(84px, calc(env(safe-area-inset-bottom) + 72px));
    justify-content: center;
    background-position: 78% center;
  }

  .hero-copy {
    flex: 0 1 auto;
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .hero h1 {
    max-width: 14.5ch;
    margin-bottom: 20px;
    font-size: clamp(2rem, 9.6vw, 2.72rem);
  }

  .hero-actions {
    width: 100%;
    margin-bottom: 0;
  }

  .hero .btn-primary {
    width: 100%;
  }

  .hero-panel {
    flex: 0 0 auto;
    width: min(100%, 360px);
    max-width: 360px;
    margin: 0;
    padding: 14px;
  }

  .hero-panel a {
    font-size: clamp(1.18rem, 6vw, 1.42rem);
  }
}

@media (max-width: 680px) and (max-height: 700px) {
  .hero {
    gap: 12px;
    padding-top: 76px;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: clamp(1.86rem, 8.8vw, 2.34rem);
  }

  .hero-panel {
    display: none;
  }
}

#services .services-head {
  grid-template-columns: minmax(0, 1fr);
}

@media (max-width: 680px) {
  #services .services-showcase {
    display: flex;
    gap: 14px;
    width: calc(100% + 28px);
    margin-inline: -14px;
    padding: 0 14px 12px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-padding-inline: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  #services .services-showcase::-webkit-scrollbar {
    height: 4px;
  }

  #services .services-showcase::-webkit-scrollbar-track {
    background: rgba(238, 233, 224, 0.06);
    border-radius: 999px;
  }

  #services .services-showcase::-webkit-scrollbar-thumb {
    background: rgba(229, 132, 45, 0.54);
    border-radius: 999px;
  }

  #services .services-secondary-grid {
    display: contents;
  }

  #services .services-card {
    flex: 0 0 min(84vw, 360px);
    scroll-snap-align: start;
  }

  #services .services-card-featured {
    flex-basis: min(88vw, 380px);
  }
}

@media (max-width: 680px) {
  .hero {
    align-items: stretch;
    gap: 18px;
    padding:
      clamp(104px, 13svh, 124px)
      16px
      max(88px, calc(env(safe-area-inset-bottom) + 78px));
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hero .eyebrow {
    width: fit-content;
    max-width: 100%;
    margin-bottom: 16px;
    padding: 8px 16px;
    font-size: 0.62rem;
    line-height: 1.35;
  }

  .hero h1 {
    max-width: 12.8ch;
    margin-bottom: 26px;
    font-size: clamp(1.92rem, 9vw, 2.46rem);
    line-height: 1.08;
  }

  .hero-actions {
    display: block;
    width: 100%;
  }

  .hero .btn-primary {
    width: 100%;
    min-height: 56px;
    position: relative;
    z-index: 2;
  }

  .hero-panel {
    position: relative;
    z-index: 1;
    width: calc(100% - 36px);
    max-width: 340px;
    margin: 2px auto 0;
    padding: 16px;
  }

  .hero-panel span {
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  .hero-panel a {
    font-size: clamp(1.22rem, 7vw, 1.58rem);
  }

  .hero-panel small {
    font-size: 0.82rem;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: clamp(1.82rem, 8.8vw, 2.24rem);
  }

  .hero-panel {
    width: 100%;
  }
}

/* Final mobile hero composition: cleaner, less crowded, full-screen. */
@media (max-width: 680px) {
  .hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: 100svh;
    min-height: 100dvh;
    padding:
      clamp(96px, 13svh, 124px)
      16px
      max(112px, calc(env(safe-area-inset-bottom) + 96px));
    background-position: 78% center;
  }

  .hero-copy {
    width: 100%;
    max-width: 420px;
    transform: none;
  }

  .hero .eyebrow {
    width: fit-content;
    max-width: min(100%, 330px);
    margin-bottom: 18px;
    padding: 8px 14px;
    font-size: 0.62rem;
    line-height: 1.35;
    white-space: normal;
  }

  .hero h1 {
    max-width: 12.5ch;
    margin-bottom: 28px;
    font-size: clamp(2.08rem, 10.2vw, 2.82rem);
    line-height: 1.04;
  }

  .hero-actions {
    width: min(100%, 360px);
    margin: 0;
  }

  .hero .btn-primary {
    width: 100%;
    min-height: 56px;
  }

  .hero-panel {
    display: none;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: clamp(1.92rem, 9.4vw, 2.34rem);
  }
}

@media (min-width: 981px) {
  #services .services-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #services .services-secondary-grid {
    display: contents;
  }

  #services .services-card-featured {
    min-height: 0;
  }

  #services .services-card-body {
    display: block;
  }

  #services .services-card ul {
    margin-top: 22px;
  }
}

@media (min-width: 1121px) {
  .site-header {
    padding: 10px clamp(18px, 4vw, 48px);
    border-bottom-color: transparent;
  }

  .site-header::after {
    display: none;
  }

  .header-inner {
    min-height: 58px;
  }

  .brand-mark {
    width: 142px;
  }

  .nav {
    min-height: 44px;
    padding: 4px;
    border-radius: 12px;
  }

  .nav a {
    min-height: 36px;
    padding: 0 15px;
  }

  .header-call {
    min-height: 46px;
    border-radius: 12px;
  }
}

/* Desktop hero layout lock: keeps the large logo, compact nav, and hero elements from colliding. */
@media (min-width: 981px) {
  .hero {
    display: grid;
    grid-template-columns:
      minmax(clamp(24px, 4vw, 64px), 1fr)
      minmax(0, 600px)
      minmax(270px, 330px)
      minmax(clamp(24px, 4vw, 64px), 1fr);
    column-gap: clamp(28px, 4vw, 64px);
    row-gap: 24px;
    align-items: end;
    min-height: min(760px, 86svh);
    padding: clamp(138px, 13vw, 176px) 0 clamp(72px, 7vw, 98px);
    background-position: 69% center;
  }

  .hero-copy {
    grid-column: 2;
    max-width: 600px;
    padding: 0;
    transform: none;
  }

  .hero .eyebrow {
    margin-bottom: 18px;
  }

  .hero h1 {
    max-width: 10.9ch;
    margin-bottom: 26px;
    font-size: clamp(2.85rem, 4vw, 4.12rem);
    line-height: 1.04;
  }

  .hero-actions {
    width: fit-content;
    margin: 0;
    padding: 0;
  }

  .hero .btn-primary {
    width: auto;
    min-width: 278px;
  }

  .hero-panel {
    grid-column: 3;
    align-self: end;
    justify-self: end;
    width: min(100%, 320px);
    margin: 0;
    transform: none;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .hero {
    grid-template-columns:
      minmax(clamp(18px, 4vw, 44px), 1fr)
      minmax(0, 620px)
      minmax(clamp(18px, 4vw, 44px), 1fr);
    align-items: center;
    min-height: 720px;
    background-position: 74% center;
  }

  .hero-copy,
  .hero-panel {
    grid-column: 2;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.65rem, 5vw, 3.7rem);
  }

  .hero-panel {
    justify-self: start;
    margin-top: 24px;
  }
}

/* Final desktop header lock: balanced height with a large visible logo. */
@media (min-width: 1121px) {
  .site-header {
    padding: 14px clamp(18px, 4vw, 48px);
    border-bottom: 0;
  }

  .header-inner {
    align-items: center;
    min-height: 78px;
    overflow: visible;
  }

  .brand {
    flex: 0 0 142px;
    align-self: center;
    height: auto;
    overflow: visible;
  }

  .brand-mark {
    position: relative;
    z-index: 3;
    width: 142px;
    margin: 0;
    transform: none;
  }

  .nav {
    min-height: 58px;
    padding: 5px;
    border-radius: 14px;
  }

  .nav a {
    min-height: 48px;
    padding: 0 16px;
  }

  .header-call {
    min-height: 58px;
    padding: 0 17px;
    border-radius: 14px;
  }
}

/* Current layout repair: header + redesigned hero. */
.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  padding: clamp(14px, 2vw, 24px) clamp(16px, 4vw, 48px);
  background: transparent;
}

.header-inner {
  width: min(100%, 1180px);
  min-height: 86px;
  align-items: center;
  overflow: visible;
}

.brand {
  flex: 0 0 auto;
}

.brand-mark {
  width: clamp(116px, 10vw, 154px);
  height: auto;
  aspect-ratio: 1153 / 887;
  margin: 0;
  transform: none;
}

.nav {
  min-height: 58px;
  padding: 5px;
  border-radius: 14px;
}

.nav a {
  min-height: 48px;
  padding: 0 clamp(12px, 1.35vw, 18px);
}

.header-call {
  min-height: 58px;
  border-radius: 14px;
}

.hero.hero-redesign {
  display: block;
  min-height: min(900px, 100svh);
  padding: clamp(158px, 14vw, 210px) clamp(18px, 5vw, 72px) clamp(80px, 8vw, 118px);
  background-image:
    linear-gradient(90deg, rgba(7, 8, 8, 0.94) 0%, rgba(7, 8, 8, 0.76) 38%, rgba(7, 8, 8, 0.28) 68%, rgba(7, 8, 8, 0.12) 100%),
    linear-gradient(180deg, rgba(7, 8, 8, 0.08) 0%, rgba(7, 8, 8, 0.1) 50%, rgba(7, 8, 8, 0.62) 100%),
    url("assets/hero-actions-gaz-equipment.png");
  background-position: 66% center;
  background-size: cover;
}

.hero-redesign .hero-visual {
  display: none;
}

.hero-redesign .hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 660px) minmax(270px, 360px);
  gap: clamp(34px, 6vw, 86px);
  align-items: end;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.hero-redesign .hero-copy {
  display: block;
  grid-column: auto;
  max-width: 660px;
  padding: 0;
  transform: none;
}

.hero-redesign .hero-eyebrow {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 22px;
  white-space: normal;
}

.hero-redesign h1 {
  max-width: 11.8ch;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.15vw, 5.15rem);
  line-height: 1.03;
}

.hero-subtitle {
  max-width: 740px;
  margin: 0 0 28px;
  color: #e1ddd5;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 620;
  line-height: 1.62;
}

.hero-redesign .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-redesign .hero-main-cta {
  width: auto;
  min-width: min(100%, 300px);
}

.hero-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  color: #f3eee6;
  font-size: 1.06rem;
  font-weight: 760;
  white-space: nowrap;
}

.hero-phone-link .icon {
  width: 17px;
  height: 17px;
  color: #d3a46b;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 20px;
  color: #eee6dc;
  font-size: 0.94rem;
  font-weight: 700;
}

.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust-row .icon {
  width: 15px;
  height: 15px;
  color: #d3a46b;
}

.hero-redesign .hero-panel {
  display: grid;
  grid-column: auto;
  justify-self: end;
  align-self: end;
  width: min(100%, 360px);
  max-width: 360px;
  margin: 0;
  transform: none;
}

.hero-panel-label {
  color: #c99a63;
}

@media (max-width: 1120px) {
  .site-header {
    padding: 14px 16px;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-mark {
    width: 118px;
  }

  .hero.hero-redesign {
    min-height: auto;
    padding: clamp(140px, 16vw, 172px) clamp(18px, 5vw, 56px) clamp(72px, 8vw, 100px);
    background-position: 74% center;
  }

  .hero-redesign .hero-inner {
    grid-template-columns: minmax(0, 700px);
    align-items: start;
  }

  .hero-redesign .hero-panel {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 14px;
  }

  .header-inner {
    min-height: 62px;
    gap: 12px;
  }

  .brand-mark {
    width: 96px;
    padding: 5px;
    border-radius: 10px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .mobile-nav {
    top: calc(100% + 10px);
    right: 0;
    width: min(360px, calc(100vw - 28px));
  }

  .hero.hero-redesign {
    min-height: 100svh;
    min-height: 100dvh;
    padding:
      clamp(118px, 15svh, 142px)
      16px
      max(94px, calc(env(safe-area-inset-bottom) + 82px));
    background-image:
      linear-gradient(90deg, rgba(7, 8, 8, 0.94) 0%, rgba(7, 8, 8, 0.76) 58%, rgba(7, 8, 8, 0.36) 100%),
      linear-gradient(180deg, rgba(7, 8, 8, 0.08) 0%, rgba(7, 8, 8, 0.18) 46%, rgba(7, 8, 8, 0.7) 100%),
      url("assets/hero-actions-gaz-equipment.png");
    background-position: 76% center;
  }

  .hero-redesign .hero-inner {
    display: block;
    width: 100%;
  }

  .hero-redesign .hero-copy {
    width: 100%;
    max-width: 430px;
  }

  .hero-redesign .hero-eyebrow {
    margin-bottom: 16px;
    padding: 8px 13px;
    font-size: 0.61rem;
    line-height: 1.35;
  }

  .hero-redesign h1 {
    max-width: 12.2ch;
    margin-bottom: 20px;
    font-size: clamp(2.05rem, 10vw, 2.86rem);
    line-height: 1.04;
  }

  .hero-subtitle {
    max-width: 34ch;
    margin-bottom: 22px;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .hero-redesign .hero-actions {
    display: grid;
    gap: 12px;
    width: min(100%, 360px);
  }

  .hero-redesign .hero-main-cta {
    width: 100%;
    min-width: 0;
  }

  .hero-phone-link {
    justify-content: center;
    min-height: 44px;
    color: #f7ead9;
    font-size: 1rem;
  }

  .hero-trust-row {
    display: none;
  }

  .hero-redesign .hero-panel {
    display: none;
  }
}

@media (max-width: 390px) {
  .hero.hero-redesign {
    padding-top: 108px;
  }

  .hero-redesign h1 {
    font-size: clamp(1.88rem, 9.3vw, 2.34rem);
  }

  .hero-subtitle {
    font-size: 0.91rem;
  }
}

/* Current services layout repair: readable intro, aligned proof, stable cards. */
#services.services {
  padding: clamp(76px, 8vw, 112px) clamp(18px, 4vw, 56px);
  background:
    radial-gradient(circle at 12% 8%, rgba(201, 154, 99, 0.12), transparent 32%),
    linear-gradient(180deg, #090a0a 0%, #0d0f10 58%, #080909 100%);
}

#services .services-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 44px);
  width: min(100%, 1180px);
  max-width: 1180px;
  margin: 0 auto;
}

#services .services-intro {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding-bottom: clamp(22px, 3vw, 34px);
  border-bottom: 1px solid rgba(238, 233, 224, 0.1);
}

#services .services-intro > div:first-child {
  min-width: 0;
  max-width: 780px;
}

#services .services-intro h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 3.2vw, 3.65rem);
  line-height: 1.06;
}

#services .services-intro p:not(.eyebrow) {
  max-width: 62ch;
  margin: 0;
  color: #b7b4ae;
  font-size: clamp(1rem, 1.14vw, 1.1rem);
  line-height: 1.68;
}

#services .service-assurance {
  display: grid;
  gap: 0;
  align-self: start;
  margin: 6px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(238, 233, 224, 0.11);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(12, 14, 15, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

#services .service-assurance span {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 0 20px;
  color: #eee8dc;
  font-size: 0.98rem;
  font-weight: 760;
}

#services .service-assurance span + span {
  border-top: 1px solid rgba(238, 233, 224, 0.08);
}

#services .service-assurance .icon {
  width: 18px;
  height: 18px;
  color: #c99a63;
}

#services .service-categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: visible;
}

#services .service-category {
  display: flex;
  flex: initial;
  flex-direction: column;
  min-width: 0;
  min-height: 360px;
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid rgba(238, 233, 224, 0.11);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.016)),
    linear-gradient(180deg, rgba(201, 154, 99, 0.06), transparent 52%),
    #111416;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 40px rgba(0, 0, 0, 0.16);
}

#services .service-category::before,
#services .service-category::after {
  display: none;
}

#services .service-category:hover {
  border-color: rgba(201, 154, 99, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.024)),
    linear-gradient(180deg, rgba(201, 154, 99, 0.075), transparent 52%),
    #141719;
  transform: translateY(-2px);
}

#services .service-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

#services .service-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(238, 233, 224, 0.12);
  border-radius: 10px;
  background: rgba(238, 233, 224, 0.045);
}

#services .service-icon .title-icon {
  width: 20px;
  height: 20px;
  color: #c99a63;
}

#services .category-label {
  max-width: 15ch;
  margin: 0;
  color: #c99a63;
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
}

#services .service-category h3 {
  margin-bottom: 14px;
  color: #f3eee6;
  font-size: clamp(1.22rem, 1.55vw, 1.55rem);
  line-height: 1.16;
}

#services .service-category p:not(.category-label) {
  margin-bottom: 24px;
  color: #b7b4ae;
  font-size: 0.98rem;
  line-height: 1.6;
}

#services .service-category ul {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding: 0;
  list-style: none;
}

#services .service-category li {
  position: relative;
  padding-left: 20px;
  color: #ded8ce;
  font-size: 0.95rem;
  line-height: 1.45;
}

#services .service-category li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: rgba(201, 154, 99, 0.78);
}

#services .services-bottom-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  margin: 0;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(238, 233, 224, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(201, 154, 99, 0.11), transparent 46%),
    rgba(10, 12, 13, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

#services .services-bottom-cta h3 {
  max-width: 720px;
  margin-bottom: 8px;
  color: #f3eee6;
  font-size: clamp(1.24rem, 1.8vw, 1.7rem);
  line-height: 1.16;
}

#services .services-bottom-cta p {
  max-width: 640px;
  margin: 0;
  color: #b7b4ae;
}

#services .services-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  #services .services-intro,
  #services .services-bottom-cta {
    grid-template-columns: 1fr;
  }

  #services .service-assurance {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #services .service-assurance span {
    min-height: 56px;
    padding: 0 16px;
  }

  #services .service-assurance span + span {
    border-top: 0;
    border-left: 1px solid rgba(238, 233, 224, 0.08);
  }

  #services .service-categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  #services .service-category {
    min-height: 330px;
    padding: 18px;
  }

  #services .services-bottom-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  #services.services {
    padding: 64px 14px;
  }

  #services .services-layout {
    gap: 22px;
  }

  #services .services-intro {
    gap: 20px;
    padding-bottom: 20px;
  }

  #services .services-intro h2 {
    max-width: 12.8ch;
    margin-bottom: 14px;
    font-size: clamp(1.9rem, 8.7vw, 2.58rem);
    line-height: 1.08;
  }

  #services .services-intro p:not(.eyebrow) {
    font-size: 0.97rem;
    line-height: 1.58;
  }

  #services .service-assurance {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }

  #services .service-assurance span {
    min-height: 50px;
    font-size: 0.92rem;
  }

  #services .service-assurance span + span {
    border-top: 1px solid rgba(238, 233, 224, 0.08);
    border-left: 0;
  }

  #services .service-categories {
    display: flex;
    gap: 12px;
    width: calc(100% + 28px);
    margin-inline: -14px;
    padding: 0 14px 12px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-padding-inline: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  #services .service-category {
    flex: 0 0 min(84vw, 350px);
    min-height: 340px;
    padding: 22px;
    border-radius: 14px;
    scroll-snap-align: start;
  }

  #services .service-card-head {
    margin-bottom: 20px;
  }

  #services .service-category h3 {
    font-size: clamp(1.26rem, 6vw, 1.72rem);
  }

  #services .services-bottom-cta {
    padding: 22px;
    border-radius: 14px;
  }

  #services .services-bottom-actions,
  #services .services-bottom-actions .btn {
    width: 100%;
  }
}

@media (max-width: 390px) {
  #services .services-intro h2 {
    font-size: clamp(1.72rem, 8.2vw, 2.16rem);
  }

  #services .service-category {
    flex-basis: min(88vw, 330px);
  }
}

/* Final hero lock: stable composition and orange location accent. */
.hero-title-accent {
  color: #e5842d;
}

.hero.hero-redesign {
  position: relative;
  display: flex;
  min-height: min(840px, 100svh);
  padding:
    clamp(154px, 12vw, 188px)
    clamp(18px, 5vw, 72px)
    clamp(74px, 7vw, 108px);
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(7, 8, 8, 0.95) 0%, rgba(7, 8, 8, 0.82) 42%, rgba(7, 8, 8, 0.34) 70%, rgba(7, 8, 8, 0.12) 100%),
    linear-gradient(180deg, rgba(7, 8, 8, 0.08), rgba(7, 8, 8, 0.12) 55%, rgba(7, 8, 8, 0.62)),
    url("assets/hero-actions-gaz-equipment.png");
  background-position: 68% center;
  background-size: cover;
}

.hero-redesign .hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 660px) minmax(270px, 340px);
  gap: clamp(34px, 5vw, 76px);
  align-items: end;
  width: min(100%, 1180px);
  margin: auto;
}

.hero-redesign .hero-copy {
  display: block;
  width: 100%;
  max-width: 660px;
  padding: 0;
  transform: none;
}

.hero-redesign .hero-eyebrow {
  width: fit-content;
  max-width: min(100%, 560px);
  margin: 0 0 20px;
  white-space: normal;
}

.hero-redesign #hero-title {
  max-width: 12.8ch;
  margin: 0 0 24px;
  color: #f6f1e9;
  font-size: clamp(3rem, 4.6vw, 4.85rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-redesign .hero-subtitle {
  max-width: 650px;
  margin: 0 0 28px;
  color: #e0d9cf;
  font-size: clamp(1rem, 1.15vw, 1.14rem);
  font-weight: 620;
  line-height: 1.62;
}

.hero-redesign .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-redesign .hero-main-cta {
  flex: 0 0 auto;
  width: auto;
  min-width: 292px;
}

.hero-redesign .hero-phone-link {
  flex: 0 0 auto;
  min-height: 50px;
  padding-inline: 4px;
}

.hero-redesign .hero-trust-row {
  display: flex;
  max-width: 650px;
}

.hero-redesign .hero-panel {
  display: grid;
  justify-self: end;
  align-self: end;
  width: min(100%, 340px);
  max-width: 340px;
  margin: 0;
  transform: none;
}

@media (max-width: 1180px) {
  .hero.hero-redesign {
    min-height: auto;
    padding:
      clamp(142px, 15vw, 172px)
      clamp(18px, 5vw, 56px)
      clamp(72px, 8vw, 96px);
    background-position: 74% center;
  }

  .hero-redesign .hero-inner {
    grid-template-columns: minmax(0, 700px);
    gap: 26px;
    align-items: start;
    margin: 0 auto;
  }

  .hero-redesign #hero-title {
    max-width: 12.4ch;
    font-size: clamp(2.65rem, 6vw, 4.1rem);
  }

  .hero-redesign .hero-panel {
    justify-self: start;
    width: min(100%, 360px);
    max-width: 360px;
  }
}

@media (max-width: 680px) {
  .hero.hero-redesign {
    display: flex;
    min-height: 100svh;
    min-height: 100dvh;
    padding:
      clamp(118px, 15svh, 140px)
      16px
      max(92px, calc(env(safe-area-inset-bottom) + 82px));
    background-image:
      linear-gradient(90deg, rgba(7, 8, 8, 0.96) 0%, rgba(7, 8, 8, 0.8) 60%, rgba(7, 8, 8, 0.38) 100%),
      linear-gradient(180deg, rgba(7, 8, 8, 0.06), rgba(7, 8, 8, 0.18) 46%, rgba(7, 8, 8, 0.72)),
      url("assets/hero-actions-gaz-equipment.png");
    background-position: 77% center;
  }

  .hero-redesign .hero-inner {
    display: block;
    width: 100%;
    margin: auto 0 0;
  }

  .hero-redesign .hero-copy {
    max-width: 430px;
  }

  .hero-redesign .hero-eyebrow {
    max-width: 100%;
    margin-bottom: 16px;
    padding: 8px 13px;
    font-size: 0.61rem;
    line-height: 1.35;
  }

  .hero-redesign #hero-title {
    max-width: 12.1ch;
    margin-bottom: 20px;
    font-size: clamp(2rem, 9.6vw, 2.7rem);
    line-height: 1.04;
  }

  .hero-redesign .hero-subtitle {
    max-width: 34ch;
    margin-bottom: 22px;
    font-size: 0.95rem;
    line-height: 1.54;
  }

  .hero-redesign .hero-actions {
    display: grid;
    gap: 10px;
    width: min(100%, 360px);
  }

  .hero-redesign .hero-main-cta {
    width: 100%;
    min-width: 0;
  }

  .hero-redesign .hero-phone-link {
    justify-content: center;
    min-height: 44px;
    font-size: 1rem;
  }

  .hero-redesign .hero-trust-row,
  .hero-redesign .hero-panel {
    display: none;
  }
}

@media (max-width: 390px) {
  .hero.hero-redesign {
    padding-top: 108px;
  }

  .hero-redesign #hero-title {
    font-size: clamp(1.84rem, 9vw, 2.28rem);
  }

  .hero-redesign .hero-subtitle {
    font-size: 0.9rem;
  }
}

/* Final services intro lock: compact desktop header, cards visible sooner. */
#services.services {
  padding-top: clamp(64px, 7vw, 92px);
}

#services .services-layout {
  gap: clamp(22px, 3vw, 34px);
}

#services .services-intro {
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding-bottom: clamp(18px, 2.4vw, 28px);
}

#services .services-intro > div:first-child {
  max-width: 880px;
}

#services .services-intro h2 {
  max-width: 860px;
  font-size: clamp(2.25rem, 3.1vw, 3.55rem);
  line-height: 1.08;
}

#services .service-assurance {
  align-self: center;
  margin-top: 0;
  border-radius: 12px;
}

#services .service-assurance span {
  min-height: 54px;
  padding: 0 18px;
  font-size: 0.96rem;
}

#services .service-categories {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px) {
  #services .services-intro {
    grid-template-columns: 1fr;
  }

  #services .services-intro h2 {
    max-width: 780px;
  }
}

@media (max-width: 680px) {
  #services.services {
    padding-top: 58px;
  }

  #services .services-intro h2 {
    max-width: 13.5ch;
    font-size: clamp(1.86rem, 8.4vw, 2.42rem);
  }

  #services .service-assurance {
    display: none;
  }
}

/* Final hero collision fix: no overlap between CTA, phone, and contact card. */
.hero.hero-redesign {
  min-height: min(820px, 100svh);
  padding:
    clamp(148px, 11vw, 182px)
    clamp(18px, 5vw, 72px)
    clamp(80px, 8vw, 112px);
  background-position: 69% center;
}

.hero-redesign .hero-inner {
  grid-template-columns: minmax(0, 720px) minmax(280px, 360px);
  gap: clamp(44px, 6vw, 88px);
  align-items: center;
  margin: auto;
}

.hero-redesign .hero-copy {
  max-width: 720px;
}

.hero-redesign #hero-title {
  max-width: 13.5ch;
  margin-bottom: 24px;
  font-size: clamp(2.9rem, 4.15vw, 4.35rem);
  line-height: 1.04;
}

.hero-redesign .hero-subtitle {
  max-width: 690px;
  margin-bottom: 34px;
}

.hero-redesign .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  margin: 0;
}

.hero-redesign .hero-main-cta {
  min-width: 300px;
}

.hero-redesign .hero-phone-link {
  min-height: 56px;
  padding-inline: 8px;
}

.hero-redesign .hero-trust-row {
  display: none;
}

.hero-redesign .hero-panel {
  align-self: center;
  justify-self: end;
  width: min(100%, 360px);
  max-width: 360px;
}

@media (max-width: 1180px) {
  .hero.hero-redesign {
    padding:
      clamp(136px, 14vw, 166px)
      clamp(18px, 5vw, 56px)
      clamp(72px, 8vw, 96px);
  }

  .hero-redesign .hero-inner {
    grid-template-columns: minmax(0, 720px);
    gap: 24px;
  }

  .hero-redesign #hero-title {
    max-width: 13ch;
    font-size: clamp(2.5rem, 5.4vw, 3.65rem);
  }

  .hero-redesign .hero-panel {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .hero.hero-redesign {
    min-height: 100svh;
    min-height: 100dvh;
    padding:
      clamp(114px, 14svh, 134px)
      16px
      max(90px, calc(env(safe-area-inset-bottom) + 80px));
    background-position: 76% center;
  }

  .hero-redesign .hero-inner {
    display: block;
    margin: auto 0 0;
  }

  .hero-redesign #hero-title {
    max-width: 12.5ch;
    margin-bottom: 20px;
    font-size: clamp(1.98rem, 9.2vw, 2.58rem);
  }

  .hero-redesign .hero-subtitle {
    max-width: 35ch;
    margin-bottom: 22px;
  }

  .hero-redesign .hero-actions {
    display: grid;
    gap: 10px;
    width: min(100%, 360px);
  }

  .hero-redesign .hero-main-cta {
    width: 100%;
    min-width: 0;
  }

  .hero-redesign .hero-phone-link {
    justify-content: center;
    min-height: 44px;
  }

  .hero-redesign .hero-panel {
    display: none;
  }
}

/* Publish QA polish: consistent rhythm, panels, and responsive behavior. */
:root {
  --qa-bg: #090a0a;
  --qa-panel: #111416;
  --qa-panel-soft: #141719;
  --qa-line: rgba(238, 233, 224, 0.11);
  --qa-text: #f3eee6;
  --qa-muted: #b7b4ae;
  --qa-accent: #e5842d;
  --qa-accent-soft: #c99a63;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  background: var(--qa-bg);
  color: var(--qa-text);
}

.section,
.contact-section {
  padding:
    clamp(74px, 8vw, 112px)
    clamp(18px, 4vw, 56px);
}

.eyebrow {
  color: var(--qa-accent-soft);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.12em;
}

h2 {
  font-size: clamp(1.72rem, 2.35vw, 2.75rem);
  line-height: 1.12;
}

h3 {
  line-height: 1.22;
}

p,
li,
small {
  color: var(--qa-muted);
}

.btn,
.mobile-call,
.mobile-nav-call,
.service-card-cta {
  min-height: 50px;
  border-radius: 10px;
  gap: 9px;
  line-height: 1.1;
}

.btn .icon,
.mobile-call .icon,
.mobile-nav-call .icon {
  width: 17px;
  height: 17px;
}

.btn-primary,
.hero .btn-primary,
.mobile-call,
.mobile-nav-call {
  border-color: rgba(229, 132, 45, 0.36);
  background:
    linear-gradient(180deg, rgba(255, 221, 178, 0.24), transparent 44%),
    var(--qa-accent);
  color: #160f08;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 12px 26px rgba(0, 0, 0, 0.18);
}

.btn-secondary,
.hero .btn-secondary {
  border-color: var(--qa-line);
  background: rgba(238, 233, 224, 0.04);
  color: #f2e9dc;
}

.site-header {
  padding: 14px clamp(16px, 4vw, 48px);
}

.header-inner {
  min-height: 76px;
}

.brand-mark {
  width: clamp(112px, 9vw, 138px);
  border-radius: 12px;
}

.nav {
  min-height: 54px;
  border-color: rgba(238, 233, 224, 0.12);
}

.nav a {
  min-height: 44px;
  padding-inline: clamp(11px, 1.15vw, 16px);
}

.header-call {
  min-height: 54px;
}

.hero.hero-redesign {
  min-height: min(810px, 100svh);
  padding-top: clamp(140px, 11vw, 176px);
  padding-bottom: clamp(82px, 8vw, 116px);
}

.hero-redesign .hero-inner {
  grid-template-columns: minmax(0, 700px) minmax(280px, 350px);
  gap: clamp(42px, 6vw, 82px);
}

.hero-redesign #hero-title {
  max-width: 13.25ch;
  font-size: clamp(2.85rem, 4vw, 4.25rem);
}

.hero-title-accent {
  color: var(--qa-accent);
}

.hero-redesign .hero-subtitle {
  max-width: 660px;
  color: #ded8ce;
  font-size: clamp(1rem, 1.1vw, 1.12rem);
}

.hero-redesign .hero-panel,
.service-category,
.client-item,
.review-card,
.contact-form,
.contact-phone,
.contact-link,
.services-bottom-cta,
.reviews-cta,
.client-check,
.legal-card {
  border: 1px solid var(--qa-line);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    var(--qa-panel);
  box-shadow: none;
}

#services.services {
  padding-top: clamp(72px, 8vw, 104px);
}

#services .services-layout {
  width: min(100%, 1180px);
  gap: clamp(26px, 4vw, 42px);
}

#services .services-intro {
  max-width: 860px;
  padding-bottom: clamp(20px, 2.6vw, 32px);
  border-bottom: 1px solid rgba(238, 233, 224, 0.09);
}

#services .services-intro h2 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 2.8vw, 3.2rem);
}

#services .services-intro p:not(.eyebrow) {
  max-width: 620px;
}

#services .service-categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: visible;
}

#services .service-category {
  min-height: 320px;
  padding: clamp(20px, 2vw, 28px);
}

#services .service-category:hover,
.client-item:hover {
  border-color: rgba(201, 154, 99, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.018)),
    var(--qa-panel-soft);
  transform: none;
}

#services .service-icon {
  border-radius: 10px;
}

#services .services-bottom-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-top: 0;
}

.brand-section-inner,
.client-layout,
.why,
.process-heading,
.process-steps,
.reviews-heading,
.review-grid,
.reviews-cta,
.contact-shell,
.footer-inner,
.footer-bottom {
  width: min(100%, 1180px);
  max-width: 1180px;
}

.brand-logo-grid {
  gap: 12px;
}

.brand-logo-grid img {
  height: 74px;
  padding: 16px 20px;
  border-radius: 12px;
  border-color: var(--qa-line);
  background: #f4f6f8;
  filter: none;
  opacity: 1;
}

.why {
  align-items: center;
}

.why-media {
  min-height: clamp(340px, 42vw, 500px);
  border-radius: 14px;
}

.proof-list {
  gap: 0 24px;
}

.proof-list div {
  padding: 18px 0;
}

.client-layout {
  align-items: start;
}

.client-grid {
  gap: 12px;
  border: 0;
  background: transparent;
}

.client-item {
  min-height: 170px;
  border-radius: 14px;
}

.client-check {
  padding: 20px;
}

.process-heading {
  align-items: center;
}

.process-steps {
  border: 1px solid var(--qa-line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(17, 20, 22, 0.58);
}

.process-steps article {
  min-height: 200px;
  padding: 26px;
}

.review-grid {
  gap: 14px;
}

.review-card {
  min-height: 250px;
  padding: 24px;
}

.reviews-cta {
  padding: 22px 24px;
}

.contact-shell {
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
}

.contact-copy,
.contact-form {
  padding: clamp(26px, 4vw, 44px);
}

.contact-form {
  border-radius: 0;
  border-width: 0 0 0 1px;
}

input,
select,
textarea {
  min-width: 0;
  border-radius: 9px;
}

.site-footer {
  padding-top: clamp(44px, 6vw, 72px);
}

.footer-logo {
  border-radius: 12px;
}

@media (max-width: 1180px) {
  .nav,
  .header-call {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-redesign .hero-inner,
  .brand-section-inner,
  .client-layout,
  .why,
  .process-heading,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-redesign .hero-panel {
    justify-self: start;
  }

  #services .service-categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  #services .service-category {
    min-height: 320px;
    padding: 18px;
  }

  .contact-form {
    border-width: 1px 0 0;
  }
}

@media (max-width: 820px) {
  #services .service-categories {
    display: flex;
    width: calc(100% + 36px);
    margin-inline: -18px;
    padding: 0 18px 12px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-padding-inline: 18px;
    scroll-snap-type: x mandatory;
  }

  #services .service-category {
    flex: 0 0 min(82vw, 350px);
    min-height: 330px;
    scroll-snap-align: start;
  }

  .process-steps,
  .review-grid {
    display: flex;
    gap: 12px;
    width: calc(100% + 36px);
    margin-inline: -18px;
    padding: 0 18px 12px;
    overflow-x: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    scroll-padding-inline: 18px;
    scroll-snap-type: x mandatory;
  }

  .process-steps article,
  .review-card {
    flex: 0 0 min(82vw, 350px);
    scroll-snap-align: start;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 76px;
  }

  .section,
  .contact-section {
    padding: 58px 16px;
  }

  .site-header {
    padding: 11px 14px;
  }

  .header-inner {
    min-height: 60px;
  }

  .brand-mark {
    width: 94px;
  }

  .hero.hero-redesign {
    min-height: 100svh;
    min-height: 100dvh;
    padding:
      clamp(112px, 14svh, 134px)
      16px
      max(88px, calc(env(safe-area-inset-bottom) + 78px));
  }

  .hero-redesign .hero-copy {
    max-width: 420px;
  }

  .hero-redesign #hero-title {
    max-width: 12.6ch;
    font-size: clamp(1.92rem, 9vw, 2.52rem);
  }

  .hero-redesign .hero-subtitle {
    max-width: 35ch;
    font-size: 0.95rem;
  }

  .hero-redesign .hero-main-cta,
  #services .services-bottom-actions,
  #services .services-bottom-actions .btn,
  .reviews-cta div,
  .reviews-cta .btn,
  .client-check .btn {
    width: 100%;
  }

  #services .services-intro {
    max-width: none;
    padding-bottom: 18px;
  }

  #services .services-intro h2 {
    max-width: 13.5ch;
    font-size: clamp(1.78rem, 8.2vw, 2.34rem);
  }

  #services .service-categories,
  .process-steps,
  .review-grid {
    width: calc(100% + 32px);
    margin-inline: -16px;
    padding-inline: 16px;
    scroll-padding-inline: 16px;
  }

  .brand-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-logo-grid img {
    height: 62px;
    padding: 13px 16px;
  }

  .why-media {
    min-height: 280px;
  }

  .proof-list,
  .client-grid {
    grid-template-columns: 1fr;
  }

  .client-item {
    min-height: auto;
  }

  .client-check,
  .reviews-cta,
  .reviews-cta div {
    align-items: stretch;
    flex-direction: column;
  }

  .process-call {
    max-width: none;
  }

  .contact-copy,
  .contact-form {
    padding: 20px;
  }

  .contact-phone strong {
    font-size: clamp(1.36rem, 6vw, 1.9rem);
  }

  .footer-brand,
  .footer-inner,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    width: 124px;
    height: 124px;
  }
}

@media (max-width: 390px) {
  .hero-redesign #hero-title {
    font-size: clamp(1.78rem, 8.8vw, 2.24rem);
  }

  .btn {
    padding-inline: 14px;
    font-size: 0.9rem;
  }

  #services .service-category,
  .process-steps article,
  .review-card {
    flex-basis: min(86vw, 330px);
  }
}

/* Hero phone removal: collapse the deleted contact panel column. */
.hero-redesign .hero-inner {
  grid-template-columns: minmax(0, 720px);
  justify-content: start;
}

.hero-redesign .hero-panel,
.hero-redesign .hero-phone-link {
  display: none;
}

/* Services CTA mobile repair: prevent squeezed text and button overlap. */
@media (max-width: 820px) {
  #services .services-bottom-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
    padding: 22px;
    overflow: hidden;
  }

  #services .services-bottom-cta > div {
    min-width: 0;
  }

  #services .services-bottom-cta span {
    max-width: none;
    margin-bottom: 10px;
    font-size: 0.7rem;
    line-height: 1.35;
    white-space: normal;
  }

  #services .services-bottom-cta h3 {
    max-width: 100%;
    margin-bottom: 10px;
    font-size: clamp(1.2rem, 5vw, 1.55rem);
    line-height: 1.18;
  }

  #services .services-bottom-cta p {
    max-width: 100%;
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  #services .services-bottom-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  #services .services-bottom-actions .btn {
    width: 100%;
    min-width: 0;
    padding-inline: 14px;
  }
}

@media (max-width: 390px) {
  #services .services-bottom-cta {
    padding: 18px;
  }

  #services .services-bottom-cta h3 {
    font-size: clamp(1.08rem, 5.6vw, 1.34rem);
  }
}

/* Service card label alignment. */
#services .service-card-head {
  align-items: center;
}

#services .category-label {
  max-width: none;
  min-width: max-content;
  white-space: nowrap;
}

@media (max-width: 820px) {
  #services .service-card-head {
    align-items: center;
    flex-direction: row;
  }

  #services .category-label {
    text-align: right;
  }
}

@media (max-width: 390px) {
  #services .category-label {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }
}

/* Mobile hero CTA refinement. */
@media (max-width: 680px) {
  .hero-redesign .hero-actions {
    width: min(100%, 280px);
  }

  .hero-redesign .hero-main-cta {
    min-height: 46px;
    padding-inline: 14px;
    border-radius: 9px;
    font-size: 0.86rem;
  }

  .hero-redesign .hero-main-cta .icon {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 390px) {
  .hero-redesign .hero-actions {
    width: min(100%, 270px);
  }
}
