:root {
  --blue: #0a6cff;
  --blue-dark: #091a3f;
  --brand-blue: #004f9f;
  --red: #e11d2e;
  --ink: #14213d;
  --muted: #667085;
  --line: #e7edf6;
  --panel: #f4f8fc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(9, 26, 63, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 320px 1fr 430px;
  align-items: center;
  gap: 24px;
  width: min(1800px, calc(100% - 104px));
  margin: 0 auto;
  padding: 18px 0 44px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  padding-left: 38px;
}

.brand img {
  width: auto;
  max-width: 118px;
  max-height: 68px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
  color: #4b5563;
  font-size: 18px;
  font-weight: 400;
}

.nav a,
.nav button {
  border: 0;
  padding: 8px 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.nav a:hover,
.nav button:hover {
  color: var(--blue);
}

.nav a[href="#top"] {
  color: var(--blue);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 38px;
  left: 50%;
  width: 360px;
  max-height: min(76vh, 620px);
  overflow-y: auto;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: 160ms ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}

.dropdown-menu a:hover {
  background: var(--panel);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #101828;
  white-space: nowrap;
}

.phone-copy {
  display: grid;
  gap: 2px;
}

.phone-copy small {
  color: #667085;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.phone-copy strong {
  color: #101828;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 999px;
  font-size: 16px;
}

.quote-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
}

.quote-button {
  position: relative;
  min-width: 172px;
}

.quote-button,
.secondary-button {
  color: var(--white);
  background: var(--blue-dark);
}

.primary-button {
  color: var(--white);
  background: var(--blue);
}

.hero,
.steps,
.services,
.proof,
.projects,
.appointment,
.reviews,
footer {
  max-width: 1180px;
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  max-width: 1800px;
  min-height: auto;
  padding: 8px 20px 72px;
}

.hero-copy {
  display: flex;
  min-height: 782px;
  flex-direction: column;
  justify-content: center;
  padding: 78px 80px;
  background: #f4f5f7;
  border-radius: 14px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  width: 9px;
  height: 9px;
  content: "";
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 9px -6px 0 #b7d2ff;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: #101828;
  font-size: clamp(58px, 4.75vw, 88px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  color: #101828;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: #111827;
  font-size: 18px;
  line-height: 1.2;
}

p {
  color: var(--muted);
}

.hero-copy p {
  max-width: 620px;
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 22px 0 auto;
}

.trust-row {
  display: block;
  max-width: 100%;
  margin-top: 86px;
  overflow: hidden;
}

.trust-row strong {
  display: block;
  color: #5c626b;
  font-size: 34px;
  line-height: 1;
}

.trust-row span {
  display: block;
  margin-bottom: 18px;
  color: #4b5563;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-awards {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  width: 100%;
}

.hero-awards img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.hero-awards .award-star {
  width: 210px;
}

.hero-awards .award-houzz {
  width: 162px;
}

.hero-awards .award-google {
  width: 188px;
}

.hero-awards .award-homestars {
  width: auto;
  height: 94px;
  flex: 0 0 auto;
}

.trust-row small {
  display: block;
  margin-top: 6px;
  color: #4b5563;
  font-size: 16px;
  font-weight: 800;
}

.hero-media {
  position: relative;
  min-height: 782px;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 782px;
  object-fit: cover;
  object-position: center;
}

.hero-pills,
.rating-card {
  position: absolute;
}

.hero-pills {
  top: 12px;
  left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pill,
.customer-card,
.rating-card {
  background: var(--white);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(9, 26, 63, 0.16);
  font-weight: 900;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 14px;
  color: #ffffff;
  background: rgba(65, 74, 92, 0.78);
  backdrop-filter: blur(8px);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.hero-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
}

.hero-stat-row {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 31%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.customer-card {
  position: static;
  min-height: 164px;
  padding: 26px 28px;
}

.avatar-stack {
  display: flex;
  margin-bottom: 16px;
}

.avatar-stack span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-right: -12px;
  border: 3px solid #ffffff;
  border-radius: 999px;
  color: #ffffff;
  background: transparent;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  overflow: hidden;
}

.avatar-stack span:nth-child(2) {
  background: transparent;
}

.avatar-stack span:nth-child(3) {
  background: transparent;
}

.avatar-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.customer-card p {
  margin: 0;
  color: #14213d;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
}

.customer-card strong {
  display: inline;
  color: #061331;
  font-weight: 900;
}

.rating-card {
  position: static;
  min-height: 164px;
  padding: 26px 28px;
}

.rating-card strong {
  display: block;
  color: var(--blue);
  font-size: 52px;
  font-weight: 500;
  line-height: 1;
}

.rating-card span {
  display: block;
  margin-top: 18px;
  color: #33435f;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
}

.steps {
  max-width: 1240px;
  padding: 64px 30px 88px;
  text-align: center;
}

.steps .section-kicker {
  justify-content: center;
  margin-bottom: 18px;
  font-size: 16px;
}

.steps h2 {
  max-width: 620px;
  margin: 0 auto;
  font-size: clamp(38px, 3.7vw, 50px);
  line-height: 1.08;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 84px;
  text-align: left;
}

.step-grid article {
  display: grid;
  grid-template-rows: 120px 78px 1fr;
  min-height: 338px;
  padding: 32px 20px;
  background: #f4f5f7;
  border: 1px solid #edf2f8;
  border-radius: 13px;
}

.step-grid span {
  display: block;
  margin-bottom: 0;
  color: #9aa5b8;
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}

.step-grid h3 {
  align-self: start;
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.16;
}

.step-grid p,
.service-card p,
.feature-list p {
  margin-bottom: 0;
  font-size: 19px;
  line-height: 1.5;
}

.dark-step {
  color: var(--white);
  background: var(--blue-dark) !important;
}

.dark-step h3,
.dark-step span {
  color: var(--white);
}

.dark-step h3 {
  align-self: start;
  font-size: 26px;
}

.dark-step span {
  color: rgba(255, 255, 255, 0.24);
  font-size: 38px;
}

.dark-step a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: end;
  margin-top: 0;
  min-height: 52px;
  width: 100%;
  padding: 0 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
}

.services {
  max-width: none;
  padding: 86px clamp(28px, 6vw, 80px) 94px;
  background: var(--panel);
  text-align: center;
}

.services .section-kicker {
  justify-content: center;
  margin-bottom: 12px;
  font-size: 16px;
}

.services h2 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(42px, 4vw, 56px);
  line-height: 1.08;
}

