:root {
  --ink: #080909;
  --charcoal: #111719;
  --charcoal-2: #1b2225;
  --muted: #6c7072;
  --line: #dedede;
  --soft: #f4f4f4;
  --white: #ffffff;
  --orange: #d64b08;
  --orange-dark: #b93f05;
  --blue: #163241;
  --teal: #2f6f7b;
  --max: 1240px;
  --radius: 8px;
  --shadow: 0 24px 60px rgba(17, 23, 25, 0.12);
  --shadow-soft: 0 18px 50px rgba(17, 23, 25, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--muted);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 1000;
  background: var(--orange);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: calc(100% - 80px);
  max-width: var(--max);
  margin-inline: auto;
}

.narrow {
  max-width: 880px;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
}

.nav-shell {
  min-height: 112px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 182px;
  height: auto;
}

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

.primary-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--white);
}

.nav-caret {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.nav-cta {
  min-width: 140px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  background: rgba(17, 23, 25, 0.28);
  color: var(--white);
}

.nav-toggle span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 13px 22px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  max-width: 100%;
}

.btn span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.btn--secondary {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.btn--secondary:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.btn--light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.64);
}

.home-hero,
.page-hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.page-hero {
  min-height: 520px;
}

.home-hero__image,
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__shade,
.page-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.66) 38%, rgba(0, 0, 0, 0.22) 76%),
    linear-gradient(180deg, rgba(8, 9, 9, 0.58) 0%, rgba(8, 9, 9, 0) 34%, rgba(8, 9, 9, 0.52) 100%);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  min-height: 820px;
  display: grid;
  align-content: center;
  padding-top: 96px;
  padding-bottom: 62px;
}

.home-hero__content > .btn {
  justify-self: start;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.hero-proof svg {
  width: 30px;
  height: 30px;
}

.home-hero h1,
.page-hero h1 {
  max-width: 820px;
  margin: 24px 0 34px;
  color: var(--white);
  font-size: 5rem;
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 800;
  overflow-wrap: normal;
}

.page-hero h1 {
  max-width: 960px;
  font-size: 4.25rem;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: grid;
  align-content: center;
  padding-top: 96px;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: end;
  margin-top: 120px;
}

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

.hero-features article {
  min-width: 0;
}

.hero-features span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.45rem;
  font-weight: 800;
}

.hero-features strong {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.customer-proof {
  width: 300px;
  min-height: 132px;
  margin: 0;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(17, 23, 25, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.customer-proof p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.avatar-stack {
  display: flex;
  align-items: center;
  min-height: 42px;
}

.avatar-stack img {
  width: 42px;
  height: 42px;
  margin-left: -10px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.avatar-stack--compact img {
  width: 48px;
  height: 48px;
  border-color: var(--white);
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading--center {
  text-align: center;
}

.section-heading span,
.kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.section-heading h2,
.reason-layout h2,
.area-layout h2,
.final-cta h2,
.contact-panel h2,
.legal-copy h2,
.split-layout h2 {
  margin: 0;
  color: var(--ink);
  font-size: 3.45rem;
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
  white-space: normal;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.quality-section {
  padding: 112px 0 118px;
  background: var(--white);
}

.quality-section .section-heading {
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line);
}

.quality-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 70px;
  align-items: start;
}

.quality-media {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.quality-media img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.quality-media__small {
  height: 244px;
}

.quality-media__large {
  position: relative;
  margin: 0;
  transform: translateY(34px);
}

.quality-media__large img {
  height: 354px;
}

.pause-mark {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #030303;
  color: var(--white);
  font-weight: 900;
  line-height: 1;
}

.quality-copy {
  padding-top: 8px;
}

.quality-copy p,
.reason-layout p,
.area-layout p,
.split-layout p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.quality-copy .btn,
.reason-layout .btn,
.split-layout .btn {
  margin-top: 34px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 46px;
  margin-top: 92px;
}

.stat-card strong {
  display: block;
  color: var(--ink);
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 500;
}

.stat-card > span {
  display: block;
  margin: 18px 0 18px;
  color: var(--muted);
  font-weight: 800;
}

.stat-meter {
  position: relative;
  height: 70px;
  overflow: hidden;
  background: repeating-linear-gradient(to bottom, #ececec 0 3px, transparent 3px 9px);
}

.stat-meter i {
  display: block;
  height: 100%;
  background: repeating-linear-gradient(to bottom, var(--orange) 0 3px, transparent 3px 9px);
}

.services-showcase {
  padding: 112px 0 116px;
  background: var(--soft);
}

.service-photo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 44px;
}

.service-photo-card {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
}

.service-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.78));
}

.service-photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.service-photo-card:hover img {
  transform: scale(1.04);
}

.card-arrow {
  position: absolute;
  left: 50%;
  top: 45%;
  z-index: 2;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  text-decoration: none;
}

.service-photo-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 24px 30px;
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.inline-link {
  margin: 54px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
}

.inline-link a {
  color: var(--ink);
  font-weight: 900;
}

.process-section {
  padding: 92px 0;
  background: var(--white);
  overflow: hidden;
}

.process-shell {
  position: relative;
}

.process-shell .section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.process-stage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  min-width: 0;
  margin-top: 0;
}

.process-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
  column-gap: 18px;
  width: 100%;
  min-height: 0;
  padding: 28px 30px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(17, 23, 25, 0.08);
  box-shadow: var(--shadow-soft);
}

