:root {
  --red: #ff0000;
  --black: #000;
  --white: #fff;
  --gray-100: #f7f7f7;
  --gray-300: #e4e4e4;
  --gray-500: #9a9a9a;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  --max-width: 1100px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
}

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

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

.container {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section-title {
  font-size: 45px;
  font-weight: 400;
  margin: 0 0 14px;
  max-width: 520px;
  text-transform: uppercase;
  line-height: 45px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--gray-500);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.btn-outline {
  background: transparent;
  border-color: var(--red);
  color: var(--red);
}

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

.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 10;
  border-bottom: 1px solid var(--gray-300);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.logo img {
  width: 130px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  color: var(--white);
}

.hero-media img {
  width: 100%;
  height: calc(100vh - var(--header-height));
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.1));
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 56px;
  z-index: 1;
}

.hero h1 {
  font-size: 45px;
  max-width: 520px;
  margin: 0 0 12px;
  line-height: 45px;
}

.hero p {
  font-size: 18px;
  margin: 0 0 24px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.about-hero {
  position: relative;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.about-hero-media img {
  width: 100%;
  height: calc(100vh - var(--header-height));
  object-fit: cover;
}

.about-hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 48px;
  color: var(--white);
  z-index: 1;
}

.about-hero-content h1 {
  font-size: 46px;
  max-width: 520px;
  margin: 0 0 12px;
  line-height: 1.05;
  text-transform: uppercase;
}

.about-hero-content p {
  max-width: 520px;
  margin: 0 0 20px;
}

.services-hero {
  position: relative;
}

.services-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.25) 60%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.services-hero-media img {
  width: 100%;
  height: calc(100vh - var(--header-height));
  object-fit: cover;
  object-position: top;
}

.services-hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 48px;
  color: var(--white);
  z-index: 1;
}

.services-hero-content h1 {
  font-size: 46px;
  max-width: 560px;
  margin: 0 0 12px;
  line-height: 1.05;
  text-transform: uppercase;
}

.services-hero-content p {
  max-width: 560px;
  margin: 0 0 16px;
}

.commercial-hero {
  position: relative;
}

.commercial-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.25) 60%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.commercial-hero-media img {
  width: 100%;
  height: calc(100vh - var(--header-height));
  object-fit: cover;
}

.commercial-hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 48px;
  color: var(--white);
  z-index: 1;
}

.commercial-hero-content h1 {
  font-size: 42px;
  max-width: 520px;
  margin: 0 0 12px;
  line-height: 1.05;
  text-transform: uppercase;
}

.commercial-hero-content p {
  max-width: 520px;
  margin: 0 0 18px;
}

.faq-hero {
  position: relative;
  margin-top: 16px;
}

.faq-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

.faq-hero-media img {
  width: 100%;
 height: calc(100vh - var(--header-height));
  object-fit: cover;
}

.faq-hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 52px;
  color: var(--white);
  z-index: 1;
}

.faq-hero-content h1 {
  margin: 0 0 8px;
  font-size: 45px;
  line-height: 45px;
  max-width: 624px;
  text-transform: uppercase;
  font-weight: 400;
}

.faq-hero-content p {
  margin: 0 0 18px;
  max-width: 624px;
  font-size: 18px;
}

.faq-blocks {
  padding-top: 95px;
}

.faq-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 95px;
}

.faq-block:last-child {
  margin-bottom: 0;
}

.faq-block-content h2 {
  margin: 0 0 23px;
  font-size: 45px;
  line-height: 45px;
  text-transform: uppercase;
  font-weight: 400;
}

.faq-block-media img {
  width: 100%;
  height: 422px;
  object-fit: cover;
}

.faq-accordion {
  gap: 0;
}

.faq-page .accordion-item {
  border-bottom: 1px solid var(--gray-300);
  padding-bottom: 0;
}

.faq-page .accordion-trigger {
  padding: 14px 0;
  font-size: 18px;
}

.faq-page .accordion-title {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  align-items: flex-start;
}

.faq-page .accordion-panel {
  padding: 0 0 14px 18px;
}