.service-grid,
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 66px auto 0;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(112px, auto) 1fr;
  min-height: 292px;
  padding: 36px 108px 34px 28px;
  background: var(--white);
  border: 1px solid #eaf0f8;
  border-radius: 14px;
  text-align: left;
  transition: 180ms ease;
}

.service-card:hover {
  border-color: #c7dcff;
  box-shadow: 0 16px 42px rgba(9, 26, 63, 0.09);
  transform: translateY(-3px);
}

.icon {
  position: absolute;
  top: 28px;
  right: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.small-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.service-card h3 {
  max-width: 260px;
  margin-bottom: 0;
  color: #061331;
  font-size: 28px;
  line-height: 1.18;
}

.service-card p {
  align-self: start;
  color: #33435f;
  font-size: 20px;
  line-height: 1.45;
}

.urgent {
  color: var(--white);
  background: var(--blue-dark);
}

.urgent h3,
.urgent p {
  color: var(--white);
}

.urgent .icon {
  background: var(--red);
}

.proof {
  display: grid;
  grid-template-columns: 0.82fr 1.4fr;
  gap: 96px;
  max-width: 1340px;
  padding: 110px 56px 106px;
}

.proof-copy {
  align-self: start;
  padding-top: 8px;
}

.proof-copy .section-kicker {
  margin-bottom: 22px;
  font-size: 16px;
}

.proof-copy h2 {
  max-width: 430px;
  margin-bottom: 32px;
  font-size: clamp(42px, 3.65vw, 50px);
  line-height: 1.08;
}

.feature-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 86px;
  row-gap: 76px;
  margin-top: 0;
}

.feature-list article {
  padding: 0;
}

.small-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  background: var(--blue);
  color: var(--blue);
  color: #ffffff;
  font-size: 30px;
}

.feature-list h3 {
  margin-bottom: 12px;
  color: #101828;
  font-size: 30px;
  line-height: 1.15;
}

.feature-list p {
  max-width: 330px;
  color: #526079;
  font-size: 20px;
  line-height: 1.45;
}

.marquee {
  max-width: 100%;
  overflow: hidden;
  padding: 38px 0;
  color: rgba(20, 33, 61, 0.12);
  font-size: clamp(42px, 9vw, 116px);
  font-weight: 800;
  white-space: nowrap;
}

.projects {
  max-width: 1260px;
  padding: 84px 30px 72px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 84px;
}

.section-heading h2 {
  max-width: 640px;
  margin-bottom: 0;
  font-size: clamp(42px, 4vw, 56px);
  line-height: 1.12;
}

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

.project-grid article {
  overflow: visible;
  border-radius: 0;
}

.project-grid img {
  width: 100%;
  aspect-ratio: 1.31;
  object-fit: cover;
  border-radius: 13px;
}

.project-grid span {
  display: block;
  margin-top: 18px;
  color: #526079;
  font-size: 18px;
  font-weight: 500;
}

.project-grid h3 {
  margin-top: 8px;
  margin-bottom: 0;
  color: #101828;
  font-size: 28px;
  line-height: 1.2;
}

.appointment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1820px;
  padding: 14px 10px 92px;
}

.appointment > img {
  width: 100%;
  height: 100%;
  min-height: 810px;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
}

.appointment-card {
  display: flex;
  min-height: 810px;
  flex-direction: column;
  justify-content: center;
  padding: 72px 60px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 22px;
}

.appointment-card h2,
.appointment-card p {
  color: var(--white);
}

.appointment-card .section-kicker {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 16px;
}

.appointment-card h2 {
  max-width: 560px;
  margin-bottom: 44px;
  font-size: clamp(42px, 3.7vw, 54px);
  line-height: 1.08;
}

.appointment-card .form-grid,
.contact-form-card .form-grid {
  grid-template-columns: 1fr;
  row-gap: 0;
}

.appointment-card input,
.appointment-card select,
.appointment-card textarea,
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  color: #101828;
  background: #ffffff;
  border-color: #ffffff;
}

.appointment-card input::placeholder,
.appointment-card textarea::placeholder,
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: #667085;
}

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

label {
  display: grid;
  gap: 0;
  margin-bottom: 24px;
}

label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  color: #d9e5ff;
  font-size: 12px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

select option {
  color: var(--ink);
}

textarea {
  min-height: 124px;
  padding-top: 17px;
  border-radius: 28px;
  resize: vertical;
}

.appointment-card button {
  width: 100%;
  min-height: 59px;
  margin-top: 40px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.reviews {
  display: block;
  max-width: 1260px;
  padding: 48px 30px 96px;
}

.awards-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 58px;
  padding: 8px 0 46px;
  border-bottom: 1px solid #d7dde8;
}

.award-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 42px;
}

.award-logos img {
  width: 100%;
  max-height: 86px;
  object-fit: contain;
  filter: saturate(0.92);
}

.review-heading {
  max-width: 620px;
  margin: 70px auto 44px;
  text-align: center;
}

.review-heading .section-kicker {
  justify-content: center;
}

.review-heading h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 3.7vw, 52px);
  line-height: 1.1;
}

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

.review-card {
  min-height: 320px;
  padding: 34px;
  background: #ffffff;
  border: 1px solid #e6edf7;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(9, 26, 63, 0.08);
}

