:root {
  --ink: #030e3d;
  --muted: #566080;
  --navy: #030e3d;
  --navy-2: #030e3d;
  --blue: #030e3d;
  --orange: #ff2424;
  --orange-dark: #d90f1b;
  --yellow: #ffcb1f;
  --green: #168653;
  --paper: #ffffff;
  --soft: #f7f8fc;
  --line: #dfe3f0;
  --review-line: #dadce0;
  --max: 1200px;
  --shadow: 0 18px 45px rgba(3, 14, 61, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

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

button,
summary {
  font: inherit;
}

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

svg {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sprite,
.gtm-noscript {
  position: absolute;
  width: 0;
  height: 0;
  border: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  transform: translateY(-150%);
}

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

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

.kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 8px 16px rgba(255, 36, 36, 0.28);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-call {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(3, 14, 61, 0.7);
}

.button-primary svg {
  width: 20px;
  height: 20px;
  padding: 4px;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
}

.button-dark {
  color: #fff;
  background: var(--navy);
}

.button-dark svg {
  width: 20px;
  height: 20px;
  padding: 4px;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
}

.button-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.44);
  background: transparent;
}

.button-wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.light-link {
  color: #fff;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 26px rgba(3, 14, 61, 0.16);
}

.header-inner {
  display: grid;
  width: min(1280px, calc(100% - 40px));
  min-height: 86px;
  margin-inline: auto;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand img {
  width: 148px;
  height: auto;
  object-fit: contain;
}

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

.main-nav a {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--yellow);
}

.header-call {
  display: inline-flex;
  min-height: 48px;
  padding: 7px 18px 7px 9px;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: var(--orange);
  border-radius: 6px;
  box-shadow: 0 7px 16px rgba(255, 36, 36, 0.22);
}

.header-call-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
}

.header-call-icon svg {
  width: 18px;
  height: 18px;
}

.header-call strong {
  font-size: 16px;
}

.hero {
  position: relative;
  min-height: 720px;
  isolation: isolate;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(3, 14, 61, 0.92) 0%, rgba(3, 14, 61, 0.62) 48%, rgba(3, 14, 61, 0.2) 100%);
}

.hero-inner {
  display: grid;
  width: min(1280px, calc(100% - 48px));
  min-height: 720px;
  margin-inline: auto;
  padding: 64px 0 72px;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  max-width: 680px;
  color: #fff;
}

.hero-copy .eyebrow {
  color: #fff;
}

.hero h1 {
  max-width: 670px;
  margin: 0;
  font-size: 62px;
  font-weight: 800;
  line-height: 1.02;
}

