@font-face {
  font-family: "Poppins";
  src: url("/assets/Poppins-Regular-3ffb09f3.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/Poppins-SemiBold-8f59aac1.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/Poppins-Bold-72adf1e6.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #172027;
  --ink-soft: #2c363e;
  --muted: #606a70;
  --line: #dfe2df;
  --paper: #fff;
  --cream: #f5f2ec;
  --soft: #f1f3f2;
  --orange: #ed711b;
  --orange-dark: #cf5706;
  --orange-pale: #fff0e5;
  --blue: #4285f4;
  --shadow-sm: 0 10px 30px rgb(18 28 34 / 8%);
  --shadow: 0 24px 60px rgb(18 28 34 / 13%);
  --radius: 1rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  min-width: 275px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

:focus-visible {
  outline: 3px solid rgb(66 133 244 / 65%);
  outline-offset: 3px;
}

.site-shell { display: flex; min-height: 100vh; flex-direction: column; }
.site-main { flex: 1; }
.container { width: min(100% - 2.5rem, 70rem); margin-inline: auto; }
.container-narrow { width: min(100% - 2.5rem, 64rem); }
.measure { max-width: 49rem; }
.anchor-section { scroll-margin-top: 7rem; }

/* Header */
.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  background: rgb(255 255 255 / 94%);
  border-bottom: 1px solid rgb(223 226 223 / 80%);
  box-shadow: 0 4px 22px rgb(18 28 34 / 4%);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2.5rem, 76rem);
  min-height: 5.5rem;
  margin-inline: auto;
  gap: clamp(1rem, 2vw, 2rem);
}

.brand {
  display: flex;
  flex: none;
  align-items: center;
  align-self: stretch;
  padding: .65rem .45rem .65rem 0;
}
.brand img { width: 8.4rem; height: auto; }
.header-content { display: flex; min-width: 0; align-items: center; gap: clamp(1.2rem, 2.6vw, 2.4rem); }
.primary-nav { display: flex; flex: none; align-items: center; gap: 1.5rem; }
.primary-nav > a,
.services-menu > button {
  color: #3c464d;
  font-size: .9rem;
  font-weight: 600;
  transition: color 160ms ease;
}
.primary-nav > a:hover,
.services-menu > button:hover { color: var(--orange); }
.services-menu { position: relative; }
.services-menu > button {
  display: inline-flex;
  height: 2.8rem;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 1;
}
.chevron {
  display: block;
  flex: none;
  transform-origin: 50% 50%;
  transition: transform 200ms cubic-bezier(.2, .8, .2, 1);
}
.services-menu > button[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.services-dropdown {
  position: absolute;
  top: calc(100% + .2rem);
  left: -1rem;
  width: 19rem;
  padding: .55rem;
  visibility: hidden;
  background: rgb(255 255 255 / 98%);
  border: 1px solid var(--line);
  border-radius: .9rem;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-.45rem) scale(.98);
  transform-origin: top left;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
}
.services-dropdown.is-open { visibility: visible; opacity: 1; transform: translateY(0) scale(1); }
.services-dropdown a {
  display: block;
  padding: .7rem .8rem;
  border-radius: .55rem;
  color: #39434a;
  font-size: .86rem;
  font-weight: 500;
  transition: color 140ms ease, background 140ms ease, padding 140ms ease;
}
.services-dropdown a:hover { padding-left: 1rem; color: var(--orange-dark); background: var(--orange-pale); }