.featured-review {
  color: #ffffff;
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-16px);
}

.stars {
  margin-bottom: 28px;
  color: #ffc83d;
  font-size: 25px;
  letter-spacing: 0;
}

.review-card p {
  margin-bottom: 34px;
  color: #17213a;
  font-size: 23px;
  font-weight: 750;
  line-height: 1.35;
}

.featured-review p {
  color: #ffffff;
}

.stat strong {
  display: block;
  color: #101828;
  font-size: 48px;
  line-height: 1;
}

.stat span,
cite {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

cite {
  margin-top: 18px;
  color: #101828;
  font-size: 18px;
}

cite span {
  display: block;
  margin-top: 4px;
  color: #667085;
  font-size: 14px;
}

.featured-review cite,
.featured-review cite span {
  color: #ffffff;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  max-width: none;
  padding: 70px clamp(18px, 5vw, 76px);
  color: var(--white);
  background: var(--blue-dark);
}

footer img {
  width: 128px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

footer p {
  max-width: 380px;
  color: #c9d7f4;
}

footer address {
  margin-top: 18px;
  color: #c9d7f4;
  font-size: 15px;
  font-style: normal;
  line-height: 1.55;
}

footer a {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
}

footer .privacy-link {
  margin-top: 24px;
  color: #c9d7f4;
  font-size: 15px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.payment-logos {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.payment-logos::before {
  display: block;
  width: 100%;
  margin-bottom: 8px;
  color: #ffffff;
  content: "We accept";
  font-size: 16px;
  font-weight: 800;
}

.payment-logos {
  flex-wrap: wrap;
}

.visa-logo,
.mastercard-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 48px;
  overflow: hidden;
  background: #ffffff;
  border-radius: 4px;
}

.visa-logo {
  color: #1a5aa6;
  font-size: 25px;
  font-style: italic;
  font-weight: 950;
}

.mastercard-logo i,
.mastercard-logo b {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 999px;
}

.mastercard-logo i {
  left: 18px;
  background: #eb001b;
}

.mastercard-logo b {
  right: 18px;
  background: #f79e1b;
  opacity: 0.92;
}

.mastercard-logo em {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
}

.service-page {
  background: #ffffff;
}

.service-hero,
.service-intro,
.service-process,
.service-types,
.service-maintenance,
.service-gallery,
.service-faq,
.service-reviews,
.service-contact {
  max-width: 1260px;
  margin: 0 auto;
  padding-right: 30px;
  padding-left: 30px;
}

.service-hero {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 24px;
  max-width: 1800px;
  padding: 8px 20px 82px;
}

.service-hero-copy,
.service-hero-media {
  min-height: 782px;
  border-radius: 18px;
}

.service-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 82px);
  background: #f4f5f7;
}

.service-hero-copy h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(54px, 5.2vw, 86px);
}

.service-hero-copy p {
  max-width: 700px;
  font-size: 20px;
  line-height: 1.55;
}

.service-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 50px;
}

.service-hero-points span {
  padding: 12px 16px;
  color: #101828;
  background: #ffffff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(9, 26, 63, 0.08);
}

.service-hero-copy .trust-row {
  margin-top: auto;
}

.service-image-pills {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
}

.service-hero-media {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 782px;
  object-fit: cover;
}

.service-emergency-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 260px;
  padding: 26px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(9, 26, 63, 0.16);
}

.service-emergency-card strong {
  display: block;
  color: var(--blue);
  font-size: 48px;
  line-height: 1;
}

.service-emergency-card span {
  display: block;
  margin-top: 14px;
  color: #33435f;
  font-size: 16px;
  line-height: 1.45;
}

.service-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  padding-top: 38px;
  padding-bottom: 90px;
}

.service-intro h2,
.service-process h2,
.service-maintenance h2,
.service-contact h2 {
  font-size: clamp(40px, 3.8vw, 56px);
  line-height: 1.08;
}

.service-copy p {
  color: #526079;
  font-size: 20px;
  line-height: 1.6;
}

.service-band {
  max-width: none;
  padding: 88px clamp(28px, 6vw, 80px) 94px;
  background: var(--panel);
}

.service-band-heading {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.service-band-heading .section-kicker {
  justify-content: center;
}

.service-band-heading h2 {
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1.08;
}

.service-card-grid,
.service-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card-grid article,
.service-type-grid article {
  min-height: 260px;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #e6edf7;
  border-radius: 14px;
}

.service-card-grid span {
  display: block;
  margin-bottom: 58px;
  color: #9aa5b8;
  font-size: 38px;
  line-height: 1;
}

.service-card-grid h3,
.service-type-grid h3 {
  font-size: 25px;
}

.service-card-grid p,
.service-type-grid p {
  color: #526079;
  font-size: 17px;
  line-height: 1.5;
}

.service-process {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
  padding-top: 104px;
  padding-bottom: 102px;
}

.service-process-copy p,
.service-maintenance p,
.service-contact p {
  color: #526079;
  font-size: 20px;
  line-height: 1.55;
}

.process-list {
  display: grid;
  gap: 18px;
}

.process-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 26px;
  background: #f4f5f7;
  border-radius: 14px;
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 999px;
  font-size: 20px;
  font-weight: 900;
}

.process-list p {
  margin-bottom: 0;
  color: #526079;
  font-size: 17px;
}

.service-types {
  max-width: none;
  padding: 92px clamp(28px, 6vw, 80px);
  background: var(--blue-dark);
}

.service-types .section-kicker,
.service-types h2,
.service-types h3,
.service-types p {
  color: #ffffff;
}

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

.service-type-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.service-maintenance {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  padding-top: 100px;
  padding-bottom: 92px;
}

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

.service-maintenance li {
  padding: 20px 24px;
  color: #33435f;
  background: #f4f5f7;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
}

.service-gallery {
  padding-top: 70px;
  padding-bottom: 88px;
}