.hero-subtitle {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.hero-detail {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-google-image {
  display: grid;
  width: min(270px, 100%);
  min-height: 58px;
  margin-top: 25px;
  padding: 7px 12px;
  place-items: center;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(3, 14, 61, 0.22);
  overflow: hidden;
}

.hero-google-image img {
  width: 126px;
  height: auto;
}

.google-g,
.google-mini {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #4285f4;
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.google-g {
  width: 28px;
  height: 28px;
  font-size: 24px;
}

.stars {
  color: var(--yellow);
  letter-spacing: 1px;
}

.reviews-section {
  padding: 88px 0;
  color: var(--navy);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review-shell {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 64px;
}

.reviews-heading {
  position: sticky;
  top: 118px;
  grid-column: 1;
  grid-row: 1 / span 2;
}

.reviews-heading h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.14;
}

.reviews-heading > p:not(.kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.review-list {
  display: grid;
  grid-column: 2;
  grid-row: 1;
  gap: 14px;
}

.google-review {
  padding: 22px;
  color: #202124;
  background: #fff;
  border: 1px solid var(--review-line);
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(3, 14, 61, 0.07);
  font-family: "Google Sans Text", "Google Sans", Roboto, Arial, sans-serif;
}

.google-review[hidden] {
  display: none;
}

.google-review header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.google-review header a {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.google-review header img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  object-fit: cover;
}

.google-review header a span {
  display: grid;
  min-width: 0;
}

.google-review header strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.google-review header small {
  color: #70757a;
  font-size: 11px;
}

.google-mini {
  width: 24px;
  height: 24px;
  color: #4285f4;
  background: #fff;
  border: 1px solid var(--review-line);
  border-radius: 50%;
  font-size: 15px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.review-meta .stars {
  font-size: 14px;
}

.review-meta .stars i {
  color: #dadce0;
  font-style: normal;
}

.review-meta time {
  color: #70757a;
  font-size: 11px;
}

.google-review p {
  margin: 14px 0 0;
  color: #3c4043;
  font-size: 14px;
  line-height: 1.65;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 22px;
  grid-column: 2;
  grid-row: 2;
}

.reviews-section .button-outline {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.reviews-section .button-outline:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.work-section {
  padding: 88px 0 96px;
  background: #fff;
}

.work-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.work-heading h2,
.centered-heading h2,
.about-copy h2,
.choose-content h2,
.areas-copy h2,
.faq-layout h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.14;
}

.work-heading p:not(.kicker),
.centered-heading > p:not(.kicker) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.carousel-toggle {
  display: inline-flex;
  min-height: 44px;
  padding: 10px 15px;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: var(--navy);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.carousel-toggle svg {
  width: 17px;
  height: 17px;
}

.project-carousel {
  --carousel-duration: 76s;
  --carousel-item-width: 300px;
  --carousel-item-height: 410px;
  --carousel-item-gap: 18px;
  position: relative;
  width: 100%;
  height: var(--carousel-item-height);
  margin-top: 34px;
  overflow: clip;
}

.project-carousel[mask] {
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5% 95%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 5% 95%, transparent);
}

.project-carousel > article {
  position: absolute;
  top: 0;
  left: calc(100% + var(--carousel-item-gap));
  display: grid;
  width: var(--carousel-item-width);
  height: var(--carousel-item-height);
  padding-bottom: 18px;
  grid-template-rows: 270px auto 1fr;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(3, 14, 61, 0.1);
  overflow: hidden;
  will-change: transform;
  animation: project-marquee var(--carousel-duration) linear infinite;
  animation-delay: calc(var(--carousel-duration) / var(--items) * var(--i) * -1);
}

.project-carousel:hover > article,
.project-carousel:focus-within > article,
.project-carousel.is-paused > article {
  animation-play-state: paused;
}

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

.project-carousel h3,
.project-carousel article > div {
  padding-inline: 18px;
}

.project-carousel h3 {
  margin: 17px 0 0;
  font-size: 16px;
  line-height: 1.25;
}

.project-carousel article > div {
  align-self: end;
}

.project-carousel p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

@keyframes project-marquee {
  to {
    transform: translateX(calc((var(--items) * (var(--carousel-item-width) + var(--carousel-item-gap))) * -1));
  }
}

.services-section {
  padding: 92px 0;
  background: var(--soft);
  border-top: 1px solid #edf0f2;
  border-bottom: 1px solid #edf0f2;
}

.centered-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

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

.service-grid article {
  min-height: 255px;
  padding: 24px 18px;
  background: #fff;
  border: 1px solid #e4e8ea;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(3, 14, 61, 0.08);
  text-align: center;
}

.service-grid article:nth-child(3n + 2) {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.service-grid article:nth-child(3n) {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.service-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-inline: auto;
  place-items: center;
  color: var(--orange);
  background: transparent;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.service-grid article:nth-child(3n + 2) .service-icon,
.service-grid article:nth-child(3n) .service-icon {
  color: #fff;
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-grid h3 {
  margin: 20px 0 0;
  font-size: 15px;
  line-height: 1.3;
}

.service-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.service-grid article:nth-child(3n + 2) p,
.service-grid article:nth-child(3n) p {
  color: rgba(255, 255, 255, 0.88);
}

.services-cta {
  display: flex;
  width: max-content;
  margin: 30px auto 0;
}

.about-section {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: #fff;
}

.about-media {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.about-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-phone-correction {
  position: absolute;
  left: 8%;
  top: 57%;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  color: #fff;
  background: var(--navy);
  border: 2px solid var(--yellow);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
}

.about-copy {
  align-self: center;
  max-width: 660px;
  padding: 64px 72px;
}

.about-copy > p:not(.kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.78;
}

.about-copy .button {
  margin-top: 28px;
}

.choose-section {
  padding: 92px 0;
  color: #fff;
  background: var(--navy-2);
}

.choose-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 54px;
}

.choose-brand {
  padding-right: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.choose-brand > img {
  width: 245px;
  height: auto;
  margin-inline: auto;
  object-fit: contain;
}

.choose-brand > p {
  margin: 18px 0 22px;
  color: #b9c7cd;
  font-size: 13px;
  line-height: 1.7;
}

.choose-contact {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}

.choose-content > p:not(.kicker) {
  max-width: 760px;
  margin: 14px 0 0;
  color: #b9c7cd;
  font-size: 14px;
  line-height: 1.7;
}

.choose-grid {
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.choose-grid article {
  min-height: 190px;
  padding: 22px;
  color: var(--navy);
  background: #fff;
  border: 1px solid #fff;
  border-radius: 8px;
}

.choose-grid article:nth-child(even) {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.choose-grid svg {
  width: 25px;
  height: 25px;
  color: var(--orange);
}

.choose-grid h3 {
  margin: 15px 0 0;
  font-size: 16px;
}

.choose-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.choose-grid article:nth-child(even) p {
  color: rgba(255, 255, 255, 0.88);
}

.choose-grid article:nth-child(even) svg {
  color: #fff;
}

.difference-section {
  position: relative;
  min-height: 660px;
  padding: 88px 0;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.difference-bg,
.difference-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.difference-bg {
  object-fit: cover;
}

.difference-shade {
  z-index: -1;
  background: rgba(3, 14, 61, 0.82);
}

.difference-content {
  text-align: center;
}

.difference-content h2 {
  margin: 0;
  font-size: 44px;
}

.difference-content > p:not(.kicker) {
  max-width: 780px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.7;
}

.difference-grid {
  display: grid;
  margin-top: 42px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.difference-grid article {
  min-height: 270px;
  padding: 24px 16px;
  color: var(--navy);
  background: #fff;
  border: 1px solid #fff;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(3, 14, 61, 0.18);
}

.difference-grid article:nth-child(3n + 2) {
  color: #fff;
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.48);
}

.difference-grid article:nth-child(3n) {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.difference-grid article > span {
  display: grid;
  width: 52px;
  height: 52px;
  margin-inline: auto;
  place-items: center;
  color: var(--orange);
  background: transparent;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.difference-grid article:nth-child(3n + 2) > span,
.difference-grid article:nth-child(3n) > span {
  color: #fff;
}

.difference-grid svg {
  width: 24px;
  height: 24px;
}

.difference-grid h3 {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.35;
}

.difference-grid p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.difference-grid article:nth-child(3n + 2) p,
.difference-grid article:nth-child(3n) p {
  color: rgba(255, 255, 255, 0.86);
}

.areas-section {
  padding: 96px 0;
  background: #fff;
}

.areas-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 56px;
}

.areas-copy > p:not(.kicker) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.area-list {
  display: grid;
  margin: 28px 0 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 30px;
}

.area-list span {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}

.area-list svg {
  color: var(--orange);
}

.areas-visual {
  position: relative;
  min-height: 530px;
  background: var(--soft);
  border-radius: 8px;
  overflow: hidden;
}

.areas-visual > img {
  width: 100%;
  height: 530px;
  object-fit: cover;
}

.areas-visual > div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px;
  color: #fff;
  background: rgba(3, 14, 61, 0.92);
  border-radius: 6px;
}

.areas-visual > div > svg {
  width: 30px;
  height: 30px;
  color: var(--orange);
}

.areas-visual > div span {
  display: grid;
}

.areas-visual > div small {
  color: #c7d0d4;
  font-size: 11px;
}

.faq-section {
  padding: 92px 0;
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 70px;
}

.faq-layout > div:first-child > p:not(.kicker) {
  color: var(--muted);
  font-size: 14px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 42px 22px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 19px;
  right: 4px;
  content: "+";
  color: var(--orange);
  font-size: 22px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 740px;
  margin: -6px 0 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.closing-cta {
  display: flex;
  padding: 48px max(24px, calc((100% - 1200px) / 2));
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
  background: var(--navy);
}

.closing-cta p {
  margin: 0;
  color: #c7d8e1;
  font-size: 13px;
}

.closing-cta h2 {
  margin: 5px 0 0;
  font-size: 34px;
}

.site-footer {
  padding: 70px 0;
  color: #fff;
  background: #01082b;
}

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

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 1fr 0.85fr;
  gap: 50px;
}

.footer-brand img {
  width: 210px;
  height: auto;
  object-fit: contain;
}

.footer-brand p {
  max-width: 320px;
  color: #94a5ae;
  font-size: 12px;
  line-height: 1.7;
}

.footer-main > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-main h3 {
  margin: 0 0 8px;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-main a,
.footer-main address {
  color: #a9b7be;
  font-size: 12px;
  font-style: normal;
  line-height: 1.65;
}

.footer-main a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  margin-top: 48px;
  padding-top: 22px;
  justify-content: space-between;
  gap: 20px;
  color: #71838d;
  border-top: 1px solid #1e3039;
  font-size: 11px;
}

@media (max-width: 1180px) {
  .hero h1 {
    font-size: 52px;
  }

  .hero-inner {
    gap: 32px;
  }

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

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

  .difference-grid article {
    min-height: 220px;
  }

  .about-copy {
    padding: 54px 42px;
  }
}

@media (max-width: 940px) {
  html {
    scroll-padding-top: 80px;
  }

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

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

  .main-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .header-call {
    justify-self: end;
  }

  .hero-inner {
    min-height: auto;
    padding: 74px 0 64px;
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 48px;
  }

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

  .review-shell {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .reviews-heading {
    position: static;
    grid-column: 1;
    grid-row: auto;
  }

  .review-list {
    max-width: 100%;
    grid-column: 1;
    grid-row: auto;
  }

  .review-actions {
    grid-column: 1;
    grid-row: auto;
  }

  .project-carousel {
    --carousel-duration: 70s;
    --carousel-item-width: 280px;
    --carousel-item-height: 390px;
  }

  .project-carousel > article {
    grid-template-rows: 250px auto 1fr;
  }

  .project-carousel img {
    height: 250px;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: 680px;
  }

  .about-copy {
    max-width: none;
    padding: 64px max(24px, calc((100% - 760px) / 2));
  }

  .choose-layout {
    grid-template-columns: 1fr;
  }

  .choose-brand {
    display: grid;
    max-width: 580px;
    padding: 0;
    border-right: 0;
  }

  .choose-brand > img {
    margin: 0;
  }

  .areas-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .closing-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 680px) {
  .section-shell,
  .footer-main,
  .footer-bottom {
    width: min(100% - 32px, var(--max));
  }

  html {
    scroll-padding-top: 154px;
  }

  .header-inner {
    width: 100%;
    min-height: 0;
    padding: 11px 16px 14px;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .brand {
    justify-self: center;
  }

  .brand img {
    width: 188px;
  }

  .header-call {
    width: 70%;
    min-height: 38px;
    padding: 4px 10px;
    justify-content: center;
    justify-self: center;
  }

  .header-call-icon {
    width: 28px;
    height: 28px;
  }

  .header-call-icon svg {
    width: 14px;
    height: 14px;
  }

  .header-call strong {
    font-size: 16px;
  }

  .hero-image {
    object-position: 69% center;
  }

  .hero-overlay {
    background: rgba(3, 14, 61, 0.76);
  }

  .hero-inner {
    width: calc(100% - 32px);
    padding: 54px 0 42px;
    gap: 38px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.06;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-google-image {
    width: 100%;
    min-height: 44px;
    padding: 4px 10px;
  }

  .hero-google-image img {
    width: 105px;
  }

  .reviews-section,
  .work-section,
  .services-section,
  .choose-section,
  .difference-section,
  .areas-section,
  .faq-section {
    padding: 68px 0;
  }

  .reviews-heading h2,
  .work-heading h2,
  .centered-heading h2,
  .about-copy h2,
  .choose-content h2,
  .areas-copy h2,
  .faq-layout h2,
  .difference-content h2 {
    font-size: 33px;
  }

  .google-review {
    padding: 18px;
  }

  .google-review p {
    font-size: 13px;
  }

  .work-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .carousel-toggle {
    min-height: 42px;
  }

  .project-carousel {
    --carousel-duration: 64s;
    --carousel-item-width: 245px;
    --carousel-item-height: 350px;
    --carousel-item-gap: 14px;
    width: calc(100% + 16px);
    margin-right: -16px;
  }

  .project-carousel > article {
    grid-template-rows: 210px auto 1fr;
  }

  .project-carousel img {
    height: 210px;
  }

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

  .service-grid article,
  .choose-grid article,
  .difference-grid article {
    min-height: 0;
  }

  .service-grid article {
    padding: 20px 13px;
  }

  .service-grid p {
    font-size: 11px;
  }

  .about-media {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .about-phone-correction {
    left: 7%;
    top: 57%;
  }

  .about-copy {
    padding: 58px 20px;
  }

  .choose-layout {
    gap: 44px;
  }

  .difference-section {
    min-height: auto;
  }

  .difference-grid article {
    padding: 20px 12px;
  }

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

  .areas-visual,
  .areas-visual > img {
    min-height: 420px;
    height: 420px;
  }

  .closing-cta h2 {
    font-size: 28px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .reviews-heading h2,
  .work-heading h2,
  .centered-heading h2,
  .about-copy h2,
  .choose-content h2,
  .areas-copy h2,
  .faq-layout h2,
  .difference-content h2 {
    font-size: 30px;
  }

  .service-grid,
  .choose-grid,
  .difference-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    text-align: left;
  }

  .service-icon {
    margin-inline: 0;
  }

  .review-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .review-actions .button,
  .review-actions .text-link {
    justify-content: center;
  }

}

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

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

  .project-carousel {
    display: grid;
    height: auto;
    padding-bottom: 10px;
    grid-auto-columns: var(--carousel-item-width);
    grid-auto-flow: column;
    gap: var(--carousel-item-gap);
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scroll-snap-type: inline mandatory;
  }

  .project-carousel > article {
    position: relative;
    left: auto;
    animation: none !important;
    scroll-snap-align: start;
  }

  .carousel-toggle {
    display: none;
  }
}
