:root {
  --navy-950: #061b2d;
  --navy-900: #0b2d4f;
  --navy-800: #123e65;
  --blue-600: #2877b6;
  --blue-500: #3b98d4;
  --lime-500: #b8df38;
  --lime-400: #c8eb5b;
  --ink: #102332;
  --slate: #526472;
  --mist: #e7eef2;
  --cloud: #f4f7f8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 27, 45, 0.14);
  --shadow-soft: 0 14px 36px rgba(6, 27, 45, 0.09);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --container: 1180px;
  --header-height: 84px;
  --font-display: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --font-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  color: var(--navy-950);
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

h3 {
  font-size: 1.35rem;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 7px;
  background: var(--white);
  color: var(--navy-950);
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.utility-bar {
  position: relative;
  z-index: 40;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  letter-spacing: 0.025em;
}

.utility-bar__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
}

.utility-bar p {
  margin: 0;
}

.utility-bar__links {
  display: flex;
  gap: 28px;
}

.utility-bar a {
  color: var(--lime-400);
  text-decoration: none;
}

.utility-bar a:hover,
.utility-bar a:focus-visible {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(16, 35, 50, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 26px rgba(6, 27, 45, 0.08);
}

.header-inner {
  display: flex;
  min-width: 0;
  min-height: var(--header-height);
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

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

.primary-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 26px;
}

.primary-nav a {
  position: relative;
  color: var(--ink);
  font-size: 0.87rem;
  font-weight: 750;
  text-decoration: none;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--lime-500);
  content: "";
  transition: transform 180ms ease;
}

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

.header-call {
  display: grid;
  flex: 0 0 auto;
  min-width: 174px;
  padding: 10px 17px;
  border-radius: var(--radius-sm);
  background: var(--navy-900);
  color: var(--white);
  line-height: 1.2;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.header-call:hover,
.header-call:focus-visible {
  transform: translateY(-2px);
  background: var(--blue-600);
}

.header-call__label {
  margin-bottom: 3px;
  color: var(--lime-400);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.header-call strong {
  font-size: 0.98rem;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  background-image: url("../images/hero-home.jpg");
  background-position: 56% center;
  background-size: cover;
  transform: scale(1.01);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(5, 23, 39, 0.96) 0%, rgba(5, 23, 39, 0.87) 38%, rgba(5, 23, 39, 0.25) 76%, rgba(5, 23, 39, 0.16) 100%),
    linear-gradient(0deg, rgba(5, 23, 39, 0.38), transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 720px;
  padding-top: 88px;
  padding-bottom: 92px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 80px;
}

.hero__copy {
  max-width: 710px;
  min-width: 0;
}

.eyebrow {
  display: flex;
  margin-bottom: 22px;
  align-items: center;
  gap: 12px;
  color: var(--lime-400);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 36px;
  height: 2px;
  flex: 0 0 36px;
  background: currentColor;
}

.eyebrow b {
  min-width: 0;
  font: inherit;
}

.eyebrow--blue {
  color: var(--blue-600);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(3.4rem, 5.4vw, 5.2rem);
  font-weight: 760;
  letter-spacing: -0.055em;
}

.hero h1 em {
  color: var(--lime-400);
  font-style: normal;
}

.hero__lede {
  max-width: 610px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.83rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--lime-500);
  color: var(--navy-950);
  box-shadow: 0 12px 28px rgba(184, 223, 56, 0.2);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--lime-400);
  box-shadow: 0 16px 34px rgba(184, 223, 56, 0.28);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.button--ghost svg,
.contact-method svg,
.mobile-call svg {
  width: 20px;
  fill: currentColor;
}

.button--full {
  width: 100%;
}

.hero-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(6, 27, 45, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card__kicker {
  margin-bottom: 13px;
  color: var(--lime-400);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.hero-card ul {
  display: grid;
  padding: 0;
  margin: 0 0 25px;
  gap: 12px;
  list-style: none;
}

.hero-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.89rem;
}

.hero-card li span {
  color: var(--lime-400);
  font-weight: 900;
}

.hero-card > a {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.hero-card > a span {
  color: var(--lime-400);
}

.trust-strip {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--mist);
  background: var(--white);
}

.trust-grid {
  display: grid;
  min-height: 126px;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  min-height: 62px;
  padding: 0 24px;
  border-right: 1px solid var(--mist);
  align-items: center;
  gap: 14px;
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-item svg {
  width: 36px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--blue-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.trust-item div {
  display: grid;
}

.trust-item strong {
  color: var(--navy-950);
  font-size: 0.92rem;
}

.trust-item span {
  color: var(--slate);
  font-size: 0.73rem;
}

.section-heading--split {
  display: grid;
  margin-bottom: 52px;
  align-items: end;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin: 0;
  color: var(--slate);
  font-size: 1.04rem;
}

.section-heading--center {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.services {
  background: var(--cloud);
}

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

.service-card {
  position: relative;
  min-height: 315px;
  padding: 34px 31px;
  overflow: hidden;
  border: 1px solid rgba(16, 35, 50, 0.08);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 4px 0 transparent;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(40, 119, 182, 0.22);
  box-shadow: var(--shadow-soft);
}

.service-card--featured {
  border-color: var(--navy-900);
  background: var(--navy-900);
}

.service-card__number {
  position: absolute;
  top: 23px;
  right: 26px;
  color: rgba(16, 35, 50, 0.16);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.service-card--featured .service-card__number {
  color: rgba(255, 255, 255, 0.25);
}

.service-card__icon {
  width: 47px;
  height: 47px;
  margin-bottom: 31px;
  fill: none;
  stroke: var(--blue-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.service-card--featured .service-card__icon {
  stroke: var(--lime-400);
}

.service-card h3 {
  margin-bottom: 13px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.91rem;
}

.service-card--featured h3 {
  color: var(--white);
}

.service-card--featured p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.service-card a {
  color: var(--lime-400);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.inspection {
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.inspection-intro {
  display: grid;
  margin-bottom: 58px;
  align-items: end;
  grid-template-columns: 0.85fr 1.3fr 0.85fr;
  gap: 50px;
}

.inspection-intro .eyebrow {
  align-self: start;
}

.inspection-intro h2 {
  margin: 0;
  color: var(--white);
}

.inspection-intro > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.94rem;
}

.inspection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.inspection-card {
  min-height: 270px;
  padding: 34px 28px;
  background: var(--navy-950);
  transition: background 200ms ease;
}

.inspection-card:hover {
  background: var(--navy-900);
}

.inspection-card__label {
  display: block;
  margin-bottom: 56px;
  color: var(--lime-400);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.inspection-card h3 {
  margin-bottom: 14px;
  color: var(--white);
}

.inspection-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
}

.thermal-note {
  display: flex;
  max-width: 780px;
  padding-top: 34px;
  align-items: flex-start;
  gap: 18px;
}

.thermal-note svg {
  width: 38px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--lime-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.thermal-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
}

.thermal-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.87rem;
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 84px;
}

.about-visual {
  position: relative;
  padding: 0 0 38px 38px;
}

.about-visual::before {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 76%;
  height: 70%;
  border-radius: var(--radius-lg);
  background: var(--lime-500);
  content: "";
}

.about-visual img {
  width: 100%;
  min-height: 500px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  right: -18px;
  bottom: 5px;
  display: grid;
  width: 165px;
  min-height: 128px;
  padding: 23px;
  border-radius: var(--radius-md);
  align-content: center;
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.about-badge strong {
  color: var(--lime-400);
  font-family: var(--font-display);
  font-size: 1.23rem;
}

.about-badge span {
  font-size: 0.79rem;
}

.about-copy__lead {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 640;
}

.about-copy > p:not(.eyebrow) {
  color: var(--slate);
}

.check-list {
  display: grid;
  padding: 22px 0 25px;
  margin: 0;
  border-top: 1px solid var(--mist);
  gap: 12px;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 11px;
  font-size: 0.91rem;
  font-weight: 650;
}

.check-list span {
  color: var(--blue-600);
  font-weight: 900;
}

.text-link {
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
}

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

.reviews {
  background: var(--cloud);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.review-card {
  position: relative;
  padding: 48px 44px 38px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.review-card__mark {
  position: absolute;
  top: -12px;
  right: 30px;
  color: rgba(40, 119, 182, 0.12);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}

.review-card > p {
  position: relative;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.8;
}

.review-card footer {
  display: grid;
  padding-top: 22px;
  border-top: 1px solid var(--mist);
}

.review-card footer strong {
  color: var(--navy-900);
}

.review-card footer span {
  color: var(--slate);
  font-size: 0.77rem;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background: var(--navy-900);
  color: var(--white);
}

.contact::before {
  position: absolute;
  top: -220px;
  left: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.025), 0 0 0 180px rgba(255, 255, 255, 0.018);
  content: "";
}

.contact-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 0.87fr 1.13fr;
  gap: 90px;
}

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

.contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.contact-methods {
  display: grid;
  padding: 28px 0;
  gap: 13px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--white);
  text-decoration: none;
}

.contact-method svg {
  width: 42px;
  height: 42px;
  padding: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  fill: none;
  stroke: var(--lime-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-method:first-child svg {
  fill: var(--lime-400);
  stroke: none;
}

.contact-method span {
  display: grid;
  min-width: 0;
}

.contact-method small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-method strong {
  overflow-wrap: anywhere;
}

.contact-details {
  display: grid;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-details p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
}

.contact-details strong {
  color: var(--lime-400);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-form {
  padding: 44px;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quote-form__heading {
  margin-bottom: 28px;
}

.quote-form__heading span {
  color: var(--blue-600);
  font-size: 0.71rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-form__heading h3 {
  margin: 5px 0 0;
  font-size: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-field {
  display: grid;
  margin-bottom: 15px;
  gap: 7px;
}

.form-field label {
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #d8e1e6;
  border-radius: 8px;
  background: #f9fbfc;
  color: var(--ink);
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.form-field input,
.form-field select {
  min-height: 48px;
  padding: 0 13px;
}

.form-field textarea {
  min-height: 104px;
  padding: 12px 13px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(40, 119, 182, 0.14);
}

.form-note,
.form-status {
  margin: 11px 0 0;
  color: var(--slate);
  font-size: 0.72rem;
  text-align: center;
}

.form-status:not(:empty) {
  color: var(--blue-600);
  font-weight: 750;
}

.site-footer {
  padding: 42px 0 20px;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.58);
}

.footer-main {
  display: grid;
  padding-bottom: 34px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 42px;
}

.brand--footer img {
  width: 170px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-main p {
  max-width: 500px;
  margin: 0;
  font-size: 0.84rem;
}

.footer-phone {
  color: var(--lime-400);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  justify-content: space-between;
  gap: 30px;
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-call {
  display: none;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1080px) {
  :root {
    --header-height: 76px;
  }

  .primary-nav {
    gap: 17px;
  }

  .primary-nav a {
    font-size: 0.8rem;
  }

  .brand img {
    width: 145px;
  }

  .header-call {
    min-width: 160px;
  }

  .hero__content {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 44px;
  }

  .trust-item {
    padding: 0 14px;
  }

  .inspection-intro {
    grid-template-columns: 0.65fr 1.35fr 0.9fr;
    gap: 30px;
  }

  .about-grid,
  .contact-grid {
    gap: 54px;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .utility-bar__links span {
    display: none;
  }

  .header-inner {
    gap: 18px;
  }

  .header-call {
    order: 2;
    margin-left: auto;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 8px;
    place-content: center;
    gap: 5px;
    background: transparent;
    cursor: pointer;
    order: 3;
  }

  .menu-toggle span:not(.sr-only) {
    width: 23px;
    height: 2px;
    background: var(--navy-950);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    padding: 18px;
    transform: translateY(-10px);
    visibility: hidden;
    gap: 0;
    background: var(--white);
    box-shadow: 0 18px 35px rgba(6, 27, 45, 0.13);
    opacity: 0;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .primary-nav a {
    padding: 13px 10px;
    border-bottom: 1px solid var(--mist);
    font-size: 0.94rem;
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

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

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

  .hero__shade {
    background: linear-gradient(90deg, rgba(5, 23, 39, 0.96), rgba(5, 23, 39, 0.68));
  }

  .hero__content {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .hero-card {
    max-width: 520px;
  }

  .trust-grid {
    padding: 26px 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child {
    padding: 0 20px;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .section-heading--split,
  .inspection-intro,
  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-heading--split,
  .inspection-intro {
    gap: 16px;
  }

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

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

  .about-grid {
    gap: 68px;
  }

  .about-visual {
    width: min(90%, 670px);
  }

  .about-visual img {
    min-height: 430px;
  }

  .contact-copy {
    max-width: 670px;
  }

  .contact-grid {
    gap: 55px;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 68px;
  }

  body {
    padding-bottom: 64px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section,
  .contact {
    padding: 78px 0;
  }

  .utility-bar {
    display: none;
  }

  .brand img {
    width: 128px;
  }

  .header-call {
    display: none;
  }

  .menu-toggle {
    margin-left: auto;
  }

  .hero,
  .hero__content {
    min-height: auto;
  }

  .hero__image {
    background-position: 61% center;
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(5, 23, 39, 0.96), rgba(5, 23, 39, 0.76));
  }

  .hero__content {
    display: block;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(2.85rem, 14vw, 4rem);
  }

  .eyebrow {
    gap: 9px;
    font-size: 0.65rem;
    letter-spacing: 0.11em;
  }

  .eyebrow span {
    width: 28px;
    flex-basis: 28px;
  }

  .hero__lede {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-card {
    display: none;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child {
    min-height: 86px;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid var(--mist);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section-heading--split {
    margin-bottom: 36px;
  }

  .section-heading--split > p {
    font-size: 0.95rem;
  }

  .services-grid,
  .inspection-grid,
  .reviews-grid,
  .contact-details,
  .form-row {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .inspection-intro {
    margin-bottom: 36px;
  }

  .inspection-card {
    min-height: 0;
  }

  .inspection-card__label {
    margin-bottom: 28px;
  }

  .about-visual {
    width: calc(100% - 10px);
    padding: 0 0 25px 20px;
  }

  .about-visual img {
    min-height: 340px;
    border-radius: var(--radius-md);
  }

  .about-badge {
    right: -10px;
    width: 145px;
    min-height: 108px;
    padding: 18px;
  }

  .review-card {
    padding: 38px 25px 30px;
  }

  .review-card > p {
    font-size: 0.98rem;
  }

  .quote-form {
    padding: 28px 20px;
    border-radius: var(--radius-md);
  }

  .contact-method strong {
    font-size: 0.89rem;
  }

  .footer-main {
    justify-items: start;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }

  .mobile-call {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--lime-500);
    color: var(--navy-950);
    font-size: 0.88rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 -8px 24px rgba(6, 27, 45, 0.16);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}