.business-listing { display: flex; flex: none; align-items: center; gap: .45rem; }
.google-link { display: flex; align-items: center; gap: .38rem; color: #4c565d; font-size: .72rem; white-space: nowrap; }
.google-link img { width: 1.15rem; }
.business-listing .star-rating { gap: 0; }
.business-listing .star-rating svg { width: .72rem; height: .72rem; }
.rating-line { display: flex; align-items: center; gap: .55rem; color: var(--orange); font-size: .9rem; }
.star-rating { display: inline-flex; color: #f39a20; }
.star-rating svg { flex: none; }

.header-cta {
  display: flex;
  flex: none;
  min-height: 3rem;
  align-items: center;
  gap: .55rem;
  padding: .45rem .9rem;
  color: white;
  background: var(--ink);
  border-radius: .7rem;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.25;
  transition: background 160ms ease, transform 160ms ease;
}
.header-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }
.header-cta small { display: block; color: #cbd1d4; font-size: .58rem; font-weight: 400; letter-spacing: .03em; }
.menu-toggle { display: none; width: 2.75rem; padding: .65rem; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--ink); transition: transform 160ms ease, opacity 160ms ease; }
.menu-toggle.is-open span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:last-child { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: clamp(35rem, calc(100vh - 5.5rem), 45rem);
  overflow: hidden;
  background-position: center;
  background-size: cover;
}
.hero::after {
  position: absolute;
  right: -5rem;
  bottom: -7rem;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 50%;
  content: "";
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(10 16 20 / 88%) 0%, rgb(10 16 20 / 73%) 42%, rgb(10 16 20 / 22%) 75%, rgb(10 16 20 / 38%) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100% - 2.5rem, 70rem);
  min-height: inherit;
  align-items: center;
  margin-inline: auto;
  padding: 4rem 0;
}
.hero-panel { max-width: 43rem; color: white; }
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.2rem;
  padding: .45rem .7rem;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 999px;
  background: rgb(255 255 255 / 9%);
  font-size: .72rem;
  backdrop-filter: blur(8px);
}
.hero-rating .star-rating svg { width: .85rem; height: .85rem; }
.hero-kicker {
  margin: 0 0 .75rem;
  color: #ffc9a1;
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 42rem;
  margin: 0 0 1.25rem;
  font-size: clamp(2.55rem, 5.8vw, 4.6rem);
  letter-spacing: -.045em;
  line-height: 1.03;
  text-wrap: balance;
}
.hero h1 em { color: #ff9a51; font-style: normal; }
.hero-panel > p:not(.hero-kicker, .hero-note) { max-width: 38rem; margin: 0; color: #eef0f1; font-size: clamp(1rem, 1.8vw, 1.16rem); }
.hero-actions { display: flex; align-items: center; gap: .8rem; margin-top: 2rem; }
.hero-note { display: flex; align-items: center; gap: .6rem; margin: 1.2rem 0 0; color: #ccd1d3; font-size: .7rem; }
.hero-note span { width: 3px; height: 3px; background: #ff9a51; border-radius: 50%; }

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: .68rem;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.3;
  box-shadow: 0 10px 24px rgb(0 0 0 / 12%);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgb(0 0 0 / 18%); }
.button-primary { color: white; background: var(--orange); }
.button-primary:hover { background: var(--orange-dark); }
.button-light { color: var(--ink); background: white; }
.button-light:hover { background: #f7f7f5; }
.button-ghost { color: white; background: rgb(255 255 255 / 7%); border-color: rgb(255 255 255 / 45%); box-shadow: none; }
.button-ghost:hover { background: rgb(255 255 255 / 15%); border-color: white; }
.button-icon { gap: .55rem; }

.trust-bar { position: relative; z-index: 2; color: white; background: var(--ink); }
.trust-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); padding: 1.25rem 0; }
.trust-bar-inner > div { display: flex; align-items: baseline; gap: .55rem; padding: 0 1.3rem; border-right: 1px solid rgb(255 255 255 / 12%); }
.trust-bar-inner > div:first-child { padding-left: 0; }
.trust-bar-inner > div:last-child { padding-right: 0; border: 0; }
.trust-bar strong { color: #ff9a51; font-size: 1.05rem; }
.trust-bar span { color: #c8ced1; font-size: .68rem; }

/* Shared sections */
.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; border-bottom: 1px solid var(--line); }
.section-muted { background: var(--cream); }
.reviews-section { background: var(--ink); }
.portfolio-section { background: linear-gradient(180deg, #f3f4f2, white 30rem); }
.section-heading { margin-bottom: 1.8rem; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: .48rem;
  margin: 0 0 .65rem;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section-heading h2 {
  max-width: 44rem;
  margin: 0;
  font-size: clamp(2.2rem, 4.6vw, 3.7rem);
  letter-spacing: -.035em;
  line-height: 1.08;
  text-wrap: balance;
}
.copy p { margin: 0 0 1.1rem; }
.copy strong { color: var(--ink); font-size: 1.08rem; }
.text-link { display: inline-block; margin-top: .5rem; color: var(--orange-dark); font-size: .86rem; font-weight: 600; }
.text-link::after { display: inline-block; margin-left: .45rem; content: "→"; transition: transform 160ms ease; }
.text-link:hover::after { transform: translateX(.25rem); }
.section-intro { max-width: 42rem; margin: 0; color: var(--muted); }

.intro-section { overflow: hidden; background: #fff; }
.intro-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, .75fr); align-items: start; gap: clamp(3rem, 8vw, 7rem); }
.intro-layout .section-heading { margin: 0; }
.intro-copy { position: relative; padding: 1.2rem 0 0 1.75rem; color: var(--muted); border-left: 3px solid var(--orange); }

.section-heading-row { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(18rem, .7fr); align-items: end; gap: 3rem; margin-bottom: 3rem; }
.section-heading-row .section-heading { margin: 0; }
.service-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1.25rem; }
.service-card { grid-column: span 2; overflow: hidden; background: var(--paper); border: 1px solid #e1ded8; border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform 220ms ease, box-shadow 220ms ease; }
.service-card:nth-child(-n + 2) { grid-column: span 3; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card-link { display: block; height: 100%; }
.service-image { position: relative; width: 100%; height: 14rem; overflow: hidden; background: #e8e7e3; }
.service-card:nth-child(-n + 2) .service-image { height: 20rem; }
.service-image::after { position: absolute; inset: auto 0 0; height: 40%; background: linear-gradient(transparent, rgb(10 16 20 / 35%)); content: ""; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.2, .8, .2, 1); }
.service-card:hover .service-image img { transform: scale(1.055); }
.service-number { position: absolute; z-index: 1; right: 1rem; bottom: .75rem; color: white; font-size: .68rem; font-weight: 600; letter-spacing: .12em; }
.service-card-body { display: flex; min-height: 9.3rem; align-items: flex-start; justify-content: space-between; gap: .75rem; padding: 1.25rem; }
.service-card-body h3 { margin: 0 0 .55rem; font-size: 1.02rem; line-height: 1.3; }
.service-card-body p { margin: 0; color: var(--muted); font-size: .74rem; line-height: 1.55; }
.card-arrow { display: grid; flex: none; width: 2.2rem; height: 2.2rem; margin-top: -.1rem; color: var(--orange); background: var(--orange-pale); border-radius: 50%; font-size: 1.15rem; place-items: center; transition: color 160ms ease, background 160ms ease, transform 160ms ease; }
.service-card:hover .card-arrow { color: white; background: var(--orange); transform: translateX(.15rem); }

/* Reviews */
.reviews-section .section-heading h2 { color: white; }
.reviews-section .eyebrow { color: #ff9a51; }
.reviews-layout { display: grid; grid-template-columns: minmax(15rem, .65fr) minmax(0, 1.6fr); gap: 2.5rem; }
.reviews-summary { padding: 1.3rem 1.5rem 1rem 0; color: white; border-right: 1px solid rgb(255 255 255 / 13%); }
.reviews-overline { margin: 0 0 .7rem !important; color: #ff9a51; font-size: .7rem !important; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.reviews-summary h3 { max-width: 18rem; margin: 0 0 1.2rem; font-size: 1.6rem; line-height: 1.25; }
.reviews-summary .rating-line strong { font-size: 1.35rem; }
.reviews-summary p { margin: .35rem 0; color: #aeb7bb; font-size: .75rem; }
.google-review-button { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.3rem; padding: .65rem 1rem; color: white; background: var(--blue); border-radius: 999px; font-size: .75rem; font-weight: 600; transition: transform 160ms ease; }
.google-review-button:hover { transform: translateY(-2px); }
.google-review-button img { filter: brightness(0) invert(1); }
.reviews-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; padding: .3rem .1rem 1rem; }
.review-card { min-width: 0; min-height: 17rem; padding: 1.2rem; overflow: hidden; background: #fff; border-radius: .8rem; }
.review-card header { display: grid; grid-template-columns: 3rem minmax(0, 1fr) 1.25rem; align-items: start; gap: .65rem; margin-bottom: .8rem; }
.review-card header > img:first-child { width: 3rem; height: 3rem; object-fit: cover; border-radius: 50%; }
.review-card header a { display: block; overflow: hidden; color: #2670cf; font-size: .79rem; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.review-card time { display: block; color: #89929d; font-size: .67rem; }
.review-source { width: 1.25rem; }
.review-card > p { max-height: 8.8rem; margin: .7rem 0 0; overflow-y: auto; color: #4f5960; font-size: .75rem; line-height: 1.6; }

/* Process */
.process-section { color: white; background: var(--orange); border: 0; }
.process-heading { display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 3rem; margin-bottom: 3rem; }
.process-heading .section-heading { margin: 0; }
.process-heading .eyebrow { color: #ffe3cf; }
.process-heading p { margin: 0; color: #ffeadb; font-size: .88rem; }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; border-top: 1px solid rgb(255 255 255 / 35%); list-style: none; }
.process-list li { display: grid; grid-template-columns: 2.4rem 1fr; gap: .5rem; padding: 1.7rem 1.7rem 1.7rem 0; border-right: 1px solid rgb(255 255 255 / 28%); }
.process-list li + li { padding-left: 1.7rem; }
.process-list li:last-child { border: 0; }
.process-list li > span { color: #ffd5b7; font-size: .68rem; font-weight: 600; letter-spacing: .08em; }
.process-list h3 { margin: 0 0 .45rem; font-size: 1.05rem; }
.process-list p { margin: 0; color: #ffeadb; font-size: .75rem; }
.process-cta { margin-top: 2rem; color: var(--ink); background: white; }
.process-cta:hover { color: white; background: var(--ink); }

/* Portfolio */
.portfolio-heading { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: 2.5rem; }
.portfolio-heading .section-heading { margin: 0; }
.portfolio-heading > p { max-width: 24rem; margin: 0; color: var(--muted); font-size: .82rem; }
.portfolio-grid { display: grid; grid-auto-flow: dense; grid-auto-rows: 12rem; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .8rem; }
.portfolio-grid > button,
.service-gallery-grid > button { position: relative; overflow: hidden; padding: 0; border: 0; border-radius: .7rem; background: #e4e6e4; cursor: zoom-in; }
.portfolio-grid > button:nth-child(1),
.portfolio-grid > button:nth-child(6) { grid-column: span 2; grid-row: span 2; }
.portfolio-grid > button:nth-child(3),
.portfolio-grid > button:nth-child(8) { grid-row: span 2; }
.portfolio-grid > button::after,
.service-gallery-grid > button::after { position: absolute; inset: 0; border: 1px solid rgb(255 255 255 / 18%); border-radius: inherit; content: ""; pointer-events: none; }
.portfolio-grid img,
.service-gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms cubic-bezier(.2, .8, .2, 1), filter 220ms ease; }
.portfolio-grid button:hover img,
.service-gallery-grid button:hover img { filter: saturate(1.05); transform: scale(1.055); }

/* Conversion CTA */
.closing-cta { padding: clamp(4rem, 7vw, 6rem) 0; overflow: hidden; color: white; background: var(--ink); }
.closing-cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.closing-cta-inner::after { position: absolute; right: -9rem; width: 24rem; height: 24rem; border: 1px solid rgb(255 255 255 / 10%); border-radius: 50%; content: ""; pointer-events: none; }
.closing-cta .eyebrow { color: #ff9a51; }
.closing-cta h2 { max-width: 42rem; margin: 0 0 .75rem; font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -.035em; line-height: 1.1; }
.closing-cta p:not(.eyebrow) { max-width: 37rem; margin: 0; color: #b7c0c4; font-size: .88rem; }
.closing-actions { position: relative; z-index: 1; display: flex; flex: none; align-items: center; flex-direction: column; gap: .7rem; }
.closing-actions small { color: #9da7ab; font-size: .63rem; }

/* Service pages */
.service-hero { position: relative; display: grid; min-height: 35rem; overflow: hidden; background-position: center; background-size: cover; place-items: center; }
.service-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgb(8 13 17 / 88%), rgb(8 13 17 / 57%), rgb(8 13 17 / 45%)); }
.service-hero-content { position: relative; width: min(100% - 2.5rem, 70rem); padding: 4rem 0; color: white; }
.service-breadcrumb { display: flex; align-items: center; gap: .5rem; margin: 0 0 1.4rem !important; color: #c5cccf; font-size: .7rem !important; }
.service-breadcrumb a:hover { color: #ff9a51; }
.service-rating { display: flex; align-items: center; gap: .6rem; margin-bottom: .8rem; color: #e5e8e9; font-size: .7rem; }
.service-rating .star-rating svg { width: .85rem; height: .85rem; }
.service-hero h1 { max-width: 52rem; margin: 0 0 1rem; font-size: clamp(2.7rem, 6vw, 4.8rem); letter-spacing: -.045em; line-height: 1.04; text-wrap: balance; }
.service-hero-content > p:not(.service-breadcrumb) { max-width: 46rem; margin: 0; color: #e1e5e6; font-size: clamp(.98rem, 2vw, 1.15rem); }
.service-hero-actions { display: flex; gap: .8rem; margin-top: 2rem; }
.service-trust-bar { color: #d2d7d9; background: var(--ink); }
.service-trust-bar .container { display: flex; min-height: 3.8rem; align-items: center; justify-content: space-between; gap: 1rem; }
.service-trust-bar span { display: flex; align-items: center; gap: .7rem; font-size: .68rem; }
.service-trust-bar span::before { width: .35rem; height: .35rem; background: var(--orange); border-radius: 50%; content: ""; }
.service-page { background: #f7f7f4; }
.service-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(18rem, .75fr); align-items: start; gap: clamp(2.5rem, 7vw, 5.5rem); }
.service-layout h2 { margin: 0 0 1.3rem; font-size: clamp(2rem, 3.6vw, 3.1rem); letter-spacing: -.035em; line-height: 1.12; }
.service-layout h3,
.info-card h3 { font-size: 1.25rem; line-height: 1.3; }
.service-description { margin-bottom: 2rem; color: var(--muted); font-size: .95rem; }
.benefit-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem 1.5rem; padding: 0; list-style: none; }
.benefit-list li { display: flex; align-items: flex-start; gap: .65rem; color: var(--muted); font-size: .8rem; }
.benefit-list svg { flex: none; margin-top: .22rem; color: var(--orange); fill: var(--orange); }
.info-card { margin-bottom: 1.25rem; padding: 1.5rem; background: white; border: 1px solid #e5e7e4; border-radius: .85rem; box-shadow: var(--shadow-sm); }
.info-card h3 { margin: 0 0 .8rem; }
.info-card p { color: var(--muted); font-size: .82rem; }
.quote-card { color: white; background: var(--ink); border: 0; box-shadow: var(--shadow); }
.quote-card .eyebrow { color: #ff9a51; }
.quote-card p { color: #b9c1c4; }
.quote-card .button { width: 100%; margin: .6rem 0 .8rem; }
.quote-card small { display: block; color: #929da1; font-size: .62rem; text-align: center; }
.icon-heading { display: flex; align-items: center; gap: .5rem; }
.area-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .4rem 1rem; padding: 0; color: var(--muted); font-size: .72rem; list-style: none; }
.area-list li::before { margin-right: .4rem; color: var(--orange); content: "•"; }
.service-gallery { margin-top: clamp(4.5rem, 8vw, 7rem); }
.service-gallery-heading { margin: 0 auto 2.2rem; text-align: center; }
.service-gallery-heading .eyebrow { justify-content: center; }
.service-gallery-heading h2 { margin: 0 0 .7rem; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.035em; line-height: 1.1; }
.service-gallery-heading > p:last-child { margin: 0; color: var(--muted); font-size: .82rem; }
.service-gallery-grid { display: grid; grid-auto-rows: 17rem; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.service-gallery-grid > button:first-child { grid-column: span 2; }
.service-details { margin-top: clamp(4.5rem, 8vw, 7rem); padding: clamp(1.7rem, 4vw, 3rem); background: white; border: 1px solid #e5e7e4; border-radius: 1rem; box-shadow: var(--shadow-sm); }
.service-details > h2 { margin: 0 0 1.8rem; font-size: clamp(1.7rem, 3vw, 2.35rem); letter-spacing: -.025em; }
.detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem; }
.detail-grid > div { padding-top: 1.3rem; border-top: 2px solid var(--orange); }
.detail-grid h3 { margin: 0 0 .55rem; font-size: 1.1rem; }
.detail-grid p { margin: 0; color: var(--muted); font-size: .82rem; }

/* Lightbox */
.lightbox { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: 0; color: white; background: transparent; border: 0; }
.lightbox::backdrop { background: rgb(3 7 10 / 94%); backdrop-filter: blur(7px); }
.lightbox-frame { position: relative; display: grid; width: 100%; height: 100%; grid-template-columns: 4rem minmax(0, 1fr) 4rem; align-items: center; }
.lightbox figure { display: grid; max-width: min(82vw, 80rem); max-height: 90vh; margin: auto; place-items: center; }
.lightbox figure img { max-width: 100%; max-height: 82vh; object-fit: contain; border-radius: .4rem; box-shadow: 0 20px 60px #000; }
.lightbox figcaption { margin-top: .75rem; color: #d9dee0; font-size: .78rem; text-align: center; }
.lightbox button { border: 0; color: white; background: rgb(255 255 255 / 9%); cursor: pointer; }
.lightbox-close { position: absolute; z-index: 2; top: 1rem; right: 1rem; width: 3rem; height: 3rem; border-radius: 50%; font-size: 2rem; }
.lightbox-nav { width: 3rem; height: 4rem; margin: auto; border-radius: .4rem; font-size: 2.6rem; line-height: 1; }
.lightbox button:hover { background: rgb(255 255 255 / 18%); }

/* Footer */
.site-footer { background: var(--cream); border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; width: min(100% - 2.5rem, 70rem); margin-inline: auto; padding: 4rem 0; gap: 3rem; }
.footer-brand { display: flex; max-width: 18rem; flex-direction: column; gap: 1rem; }
.footer-brand img { width: 5.5rem; height: auto; }
.footer-brand p { margin: 0; color: var(--muted); font-size: .72rem; }
.footer-brand small { color: #737d82; font-size: .65rem; }
.footer-brand > small:not(.footer-credit) { margin-top: auto; }
.footer-credit { margin-top: -.65rem; }
.footer-credit a { margin-left: .25rem; color: #2874c8; }
.footer-credit a:hover { color: var(--orange); }
.footer-columns { display: flex; gap: clamp(2.5rem, 8vw, 6rem); }
.footer-columns h2 { margin: 0 0 .9rem; font-size: .9rem; }
.footer-columns ul { display: grid; gap: .42rem; margin: 0; padding: 0; list-style: none; }
.footer-columns li,
.footer-columns address { color: var(--muted); font-size: .72rem; font-style: normal; }
.footer-columns a:hover { color: var(--orange); }
.footer-columns address { display: grid; gap: .55rem; }
.footer-contact { display: flex; align-items: center; gap: .45rem; color: #2874c8; }
.footer-maps-link { margin-top: .25rem; color: var(--orange-dark); font-weight: 600; }
.mobile-call-bar { display: none; }

@media (max-width: 1080px) {
  .header-inner { width: min(100% - 2rem, 76rem); }
  .header-content { gap: 1.1rem; }
  .primary-nav { gap: 1.1rem; }
  .business-listing { display: none; }
}

@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .header-inner { flex-wrap: wrap; min-height: 5rem; padding: .45rem 0; }
  .brand { padding-block: .55rem; }
  .brand img { width: 7.6rem; }
  .header-content {
    display: flex;
    width: 100%;
    max-height: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
    padding: 0;
    visibility: hidden;
    border-top: 1px solid transparent;
    opacity: 0;
    transition: max-height 280ms ease, opacity 180ms ease, padding 280ms ease, visibility 280ms, border-color 280ms;
  }
  .header-content.is-open { max-height: 44rem; padding: 1rem 0 1.4rem; visibility: visible; border-color: var(--line); opacity: 1; }
  .primary-nav { align-items: stretch; flex-direction: column; gap: .15rem; }
  .primary-nav > a,
  .services-menu > button { width: 100%; justify-content: space-between; padding: .75rem .25rem; text-align: left; }
  .services-dropdown {
    position: static;
    width: 100%;
    max-height: 0;
    margin: 0;
    padding-block: 0;
    overflow: hidden;
    visibility: hidden;
    border-width: 0;
    box-shadow: none;
    opacity: 0;
    transform: none;
    transition: max-height 220ms ease, opacity 160ms ease, padding 220ms ease, visibility 220ms;
  }
  .services-dropdown.is-open { max-height: 24rem; padding-block: .55rem; visibility: visible; border-width: 1px; opacity: 1; transform: none; }
  .business-listing { display: flex; padding-top: .8rem; border-top: 1px solid var(--line); }
  .header-cta { justify-content: center; }
  .header-cta small { display: none; }
  .intro-layout,
  .section-heading-row,
  .process-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-card,
  .service-card:nth-child(-n + 2) { grid-column: span 3; }
  .service-card:nth-child(-n + 2) .service-image,
  .service-image { height: 17rem; }
  .reviews-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .reviews-summary { padding: 0 0 1.5rem; border-right: 0; border-bottom: 1px solid rgb(255 255 255 / 13%); }
  .reviews-list { display: flex; overflow-x: auto; scrollbar-color: #566066 transparent; scroll-snap-type: x mandatory; }
  .review-card { flex: 0 0 18rem; scroll-snap-align: start; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li,
  .process-list li + li { padding: 1.3rem 0; border-right: 0; border-bottom: 1px solid rgb(255 255 255 / 28%); }
  .portfolio-grid { grid-auto-rows: 10rem; grid-template-columns: repeat(3, 1fr); }
  .closing-cta-inner { align-items: flex-start; flex-direction: column; }
  .closing-actions { align-items: flex-start; }
  .service-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  body { padding-bottom: 3.6rem; }
  .container,
  .container-narrow { width: min(100% - 2rem, 70rem); }
  .hero { min-height: 39rem; background-position: 59% center; }
  .hero-overlay { background: linear-gradient(90deg, rgb(10 16 20 / 91%), rgb(10 16 20 / 72%) 82%, rgb(10 16 20 / 52%)); }
  .hero-content { width: min(100% - 2rem, 70rem); padding: 3rem 0; }
  .hero h1 { font-size: clamp(2.35rem, 12vw, 3.35rem); }
  .hero-actions,
  .service-hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button,
  .service-hero-actions .button { width: 100%; }
  .hero-note { flex-wrap: wrap; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 0; padding: .7rem 0; }
  .trust-bar-inner > div { display: block; padding: .7rem .8rem; border-bottom: 1px solid rgb(255 255 255 / 12%); }
  .trust-bar-inner > div:first-child { padding-left: .8rem; }
  .trust-bar-inner > div:nth-child(2) { border-right: 0; }
  .trust-bar-inner > div:nth-child(n + 3) { border-bottom: 0; }
  .trust-bar strong,
  .trust-bar span { display: block; }
  .section { padding: 4rem 0; }
  .intro-copy { padding: .5rem 0 0 1.2rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card,
  .service-card:nth-child(-n + 2) { grid-column: auto; }
  .service-card:nth-child(-n + 2) .service-image,
  .service-image { height: 15rem; }
  .service-card-body { min-height: auto; }
  .reviews-summary h3 { font-size: 1.4rem; }
  .review-card { flex-basis: 16.5rem; }
  .portfolio-heading { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .portfolio-grid { grid-auto-rows: 9rem; grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid > button:nth-child(6) { grid-column: span 1; grid-row: span 1; }
  .portfolio-grid > button:nth-child(8) { grid-row: span 1; }
  .closing-actions,
  .closing-actions .button { width: 100%; }
  .closing-actions { align-items: stretch; }
  .closing-actions small { text-align: center; }
  .service-hero { min-height: 36rem; }
  .service-hero-content { width: min(100% - 2rem, 70rem); padding: 3rem 0; }
  .service-trust-bar .container { display: grid; grid-template-columns: repeat(2, 1fr); padding: .9rem 0; }
  .benefit-list { grid-template-columns: 1fr; }
  .service-gallery-grid { grid-auto-rows: 14rem; grid-template-columns: 1fr; }
  .service-gallery-grid > button:first-child { grid-column: auto; }
  .detail-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-inner,
  .footer-columns { flex-direction: column; }
  .footer-inner { padding: 3rem 0; }
  .footer-columns { gap: 2rem; }
  .lightbox-frame { grid-template-columns: 3rem minmax(0, 1fr) 3rem; }
  .lightbox-nav { width: 2.5rem; }
  .mobile-call-bar {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 3.6rem;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .7rem 1rem max(.7rem, env(safe-area-inset-bottom));
    color: white;
    background: var(--orange);
    box-shadow: 0 -8px 24px rgb(18 28 34 / 20%);
    font-size: .74rem;
    font-weight: 600;
  }
  .mobile-call-bar strong { font-size: .78rem; }
}

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