.service-faq {
  max-width: none;
  padding: 88px clamp(28px, 6vw, 80px) 96px;
  background: var(--panel);
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
}

.faq-list details {
  padding: 24px 28px;
  background: #ffffff;
  border: 1px solid #e6edf7;
  border-radius: 12px;
}

.faq-list details + details {
  margin-top: 14px;
}

.faq-list summary {
  color: #101828;
  font-size: 19px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 16px 0 0;
  color: #526079;
  font-size: 17px;
}

.service-reviews {
  padding-top: 88px;
  padding-bottom: 100px;
}

.service-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1200px;
  margin-bottom: 92px;
  padding: 54px;
  color: #ffffff;
  background: var(--blue-dark);
  border-radius: 18px;
}

.service-contact h2,
.service-contact p,
.service-contact .section-kicker {
  color: #ffffff;
}

.service-contact h2 {
  max-width: 650px;
  margin-bottom: 14px;
}

.service-contact p {
  max-width: 650px;
  margin-bottom: 0;
}

.gallery-page {
  background: #ffffff;
}

.gallery-hero {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 30px 42px;
  text-align: center;
}

.gallery-hero .section-kicker {
  justify-content: center;
  margin-bottom: 18px;
  font-size: 16px;
}

.gallery-hero h1 {
  max-width: 940px;
  margin: 0 auto;
  font-size: clamp(56px, 5.2vw, 78px);
  line-height: 1.06;
}

.gallery-work {
  max-width: 1260px;
  margin: 0 auto;
  padding: 36px 30px 104px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 40px;
}

.gallery-filters button {
  min-height: 50px;
  padding: 0 24px;
  color: #344054;
  background: #ffffff;
  border: 1px solid #cfd5df;
  border-radius: 999px;
  font: inherit;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: 160ms ease;
}

.gallery-filters button:hover,
.gallery-filters button.active {
  color: #ffffff;
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

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

.gallery-card {
  display: grid;
  gap: 18px;
}

.gallery-card[hidden] {
  display: none;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1.31;
  object-fit: cover;
  border-radius: 14px;
}

.gallery-card span {
  display: block;
  margin-bottom: 8px;
  color: #526079;
  font-size: 18px;
  font-weight: 500;
}

.gallery-card h2 {
  margin-bottom: 10px;
  color: #101828;
  font-size: 28px;
  line-height: 1.2;
}

.gallery-card p {
  max-width: 560px;
  margin-bottom: 0;
  color: #526079;
  font-size: 17px;
  line-height: 1.5;
}

.reviews-page {
  background: #ffffff;
}

.reviews-page-hero {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 30px 34px;
  text-align: center;
}

.reviews-page-hero .section-kicker {
  justify-content: center;
  margin-bottom: 18px;
  font-size: 16px;
}

.reviews-page-hero h1 {
  max-width: 940px;
  margin: 0 auto 22px;
  font-size: clamp(56px, 5.2vw, 78px);
  line-height: 1.06;
}

.reviews-page-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #526079;
  font-size: 20px;
  line-height: 1.55;
}

.review-browser {
  max-width: 1260px;
  margin: 0 auto;
  padding: 36px 30px 104px;
}

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

.reviews-summary div {
  padding: 28px 30px;
  background: #f4f5f7;
  border: 1px solid #e6edf7;
  border-radius: 14px;
}

.reviews-summary strong {
  display: block;
  color: #101828;
  font-size: 46px;
  line-height: 1;
}

.reviews-summary span {
  display: block;
  margin-top: 10px;
  color: #526079;
  font-size: 16px;
  font-weight: 800;
}

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

.google-review-card {
  display: flex;
  min-height: 370px;
  flex-direction: column;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #e6edf7;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(9, 26, 63, 0.08);
}

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

.featured-google-review {
  color: #ffffff;
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.review-card-top img {
  width: 132px;
  height: auto;
}

.review-card-top span {
  padding: 8px 12px;
  color: var(--blue);
  background: #eaf2ff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.featured-google-review .review-card-top span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.google-review-card .stars {
  margin-bottom: 22px;
  color: #ffc83d;
  font-size: 24px;
}

.google-review-card p {
  margin-bottom: 28px;
  color: #17213a;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.45;
}

.featured-google-review p {
  color: #ffffff;
}

.reviewer {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid #e6edf7;
}

.featured-google-review .reviewer {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.reviewer strong {
  display: block;
  color: #101828;
  font-size: 18px;
}

.reviewer span {
  display: block;
  margin-top: 5px;
  color: #667085;
  font-size: 14px;
  font-weight: 800;
}

.featured-google-review .reviewer strong,
.featured-google-review .reviewer span {
  color: #ffffff;
}

.contact-page {
  background: #ffffff;
}

.contact-hero {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  max-width: 1800px;
  margin: 0 auto;
  padding: 8px 20px 78px;
}

.contact-map-section,
.contact-form-section {
  max-width: 1820px;
  margin: 0 auto;
  padding-right: 10px;
  padding-left: 10px;
}

.contact-map-section {
  padding-top: 8px;
  padding-bottom: 32px;
}

.contact-form-section {
  padding-top: 0;
  padding-bottom: 78px;
}

.contact-hero-copy,
.contact-form-card,
.contact-hero-map {
  min-height: 720px;
  border-radius: 18px;
}

.contact-map-section .contact-hero-map {
  min-height: 620px;
}

.contact-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 82px);
  background: #f4f5f7;
}

.contact-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(54px, 5.2vw, 84px);
}

.contact-hero-copy p {
  max-width: 720px;
  color: #526079;
  font-size: 20px;
  line-height: 1.55;
}

.contact-quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 660px;
  margin-top: 28px;
}

.contact-quick a {
  padding: 22px 24px;
  background: #ffffff;
  border: 1px solid #e6edf7;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(9, 26, 63, 0.08);
}