.process-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  grid-row: 1 / span 2;
  border-radius: 6px;
  background: var(--orange);
  color: var(--white);
}

.process-icon svg {
  width: 28px;
  height: 28px;
}

.process-card h3,
.service-detail h2,
.project-card h3,
.reason-list h3 {
  margin: 28px 0 22px;
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1.15;
  letter-spacing: 0;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.process-card p,
.service-detail p,
.project-card p,
.reason-list p,
.legal-copy p {
  margin: 0;
  overflow-wrap: anywhere;
}

.process-card h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.process-card p {
  grid-column: 2;
  font-size: 0.98rem;
  line-height: 1.55;
}

.micro-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.star-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-left: -20px;
  border-radius: 50%;
  background: #000;
  color: #ffaf21;
}

.star-badge svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.micro-proof p {
  min-width: 0;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.portfolio-section {
  padding: 112px 0;
  background: var(--soft);
}

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

.project-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.project-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.project-card div {
  padding: 26px;
}

.project-card span {
  color: var(--orange);
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 10px 0 12px;
  font-size: 1.45rem;
}

.reason-section,
.area-section,
.split-section,
.check-section,
.faq-section,
.service-detail-section,
.contact-section,
.legal-section {
  padding: 112px 0;
  background: var(--white);
}

.reason-layout,
.area-layout,
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 70px;
  align-items: center;
}

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

.reason-list article,
.service-detail,
.contact-panel,
.quote-form,
.faq-list details,
.check-grid li {
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.reason-list article {
  padding: 28px;
}

.reason-list h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
}

.area-section,
.check-section,
.faq-section {
  background: var(--soft);
}

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

.area-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

.area-list span {
  color: var(--muted);
  font-weight: 700;
  text-align: right;
}

.area-panel {
  min-height: 430px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(17, 23, 25, 0.16), rgba(17, 23, 25, 0.92)),
    url("../img/generated/steady-flow-hero.png") center / cover;
  box-shadow: var(--shadow);
}

.area-panel span {
  color: #ffb27b;
  font-weight: 900;
  text-transform: uppercase;
}

.area-panel strong {
  color: var(--white);
  font-size: 2rem;
  line-height: 1.12;
}

.area-panel small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
}

.final-cta {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.final-cta__image,
.final-cta::after {
  position: absolute;
  inset: 0;
  content: "";
}

.final-cta__image {
  background: url("../img/generated/steady-flow-hero.png") center / cover;
}

.final-cta::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.62) 48%, rgba(0, 0, 0, 0.2)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.64), transparent 48%);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 760px;
  color: var(--white);
  font-size: 4.4rem;
}

.final-cta p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.cta-actions--left {
  justify-content: flex-start;
}

.page-hero {
  min-height: 540px;
}

.split-layout > img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-detail-list {
  display: grid;
  gap: 26px;
}

.service-detail {
  scroll-margin-top: 28px;
  padding: 34px;
}

.service-detail__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
}

.service-detail__head h2 {
  margin: 6px 0 12px;
  font-size: 2rem;
}

.service-detail__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.service-detail h3 {
  margin: 0 0 10px;
  color: var(--ink);
}

.service-detail ul {
  margin: 0;
  padding-left: 20px;
}

.safety-note {
  margin-top: 24px;
  padding: 18px;
  border-left: 4px solid var(--orange);
  background: #fff6f0;
  color: var(--ink);
  font-weight: 750;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-grid li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 22px;
  color: var(--ink);
  font-weight: 800;
}