.faq-page .accordion-panel p {
  margin: 0;
  font-size: 18px;
  line-height: 1.15;
}

.faq-cta {
  padding-top: 0;
}

.faq-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
}

.faq-cta .section-title {
  max-width: 696px;
}

.faq-cta p {
  margin: 0;
  max-width: 696px;
}

.faq-page .map-embed iframe {
  height: 398px;
}

.quote-hero {
  position: relative;
  margin-top: 16px;
}

.quote-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.quote-hero-media img {
  width: 100%;
  height: calc(100vh - var(--header-height));
  object-fit: cover;
}

.quote-hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 52px;
  color: var(--white);
  z-index: 1;
}

.quote-hero-content h1 {
  margin: 0 0 8px;
  font-size: 45px;
  line-height: 45px;
  max-width: 624px;
  text-transform: uppercase;
  font-weight: 400;
}

.quote-hero-content p {
  margin: 0 0 8px;
  max-width: 624px;
  font-size: 18px;
}

.quote-hero-content p:last-of-type {
  margin-bottom: 18px;
}

.quote-steps {
  padding-top: 95px;
}

.quote-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 42px;
  align-items: start;
}

.quote-steps .section-title {
  max-width: 500px;
}

.quote-steps-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.quote-step-card h3 {
  margin: 10px 0 6px;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 700;
}

.quote-step-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.1;
}

.quote-form-grid {
  display: grid;
  grid-template-columns: 1fr 564px;
  gap: 62px;
  align-items: start;
}

.quote-form-media img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.quote-form-section .section-title {
  margin-bottom: 12px;
  max-width: none;
}

.quote-form-copy {
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.1;
}

.quote-form {
  display: grid;
  gap: 38px;
}

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

.quote-field {
  display: grid;
  gap: 10px;
}

.quote-field > span {
  font-size: 18px;
  line-height: 1;
}

.quote-field input,
.quote-field select,
.quote-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #f2bcbc;
  background: transparent;
  font: inherit;
  color: var(--black);
  padding: 0 0 10px;
  border-radius: 0;
  outline: none;
}

.quote-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 26px;
}

.quote-field textarea {
  min-height: 92px;
  resize: vertical;
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  border-bottom-color: var(--red);
}

.quote-field .required {
  color: var(--red);
}

.quote-select-wrap {
  position: relative;
}

.quote-select-icon {
  position: absolute;
  right: 0;
  bottom: 12px;
  pointer-events: none;
}

.quote-field-message {
  gap: 22px;
}

.quote-form-actions {
  display: flex;
  justify-content: flex-end;
}

.quote-promise .section-title {
  max-width: 591px;
}

.quote-submit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.quote-submit .section-title {
  max-width: 560px;
}

.quote-submit p {
  margin: 0 0 16px;
  max-width: 560px;
}

.quote-submit-media img {
  width: 100%;
  height: 422px;
  object-fit: cover;
}

.interior-hero {
  position: relative;
}

.interior-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.interior-hero-media img {
  width: 100%;
   height: calc(100vh - var(--header-height));
  object-fit: cover;
}

.interior-hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 52px;
  color: var(--white);
  z-index: 1;
}

.interior-hero-content h1 {
  margin: 0 0 8px;
  font-size: 45px;
  line-height: 45px;
  max-width: 624px;
  text-transform: uppercase;
  font-weight: 400;
}

.interior-hero-content p {
  margin: 0 0 8px;
  max-width: 624px;
  font-size: 18px;
  line-height: 1.1;
}

.interior-hero-content p:last-of-type {
  margin-bottom: 18px;
}

.interior-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.interior-step-card {
  position: relative;
  min-height: 303px;
  overflow: hidden;
  color: var(--white);
}

.interior-step-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interior-step-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 20%, rgba(0, 0, 0, 0.65) 100%);
}

.interior-step-card .service-tile-icon {
  bottom: 52px;
}

.interior-step-card h3 {
  position: absolute;
  left: 14px;
  right: 12px;
  bottom: 10px;
  margin: 0;
  font-size: 14px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  z-index: 1;
}