.contact-quick small {
  display: block;
  margin-bottom: 8px;
  color: #667085;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-quick strong {
  color: #101828;
  font-size: 22px;
}

.contact-logos {
  margin-top: 70px;
}

.contact-form-card {
  display: flex;
  min-height: 810px;
  flex-direction: column;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 72px 60px;
  color: #ffffff;
  background: var(--blue-dark);
  border-radius: 22px;
}

.contact-form-card .section-kicker,
.contact-form-card h2 {
  color: #ffffff;
}

.contact-form-card h2 {
  max-width: 560px;
  margin-bottom: 44px;
  font-size: clamp(42px, 3.7vw, 54px);
  line-height: 1.08;
}

.contact-form-card button {
  width: 100%;
  min-height: 59px;
  margin-top: 40px;
  color: #ffffff;
  background: var(--blue);
  border: 0;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 24px;
  max-width: 1260px;
  margin: 0 auto;
  padding: 26px 30px 96px;
}

.contact-details-simple {
  display: block;
  max-width: 1260px;
}

.contact-details-simple .contact-info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.map-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #dceaff;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px #c7dcff;
}

.map-grid-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 108, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(10, 108, 255, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 24% 38%, rgba(10, 108, 255, 0.28), transparent 22%),
    radial-gradient(circle at 72% 62%, rgba(225, 29, 46, 0.18), transparent 18%);
  background-size: 54px 54px, 54px 54px, 100% 100%, 100% 100%;
}

.map-panel::after {
  position: absolute;
  inset: 58px;
  content: "";
  border: 3px solid rgba(10, 108, 255, 0.32);
  border-radius: 48% 52% 42% 58%;
  transform: rotate(-12deg);
}

.map-pin {
  position: absolute;
  z-index: 1;
  width: 210px;
  padding: 18px 20px;
  color: #101828;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(9, 26, 63, 0.14);
}

.map-pin::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  color: #ffffff;
  content: "•";
  background: var(--blue);
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
}

.map-pin strong,
.map-pin span {
  display: block;
}

.map-pin strong {
  font-size: 20px;
}

.map-pin span {
  margin-top: 4px;
  color: #526079;
  font-size: 13px;
  font-weight: 800;
}

.pin-toronto {
  top: 72px;
  left: 72px;
}

.pin-oakville {
  right: 70px;
  bottom: 78px;
}

.pin-gta {
  left: 42%;
  top: 45%;
}

.contact-info-grid {
  display: grid;
  gap: 18px;
}

.contact-info-grid article {
  padding: 30px;
  background: #f4f5f7;
  border: 1px solid #e6edf7;
  border-radius: 16px;
}

.contact-info-grid h2 {
  margin-bottom: 10px;
  font-size: 28px;
}

.contact-info-grid p {
  color: #526079;
  font-size: 17px;
}

.contact-info-grid a,
.contact-info-grid strong {
  color: #101828;
  font-size: 20px;
  font-weight: 900;
}

.contact-credibility {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 1fr;
  gap: 16px;
  max-width: 980px;
  margin: -40px auto 34px;
  padding: 0 30px;
}

.contact-credibility div {
  padding: 22px 24px;
  background: #ffffff;
  border: 1px solid #e6edf7;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(9, 26, 63, 0.08);
}

.contact-credibility .stars {
  display: block;
  margin-bottom: 10px;
  color: #ffc83d;
  font-size: 20px;
}

.contact-credibility .avatar-stack {
  margin-bottom: 14px;
}

.award-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), #0f766e);
  border-radius: 999px;
  font-size: 22px;
  box-shadow: 0 14px 32px rgba(10, 108, 255, 0.24);
}

.contact-credibility strong {
  display: block;
  color: #101828;
  font-size: 22px;
  line-height: 1.15;
}

.contact-credibility p {
  margin: 8px 0 0;
  color: #526079;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.service-area-logos {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px 104px;
  text-align: center;
}

.service-area-logos .section-kicker {
  justify-content: center;
}

.service-area-logos h2 {
  max-width: 700px;
  margin: 0 auto 36px;
  font-size: clamp(38px, 3.7vw, 52px);
}

.service-area-logos > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-area-logos img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  padding: 34px;
  background: #f4f5f7;
  border: 1px solid #e6edf7;
  border-radius: 16px;
}

.oakville-service-area {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 24px;
  max-width: 1260px;
  margin: 0 auto;
  padding: 86px 30px 96px;
}

.area-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  background: #f4f5f7;
  border: 1px solid #e6edf7;
  border-radius: 18px;
}

.area-copy h2 {
  max-width: 480px;
  margin-bottom: 18px;
  font-size: clamp(38px, 3.7vw, 54px);
  line-height: 1.08;
}