.check-grid svg {
  color: var(--orange);
  margin-top: 2px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list details {
  padding: 26px 30px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
  font-size: 1.12rem;
}

.faq-list p {
  margin: 14px 0 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
}

.contact-panel,
.quote-form {
  padding: 30px;
}

.contact-panel {
  position: sticky;
  top: 24px;
}

.contact-panel h2 {
  font-size: 2rem;
}

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

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-list svg {
  color: var(--orange);
  margin-top: 2px;
}

.small-text,
.form-note {
  color: var(--muted);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

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

.form-grid label,
.quote-form .consent {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid #cfd3d5;
  border-radius: 6px;
  padding: 12px 13px;
  background: var(--white);
  color: var(--muted);
}

.form-grid textarea {
  resize: vertical;
}

.form-grid__wide {
  grid-column: 1 / -1;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  margin: 20px 0;
  color: var(--muted);
  font-weight: 650;
}

.consent input {
  margin-top: 5px;
}

.hp-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.legal-copy {
  color: var(--muted);
}

.legal-copy h2 {
  margin: 34px 0 10px;
  font-size: 1.45rem;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.site-footer {
  padding: 72px 0 98px;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.76);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
  align-items: center;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-top img {
  width: 244px;
  max-width: 100%;
  height: auto;
  margin-bottom: 18px;
}

.footer-top p {
  max-width: 560px;
  margin: 0;
}

.footer-cta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-cta h2 {
  max-width: 360px;
  margin: 0;
  color: var(--white);
  font-size: 2rem;
  line-height: 1.12;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin-top: 46px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
}

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

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffb27b;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-contact {
  display: none;
}

@media (max-width: 1180px) {
  .container {
    width: calc(100% - 48px);
  }

  .nav-shell {
    gap: 22px;
  }

  .primary-nav {
    gap: 18px;
  }

  .brand img {
    width: 168px;
  }

  .home-hero h1 {
    font-size: 4.25rem;
  }

  .page-hero h1,
  .final-cta h2 {
    font-size: 3.55rem;
  }

  .section-heading h2,
  .reason-layout h2,
  .area-layout h2,
  .split-layout h2 {
    font-size: 2.8rem;
  }

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

  .service-photo-card {
    min-height: 360px;
  }

  .process-card {
    padding-inline: 26px;
  }
}

@media (max-width: 920px) {
  body {
    padding-bottom: 66px;
  }

  .site-header {
    position: absolute;
  }

  .nav-shell {
    min-height: 84px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
  }

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

  .nav-cta {
    display: none;
  }

  .primary-nav {
    position: fixed;
    inset: 84px 0 auto;
    width: 100%;
    display: none;
    align-items: stretch;
    justify-content: start;
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 22px;
    background: rgba(17, 23, 25, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
  }

  .nav-open .primary-nav {
    display: flex;
  }

  .primary-nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .home-hero,
  .home-hero__content {
    min-height: 760px;
  }

  .home-hero__content {
    padding-top: 112px;
    align-content: center;
  }

  .home-hero h1 {
    font-size: 3.3rem;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .customer-proof {
    width: 100%;
    max-width: 360px;
  }

  .quality-grid,
  .reason-layout,
  .area-layout,
  .split-layout,
  .contact-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .stat-grid,
  .project-grid,
  .service-detail__columns,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-stage {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-card {
    width: 100%;
  }

  .micro-proof {
    margin-top: 28px;
  }

  .contact-panel {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: calc(100% - 24px);
  }

  .brand img {
    width: 148px;
  }

  .home-hero,
  .home-hero__content {
    min-height: 720px;
  }

  .home-hero__shade,
  .page-hero__shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.62)),
      linear-gradient(180deg, rgba(8, 9, 9, 0.62), rgba(8, 9, 9, 0.24) 42%, rgba(8, 9, 9, 0.66));
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: 2.45rem;
    line-height: 1.1;
  }

  .page-hero,
  .page-hero__inner {
    min-height: 460px;
  }

  .page-hero__inner {
    padding-top: 86px;
  }

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

  .hero-proof svg {
    width: 24px;
    height: 24px;
  }

  .quality-section,
  .services-showcase,
  .process-section,
  .portfolio-section,
  .reason-section,
  .area-section,
  .split-section,
  .check-section,
  .faq-section,
  .service-detail-section,
  .contact-section,
  .legal-section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .reason-layout h2,
  .area-layout h2,
  .final-cta h2,
  .split-layout h2 {
    font-size: 1.82rem;
    line-height: 1.12;
    max-width: 13ch;
  }

  .section-heading--center h2 {
    margin-inline: auto;
  }

  .process-shell .section-heading h2 {
    max-width: 12ch;
  }

  .quality-section .section-heading {
    padding-bottom: 28px;
  }

  .quality-media {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .quality-media__small,
  .quality-media__large img {
    height: 270px;
  }

  .quality-media__large {
    transform: none;
  }

  .stat-grid,
  .service-photo-grid,
  .project-grid,
  .reason-list,
  .service-detail__columns,
  .check-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    gap: 26px;
    margin-top: 52px;
  }

  .stat-card strong {
    font-size: 2.7rem;
  }

  .service-photo-card {
    min-height: 340px;
  }

  .process-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px;
  }

  .process-icon {
    grid-row: auto;
  }

  .process-card h3 {
    margin: 0;
    font-size: 1.2rem;
  }

  .process-card p {
    grid-column: 1;
  }

  .micro-proof {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .micro-proof p {
    flex-basis: 100%;
  }

  .split-layout > img {
    height: 340px;
  }

  .service-detail {
    padding: 24px;
  }

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

  .form-grid__wide {
    grid-column: auto;
  }

  .final-cta {
    min-height: 500px;
  }

  .cta-actions .btn,
  .home-hero__content > .btn,
  .quote-form .btn {
    width: 100%;
    justify-self: stretch;
  }

  .footer-top,
  .footer-cta,
  .footer-bottom {
    display: grid;
  }

  .mobile-contact {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    width: 100vw;
    max-width: 100vw;
    min-height: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--charcoal);
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .mobile-contact a {
    display: grid;
    place-items: center;
    gap: 4px;
    padding: 8px 4px;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 850;
    min-width: 0;
  }

  .mobile-contact a:nth-child(2) {
    background: #1f5f50;
  }

  .mobile-contact a:nth-child(3) {
    background: var(--orange);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