.interior-finishes-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.interior-finishes-grid p {
  margin: 0 0 14px;
}

.interior-finishes-grid img {
  width: 100%;
  height: 415px;
  object-fit: cover;
}

.interior-finishes .section-title {
  max-width: 488px;
}

.interior-finishes .residential-benefits-list li {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.interior-promise .section-title {
  max-width: 591px;
}

.interior-design-support .section-title {
  max-width: 590px;
}

.interior-final-cta {
  background: var(--white);
}

.interior-page .map-embed iframe {
  height: 398px;
}

.handyman-showcase img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.service-static-dots {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.service-static-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(7, 39, 46, 0.23);
}

.service-static-dots span.active {
  background: var(--red);
}

.handyman-banner {
  padding-top: 0;
}

.handyman-banner-media {
  position: relative;
  overflow: hidden;
}

.handyman-banner-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0) 100%);
}

.handyman-banner-media img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.handyman-banner-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  z-index: 1;
  color: var(--white);
  max-width: 620px;
  padding: 0 42px;
}

.handyman-banner-content .section-title {
  color: var(--white);
  margin: 0 0 10px;
}

.handyman-banner-content p {
  margin: 0 0 10px;
}

.handyman-banner-content p:last-of-type {
  margin-bottom: 18px;
}

.residential-hero {
  position: relative;
}

.residential-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.25) 60%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.residential-hero-media img {
  width: 100%;
  height: calc(100vh - var(--header-height));
  object-fit: cover;
}

.residential-hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 48px;
  color: var(--white);
  z-index: 1;
}

.residential-hero-content h1 {
  font-size: 42px;
  max-width: 624px;
  margin: 0 0 12px;
  line-height: 1.05;
  text-transform: uppercase;
}

.residential-hero-content p {
  max-width: 624px;
  margin: 0 0 18px;
}

.commercial-split-grid,
.commercial-tailored-grid,
.commercial-process-grid,
.commercial-trust-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}

.commercial-split-cta,
.commercial-process-cta {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.commercial-tailored-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.commercial-image {
  margin-top: 16px;
  border-radius: 12px;
  border: 1px solid var(--gray-300);
  width: 100%;
}

.commercial-list {
  padding-top: 6px;
  margin-top: 140px;
}

.commercial-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.commercial-list li {
  position: relative;
  padding-left: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.commercial-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  position: absolute;
  left: 0;
  top: 4px;
}

.commercial-promise-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

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

.highlight-card {
  padding-top: 0;
}

.highlight-step {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 6px;
}

.highlight-step::after {
  content: "/";
  margin-left: 3px;
}

.highlight-card h3 {
  margin: 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.commercial-trusted {
  margin-top: 24px;
  border-top: 1px solid var(--gray-300);
  padding-top: 16px;
}

.commercial-trusted h3 {
  margin: 0 0 6px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.commercial-trusted p {
  margin: 0;
  font-size: 13px;
  color: var(--gray-500);
}

.commercial-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 200px;
  color: var(--white);
}

.process-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.process-step {
  position: absolute;
  left: 14px;
  bottom: 40px;
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 1;
}

.process-card h3 {
  position: absolute;
  left: 14px;
  bottom: 12px;
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 1;
}

.commercial-trust {
  background: var(--gray-100);
}

.commercial-trust-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.commercial-trust-media img {
  width: 100%;
  border-radius: 12px;
}

.btn-dot {
  gap: 10px;
  background: var(--white);
}

.btn-dot-icon {
  display: inline-flex;
}

.btn-arrow {
  gap: 12px;
  padding: 14px 26px;
  width: max-content;
}

.btn-arrow-icon {
  display: inline-flex;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.intro-grid p {
  max-width: 520px;
}

.intro-cta {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

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

.service-card {
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  position: relative;
  min-height: 220px;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h3 {
  position: absolute;
  left: 16px;
  bottom: 16px;
  margin: 0;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
}

.service-link {
  display: block;
  height: 100%;
  color: inherit;
}

.why-grid,
.faq-grid,
.locations-grid,
.process-grid,
.gallery-header,
.testimonial-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.why-grid {
  gap: 36px;
}

.about-story-grid,
.about-mission-grid,
.about-credentials-grid,
.about-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.about-story-grid,
.about-credentials-grid,
.about-cta-grid {
  grid-template-columns: 1fr auto;
}

.about-story-cta,
.about-credentials-cta {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.about-story-image {
  width: 100%;
  margin-top: 24px;
  border-radius: 12px;
}

.about-subtitle {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--gray-500);
}

.about-mission-image {
  margin-top: 16px;
  border-radius: 12px;
  border: 1px solid var(--gray-300);
  width: 100%;
}

.about-brands {
  text-align: center;
}

.about-brand-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin: 16px 0;
}

.brand-block {
  height: 38px;
  background: var(--gray-300);
  border-radius: 8px;
}

.about-brands-note {
  font-size: 13px;
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto;
}

.about-team-copy {
  max-width: 560px;
  margin: 0 0 24px;
}

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

.team-card {
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}

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

.team-card h3 {
  margin: 12px 14px 4px;
  font-size: 16px;
}

.team-card p {
  margin: 0 14px 14px;
  font-size: 13px;
  color: var(--gray-500);
}

.about-cta {
  background: var(--gray-100);
}

.services-core-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}

.residential-services-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.residential-services-cta {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

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

.residential-service-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 303px;
  color: var(--white);
  display: block;
}

.residential-service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.residential-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.65) 100%);
}

