:root {
  --bg: #f7f8fb;
  --surface: rgba(255,255,255,0.72);
  --surface-strong: rgba(255,255,255,0.9);
  --text: #1d2430;
  --muted: #5f6978;
  --line: rgba(93, 108, 132, 0.14);
  --accent: #6aa88a;
  --accent-2: #4f7fbb;
  --accent-soft: rgba(255,255,255,0.78);
  --dark: #18212d;
  --shadow: 0 18px 48px rgba(78, 95, 122, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 40px));
  --header-height: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fcfdff 0%, var(--bg) 100%);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.96), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(208, 228, 255, 0.36), transparent 20%),
    radial-gradient(circle at 78% 48%, rgba(255, 255, 255, 0.88), transparent 18%),
    radial-gradient(circle at 18% 76%, rgba(220, 239, 255, 0.28), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(244,247,252,0.98));
}

.container { width: var(--container); margin: 0 auto; }
.section { padding: 78px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.74); color: var(--accent-2);
  border: 1px solid rgba(93, 108, 132, 0.12);
  box-shadow: 0 10px 24px rgba(125, 141, 165, 0.08);
  font-weight: 700; letter-spacing: .02em; font-size: .84rem; text-transform: uppercase;
}

h1, h2, h3, p { margin: 0; }
h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 18px 0 18px;
}
h2 {
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  line-height: 1.22;
}
p, li, span { color: var(--muted); }
.lead { font-size: clamp(1.02rem, 1.3vw, 1.18rem); max-width: 62ch; }

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(14px);
}
.topbar__inner {
  min-height: 44px; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; font-size: .92rem;
}
.topbar__inner p { color: #4c5547; }
.topbar__links { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar__links a { color: var(--accent-2); font-weight: 700; }

.header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 15px 40px rgba(78, 95, 122, 0.08);
  background: rgba(255,255,255,0.86);
}
.header--solid { border-color: var(--line); }
.header__inner {
  min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 0; }
.brand img {
  width: 42px; height: 42px; border-radius: 14px; box-shadow: var(--shadow); flex-shrink: 0;
}
.brand span { display: inline-flex; flex-direction: column; }
.brand strong { color: var(--dark); letter-spacing: .08em; font-size: .94rem; }
.brand small { color: var(--muted); font-size: .78rem; }
.desktop-nav {
  display: flex; align-items: center; gap: 22px;
}
.desktop-nav a { font-weight: 600; color: #48586b; position: relative; }
.desktop-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.desktop-nav a:hover::after { transform: scaleX(1); }
.desktop-nav a[aria-current="page"], .mobile-nav a[aria-current="page"] { color: var(--accent-strong); font-weight: 800; }
.desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header__actions { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 20px; border-radius: 999px;
  font-weight: 700; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  color: #fff; background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 100%);
  box-shadow: 0 16px 30px rgba(79, 127, 187, 0.22);
}
.btn--ghost {
  color: var(--dark); background: rgba(255,255,255,0.72); border-color: rgba(93, 108, 132, 0.12);
  box-shadow: 0 10px 24px rgba(78, 95, 122, 0.08);
  backdrop-filter: blur(16px);
}
.btn--block { width: 100%; }
.desktop-only { display: inline-flex; }

.menu-toggle {
  display: none; width: 48px; height: 48px; border: 1px solid var(--line); background: rgba(255,255,255,0.84);
  border-radius: 16px; flex-direction: column; justify-content: center; gap: 5px; padding: 0 12px;
  box-shadow: 0 10px 24px rgba(78, 95, 122, 0.08);
}
.menu-toggle span:not(.sr-only) {
  width: 100%; height: 2px; background: var(--dark); border-radius: 999px;
}
.mobile-drawer {
  position: fixed; inset: 0 0 0 auto; width: min(88vw, 380px); z-index: 40; transform: translateX(100%);
  transition: transform .35s ease;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer__panel {
  height: 100%; background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); padding: 24px; display: flex; flex-direction: column;
  border-left: 1px solid var(--line); box-shadow: -20px 0 60px rgba(78, 95, 122, 0.12);
}
.mobile-drawer__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mobile-close {
  width: 44px; height: 44px; border-radius: 14px; border: 1px solid var(--line); background: #fff; font-size: 2rem; line-height: 1;
}
.mobile-nav { display: grid; gap: 8px; margin: 28px 0 20px; }
.mobile-nav a {
  padding: 14px 16px; border-radius: 16px; background: rgba(255,255,255,0.68); border: 1px solid rgba(93, 108, 132, 0.12); font-weight: 700; color: var(--dark);
}
.mobile-drawer__cta { margin-top: auto; display: grid; gap: 10px; }
.menu-overlay {
  position: fixed; inset: 0; background: rgba(28, 34, 25, 0.42); opacity: 0; pointer-events: none; z-index: 35;
  transition: opacity .3s ease;
}
.menu-overlay.is-visible { opacity: 1; pointer-events: auto; }

.hero { padding-top: 34px; padding-bottom: 36px; }
.hero__grid, .subhero__grid {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(28px, 4vw, 56px); align-items: center;
}
.hero__content { position: relative; z-index: 1; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 24px; }
.hero-points {
  display: grid; gap: 12px; padding: 0; margin: 0 0 28px; list-style: none;
}
.hero-points li {
  padding-left: 28px; position: relative; color: #566051; font-weight: 600;
}
.hero-points li::before {
  content: ""; position: absolute; left: 0; top: 10px; width: 12px; height: 12px;
  border-radius: 50%; background: linear-gradient(135deg, var(--accent), #ff9e93);
  box-shadow: 0 0 0 6px rgba(124, 188, 69, 0.1);
}
.trust-boxes {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; max-width: 620px;
}
.trust-box {
  padding: 18px; border-radius: 20px; background: rgba(255,255,255,0.94); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.trust-box strong { display: block; font-size: 1.7rem; color: var(--dark); line-height: 1; }
.trust-box span { display: block; margin-top: 6px; font-weight: 600; }

.hero__media { position: relative; min-height: 680px; }
.hero-frame {
  overflow: hidden; border-radius: 34px; background: var(--surface-strong); border: 1px solid rgba(77, 98, 58, 0.08);
  box-shadow: var(--shadow); position: absolute;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-frame--main {
  inset: 0 30px 110px 0;
}
.hero-frame--accent {
  width: 250px; height: 315px; right: 0; bottom: 28px; border: 10px solid rgba(255,255,255,0.94);
}
.hero-frame--main::before,
.layered-frame::before {
  content: ""; position: absolute; inset: auto auto -18px -18px; width: 160px; height: 160px; border-radius: 26px;
  background: radial-gradient(circle at center, rgba(124,188,69,.22), rgba(124,188,69,0)); z-index: -1;
}
.hero-stat {
  position: absolute; left: 26px; bottom: 28px; width: min(300px, 72%);
}
.glass-card {
  padding: 22px; background: rgba(255,255,255,0.78); backdrop-filter: blur(14px); border: 1px solid rgba(91, 117, 67, 0.12);
  border-radius: 24px; box-shadow: var(--shadow);
}
.hero-stat__label { display: inline-block; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--accent-2); font-weight: 800; }
.hero-stat strong { display: block; font-size: 1.4rem; margin: 8px 0 4px; color: var(--dark); }
.float-card { animation: float 5.5s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.trust-strip__inner,
.metrics__grid,
.contact__grid,
.areas__grid,
.reviews-layout,
.process__grid,
.cta-banner__inner {
  display: grid; gap: 28px;
}
.trust-strip__inner { grid-template-columns: 1.15fr .85fr; align-items: center; }
.trust-strip { padding-top: 22px; }
.trust-strip__logos { display: grid; gap: 18px; }
.mini-proof {
  border-radius: 24px; background: rgba(255,255,255,0.86); border: 1px solid var(--line); padding: 24px; box-shadow: var(--shadow);
}
.mini-proof img { max-width: 180px; }
.mini-proof--text {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.mini-proof--text span {
  padding: 10px 14px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-2); font-weight: 700;
}

.section-heading {
  display: grid; gap: 14px; margin-bottom: 30px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px;
}
.service-card,
.card,
.process-card,
.metric-card,
.contact-card,
.quote-form,
.review-proof {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(77, 98, 58, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.service-card {
  overflow: hidden; transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover,
.card:hover,
.process-card:hover { transform: translateY(-6px); }
.service-card__media { aspect-ratio: 1.12 / 1; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__body { padding: 22px; display: grid; gap: 10px; }
.service-badge {
  width: 42px; height: 42px; display: inline-grid; place-items: center; border-radius: 14px;
  background: rgba(124,188,69,.12); color: var(--accent-2); font-weight: 800;
}

.metrics__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.metric-card { padding: 26px 22px; }
.metric-card strong { display: block; font-size: clamp(2rem, 3vw, 3rem); color: var(--dark); line-height: 1; }
.metric-card span { display: block; margin-top: 10px; font-weight: 700; }

.slider__viewport { overflow: hidden; }
.slider__track {
  display: flex; gap: 18px; transition: transform .45s ease;
}
.project-slide,
.testimonial-card {
  flex: 0 0 calc(50% - 9px);
}
.project-slide {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 0; overflow: hidden;
}
.project-slide__media,
.project-slide__body { min-width: 0; }
.project-slide__body { padding: 28px; display: grid; gap: 16px; }
.project-slide__body ul,
.project-bullets { margin: 0; padding-left: 20px; display: grid; gap: 10px; }
.pill {
  width: fit-content; padding: 8px 12px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-2); font-weight: 800; font-size: .84rem;
}
.layered-frame { position: relative; height: 100%; overflow: hidden; }
.layered-frame img { width: 100%; height: 100%; object-fit: cover; }
.slider__controls {
  margin-top: 18px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.slider__button {
  width: 48px; height: 48px; border-radius: 16px; border: 1px solid var(--line); background: rgba(255,255,255,0.94);
  font-size: 1.2rem; color: var(--dark);
}
.slider__dots { display: flex; justify-content: center; gap: 10px; flex: 1; }
.slider__dots button {
  width: 10px; height: 10px; border: 0; border-radius: 999px; background: rgba(80, 94, 70, 0.22); padding: 0;
}
.slider__dots button.is-active { background: var(--accent); }

.process__grid { grid-template-columns: .95fr 1.05fr; align-items: start; }
.process-cards {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px;
}
.process-card { padding: 24px; display: grid; gap: 12px; }
.process-card span {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: rgba(124,188,69,.10); color: var(--accent-2); font-weight: 800;
}

.reviews-layout { grid-template-columns: .76fr 1.24fr; align-items: stretch; }
.review-proof { padding: 28px; display: grid; align-content: start; gap: 16px; }
.review-proof__stars { font-size: 1.45rem; letter-spacing: .18em; color: #f0a300; }
.review-proof__meta { display: flex; flex-wrap: wrap; gap: 10px; }
.review-proof__meta span {
  background: rgba(255,255,255,0.74); color: var(--accent-2); padding: 8px 12px; border-radius: 999px; font-weight: 700; border: 1px solid rgba(93,108,132,0.12);
}
.testimonial-card {
  padding: 26px; display: grid; gap: 26px;
}
.testimonial-card p { font-size: 1.08rem; color: #364031; }
.testimonial-card strong { display: block; color: var(--dark); }
.testimonial-card span { display: block; margin-top: 4px; }

.area-chips {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.area-chips span {
  padding: 12px 16px; border-radius: 999px; background: rgba(255,255,255,0.74); border: 1px solid var(--line); font-weight: 700; color: #46586b; box-shadow: 0 8px 20px rgba(78,95,122,.05);
}

.faq-list { display: grid; gap: 14px; }
.faq-item {
  border-radius: 24px; background: rgba(255,255,255,0.94); border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow);
}
.faq-question {
  width: 100%; padding: 22px 24px; border: 0; background: transparent; display: flex; justify-content: space-between; gap: 16px; align-items: center;
  color: var(--dark); font-weight: 800; text-align: left;
}
.faq-question span { color: var(--accent-2); font-size: 1.3rem; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 24px;
}
.faq-item.is-open .faq-answer { max-height: 220px; padding: 0 24px 22px; }

.contact__grid { grid-template-columns: .9fr 1.1fr; }
.contact-card, .quote-form { padding: 28px; }
.contact-list { margin-top: 26px; display: grid; gap: 12px; }
.contact-list a,
.contact-list div {
  display: grid; gap: 4px; padding: 16px 18px; border-radius: 18px; background: rgba(124,188,69,.06); border: 1px solid rgba(124,188,69,.10);
}
.contact-list strong { color: var(--dark); }
.quote-form {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px;
}
.form-intro, .label-full { grid-column: 1 / -1; }
.quote-form label { display: grid; gap: 8px; }
.quote-form span { font-weight: 700; color: #475142; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%; min-height: 54px; padding: 14px 16px; border-radius: 16px; border: 1px solid rgba(89, 106, 72, 0.14);
  background: rgba(255,255,255,0.94); outline: none;
}
.quote-form textarea { min-height: 144px; resize: vertical; }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus { border-color: rgba(124,188,69,.42); box-shadow: 0 0 0 4px rgba(124,188,69,.10); }


.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0 24px; }
.hours-list { display: grid; gap: 10px; margin: 18px 0 18px; }
.hours-list > div { display: flex; justify-content: space-between; gap: 14px; padding: 14px 16px; border-radius: 18px; background: rgba(124, 188, 69, 0.08); border: 1px solid rgba(124, 188, 69, 0.12); }
.hours-list strong { color: var(--dark); }
.contact-meta-note { margin-bottom: 14px; }
.map-embed { overflow: hidden; border-radius: 24px; border: 1px solid var(--line); box-shadow: var(--shadow); background: #fff; }
.map-embed iframe { display: block; width: 100%; min-height: 420px; }

.subhero { padding-top: 52px; }
.subhero__card { display: flex; justify-content: flex-end; }
.project-detail__grid {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(28px, 4vw, 56px); align-items: center;
}
.project-detail--reverse .project-detail__media { order: 2; }
.project-detail--reverse .project-detail__content { order: 1; }
.project-detail__content { display: grid; gap: 16px; }
.project-facts {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px;
}
.project-facts > div {
  padding: 16px; border-radius: 18px; background: rgba(124,188,69,.06); border: 1px solid rgba(124,188,69,.10);
}
.project-facts strong { display: block; color: var(--dark); margin-bottom: 6px; }
.cta-banner__inner {
  grid-template-columns: 1fr auto; align-items: center; padding: 34px; border-radius: 30px;
  background: linear-gradient(120deg, rgba(124,188,69,.12), rgba(255,255,255,.8)); border: 1px solid rgba(124,188,69,.14); box-shadow: var(--shadow);
}

.footer {
  padding-top: 64px; padding-bottom: 120px;
}
.footer__grid {
  display: grid; grid-template-columns: 1.2fr .7fr .7fr; gap: 28px; padding-top: 32px; border-top: 1px solid var(--line);
}
.footer-copy { max-width: 46ch; margin-top: 18px; }
.brand--footer { margin-bottom: 8px; }
.footer h3 { margin-bottom: 12px; font-size: 1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a:hover { color: var(--accent); }

.mobile-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 28;
  display: none; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px;
}
.mobile-cta a {
  min-height: 54px; border-radius: 18px; display: grid; place-items: center; font-weight: 800;
  box-shadow: 0 16px 36px rgba(43, 51, 37, 0.18);
}
.mobile-cta a:first-child { background: #1e2a39; color: #fff; }
.mobile-cta a:last-child { background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: #fff; }

.reveal {
  opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease;
}
.reveal--delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .desktop-nav, .desktop-only { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero__grid,
  .subhero__grid,
  .trust-strip__inner,
  .process__grid,
  .reviews-layout,
  .contact__grid,
  .project-detail__grid,
  .footer__grid,
  .cta-banner__inner {
    grid-template-columns: 1fr;
  }
  .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .metrics__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero__media { min-height: 620px; }
  .project-slide,
  .project-slide__media,
  .project-slide__body { grid-template-columns: 1fr; }
  .project-slide { flex-basis: 100%; }
  .testimonial-card { flex-basis: 100%; }
  .project-detail--reverse .project-detail__media,
  .project-detail--reverse .project-detail__content { order: initial; }
}

@media (max-width: 720px) {
  :root { --header-height: 76px; --container: min(100%, calc(100% - 24px)); }
  .section { padding: 52px 0; }
  .topbar__inner { flex-direction: column; align-items: flex-start; padding: 10px 0; }
  .topbar__links { gap: 8px; }
  .topbar__links span { font-size: .82rem; }
  h1 {
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 14px 0 14px;
  }
  h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1.12;
  }
  .lead,
  p,
  li { font-size: .98rem; }
  .hero { padding-top: 18px; padding-bottom: 12px; }
  .trust-strip { padding-top: 6px; }
  .hero__grid { gap: 22px; }
  .hero__media { min-height: auto; display: grid; gap: 14px; }
  .hero-frame,
  .hero-stat {
    position: relative; inset: auto; width: 100%;
  }
  .hero-frame--main { aspect-ratio: 1.03 / 1; }
  .hero-frame--accent { height: auto; aspect-ratio: 1.2 / 1; border-width: 8px; }
  .hero__actions { margin: 22px 0 18px; gap: 10px; }
  .trust-boxes,
  .services-grid,
  .metrics__grid,
  .process-cards,
  .quote-form,
  .project-facts {
    grid-template-columns: 1fr;
  }
  .project-slide__body,
  .contact-card,
  .quote-form,
  .review-proof,
  .testimonial-card,
  .process-card,
  .metric-card,
  .service-card__body,
  .cta-banner__inner,
  .mobile-drawer__panel { padding: 20px; }
  .mobile-drawer { width: min(92vw, 360px); }
  .slider__controls { justify-content: center; }
  .hero__actions,
  .cta-banner__inner .hero__actions,
  .contact-actions { flex-direction: column; }
  .hero__actions .btn,
  .cta-banner__inner .btn,
  .contact-actions .btn { width: 100%; }
  .btn { min-height: 48px; padding: 0 18px; }
  .faq-question { padding: 18px 18px; }
  .faq-answer, .faq-item.is-open .faq-answer { padding-left: 18px; padding-right: 18px; }
  .mobile-cta { display: grid; left: 10px; right: 10px; bottom: 10px; }
  .footer { padding-bottom: 118px; }
}


@media (max-width: 420px) {
  .brand { gap: 10px; }
  .brand strong { font-size: .84rem; letter-spacing: .06em; }
  .brand small { font-size: .72rem; }
  .topbar__inner { font-size: .84rem; }
  .hero-points { gap: 10px; }
  .hero-points li { padding-left: 24px; font-size: .94rem; }
  .trust-box { padding: 16px; }
}

/* refinement pass: lighter white glass theme and tighter mobile spacing */
.hero-points li::before {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 0 6px rgba(79, 127, 187, 0.08);
}
.trust-box,
.mini-proof,
.service-card,
.card,
.process-card,
.metric-card,
.contact-card,
.quote-form,
.review-proof,
.faq-item,
.project-slide,
.testimonial-card,
.project-facts > div,
.cta-banner__inner,
.hours-list > div,
.contact-list a,
.contact-list div,
.map-embed {
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(93, 108, 132, 0.12);
  box-shadow: 0 16px 40px rgba(78,95,122,0.10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.mini-proof--text span,
.review-proof__meta span,
.area-chips span {
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(93,108,132,0.12);
}
.hero-frame,
.layered-frame,
.hero-frame--accent {
  border-color: rgba(255,255,255,0.74);
}
.hero-frame--main::before,
.layered-frame::before {
  background: radial-gradient(circle at center, rgba(79,127,187,.16), rgba(79,127,187,0));
}
.testimonial-card p,
.hero-points li,
.quote-form span,
.area-chips span,
.topbar__inner p,
.brand small,
.desktop-nav a,
.footer-copy,
.footer ul a,
.footer ul li,
.contact-list div,
.contact-list a,
.hours-list > div span,
.hours-list > div strong,
.mini-proof--text span {
  color: #4f5c6f;
}
.contact-list strong,
.hours-list strong,
.brand strong,
.desktop-nav a:hover,
.service-card h3,
.process-card h3,
.footer h3 {
  color: var(--dark);
}
.cta-banner__inner {
  background: linear-gradient(120deg, rgba(255,255,255,.72), rgba(233,242,255,.55));
}
@media (max-width: 920px) {
  .container { width: min(100%, calc(100% - 28px)); }
  .hero__grid,
  .subhero__grid,
  .project-detail__grid,
  .contact__grid,
  .reviews-layout,
  .process__grid,
  .trust-strip__inner,
  .footer__grid,
  .cta-banner__inner { gap: 22px; }
}
@media (max-width: 720px) {
  .topbar { display: none; }
  .header__inner { gap: 12px; }
  .brand span { max-width: 175px; }
  .hero__content,
  .section-heading,
  .project-detail__content,
  .contact-card,
  .review-proof,
  .testimonial-card,
  .service-card__body { gap: 12px; }
  .trust-boxes { gap: 10px; }
  .trust-box strong { font-size: 1.45rem; }
  .metrics__grid { gap: 14px; }
  .project-slide,
  .testimonial-card { min-width: 0; }
  .slider__track { gap: 14px; }
  .quote-form { gap: 12px; }
  .map-embed iframe { min-height: 300px; }
}
@media (max-width: 480px) {
  .container { width: min(100%, calc(100% - 22px)); }
  .mobile-drawer { width: min(94vw, 340px); }
  h1 { font-size: clamp(1.85rem, 9.2vw, 2.35rem); }
  h2 { font-size: clamp(1.45rem, 7.3vw, 1.85rem); }
  .lead, p, li { font-size: .95rem; }
  .hero-frame--main,
  .hero-frame--accent { border-radius: 24px; }
  .hero-stat,
  .glass-card,
  .trust-box,
  .metric-card,
  .contact-card,
  .quote-form,
  .review-proof,
  .testimonial-card,
  .faq-question,
  .faq-answer,
  .service-card__body,
  .cta-banner__inner { padding-left: 16px; padding-right: 16px; }
}