.area-copy p {
  max-width: 520px;
  color: #526079;
  font-size: 19px;
  line-height: 1.55;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.area-tags span {
  padding: 10px 14px;
  color: #101828;
  background: #ffffff;
  border: 1px solid #e6edf7;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.area-map {
  min-height: 520px;
  overflow: hidden;
  background: #dceaff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.area-map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

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

  .nav,
  .header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero,
  .proof,
  .appointment,
  .reviews {
    grid-template-columns: 1fr;
  }

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

  .service-hero,
  .service-intro,
  .service-process,
  .service-maintenance,
  .contact-hero,
  .contact-details,
  .oakville-service-area {
    grid-template-columns: 1fr;
  }

  .service-card-grid,
  .service-type-grid,
  .gallery-grid,
  .reviews-list,
  .reviews-summary,
  .service-area-logos > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-contact {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: relative;
    gap: 14px;
  }

  .nav {
    gap: 14px;
  }

  .dropdown-menu {
    left: 0;
    width: min(88vw, 360px);
    transform: translate(0, 8px);
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    transform: translate(0, 0);
  }

  .hero-copy,
  .hero-media,
  .hero-media img {
    min-height: auto;
  }

  .trust-row,
  .step-grid,
  .service-grid,
  .feature-list,
  .project-grid,
  .form-grid,
  .service-card-grid,
  .service-type-grid,
  .review-grid,
  .gallery-grid,
  .reviews-list,
  .reviews-summary,
  .contact-quick,
  .contact-credibility,
  .service-area-logos > div {
    grid-template-columns: 1fr;
  }

  .contact-credibility {
    margin-top: -18px;
  }

  .gallery-hero h1,
  .reviews-page-hero h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .service-hero-copy,
  .service-hero-media,
  .service-hero-media img {
    min-height: auto;
  }

  .service-hero-copy,
  .service-contact,
  .contact-hero-copy,
  .contact-form-card {
    padding: 34px 24px;
  }

  .contact-hero-copy,
  .contact-form-card {
    min-height: auto;
  }

  .area-copy {
    padding: 34px 24px;
  }

  .area-map,
  .area-map iframe {
    min-height: 420px;
  }

  .map-panel {
    min-height: 620px;
  }

  .map-pin {
    left: 24px;
    right: 24px;
    width: auto;
  }

  .pin-toronto {
    top: 34px;
  }

  .pin-gta {
    top: 230px;
  }

  .pin-oakville {
    bottom: 34px;
  }

  .section-heading,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .rating-card {
    position: static;
    width: auto;
    margin: 14px;
  }
}

@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    width: min(100% - 28px, 520px);
    padding: 14px 0 22px;
  }

  .brand {
    padding-left: 0;
  }

  .brand img {
    max-width: 96px;
    max-height: 62px;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px 14px;
    font-size: 15px;
  }

  .nav a,
  .nav button {
    text-align: left;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .phone-icon {
    width: 32px;
    height: 32px;
  }

  .phone-copy strong {
    font-size: 14px;
  }

  .quote-button {
    min-width: 0;
    min-height: 44px;
    padding: 0 18px;
  }

  .hero,
  .service-hero,
  .contact-hero {
    grid-template-columns: 1fr;
    padding: 0 14px 48px;
  }

  .hero-copy,
  .service-hero-copy {
    min-height: auto;
    padding: 34px 24px;
  }

  h1,
  .service-hero-copy h1,
  .contact-hero-copy h1 {
    font-size: clamp(40px, 12vw, 56px);
    line-height: 1.05;
  }

  h2,
  .steps h2,
  .services h2,
  .proof-copy h2,
  .section-heading h2,
  .appointment-card h2,
  .contact-form-card h2,
  .service-intro h2,
  .service-process h2,
  .service-maintenance h2,
  .service-contact h2,
  .service-area-logos h2,
  .area-copy h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .hero-actions {
    margin-bottom: 34px;
  }

  .trust-row {
    margin-top: 42px;
  }

  .hero-awards {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero-awards .award-star {
    width: 190px;
  }

  .hero-awards .award-houzz {
    width: 150px;
  }

  .hero-awards .award-google {
    width: 174px;
  }

  .hero-awards .award-homestars {
    height: 82px;
  }

  .hero-media,
  .service-hero-media {
    min-height: 520px;
  }

  .hero-media img,
  .service-hero-media img {
    min-height: 520px;
  }

  .hero-pills {
    right: 12px;
  }

  .hero-pill {
    min-height: 40px;
    font-size: 14px;
  }

  .hero-stat-row {
    left: 12px;
    right: 12px;
    grid-template-columns: 1fr;
  }

  .customer-card,
  .rating-card {
    min-height: auto;
    padding: 22px;
  }

  .steps,
  .projects,
  .proof,
  .service-intro,
  .service-process,
  .service-maintenance,
  .service-gallery,
  .service-reviews,
  .gallery-work,
  .review-browser,
  .contact-details,
  .oakville-service-area {
    padding-right: 18px;
    padding-left: 18px;
  }

  .steps {
    padding-top: 48px;
  }

  .step-grid {
    margin-top: 46px;
  }

  .step-grid article {
    min-height: 280px;
    grid-template-rows: 82px 62px 1fr;
  }

  .services {
    padding: 62px 18px;
  }

  .service-card {
    min-height: 260px;
    grid-template-rows: auto 1fr;
    padding: 30px 92px 30px 24px;
  }

  .service-card h3 {
    font-size: 24px;
  }

  .service-card p {
    font-size: 17px;
  }

  .icon {
    width: 52px;
    height: 52px;
    right: 24px;
    font-size: 24px;
  }

  .awards-row,
  .contact-details-simple .contact-info-grid,
  .reviews-summary {
    grid-template-columns: 1fr;
  }

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

  .review-grid,
  .reviews-list,
  .gallery-grid,
  .project-grid,
  .service-card-grid,
  .service-type-grid {
    grid-template-columns: 1fr;
  }

  .featured-review,
  .featured-google-review {
    transform: none;
  }

  .appointment {
    grid-template-columns: 1fr;
    padding: 0 14px 62px;
  }

  .appointment > img {
    min-height: 360px;
  }

  .appointment-card,
  .contact-form-card {
    min-height: auto;
    padding: 34px 24px;
  }

  input,
  select,
  textarea {
    min-height: 50px;
    font-size: 15px;
  }

  .contact-form-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .contact-credibility {
    padding-right: 18px;
    padding-left: 18px;
  }

  .gallery-hero,
  .reviews-page-hero {
    padding-top: 24px;
  }

  .gallery-filters {
    justify-content: flex-start;
    gap: 10px;
  }

  .gallery-filters button {
    min-height: 44px;
    padding: 0 16px;
    font-size: 15px;
  }

  .service-contact {
    margin-right: 18px;
    margin-left: 18px;
  }

  .area-map,
  .area-map iframe {
    min-height: 360px;
  }

  footer {
    padding: 48px 22px;
  }

  footer a {
    font-size: 24px;
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .site-header {
    grid-template-columns: 160px 1fr;
    width: min(100% - 44px, 1040px);
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .brand {
    padding-left: 0;
  }

  .nav {
    justify-content: flex-end;
    gap: 24px;
    font-size: 16px;
  }

  .hero,
  .service-hero {
    padding-right: 22px;
    padding-left: 22px;
  }

  .hero-copy,
  .service-hero-copy {
    padding: 44px;
  }

  h1,
  .service-hero-copy h1 {
    font-size: clamp(48px, 6vw, 68px);
  }

  .hero-stat-row {
    left: 18px;
    right: 18px;
  }

  .customer-card,
  .rating-card {
    padding: 22px;
  }

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

/* Django CMS integration layer */

:root {
  --focus: oklch(0.72 0.18 75);
}

body {
  background: var(--white);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 6px;
  transform: translateY(-160%);
  transition: transform 160ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.brand-wordmark {
  max-width: 180px;
  color: var(--blue-dark);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.nav-list,
.dropdown-menu,
.location-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 42px);
}

.nav-item-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 4px;
}

.nav-heading {
  display: inline-block;
  padding: 8px 0;
}

.submenu-toggle {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
}

.nav button.submenu-toggle {
  padding: 0;
  line-height: 1;
}

.submenu-chevron {
  display: inline-grid;
  place-items: center;
  width: 14px;
  height: 14px;
  transform-origin: center;
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.submenu-chevron svg {
  display: block;
  width: 14px;
  height: 8px;
  overflow: visible;
}

.submenu-chevron path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.submenu-toggle[aria-expanded="true"] .submenu-chevron {
  transform: rotate(180deg);
}

.dropdown-menu li {
  display: block;
}

.menu-toggle {
  display: none;
}

.hero {
  align-items: stretch;
}

.hero--no-media {
  grid-template-columns: 1fr;
}

.hero--no-media .hero-copy {
  min-height: 600px;
}

.hero-media picture,
.service-hero picture {
  display: block;
  height: 100%;
}

.hero-media picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card {
  grid-template-rows: auto auto 1fr auto;
}

.service-card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 22px;
  object-fit: cover;
  border-radius: 10px;
}

.service-card h3 a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.service-card {
  position: relative;
}

.service-card .text-link {
  position: relative;
  z-index: 1;
  justify-self: start;
}

.service-card.dark {
  color: var(--white);
  background: var(--blue-dark);
}

.service-card.dark p,
.service-card.dark .text-link {
  color: oklch(0.88 0.025 252);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.review-card blockquote {
  margin: 0;
  color: inherit;
  font-size: 18px;
  line-height: 1.6;
}

.review-author {
  display: grid;
  gap: 2px;
  margin-top: 24px;
}

.review-author span,
.review-author small {
  color: var(--muted);
}

.service-hero--no-media {
  grid-template-columns: 1fr;
  max-width: 1260px;
}

.service-intro .rich-text {
  margin-top: 28px;
}

.service-band > .section-kicker,
.service-band > h2,
.service-types > .section-kicker,
.service-types > h2,
.service-faq > .section-kicker,
.service-faq > h2,
.service-reviews > .section-kicker,
.service-reviews > h2 {
  display: flex;
  justify-content: center;
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.service-band > h2,
.service-types > h2,
.service-faq > h2,
.service-reviews > h2 {
  margin-bottom: 48px;
  font-size: clamp(38px, 4vw, 56px);
}

.problem-grid,
.variant-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.problem-grid article,
.variant-list article {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.problem-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 40px;
  color: var(--blue);
  background: oklch(0.94 0.04 255);
  border-radius: 50%;
}

.service-process > h2,
.service-process > .section-kicker,
.service-process > .section-intro {
  max-width: 760px;
}

.section-intro {
  color: var(--muted);
  font-size: 19px;
}

.process-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 26px;
  background: var(--panel);
  border-radius: 14px;
}

.process-list li + li {
  margin-top: 16px;
}

.variant-list article {
  color: var(--white);
  background: oklch(0.31 0.075 258);
  border-color: oklch(0.42 0.07 258);
}

.appointment-card > p {
  max-width: 70ch;
  color: var(--muted);
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.appointment-card .form-grid,
.contact-form-card .form-grid {
  margin: 0;
}

.appointment-card .form-field,
.contact-form-card .form-field {
  gap: 0;
}

.appointment-card .form-field:not(.form-consent),
.contact-form-card .form-field:not(.form-consent) {
  margin-bottom: 24px;
}

.appointment-card .form-field > label,
.contact-form-card .form-field > label {
  margin: 0;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.appointment-card .form-field label {
  color: oklch(0.91 0.02 252);
}

.service-contact .appointment-card .form-field label {
  color: var(--ink);
}

.form-field input,
.form-field select,
.form-field textarea,
.filter-bar select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid oklch(0.79 0.025 252);
  border-radius: 7px;
  font: inherit;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.appointment-card .form-field input,
.appointment-card .form-field select,
.contact-form-card .form-field input,
.contact-form-card .form-field select {
  padding: 0 24px;
  border-color: #ffffff;
}

.appointment-card .form-field textarea,
.contact-form-card .form-field textarea {
  padding: 16px 24px;
  border-color: #ffffff;
}

.form-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
}

.form-consent input {
  width: 20px;
  min-height: 20px;
  margin-top: 1px;
}

.field-errors,
.form-alert {
  color: oklch(0.47 0.18 25);
  font-size: 14px;
  font-weight: 700;
}

.field-errors ul,
.form-alert ul {
  margin: 0;
  padding-left: 20px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
}

.filter-bar {
  display: grid;
  grid-template-columns: auto minmax(220px, 380px) auto;
  align-items: end;
  justify-content: center;
  gap: 14px;
  margin-bottom: 46px;
}

.filter-bar label {
  grid-column: 1 / -1;
  font-weight: 800;
  text-align: center;
}

.filter-bar .secondary-button {
  border: 0;
  cursor: pointer;
}

.gallery-grid > article > a {
  display: grid;
  gap: 18px;
}

.gallery-grid > article img {
  width: 100%;
  aspect-ratio: 1.31;
  object-fit: cover;
  border-radius: 14px;
}

.gallery-grid > article span {
  color: var(--muted);
}

.gallery-grid > article h2 {
  margin: 6px 0;
  font-size: clamp(24px, 2.5vw, 34px);
}

.gallery-grid > article p {
  color: var(--muted);
}

.review-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
}

.empty-state {
  max-width: 680px;
  margin: 60px auto;
  padding: 30px;
  color: var(--muted);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: center;
}

.contact-hero {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 110px) 30px 64px;
}

.contact-hero h1 {
  max-width: 900px;
  font-size: clamp(50px, 7vw, 92px);
}

.contact-hero p {
  max-width: 68ch;
  color: var(--muted);
  font-size: 20px;
}

.contact-details-simple article {
  padding: 30px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.contact-details-simple article p {
  color: var(--muted);
}

.location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.location-list a,
.location-list span {
  display: inline-flex;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  display: block;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(28px, 5vw, 70px);
  width: min(1440px, 100%);
  margin: 0 auto;
}

.site-footer h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer a {
  margin-top: 10px;
  color: oklch(0.9 0.025 252);
  font-size: 15px;
  font-weight: 700;
}

.site-footer address,
.site-footer p {
  color: oklch(0.82 0.035 252);
}

.footer-brand strong {
  font-size: 28px;
}

.footer-bottom {
  width: min(1440px, 100%);
  margin: 56px auto 0;
  padding-top: 22px;
  color: oklch(0.75 0.03 252);
  border-top: 1px solid oklch(0.4 0.05 258);
  font-size: 14px;
}

.content-page,
.project-detail,
.form-result {
  width: min(940px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 110px) 0;
}

.content-page header,
.project-detail header {
  margin-bottom: 54px;
}

.content-page h1,
.project-detail h1,
.form-result h1 {
  max-width: 900px;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 1.03;
}

.content-page header > p,
.project-detail header > p,
.form-result > p {
  max-width: 68ch;
  color: var(--muted);
  font-size: 20px;
}

.rich-text {
  max-width: 72ch;
  color: oklch(0.39 0.04 255);
  font-size: 18px;
  line-height: 1.72;
}

.rich-text h2 {
  margin-top: 1.8em;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
}

.rich-text h3 {
  margin-top: 1.6em;
  color: var(--ink);
}

.rich-text a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.project-featured-image {
  width: 100%;
  max-height: 660px;
  margin-bottom: 52px;
  object-fit: cover;
  border-radius: 16px;
}

.project-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.project-image-grid figure {
  margin: 0;
}

.project-image-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.project-image-grid figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

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

  .header-actions {
    grid-column: 1 / -1;
  }

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

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    grid-template-columns: 1fr auto;
    width: min(100% - 32px, 920px);
    padding: 12px 0;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 16px;
    color: var(--white);
    background: var(--blue-dark);
    border: 0;
    border-radius: 999px;
    font: inherit;
    font-weight: 800;
  }

  .menu-toggle-lines,
  .menu-toggle-lines::before,
  .menu-toggle-lines::after {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    content: "";
  }

  .menu-toggle-lines {
    position: relative;
  }

  .menu-toggle-lines::before {
    position: absolute;
    top: -6px;
  }

  .menu-toggle-lines::after {
    position: absolute;
    top: 6px;
  }

  .nav {
    grid-column: 1 / -1;
    width: 100%;
    padding: 14px 0;
  }

  .js .nav {
    display: none;
  }

  .js .nav.nav-open {
    display: block;
  }

  .nav-list {
    display: grid;
    gap: 2px;
    align-items: stretch;
  }

  .nav-item-row {
    justify-content: space-between;
    min-height: 48px;
  }

  .nav-item-row > a,
  .nav-heading {
    flex: 1;
    padding: 13px 8px;
  }

  .submenu-toggle {
    width: 48px;
    height: 48px;
  }

  .dropdown-menu {
    position: static;
    width: auto;
    max-height: none;
    margin: 0 0 8px 16px;
    padding: 4px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .js .dropdown-menu {
    display: none;
  }

  .js .submenu-open > .dropdown-menu {
    display: block;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
    width: 100%;
  }

  .service-hero > div,
  .service-hero > picture,
  .service-hero > picture img {
    min-height: auto;
  }

  .service-hero > picture img {
    aspect-ratio: 4 / 3;
  }

  .contact-credibility {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-actions .phone-copy small {
    display: none;
  }

  .header-actions .quote-button {
    font-size: 14px;
  }

  .hero-copy,
  .service-hero > div {
    padding: 34px 24px;
  }

  .service-hero > div h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .form-grid,
  .filter-bar,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .filter-bar label {
    grid-column: auto;
    text-align: left;
  }

  .filter-bar .secondary-button {
    width: 100%;
  }

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

  .footer-bottom {
    margin-top: 36px;
  }

  .review-page-grid {
    grid-template-columns: 1fr;
  }
}

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

.system-message {
  width: min(100% - 2rem, 70rem);
  min-height: 55vh;
  margin-inline: auto;
  padding-block: clamp(5rem, 12vw, 9rem);
}

.system-message h1 {
  max-width: 18ch;
  margin-block: 0.75rem 1rem;
}

.system-message p {
  max-width: 52ch;
  margin-bottom: 2rem;
}

.gallery-filters a {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 24px;
  color: #344054;
  background: #ffffff;
  border: 1px solid #cfd5df;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 500;
  transition: 160ms ease;
}

.gallery-filters a:hover,
.gallery-filters a.active {
  color: #ffffff;
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.area-tags a {
  padding: 10px 14px;
  color: #101828;
  background: #ffffff;
  border: 1px solid #e6edf7;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}