.residential-service-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 1;
  max-width: 85%;
}

.residential-promise-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.residential-benefits-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
}

.residential-benefits-media img {
  width: 100%;
  border-radius: 12px;
}

.residential-benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.residential-benefits-list li {
  position: relative;
  padding: 16px 0 16px 20px;
  border-bottom: 1px solid var(--gray-300);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.residential-benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.residential-banner {
  position: relative;
  color: var(--white);
}

.residential-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0) 100%), url("../images/residential-banner-footer.png") center/cover no-repeat;
}

.residential-banner-content {
  position: relative;
  z-index: 1;
  min-height: 514px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 34px;
}

.residential-banner-content .section-title {
  color: var(--white);
}

.residential-banner-content p {
  margin: 0 0 20px;
  max-width: 624px;
}

.residential-page .section {
  padding: 80px 0;
}

.residential-page .residential-services-header .section-title,
.residential-page .residential-promise .section-title,
.residential-page .residential-benefits .section-title,
.residential-page .residential-process .section-title,
.residential-page .locations .section-title,
.residential-page .about-cta .section-title {
  max-width: 696px;
}

.residential-page .residential-promise .commercial-highlights {
  gap: 26px;
}

.residential-page .commercial-steps {
  gap: 33px;
}

.residential-page .process-card {
  min-height: 303px;
}

.residential-page .map-embed iframe {
  height: 398px;
}

.residential-page .about-cta {
  background: var(--white);
}

.services-core-intro .section-title {
  margin-bottom: 18px;
}

.service-tile {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 200px;
  display: block;
  color: var(--white);
}

.service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-tile-icon {
  position: absolute;
  left: 14px;
  bottom: 46px;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.service-tile-label {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 1;
}

.services-why-copy {
  max-width: 560px;
  margin: 0 0 24px;
}

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

.service-reason {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 220px;
  background: var(--white);
}

.service-reason img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-reason::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.service-reason h3 {
  position: absolute;
  left: 14px;
  bottom: 12px;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  z-index: 1;
}

.services-expertise-copy {
  max-width: 560px;
  margin: 0 0 24px;
}

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

.service-expertise-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 220px;
}

.service-expertise-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-expertise-overlay {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: var(--white);
  max-width: 320px;
  z-index: 1;
}

.service-expertise-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.service-expertise-overlay h3 {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-expertise-overlay p {
  margin: 0;
  font-size: 13px;
}

.why-eyebrow {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 18px;
}

.why-copy {
  font-size: 18px;
  margin: 0 0 24px;
  max-width: 560px;
}

.why img {
  margin-top: 18px;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border-bottom: 1px solid var(--gray-300);
  padding-bottom: 8px;
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 18px;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-transform: uppercase;
}

.accordion-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.accordion-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  flex: 0 0 10px;
}

.accordion-icon {
  display: inline-flex;
  transition: transform 0.2s ease;
}

.accordion-panel {
  display: none;
  color: var(--gray-500);
  padding: 0 0 16px 22px;
}

.accordion-item.active .accordion-panel {
  display: block;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.why .accordion .btn {
  margin-top: 18px;
  align-self: flex-start;
      width: max-content;
}

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

.step span {
  color: var(--red);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.gallery-card {
  border: 1px solid var(--gray-300);
}

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

.testimonials {
  background: var(--gray-100);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: start;
}

.testimonial-summary {
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--gray-300);
  display: grid;
  gap: 14px;
}

.summary-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.summary-score {
  font-size: 22px;
  font-weight: 700;
}

.summary-actions {
  display: flex;
  gap: 8px;
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
    padding-bottom: 40px;
}

.testimonial-swiper {
  padding-bottom: 8px;
}

.testimonial-card {
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--gray-300);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.testimonial-header h3{
  margin:0;
  line-height: 1;
}
.testimonial-header p{
  margin:  0;
}
.avatar {
  min-width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8f8f8f;
}

.rating,
.stars {
  color: var(--red);
  font-weight: 700;
}

.muted {
  color: var(--gray-500);
  font-size: 13px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.testimonial-dots .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(7, 39, 46, 0.23);
  opacity: 1;
  bottom: 15px !important;
}

.testimonial-dots .swiper-pagination-bullet-active {
  background: #07272e;
}

.faq img {
  margin-top: 16px;
  border-radius: 12px;
}

.locations-cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.locations-map img {
  border-radius: 12px;
  border: 1px solid var(--gray-300);
}

.site-footer {
  background: #fff;
  color: #000;
  padding-top: 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-300);
}

.footer-brand img {
  width: 90px;
  height: auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.footer-links {
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.footer-links h4 {
  margin: 0 0 6px;
}

.footer-bottom {
  padding: 18px 0;
  font-size: 13px;
  color: var(--gray-500);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.footer-social a {
  color: var(--black);
  display: inline-flex;
}

.map-embed {
  width: 100%;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
}

@media (max-width: 960px) {
  .services-grid,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .faq-block,
  .faq-cta-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .quote-steps-grid,
  .quote-steps-cards,
  .quote-form-grid,
  .quote-form-row,
  .quote-submit-grid {
    grid-template-columns: 1fr;
  }

  .interior-steps-grid,
  .interior-finishes-grid {
    grid-template-columns: 1fr;
  }

  .handyman-showcase img {
    height: 420px;
  }

  .quote-form-actions {
    justify-content: flex-start;
  }

  .faq-block-reverse .faq-block-media {
    order: 0;
  }

  .faq-block-reverse .faq-block-content {
    order: 1;
  }

  .residential-services-header,
  .residential-services-grid,
  .residential-promise-grid,
  .residential-benefits-grid {
    grid-template-columns: 1fr;
  }

  .residential-services-cta {
    justify-content: flex-start;
  }

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

  .commercial-split-grid,
  .commercial-tailored-grid,
  .commercial-promise-grid,
  .commercial-process-grid,
  .commercial-trust-grid {
    grid-template-columns: 1fr;
  }

  .commercial-split-cta,
  .commercial-process-cta {
    justify-content: flex-start;
  }

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

  .commercial-list {
    margin-top: 0;
  }

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

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

  .about-story-grid,
  .about-mission-grid,
  .about-credentials-grid,
  .about-cta-grid {
    grid-template-columns: 1fr;
  }

  .about-story-cta,
  .about-credentials-cta {
    justify-content: flex-start;
  }

  .about-brand-logos {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .why-grid,
  .faq-grid,
  .locations-grid,
  .process-grid,
  .gallery-header,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    bottom: 32px;
  }

  .intro-cta {
    justify-content: flex-start;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .locations-cta {
    justify-content: flex-start;
    margin-top: 12px;
  }

}

@media (max-width: 720px) {
  .site-nav {
    position: absolute;
    top: 64px;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 12px;
    border: 1px solid var(--gray-300);
    box-shadow: var(--shadow);
    display: none;
  }

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

  .nav-toggle {
    display: block;
  }

  .hero-media img {
    height: calc(100vh - var(--header-height));
  }

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

  .services-hero-media img {
    height: 420px;
  }

  .faq-hero-media img {
    height: 420px;
  }

  .quote-hero-media img {
    height: 420px;
  }

  .interior-hero-media img {
    height: 420px;
  }

  .services-hero-content {
    position: relative;
    color: var(--black);
    padding: 24px 0 0;
  }

  .faq-hero-content {
    position: relative;
    color: var(--black);
    padding: 24px 0 0;
  }

  .quote-hero-content {
    position: relative;
    color: var(--black);
    padding: 24px 0 0;
  }

  .interior-hero-content {
    position: relative;
    color: var(--black);
    padding: 0px 0 0;
  }

  .services-hero::after {
    display: none;
  }

  .faq-hero::after {
    display: none;
  }

  .quote-hero::after {
    display: none;
  }

  .interior-hero::after {
    display: none;
  }

  .services-hero-content h1 {
    font-size: 34px;
  }

  .faq-hero-content h1,
  .faq-block-content h2 {
    font-size: 32px;
    line-height: 1.05;
  }

  .quote-hero-content h1 {
    font-size: 32px;
    line-height: 1.05;
  }

  .interior-hero-content h1 {
    font-size: 32px;
    line-height: 1.05;
  }

  .quote-step-card h3 {
    font-size: 22px;
    line-height: 1.05;
  }

  .quote-step-card p,
  .quote-field > span,
  .quote-form-copy,
  .quote-hero-content p {
    font-size: 14px;
  }

  .interior-hero-content p,
  .interior-finishes .residential-benefits-list li {
    font-size: 14px;
  }

  .quote-form-media img,
  .quote-submit-media img {
    height: 320px;
  }

  .interior-step-card {
    min-height: 240px;
  }

  .interior-finishes-grid img {
    height: 320px;
  }

  .handyman-banner-media img {
    height: 360px;
  }

  .handyman-banner-content {
    max-width: 100%;
    padding: 0 20px;
  }

  .interior-page .map-embed iframe {
    height: 320px;
  }

  .faq-block-media img {
    height: 320px;
  }

  .faq-page .accordion-title,
  .faq-page .accordion-trigger,
  .faq-page .accordion-panel p {
    font-size: 14px;
  }

  .faq-page .map-embed iframe {
    height: 320px;
  }

  .commercial-hero-media img {
    height: 420px;
  }

  .residential-hero-media img {
    height: 420px;
  }

  .commercial-hero-content {
    position: relative;
    color: var(--black);
    padding: 24px 0 0;
  }

  .residential-hero-content {
    position: relative;
    color: var(--black);
    padding: 24px 0 0;
  }

  .commercial-hero::after {
    display: none;
  }

  .residential-hero::after {
    display: none;
  }

  .commercial-hero-content h1 {
    font-size: 32px;
  }

  .residential-hero-content h1 {
    font-size: 32px;
  }

  .residential-page .section {
    padding: 56px 0;
  }

  .residential-page .map-embed iframe {
    height: 320px;
  }

  .commercial-steps {
    grid-template-columns: 1fr;
  }

  .commercial-highlights {
    grid-template-columns: 1fr;
  }

  .about-hero-media img {
    height: 420px;
  }

  .about-hero-content {
    position: relative;
    color: var(--black);
    padding: 24px 0 0;
  }

  .about-hero::after {
    display: none;
  }

  .about-hero-content h1 {
    font-size: 34px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-grid,
  .process-steps,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .handyman-showcase img,
  .handyman-banner-media img {
    height: 280px;
  }

  .service-static-dots {
    margin-top: 14px;
  }

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

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

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

  .team-grid {
    grid-template-columns: 1fr;
  }

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