:root {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --surface-2: #e9e9ee;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(60, 60, 67, .16);
  --accent: #343634;
  --accent-2: #eceeeb;
  --dark: #1d1d1f;
  --cta: var(--accent-blue);
  --cta-hover: var(--accent-blue-hover);
  --accent-blue: #0071e3;
  --accent-blue-hover: #0058b0;
  --shadow: 0 14px 34px rgba(0, 0, 0, .08);
  --radius: 16px;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, ui-sans-serif, system-ui, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

h1, h2, h3 {
  font-weight: 650;
}

/* Apple-style scroll reveal: elements fade + rise into view. Toggled by
   the shared reveal-on-scroll script (see assets/reveal.js). */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-1.in-view { transition-delay: .08s; }
.reveal-2.in-view { transition-delay: .16s; }
.reveal-3.in-view { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in-view { opacity: 1; transform: none; transition: none; }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea {
  font: inherit;
}
button { cursor: pointer; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section { padding: 84px 0; }
.muted { background: #efede8; }
.dark-section {
  background: #111111;
  color: #f2f1ef;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(245,244,241,.86);
  border-bottom: 1px solid rgba(24,24,23,.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-logo {
  height: 70px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
}
.nav-links a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .18s ease, opacity .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-light {
  background: transparent;
  border-color: var(--line);
}
.btn.full { width: 100%; }

.optional-label {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
}

.full-span {
  grid-column: 1 / -1;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .76rem;
}
.eyebrow.light { color: #aed6cd; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: stretch;
}
.hero-copy h1,
.section-head h2,
.intro-grid h2,
.faq-layout h2,
.contact-copy h2,
.thankyou-card h1 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -.04em;
}
.hero-copy h1 { font-size: clamp(2.9rem, 5vw, 5.2rem); max-width: 12ch; }
.section-head h2,
.intro-grid h2,
.faq-layout h2,
.contact-copy h2 { font-size: clamp(2rem, 3vw, 3rem); }
.hero-lead {
  max-width: 62ch;
  font-size: 1.07rem;
  color: var(--muted);
  margin: 22px 0 28px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.note-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
}
.note-card strong {
  display: block;
  font-size: 1.08rem;
}
.note-card span,
.subtle,
.form-note,
.panel-foot,
.contact-points,
.bundle p,
.gallery-card p,
.step p {
  color: var(--muted);
}
.hero-panel {
  padding: 26px;
  background: linear-gradient(180deg, #ffffff, #f4f7f5);
}
.panel-label {
  margin: 0 0 18px;
  font-weight: 700;
}
.category-grid {
  display: grid;
  gap: 14px;
}
.select-card {
  width: 100%;
  text-align: left;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.95);
  position: relative;
  transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.select-card span {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}
.select-card small {
  color: var(--muted);
}
.select-card:hover {
  border-color: #95b8af;
  transform: translateY(-1px);
}
.select-card.active {
  border-color: var(--accent);
  background: var(--accent-2);
}
.select-card.has-selection {
  border-color: #9ec2b6;
  background: #f4fbf7;
  box-shadow: inset 0 0 0 1px rgba(43, 95, 79, .08);
}
.select-card.has-selection::after,
.category-btn.has-selection::after {
  content: attr(data-count) ' selected';
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: .72rem;
  font-weight: 700;
  color: #215646;
  background: #e6f5ee;
  border: 1px solid #bfe3d4;
  border-radius: 999px;
  padding: 4px 8px;
}
.panel-foot {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 4px;
}

.intro-grid,
.section-head,
.contact-grid,
.faq-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
}
.section-head {
  align-items: end;
  margin-bottom: 30px;
}
.section-head.compact { margin-bottom: 22px; }
.intro-copy p { margin-top: 0; }

.price-layout {
  display: grid;
  grid-template-columns: 270px 1fr 330px;
  gap: 20px;
  align-items: start;
}
.category-list,
.price-info,
.estimate-box,
.task-card,
.bundle,
.step,
.gallery-card,
.faq-item,
.lead-form,
.mini-contact,
.thankyou-card {
  padding: 22px;
}
.category-list {
  display: grid;
  gap: 10px;
}
.category-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 18px;
  padding: 16px 14px;
  text-align: left;
  font-weight: 700;
  position: relative;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.category-btn.active {
  border-color: var(--accent);
  background: var(--accent-2);
}
.category-btn.has-selection {
  border-color: #9ec2b6;
  background: #f4fbf7;
}
.category-btn.active.has-selection,
.select-card.active.has-selection {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--accent-2), #f4fbf7);
}
.price-info h3,
.estimate-box h3,
.bundle h3,
.step h3,
.gallery-card h3,
.thankyou-card h1 {
  margin: 0 0 8px;
}
.task-list {
  display: grid;
  gap: 14px;
}
.task-card {
  display: grid;
  grid-template-columns: 1fr 94px;
  gap: 16px;
  align-items: center;
}
.task-main {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: start;
}
.task-main input {
  margin-top: 5px;
  accent-color: var(--accent);
}
.task-main strong {
  display: block;
  margin-bottom: 3px;
}
.task-price {
  display: block;
  font-weight: 700;
}
.task-price em {
  font-style: normal;
  color: var(--muted);
  font-weight: 500;
}
.task-main small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}
.tier-select {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.tier-option {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
  background: #fff;
  transition: border-color .15s ease, background .15s ease;
}
.tier-option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.tier-option span {
  font-size: .82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.tier-option span b {
  color: var(--text);
  font-weight: 700;
}
.tier-option.is-active {
  border-color: var(--accent);
  background: #f3f1eb;
}
.tier-option.is-active span {
  color: var(--text);
}
.tier-option:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
#estimateSep {
  margin: 0 4px;
}
#estimateMax[hidden],
#estimateSep[hidden] {
  display: none;
}
.qty-box {
  display: grid;
  gap: 8px;
}
.qty-box span {
  font-size: .85rem;
  color: var(--muted);
}
.qty-box input,
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.sticky-box {
  position: sticky;
  top: 96px;
}
.estimate-number {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.04em;
  margin-bottom: 14px;
}
.summary-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.summary-item:first-child { border-top: 0; padding-top: 0; }
.summary-item-note {
  background: #f7faf8;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
}
.summary-item-note strong {
  white-space: nowrap;
}
.empty-summary { color: var(--muted); margin: 0; }

.mini-job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.mini-job h3 {
  margin: 0 0 12px;
}
.mini-job ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}
.mini-job li strong {
  color: var(--text);
}

.bundle-grid,
.steps-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.bundle strong {
  display: block;
  margin-top: 14px;
  font-size: 1.24rem;
}
.tag {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent-2);
  color: var(--accent);
  font-weight: 800;
  font-size: .8rem;
  margin-bottom: 12px;
}
.step-no {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #111111;
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}
.gallery-art {
  aspect-ratio: 16/11;
  border-radius: 18px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
}
.art-bath {
  background: linear-gradient(135deg, #dfe7ea, #f7f9fb 55%, #ceded8);
}
.art-tile {
  background:
    linear-gradient(45deg, rgba(255,255,255,.55), rgba(255,255,255,0)),
    linear-gradient(135deg, #d6d8db, #f5f7f8 55%, #c7e0d9);
}
.art-finish {
  background: linear-gradient(135deg, #efe9df, #fdfcf9 55%, #d8e3db);
}
.gallery-art::before,
.gallery-art::after {
  content: '';
  position: absolute;
  inset: auto auto 18px 18px;
  width: 54%;
  height: 12px;
  border-radius: 999px;
  background: rgba(24,24,23,.14);
}
.gallery-art::after {
  inset: auto auto 40px 18px;
  width: 34%;
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { color: var(--muted); margin-bottom: 0; }

.contact-grid {
  align-items: start;
}
.contact-copy p,
.contact-copy li,
.dark-card span,
.dark-card a,
.form-note { color: rgba(255,255,255,.72); }
.contact-points {
  padding-left: 18px;
  margin: 18px 0 22px;
}
.dark-card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
}
.lead-form {
  background: #f8f6f1;
  color: var(--text);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}
.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}
.lead-form textarea {
  resize: vertical;
  margin-bottom: 14px;
}
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  padding: 22px 0 38px;
  background: #111111;
  color: rgba(255,255,255,.72);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.footer-wrap p { margin: 0; }

.thankyou-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: radial-gradient(circle at top, #edf5f2, #f5f4f1 45%);
}
.thankyou-wrap { width: min(100%, 760px); }
.thankyou-logo {
  height: 84px;
  width: auto;
  display: block;
  margin: 0 0 18px;
}
.thankyou-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 22px 0 16px;
}

@media (max-width: 1100px) {
  .price-layout {
    grid-template-columns: 1fr;
  }
  .sticky-box {
    position: static;
  }
}


.hero-notes-four {
  grid-template-columns: repeat(4, 1fr);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: stretch;
}
.about-copy p {
  max-width: 68ch;
  color: var(--muted);
}
.about-card {
  padding: 28px;
}
.about-points {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 12px;
}
.about-points li {
  padding: 14px 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  font-weight: 600;
}
.about-contact {
  padding: 20px;
  display: grid;
  gap: 8px;
  background: #faf9f6;
}
.about-contact strong,
.mini-contact strong {
  font-size: 1.02rem;
}
.about-contact span,
.about-contact a {
  color: var(--muted);
}
.footer-wrap a {
  text-decoration: underline;
  text-underline-offset: 2px;
}


.cleaning-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: stretch;
}
.cleaning-copy p {
  max-width: 68ch;
  color: var(--muted);
}
.cleaning-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cleaning-card {
  padding: 28px;
}
.cleaning-points {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 12px;
}
.cleaning-points li {
  padding: 14px 16px;
  background: #f7fbf9;
  border: 1px solid #d8e9e2;
  border-radius: 16px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .nav-links,
  .nav-cta { display: none; }
  .hero-grid,
  .intro-grid,
  .section-head,
  .contact-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .hero-notes,
  .about-grid,
  .cleaning-grid,
  .mini-job-grid,
  .bundle-grid,
  .steps-grid,
  .gallery-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .brand-logo { height: 54px; }
  .thankyou-logo { height: 70px; }
  .task-card {
    grid-template-columns: 1fr;
  }
  .hero-copy h1 { max-width: none; }
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}


.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  text-decoration: underline;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 60;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  transition: transform .18s ease, box-shadow .18s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  display: block;
}

@media (max-width: 980px) {
  .whatsapp-float {
    right: 16px;
    bottom: 88px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    transition: none;
  }
}


.hero-visual {
  margin: -2px -2px 20px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  background: #e9e6df;
}
.hero-visual-image {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}
.hero-visual-note {
  padding: 12px 14px;
  font-size: .82rem;
  color: var(--muted);
  background: #fbfaf7;
  border-top: 1px solid var(--line);
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.visual-card {
  overflow: hidden;
}
.visual-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #ece8e0;
}
.visual-media img,
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visual-copy {
  padding: 18px 20px 22px;
}
.visual-copy h3 {
  margin: 0 0 10px;
}
.visual-copy p {
  margin: 0;
  color: var(--muted);
}
.gallery-grid-four {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.gallery-photo {
  aspect-ratio: 16/11;
  border-radius: 18px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  background: #ece8e0;
}

.project-folder-card .gallery-photo,
.project-folder-list .gallery-photo {
  display: block;
  padding: 0;
  background: #ece8e0;
}
.project-folder-card .gallery-photo img,
.project-folder-list .gallery-photo img {
  object-fit: cover;
  object-position: center;
  background: #ece8e0;
}
.project-cover-image {
  object-fit: cover;
  background: #ece8e0;
}

@media (max-width: 980px) {
  .visual-grid,
  .gallery-grid-four {
    grid-template-columns: 1fr;
  }
}


.tag-soft {
  background: #f3f1eb;
  color: #625c4f;
}
.project-folder-card {
  display: grid;
  gap: 0;
}
.project-folder-meta {
  display: grid;
  align-content: start;
  gap: 10px;
}
.gallery-link {
  margin-top: 6px;
  width: fit-content;
}
.project-hero {
  padding-top: 110px;
}
.project-hero-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: center;
}
.project-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.project-cover {
  overflow: hidden;
  padding: 0;
  display: block;
  background: #ece8e0;
}
.project-cover-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #ece8e0;
}
.project-gallery-grid {
  column-count: 2;
  column-gap: 10px;
}
.project-shot {
  padding: 0;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  margin: 0 0 10px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  cursor: pointer;
  touch-action: manipulation;
}
.project-shot img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: contain;
  background: #f7f6f2;
}
.project-shot-wide {
  display: block;
  width: 100%;
  margin-bottom: 18px;
  column-span: all;
  -webkit-column-span: all;
}
.project-shot-wide img {
  height: auto;
}

.project-gallery-grid.two-up {
  column-count: 2;
  column-gap: 18px;
  display: block;
}
.project-gallery-grid.two-up .project-shot {
  padding: 0;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}
.project-gallery-grid.two-up .project-shot-wide {
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  column-span: initial;
  -webkit-column-span: initial;
}
.project-shot figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: .94rem;
}

.project-group {
  margin-top: 40px;
}
.project-group:first-of-type {
  margin-top: 0;
}
.project-group-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin: 0 0 18px;
}
.project-group-head h3 {
  margin: 4px 0 0;
}
.project-group-head p {
  margin: 0;
  color: var(--muted);
  max-width: 68ch;
}
@media (max-width: 980px) {
  .project-hero-grid {
    grid-template-columns: 1fr;
  }
  .project-gallery-grid {
    column-count: 2;
  }
  .project-gallery-grid.two-up {
    column-count: 2;
  }
  .project-group-head {
    display: block;
  }
  .project-group-head p {
    margin-top: 10px;
  }
}

.project-folder-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.project-folder-card-large {
  display: grid;
  align-content: start;
}
.gallery-photo-tall {
  aspect-ratio: 4 / 5;
}
.folder-placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f6f4ee 0%, #ece8df 100%);
  padding: 18px;
}
.folder-placeholder-copy {
  text-align: center;
  display: grid;
  gap: 10px;
  color: var(--text);
}
.folder-placeholder-copy p {
  margin: 0;
  color: var(--muted);
}
@media (max-width: 980px) {
  .project-folder-list {
    grid-template-columns: 1fr;
  }
  .project-gallery-grid.two-up {
    column-count: 1;
  }
}


.project-cover-image.portrait-cover {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}


.price-guide-head {
  align-items: start;
}

.price-guide-side {
  display: grid;
  gap: 16px;
}

.service-search-wrap {
  position: relative;
  display: grid;
  gap: 8px;
}

.service-search-label {
  font-weight: 700;
}

.service-search-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

#serviceSearch {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.service-search-clear {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  border-radius: 999px;
  padding: 12px 14px;
  font-weight: 700;
}

.service-search-help {
  color: var(--muted);
  font-size: .94rem;
}

.service-search-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 30;
  padding: 8px;
  display: grid;
  gap: 6px;
  max-height: 320px;
  overflow: auto;
}

.service-search-results[hidden] {
  display: none !important;
}

.service-result {
  width: 100%;
  text-align: left;
  border: 1px solid transparent;
  background: #fff;
  border-radius: 16px;
  padding: 12px 14px;
  display: grid;
  gap: 3px;
}

.service-result:hover,
.service-result:focus-visible {
  border-color: #9ec2b6;
  background: #f4fbf7;
  outline: none;
}

.service-result strong {
  font-size: .98rem;
}

.service-result span {
  color: var(--muted);
  font-size: .88rem;
}

.task-card.is-highlighted {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31,79,70,.14), var(--shadow);
  transform: translateY(-1px);
}

.service-area-head {
  align-items: start;
}

.service-area-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 20px;
  align-items: stretch;
}

.service-area-copy,
.service-area-map {
  padding: 24px;
}

.service-area-copy h3 {
  margin: 0 0 14px;
}

.service-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f6fbf8;
  border: 1px solid #d6ebe6;
  color: #205447;
  font-weight: 700;
}

.service-area-note {
  color: var(--muted);
  margin: 0;
}

.map-frame {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f7f5f0;
}

.map-frame svg {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 980px) {
  .service-area-layout,
  .price-guide-head {
    grid-template-columns: 1fr;
  }
  .service-search-box {
    grid-template-columns: 1fr;
  }
}


.service-area-layout.single-column {
  grid-template-columns: 1fr;
}

.service-area-copy.full-width {
  max-width: none;
}

.service-area-copy.full-width p {
  max-width: 1000px;
}


.thumbtack-widget-shell {
  padding: 28px;
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

#tt-review-widget-star {
  display: grid;
  gap: 14px;
  justify-items: start;
}

#tt-review-widget-star .tt-logo {
  width: 140px;
  height: auto;
}

#tt-review-widget-star > a {
  font-size: 1.06rem;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
}

#tt-review-widget-star > a:hover {
  color: var(--accent);
}

#tt-dynamic {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

#tt-dynamic img {
  width: 18px;
  height: 18px;
}

#tt-dynamic span {
  font-weight: 700;
  color: var(--muted);
}

.thumbtack-note {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 640px) {
  .thumbtack-widget-shell {
    padding: 22px 18px;
  }
}


/* ===== Compact spacing pass ===== */
body {
  line-height: 1.45;
}

.section {
  padding: 56px 0;
}

.nav-wrap {
  min-height: 72px;
}

.brand-logo {
  height: 62px;
}

.hero.section {
  padding: 42px 0 30px;
}

.hero-grid {
  gap: 20px;
  align-items: start;
}

.hero-copy h1 {
  font-size: clamp(2.55rem, 4.4vw, 4.55rem);
  max-width: 10.5ch;
}

.hero-lead {
  margin: 16px 0 20px;
  font-size: 1rem;
  max-width: 58ch;
}

.hero-actions {
  margin-bottom: 18px;
  gap: 12px;
}

.hero-notes {
  gap: 10px;
}

.note-card {
  padding: 15px;
  border-radius: 18px;
}

.hero-panel {
  padding: 20px;
}

.hero-visual {
  margin: -2px -2px 12px;
  border-radius: 20px;
}

.hero-visual-image {
  aspect-ratio: 16 / 9;
}

.hero-visual-note {
  padding: 10px 12px;
}

.panel-label {
  margin: 0 0 12px;
}

.category-grid,
.category-list,
.task-list,
.faq-list,
.about-points,
.cleaning-points {
  gap: 10px;
}

.select-card,
.category-btn {
  padding: 14px 15px;
  border-radius: 16px;
}

.select-card.has-selection::after,
.category-btn.has-selection::after {
  top: 10px;
  right: 10px;
}

.panel-foot {
  margin-top: 12px;
  padding-top: 12px;
}

.intro-grid,
.section-head,
.contact-grid,
.faq-layout,
.about-grid,
.cleaning-grid,
.project-hero-grid,
.price-guide-head {
  gap: 20px;
}

.section-head {
  margin-bottom: 22px;
  align-items: start;
}

.section-head.compact {
  margin-bottom: 18px;
}

.price-layout {
  grid-template-columns: 250px 1fr 315px;
  gap: 16px;
}

.category-list,
.price-info,
.estimate-box,
.task-card,
.bundle,
.step,
.gallery-card,
.faq-item,
.lead-form,
.mini-contact,
.thankyou-card,
.about-card,
.about-contact,
.cleaning-card,
.service-area-copy,
.thumbtack-widget-shell {
  padding: 18px;
}

.price-info p,
.bundle p,
.step p,
.gallery-card p,
.thumbtack-note,
.about-copy p,
.contact-copy p,
.intro-copy p,
.service-area-copy p {
  margin: 0;
}

.about-copy,
.intro-copy,
.contact-copy,
.cleaning-copy,
.service-area-copy.full-width {
  display: grid;
  gap: 12px;
}

.task-card {
  grid-template-columns: 1fr 84px;
  gap: 14px;
}

.task-main {
  gap: 12px;
}

.task-main strong {
  margin-bottom: 2px;
}

.task-main small {
  margin-top: 6px;
}

.qty-box {
  gap: 6px;
}

.estimate-number {
  margin-bottom: 10px;
}

.summary-list {
  gap: 8px;
  margin: 14px 0 18px;
}

.summary-item {
  padding: 10px 0;
}

.summary-item-note {
  padding: 10px 12px;
}

.mini-job-grid,
.bundle-grid,
.steps-grid,
.gallery-grid,
.visual-grid,
.project-folder-list {
  gap: 14px;
}

.mini-job h3,
.visual-copy h3,
.project-group-head h3 {
  margin-bottom: 8px;
}

.mini-job ul {
  gap: 6px;
}

.tag,
.service-pill {
  padding: 8px 12px;
}

.tag {
  margin-bottom: 10px;
}

.bundle strong {
  margin-top: 10px;
}

.step-no {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}

.gallery-photo,
.gallery-art {
  margin-bottom: 12px;
}

.visual-copy {
  padding: 14px 16px 18px;
}

.project-folder-meta {
  gap: 8px;
}

.project-hero {
  padding-top: 92px;
}

.project-actions {
  margin-top: 16px;
}

.project-gallery-grid,
.project-gallery-grid.two-up {
  column-gap: 14px;
}

.project-shot,
.project-gallery-grid.two-up .project-shot,
.project-gallery-grid.two-up .project-shot-wide,
.project-shot-wide {
  margin-bottom: 14px;
}

.project-shot figcaption {
  padding: 10px 12px 12px;
}

.project-group {
  margin-top: 28px;
}

.project-group-head {
  margin: 0 0 12px;
}

.contact-points {
  margin: 14px 0 18px;
}

.form-grid {
  gap: 12px;
  margin-bottom: 12px;
}

.lead-form textarea {
  margin-bottom: 12px;
}

.service-pill-grid {
  gap: 8px;
  margin-bottom: 14px;
}

.site-footer {
  padding: 16px 0 24px;
}

@media (max-width: 980px) {
  .hero.section {
    padding: 34px 0 24px;
  }

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

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

@media (max-width: 640px) {
  .section {
    padding: 42px 0;
  }

  .hero.section {
    padding: 28px 0 18px;
  }

  .brand-logo {
    height: 52px;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .hero-notes-four {
    grid-template-columns: 1fr;
  }
}


/* ===== Launch polish pass ===== */
.hero {
  position: relative;
  overflow: clip;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(214,235,230,.55), transparent 42%),
    radial-gradient(circle at bottom right, rgba(31,79,70,.08), transparent 38%);
  pointer-events: none;
}
.hero > .container {
  position: relative;
  z-index: 1;
}

.site-header .nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
}

.hero-copy h1 {
  max-width: 9.8ch;
}

.hero-panel {
  box-shadow: 0 14px 36px rgba(0,0,0,.07);
}

.visual-media,
.gallery-photo,
.project-cover,
.project-shot,
.hero-visual {
  background: #f3f1eb;
}

.review-highlight {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  padding: 22px;
}
.review-highlight-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.review-rating {
  font-weight: 800;
  letter-spacing: .01em;
}
.review-rating span,
.review-count {
  color: var(--muted);
  font-weight: 700;
}
.review-highlight blockquote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
}
.review-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.service-area-copy.full-width p {
  max-width: 78ch;
}

.section {
  padding: 46px 0;
}
.hero.section {
  padding: 30px 0 22px;
}
.category-list,
.price-info,
.estimate-box,
.task-card,
.bundle,
.step,
.gallery-card,
.faq-item,
.lead-form,
.mini-contact,
.thankyou-card,
.about-card,
.about-contact,
.cleaning-card,
.service-area-copy,
.thumbtack-widget-shell,
.review-highlight {
  padding: 16px;
}
.note-card {
  padding: 14px;
}
.service-pill {
  padding: 7px 11px;
  font-size: .92rem;
}
.visual-copy {
  padding: 12px 14px 16px;
}
.project-hero {
  padding-top: 78px;
}
.site-footer {
  padding-bottom: 90px;
}

.mobile-estimate-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 45;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  background: rgba(245,244,241,.94);
  border: 1px solid rgba(24,24,23,.08);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,.14);
  backdrop-filter: blur(12px);
}
.mobile-estimate-bar .btn {
  padding: 12px 14px;
}


.mobile-estimate-bar.mobile-estimate-bar-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}


@media (max-width: 980px) {
  .site-header .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-wrap {
    flex-wrap: wrap;
    padding: 10px 0;
    gap: 12px;
  }

  .nav-links {
    display: none;
    width: 100%;
    order: 4;
    padding: 14px;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .site-header.menu-open .nav-links {
    display: grid;
  }

  .nav-cta {
    display: inline-flex !important;
    margin-left: auto;
  }

  .hero.section {
    padding: 24px 0 18px;
  }

  .section {
    padding: 38px 0;
  }
}

@media (max-width: 720px) {
  .nav-cta {
    display: none !important;
  }

  .mobile-estimate-bar {
    display: grid;
  }

  #contact {
    padding-bottom: 120px;
    scroll-margin-top: 84px;
  }

  .lead-form {
    scroll-margin-top: 84px;
  }

  .hero-grid,
  .intro-grid,
  .section-head,
  .contact-grid,
  .faq-layout,
  .about-grid,
  .cleaning-grid,
  .price-guide-head {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    max-width: 11ch;
  }

  .hero-actions,
  .review-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .review-actions .btn {
    width: 100%;
  }

  .hero-panel {
    padding: 16px;
  }
}


/* ===== Hero photo proportion fix ===== */
.hero-panel {
  align-self: start;
}

.hero-visual-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

@media (min-width: 981px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  }

  .hero-panel {
    max-width: 640px;
    justify-self: end;
  }
}

@media (max-width: 980px) {
  .hero-panel {
    max-width: none;
    justify-self: stretch;
  }
}


/* ===== Hero premium v3 ===== */
.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(2.65rem, 5vw, 4.9rem);
}
.hero-lead {
  max-width: 58ch;
  margin-bottom: 16px;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}
.hero-point {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(24,24,23,.08);
  background: rgba(255,255,255,.88);
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(0,0,0,.04);
}
.hero-point-actions {
  gap: 10px;
}
.hero-point-link {
  color: inherit;
  text-decoration: none;
  font: inherit;
}
.hero-point-link:hover,
.hero-point-link:focus-visible {
  text-decoration: underline;
}
.hero-point-sep {
  opacity: .75;
}
.hero-notes-four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.hero-panel {
  padding: 18px;
}
.hero-visual-premium {
  position: relative;
  margin: -2px -2px 18px;
  border-radius: 26px;
  overflow: hidden;
  min-height: 0;
}
.hero-visual-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.02) 12%, rgba(10,10,10,.10) 54%, rgba(10,10,10,.52) 100%);
  pointer-events: none;
}
.hero-visual-premium .hero-visual-image {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}
.hero-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  gap: 10px;
}
.hero-badge {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #17352f;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .01em;
}
.hero-overlay-copy {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(17,24,39,.52);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  color: #fff;
}
.hero-overlay-copy strong {
  font-size: 1rem;
  line-height: 1.3;
}
.hero-overlay-copy span {
  color: rgba(255,255,255,.86);
  line-height: 1.45;
}
@media (min-width: 981px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr);
    gap: 30px;
    align-items: start;
  }
  .hero.section {
    padding: 34px 0 24px;
  }
  .hero-panel {
    max-width: 650px;
  }
}
@media (max-width: 980px) {
  .hero-visual-premium .hero-visual-image {
    aspect-ratio: 16 / 11;
  }
}
@media (max-width: 720px) {
  .hero-copy h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
    max-width: 12ch;
  }
  .hero-points {
    gap: 8px;
    margin-bottom: 18px;
  }
  .hero-point {
    width: 100%;
    justify-content: center;
  }
  .hero-point-actions {
    justify-content: center;
  }
  .hero-notes-four {
    grid-template-columns: 1fr;
  }
  .hero-overlay {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .hero-overlay-copy {
    padding: 12px 14px;
  }
}



/* === Home hero refresh === */
.hero-home {
  position: relative;
  overflow: hidden;
  min-height: min(86vh, 860px);
  padding: 0;
  display: flex;
  align-items: flex-end;
  background: #101514;
}
.hero-home-media,
.hero-home-shade {
  position: absolute;
  inset: 0;
}
.hero-home-media {
  background-image: url("projects/homepage/hero-home-bathroom-new.webp");
  background-size: cover;
  background-position: center center;
  transform: scale(1.02);
}
.hero-home-shade {
  background:
    linear-gradient(180deg, rgba(10,14,14,.18) 0%, rgba(10,14,14,.34) 34%, rgba(10,14,14,.72) 100%),
    linear-gradient(90deg, rgba(7,9,9,.46) 0%, rgba(7,9,9,.18) 45%, rgba(7,9,9,.5) 100%);
}
.hero-home-shell {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), var(--container));
  padding: 120px 0 40px;
}
.hero-home-card {
  max-width: 760px;
}
.hero-home .eyebrow.light {
  color: rgba(255,255,255,.84);
}
.hero-home h1 {
  margin: 0;
  color: #fff;
  line-height: .98;
  letter-spacing: 0;
  font-size: clamp(2.9rem, 5.6vw, 5.4rem);
  max-width: 12.5ch;
}
.hero-lead-light {
  color: rgba(255,255,255,.82);
  max-width: 62ch;
  font-size: 1.08rem;
}
.hero-home .hero-point {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.22);
  color: #fff;
  backdrop-filter: blur(7px);
  box-shadow: none;
}
.hero-btn-light {
  border-color: rgba(255,255,255,.34);
  color: #fff;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}
.hero-home-bottom {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.hero-stat-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}
.hero-stat-card strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.3;
  margin-bottom: 6px;
}
.hero-stat-card span {
  color: rgba(255,255,255,.78);
  font-size: .94rem;
  line-height: 1.45;
}
.hero-selection-strip {
  padding-top: 28px;
  padding-bottom: 40px;
  margin-top: -10px;
}
.trust-strip {
  padding: 28px 0 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}
.trust-grid div {
  padding: 22px;
  border-right: 1px solid var(--line);
}
.trust-grid div:last-child {
  border-right: 0;
}
.trust-grid strong,
.trust-grid span {
  display: block;
}
.trust-grid strong {
  margin-bottom: 5px;
  font-size: 1.02rem;
}
.trust-grid span {
  color: var(--muted);
  font-size: .94rem;
}
.trust-grid strong.trust-rating-secondary {
  margin-top: 12px;
}
.hero-strip {
  display: grid;
  gap: 22px;
  padding: 26px;
}
.hero-strip-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.hero-strip-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 72ch;
}
.hero-category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.project-folder-grid {
  align-items: stretch;
}
.project-folder-card .gallery-photo {
  aspect-ratio: 16 / 10;
}
.project-folder-meta .tag {
  width: fit-content;
}

@media (max-width: 980px) {
  .hero-home {
    min-height: auto;
  }
  .hero-home-shell {
    padding: 110px 0 30px;
  }
  .hero-home h1 {
    max-width: 11ch;
  }
  .hero-home-bottom,
  .hero-category-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-grid div:nth-child(2) {
    border-right: 0;
  }
  .trust-grid div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .hero-home-shell {
    padding: 96px 0 22px;
  }
  .hero-home h1 {
    font-size: clamp(2.2rem, 11vw, 3.25rem);
    max-width: 12ch;
  }
  .hero-home-bottom,
  .hero-category-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .trust-grid div:last-child {
    border-bottom: 0;
  }
  .hero-strip {
    padding: 20px;
  }
}


/* === Work Time-inspired visual direction, adapted for K&V === */


body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Avenir Next", Avenir, "Segoe UI", sans-serif;
  line-height: 1.55;
}

h1,
h2,
h3,
.hero-home h1,
.hero-strip-copy h2,
.section-head h2,
.intro-grid h2,
.faq-layout h2,
.contact-copy h2,
.estimate-number {
  font-family: "Avenir Next", Inter, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

h2 {
  text-wrap: balance;
}

.section {
  padding: 70px 0;
}

.muted {
  background: var(--surface-2);
}

.card {
  border-color: var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.btn {
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  letter-spacing: 0;
}

.btn-dark {
  background: var(--cta);
  color: #fff;
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: var(--cta-hover);
}

.btn-light {
  background: transparent;
  border-color: currentColor;
}

.btn:focus-visible,
.nav-links a:focus-visible,
.nav-phone:focus-visible,
.select-card:focus-visible,
.category-btn:focus-visible,
.service-search-clear:focus-visible {
  outline: 3px solid rgba(38, 40, 37, .28);
  outline-offset: 3px;
}

.eyebrow,
.tag {
  color: #4d514d;
  letter-spacing: 0;
}

.site-header {
  background: rgba(14, 14, 12, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 76px;
  gap: 22px;
}

.brand-logo {
  height: 54px;
  filter: invert(1) brightness(1.4);
}

.nav-links {
  gap: 22px;
  margin-left: auto;
  color: rgba(255, 255, 255, .74);
  font-size: .94rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: #fff;
}

.nav-phone {
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.nav-cta {
  white-space: nowrap;
  min-height: 44px;
  padding: 11px 19px;
  border-color: #fff;
  background: #fff;
  color: var(--dark);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: #e4e5e2;
  background: #e4e5e2;
}

.site-header .nav-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border-color: rgba(255, 255, 255, .26);
  background: transparent;
  color: transparent;
  font-size: 0;
}

.site-header .nav-toggle::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 20px;
  width: 18px;
  height: 2px;
  background: #fff;
  box-shadow: 0 -6px 0 #fff, 0 6px 0 #fff;
}

.hero::before {
  display: none;
}

.hero-home {
  min-height: min(74vh, 700px);
  background: var(--dark);
}

.hero-home-media {
  background-position: center center;
  transform: none;
}

.hero-home-shade {
  background: rgba(8, 8, 7, .64);
}

.hero-home-shell {
  padding: 72px 0 28px;
}

.hero-home-card {
  max-width: 800px;
}

.hero-home .eyebrow.light {
  margin-bottom: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .09);
  color: #fff;
  font-size: .76rem;
}

.hero-home h1 {
  max-width: 19ch;
  font-size: clamp(3.1rem, 5vw, 4.9rem);
  line-height: .98;
  font-weight: 750;
}

.hero-home h1 span {
  display: block;
  color: #fff;
}

.hero-lead-light {
  max-width: 62ch;
  margin: 24px 0 28px;
  color: rgba(255, 255, 255, .82);
  font-size: 1.1rem;
}

.hero-home .hero-points {
  gap: 18px;
  margin-bottom: 28px;
}

.hero-home .hero-point {
  min-height: 0;
  padding: 2px 0 2px 12px;
  border: 0;
  border-left: 3px solid rgba(255, 255, 255, .42);
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  font-size: .92rem;
}

.hero-home .hero-actions {
  margin-bottom: 0;
}

.hero-home .hero-actions .btn {
  min-width: 205px;
}

.hero-home .btn-dark {
  border-color: #fff;
  background: #fff;
  color: var(--dark);
}

.hero-home .btn-dark:hover,
.hero-home .btn-dark:focus-visible {
  border-color: #e4e5e2;
  background: #e4e5e2;
}

.hero-btn-light {
  border-color: rgba(255, 255, 255, .58);
  background: transparent;
  color: #fff;
  backdrop-filter: none;
}

.hero-home-bottom {
  gap: 0;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.hero-stat-card {
  padding: 3px 20px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, .18);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-stat-card:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-stat-card strong {
  color: #fff;
}

.trust-strip {
  padding: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.trust-grid.card {
  width: min(100%, var(--container));
  border: 0;
  border-radius: 0;
  background: transparent;
}

.trust-grid div {
  padding: 25px 22px;
}

.trust-grid strong {
  font-size: .98rem;
}

.hero-selection-strip {
  margin: 0;
  padding: 72px 0;
  background: var(--surface-2);
}

.hero-strip.card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.hero-strip-copy {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: end;
}

.hero-strip-copy .panel-label {
  grid-column: 1 / -1;
  margin: 0;
  color: #555955;
  text-transform: uppercase;
  font-size: .76rem;
}

.hero-strip-copy h2 {
  margin: 0;
  max-width: 15ch;
  font-size: clamp(2.25rem, 3.6vw, 3.7rem);
}

.hero-strip-copy p {
  max-width: 58ch;
  font-size: 1.04rem;
}

.hero-category-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.select-card {
  min-height: 178px;
  padding: 20px 18px;
  border-radius: var(--radius);
  background: #fff;
}

.select-card span {
  font-size: 1.08rem;
}

.select-card:hover {
  border-color: var(--accent);
  box-shadow: inset 0 4px 0 var(--cta);
  transform: translateY(-2px);
}

.select-card.active,
.select-card.has-selection,
.select-card.active.has-selection {
  border-color: var(--accent);
  background: var(--accent-2);
  box-shadow: inset 0 4px 0 var(--cta);
}

.panel-foot {
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: baseline;
}

#project-gallery {
  background: var(--dark);
  color: #fff;
}

#project-gallery .section-head p,
#project-gallery .gallery-card p {
  color: rgba(255, 255, 255, .68);
}

#project-gallery .eyebrow {
  color: #c7cac6;
}

#project-gallery .project-folder-card {
  padding: 0;
  overflow: hidden;
  border-color: rgba(255, 255, 255, .14);
  background: #191917;
  color: #fff;
}

#project-gallery .project-folder-card .gallery-photo {
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  border-radius: 0;
}

#project-gallery .project-folder-meta {
  padding: 20px;
}

#project-gallery .tag {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

#project-gallery .gallery-link {
  color: #fff;
  border-color: rgba(255, 255, 255, .46);
}

#reviews {
  background: #fff;
}

.review-highlight {
  max-width: 900px;
  padding: 28px;
  border-left: 5px solid var(--cta);
  background: #fff;
}

.review-rating {
  color: #343634;
}

.review-rating span {
  color: var(--text);
}

#about {
  background: var(--surface-2);
}

.about-card {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.about-card .eyebrow {
  color: #c7cac6;
}

.about-points li {
  padding: 13px 0 13px 22px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  border-radius: 0;
  background: transparent;
  position: relative;
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c7cac6;
}

.about-contact.card {
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-radius: 0;
  background: transparent;
}

.about-contact span,
.about-contact a {
  color: rgba(255, 255, 255, .7);
}

#service-visuals {
  background: #fff;
}

.visual-card,
.gallery-card,
.bundle,
.step,
.mini-job,
.faq-item,
.task-card,
.price-info,
.estimate-box,
.category-list,
.service-area-copy,
.lead-form {
  border-radius: var(--radius);
}

.visual-card {
  box-shadow: var(--shadow);
}

.visual-media,
.gallery-photo {
  border-radius: 0;
}

#why-this-site {
  background: var(--dark);
  color: #fff;
}

#why-this-site .eyebrow {
  color: #c7cac6;
}

#why-this-site .intro-copy p,
#why-this-site .subtle {
  color: rgba(255, 255, 255, .7);
}

#price-guide {
  background: #fafaf8;
}

.category-btn {
  border-radius: var(--radius);
}

.category-btn.active,
.category-btn.has-selection,
.category-btn.active.has-selection {
  border-color: var(--accent);
  background: var(--accent-2);
}

.task-main input {
  accent-color: var(--cta);
}

.task-card.is-highlighted {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(38, 40, 37, .13);
}

#popular-small-jobs {
  background: #fff;
}

#popular-small-jobs .mini-job {
  background: #fbfaf7;
}

#bundles {
  background: var(--surface-2);
}

#bundles .bundle strong {
  color: #3f433f;
}

#how-it-works {
  background: var(--dark);
  color: #fff;
}

#how-it-works .eyebrow {
  color: #c7cac6;
}

#how-it-works .step {
  border-color: rgba(255, 255, 255, .14);
  background: #191917;
  color: #fff;
}

#how-it-works .step p {
  color: rgba(255, 255, 255, .68);
}

#how-it-works .step-no {
  border-radius: 50%;
  background: #eff0ee;
  color: var(--dark);
}

#faq {
  background: #fff;
}

.faq-item summary {
  position: relative;
  padding-right: 30px;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -3px;
  color: var(--cta);
  font-size: 1.4rem;
}

.faq-item[open] summary::after {
  content: "-";
}

#service-area {
  background: var(--surface-2);
}

.service-pill {
  border-color: #d5d8d4;
  border-radius: 999px;
  background: #f4f5f3;
  color: #3f4945;
}

.dark-section,
#contact {
  background: var(--dark);
}

#contact .eyebrow.light {
  color: #c7cac6;
}

.lead-form {
  background: #f7f5ef;
}

.lead-form input,
.lead-form select,
.lead-form textarea,
#serviceSearch {
  border-radius: var(--radius);
}

.mini-contact.card {
  border-radius: var(--radius);
}

.site-footer {
  background: #080807;
}

.mobile-estimate-bar {
  border-color: rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(14, 14, 12, .96);
}

.mobile-estimate-bar .btn-dark {
  border-color: #fff;
  background: #fff;
  color: var(--dark);
}

.mobile-estimate-bar .btn-dark:hover,
.mobile-estimate-bar .btn-dark:focus-visible {
  border-color: #e4e5e2;
  background: #e4e5e2;
}

.mobile-estimate-bar .btn-light {
  color: #fff;
  border-color: rgba(255, 255, 255, .42);
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 16px;
  }

  .nav-phone {
    display: none;
  }

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

@media (max-width: 980px) {
  .nav-links {
    background: #171715;
    border-color: rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
  }

  .hero-home {
    min-height: auto;
  }

  .hero-home-shell {
    padding: 82px 0 32px;
  }

  .hero-strip-copy {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-strip-copy .panel-label {
    grid-column: auto;
  }

  .hero-strip-copy h2 {
    max-width: 18ch;
  }

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

@media (max-width: 720px) {
  .section,
  .hero-selection-strip {
    padding: 48px 0;
  }

  .nav-wrap {
    min-height: 66px;
  }

  .brand-logo {
    height: 46px;
  }

  .hero-home-shell {
    padding: 62px 0 28px;
  }

  .hero-home .eyebrow.light {
    margin-bottom: 16px;
  }

  .hero-home h1 {
    max-width: 12ch;
    font-size: clamp(2.35rem, 11.5vw, 3.5rem);
  }

  .hero-lead-light {
    margin: 20px 0 22px;
    font-size: 1rem;
  }

  .hero-home .hero-points {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
  }

  .hero-home .hero-point {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-home .hero-actions .btn {
    min-width: 0;
  }

  .hero-home .hero-actions {
    gap: 10px;
  }

  .hero-home-bottom {
    display: none;
  }

  .trust-grid,
  .hero-category-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div,
  .trust-grid div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid div:last-child {
    border-bottom: 0;
  }

  .select-card {
    min-height: 0;
  }

  .panel-foot {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .review-highlight {
    padding: 22px 18px;
  }
}


/* === Organized project galleries and photo viewer === */
.project-gallery-grid,
.project-gallery-grid.two-up {
  display: block;
  column-count: 3;
  column-gap: 14px;
}

.project-gallery-grid.two-up {
  column-count: 2;
}

.project-gallery-grid .project-shot,
.project-gallery-grid.two-up .project-shot,
.project-gallery-grid.two-up .project-shot-wide,
.project-gallery-grid .project-shot-wide {
  position: relative;
  display: inline-block;
  width: 100%;
  aspect-ratio: auto;
  margin: 0 0 14px;
  padding: 0;
  overflow: hidden;
  break-inside: avoid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #171715;
}

.project-gallery-grid .project-shot-wide {
  display: block;
  column-span: all;
  aspect-ratio: auto;
}

.project-gallery-grid .project-shot img,
.project-gallery-grid.two-up .project-shot img,
.project-gallery-grid .project-shot-wide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #ece9e2;
  transition: opacity .24s ease;
}

.project-gallery-grid[data-gallery-ready="true"] .project-shot {
  cursor: zoom-in;
}

.project-gallery-grid[data-gallery-ready="true"] .project-shot:hover img {
  opacity: .84;
}

.project-gallery-grid[data-gallery-ready="true"] .project-shot:focus-visible {
  outline: 3px solid var(--cta);
  outline-offset: 3px;
}

.gallery-is-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

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

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(5, 5, 4, .96);
  color: #fff;
}
body.gallery-is-open .site-header {
  visibility: hidden;
}
body.gallery-is-open .mobile-estimate-bar {
  display: none;
}

.gallery-lightbox-dialog {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  width: min(100%, 1320px);
  height: min(calc(100dvh - 40px), 920px);
  min-height: 0;
}

.gallery-lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  padding: 42px 76px 12px;
  touch-action: pan-y;
  overflow: hidden;
}

.gallery-lightbox-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--lightbox-bg-image, none);
  background-size: cover;
  background-position: center;
  filter: blur(60px) saturate(1.15) brightness(.5);
  transform: scale(1.2);
  opacity: 0;
  transition: opacity .25s ease;
  /* Decorative blurred backdrop -- keep it out of hit-testing too. */
  pointer-events: none;
}

.gallery-lightbox-stage.is-loaded::after {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-lightbox-stage::after {
    transition: none;
  }
}

.gallery-lightbox-stage::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border: 2px solid rgba(255, 255, 255, .24);
  border-top-color: #fff;
  border-radius: 50%;
  animation: gallery-spinner .72s linear infinite;
  transition: opacity .16s ease;
  /* Purely decorative loading spinner -- without this, the invisible
     (opacity:0) circle still sits exactly over the video's centered
     native play button after loading and swallows clicks, so playback
     only started after several mis-clicks around it. */
  pointer-events: none;
}

.gallery-lightbox-stage.is-loaded::before {
  opacity: 0;
  animation: none;
}

.gallery-lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
  opacity: 0;
  transition: opacity .18s ease;
  user-select: none;
  touch-action: manipulation;
}

.gallery-lightbox-stage.is-loaded .gallery-lightbox-image {
  opacity: 1;
}

@keyframes gallery-spinner {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-lightbox-stage::before {
    animation: none;
  }

  .gallery-lightbox-image {
    transition: none;
  }
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  position: absolute;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 50%;
  background: rgba(20, 20, 18, .82);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover,
.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:focus-visible {
  border-color: #fff;
  background: #fff;
  color: var(--dark);
  outline: none;
  transform: scale(1.04);
}

.gallery-lightbox-close {
  top: 0;
  right: 0;
}

.gallery-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus-visible {
  transform: translateY(-50%) scale(1.04);
}

.gallery-lightbox-prev {
  left: 10px;
}

.gallery-lightbox-next {
  right: 10px;
}

.gallery-lightbox-info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
  padding: 12px 76px 10px;
}

.gallery-lightbox-caption {
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: .95rem;
}

.gallery-lightbox-counter {
  flex: 0 0 auto;
  color: #fff;
  font-weight: 800;
}

.gallery-lightbox-thumbs {
  display: flex;
  gap: 8px;
  min-width: 0;
  padding: 8px 76px 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.gallery-lightbox-thumb {
  flex: 0 0 78px;
  width: 78px;
  height: 56px;
  padding: 2px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 4px;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
  touch-action: manipulation;
}

.gallery-lightbox-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  object-fit: cover;
  opacity: .62;
}

.gallery-lightbox-thumb:hover,
.gallery-lightbox-thumb:focus-visible,
.gallery-lightbox-thumb.is-active {
  border-color: #fff;
  outline: none;
}

.gallery-lightbox-thumb:hover img,
.gallery-lightbox-thumb:focus-visible img,
.gallery-lightbox-thumb.is-active img {
  opacity: 1;
}

@media (max-width: 980px) {
  .project-gallery-grid,
  .project-gallery-grid.two-up {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  .project-gallery-grid,
  .project-gallery-grid.two-up {
    column-count: 2;
    column-gap: 8px;
  }

  .project-gallery-grid .project-shot-wide,
  .project-gallery-grid.two-up .project-shot-wide {
    column-span: none;
    aspect-ratio: auto;
  }

  .gallery-lightbox {
    padding: 0;
  }

  .gallery-lightbox-dialog {
    display: block;
    position: relative;
    width: 100%;
    height: 100dvh;
  }

  /* Immersive full-bleed viewer on phones: the stage (photo + blurred
     backdrop) fills the whole screen instead of sharing it with separate
     info/thumbnail rows, so the photo experience reads as truly full-screen
     (~95%+ of the viewport) instead of a small centered box. */
  .gallery-lightbox-stage {
    position: absolute;
    inset: 0;
    padding: 18px 10px 10px;
  }

  .gallery-lightbox-close {
    top: 10px;
    right: 10px;
  }

  .gallery-lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .gallery-lightbox-prev {
    left: 10px;
  }

  .gallery-lightbox-next {
    right: 10px;
  }

  .gallery-lightbox-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 10px 16px calc(8px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(to top, rgba(0, 0, 0, .68), rgba(0, 0, 0, 0));
  }

  .gallery-lightbox-caption {
    max-width: 100%;
    font-size: .87rem;
  }

  .gallery-lightbox-thumbs {
    display: none;
  }
}

/* Fullscreen lightbox on landscape phones too. The breakpoint above is
   width-based, so a rotated phone (width grows past 640px, height shrinks
   instead) misses it and falls back to the padded desktop dialog, which
   left gaps at the edges showing the page behind it. */
@media (max-height: 500px) and (orientation: landscape) {
  .gallery-lightbox {
    padding: 0;
  }

  .gallery-lightbox-dialog {
    display: block;
    position: relative;
    width: 100%;
    height: 100dvh;
  }

  .gallery-lightbox-stage {
    position: absolute;
    inset: 0;
    padding: 10px 54px;
  }

  .gallery-lightbox-close {
    top: 10px;
    right: 10px;
  }

  .gallery-lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .gallery-lightbox-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 6px 58px calc(6px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(to top, rgba(0, 0, 0, .68), rgba(0, 0, 0, 0));
  }

  .gallery-lightbox-caption {
    max-width: calc(100% - 58px);
    font-size: .87rem;
  }

  .gallery-lightbox-thumbs {
    display: none;
  }
}


/* === iOS 27-inspired functional glass layer === */


html {
  background: var(--bg);
}

body {
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", Inter, "Segoe UI", sans-serif;
}

h1,
h2,
h3,
.hero-home h1,
.hero-strip-copy h2,
.section-head h2,
.intro-grid h2,
.faq-layout h2,
.contact-copy h2,
.estimate-number {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.site-header {
  top: 0;
  padding: 10px 12px 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.site-header .nav-wrap {
  width: min(100%, var(--container));
  min-height: 64px;
  padding: 7px 15px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 28px;
  background: rgba(22, 23, 22, .68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .18),
    0 12px 32px rgba(0, 0, 0, .16);
  -webkit-backdrop-filter: blur(24px) saturate(1.35);
  backdrop-filter: blur(24px) saturate(1.35);
}

.brand-logo {
  height: 48px;
}

.nav-links {
  color: rgba(255, 255, 255, .78);
}

.nav-cta,
.hero-home .btn-dark,
.mobile-estimate-bar .btn-dark {
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .9);
  color: var(--dark);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .95),
    0 6px 18px rgba(0, 0, 0, .12);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  backdrop-filter: blur(16px) saturate(1.2);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.hero-home .btn-dark:hover,
.hero-home .btn-dark:focus-visible,
.mobile-estimate-bar .btn-dark:hover,
.mobile-estimate-bar .btn-dark:focus-visible {
  border-color: #fff;
  background: #fff;
}

.site-header .nav-toggle {
  width: 46px;
  height: 46px;
  border-color: rgba(255, 255, 255, .24);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.site-header .nav-toggle::before {
  left: 13px;
  top: 21px;
}

.hero-home {
  margin-top: -86px;
  padding-top: 86px;
}

.hero-home-media {
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 1.15s ease, transform 8s ease;
  will-change: opacity, transform;
}

.hero-home-media.is-active {
  opacity: 1;
  transform: scale(1.035);
}

.hero-home-media-primary {
  background-image: url("hero-generated/bathroom-glass-shower-v1.jpg");
}

.hero-home-media-secondary {
  background-image: none;
}

.hero-slideshow-toggle {
  position: absolute;
  top: 104px;
  right: max(18px, calc((100% - var(--container)) / 2));
  z-index: 3;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: rgba(22, 23, 22, .34);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .18),
    0 8px 20px rgba(0, 0, 0, .16);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  backdrop-filter: blur(18px) saturate(1.25);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.hero-slideshow-toggle:hover,
.hero-slideshow-toggle:focus-visible {
  border-color: rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .2);
  outline: none;
}

.hero-slideshow-toggle:active {
  transform: scale(.96);
}

.hero-home .eyebrow.light {
  border-color: rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
}

.hero-btn-light {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  backdrop-filter: blur(16px) saturate(1.2);
}

.btn {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .18),
    0 6px 16px rgba(0, 0, 0, .09);
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: scale(.98);
}

.hero-selection-strip,
#about,
#bundles,
#service-area {
  background: var(--bg);
}

.muted {
  background: var(--surface-2);
}

.card,
.select-card,
.category-btn,
.visual-card,
.bundle,
.mini-job,
.faq-item,
.task-card,
.price-info,
.estimate-box,
.category-list,
.service-area-copy,
.lead-form {
  border-color: var(--line);
  border-radius: var(--radius);
}

.select-card,
.category-btn,
.visual-card,
.bundle,
.mini-job,
.faq-item,
.task-card,
.price-info,
.estimate-box,
.category-list,
.service-area-copy,
.lead-form {
  background: rgba(255, 255, 255, .9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .9),
    0 8px 24px rgba(0, 0, 0, .045);
}

.select-card:hover {
  border-color: rgba(32, 34, 32, .46);
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(32, 34, 32, .14),
    0 12px 28px rgba(0, 0, 0, .07);
}

.select-card.active,
.select-card.has-selection,
.select-card.active.has-selection,
.category-btn.active,
.category-btn.has-selection,
.category-btn.active.has-selection {
  border-color: rgba(32, 34, 32, .58);
  background: #e9ebe8;
  box-shadow:
    inset 0 0 0 1px rgba(32, 34, 32, .18),
    0 9px 24px rgba(0, 0, 0, .055);
}

.service-pill {
  border-color: rgba(60, 60, 67, .16);
  background: rgba(255, 255, 255, .72);
  color: #353735;
}

.lead-form input,
.lead-form select,
.lead-form textarea,
#serviceSearch {
  border-color: rgba(60, 60, 67, .2);
  background: rgba(255, 255, 255, .86);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .035);
}

.mobile-estimate-bar {
  left: 10px;
  right: 10px;
  bottom: 10px;
  gap: 7px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 30px;
  background: rgba(22, 23, 22, .66);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .17),
    0 16px 40px rgba(0, 0, 0, .24);
  -webkit-backdrop-filter: blur(24px) saturate(1.35);
  backdrop-filter: blur(24px) saturate(1.35);
}

.mobile-estimate-bar .btn {
  min-height: 50px;
  border-radius: 24px;
  box-shadow: none;
}

.mobile-estimate-bar .btn-light {
  border-color: transparent;
  background: rgba(255, 255, 255, .08);
}

@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .site-header .nav-wrap,
  .mobile-estimate-bar {
    background: rgba(22, 23, 22, .96);
  }

  .hero-home .eyebrow.light,
  .hero-btn-light {
    background: rgba(22, 23, 22, .84);
  }
}

@media (max-width: 980px) {
  .nav-links {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 20px;
    background: rgba(22, 23, 22, .82);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .14),
      0 18px 38px rgba(0, 0, 0, .24);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    backdrop-filter: blur(24px) saturate(1.3);
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 8px 8px 0;
  }

  .site-header .nav-wrap {
    min-height: 58px;
    padding: 5px 10px;
    border-radius: 24px;
  }

  .brand-logo {
    height: 44px;
  }

  .hero-home {
    margin-top: -74px;
    padding-top: 74px;
  }

  .hero-slideshow-toggle {
    top: 86px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .select-card {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .select-card,
  .category-btn {
    transition: none;
  }

  .hero-home-media {
    transition: none;
    transform: none;
  }

  .hero-slideshow-toggle {
    display: none;
  }
}


/* === Simplified homepage flow === */
main > section[id] {
  scroll-margin-top: 92px;
}

.project-group[id] {
  scroll-margin-top: 92px;
}

.hero-home {
  min-height: min(68vh, 640px);
  align-items: center;
}

.hero-home-shell {
  padding-top: 96px;
  padding-bottom: 54px;
}

.hero-home-card {
  max-width: 720px;
}

.hero-lead-light {
  max-width: 54ch;
}

.trust-grid div {
  padding-top: 20px;
  padding-bottom: 20px;
}

.hero-selection-strip {
  padding: 64px 0;
}

.hero-strip-copy {
  margin-bottom: 28px;
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  margin-bottom: 20px;
  padding: 4px;
  border: 1px solid rgba(60, 60, 67, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
}

.service-tab,
.service-tab:hover,
.service-tab.active,
.service-tab.has-selection,
.service-tab.active.has-selection {
  min-height: 44px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  color: var(--text);
  transform: none;
  white-space: nowrap;
}

.service-tab span {
  font-size: .94rem;
  font-weight: 750;
}

.service-tab.active,
.service-tab.active.has-selection {
  background: var(--accent-blue);
  color: #fff;
}

.service-tab:hover:not(.active) {
  background: rgba(60, 60, 67, .08);
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, .86fr);
  gap: 32px;
  align-items: center;
  min-height: 360px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.service-feature:focus {
  outline: none;
}

.service-feature-media {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: #d9dad7;
}

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

.service-feature-copy h3 {
  margin: 8px 0 12px;
  font-size: 1.8rem;
  line-height: 1.12;
}

.service-feature-copy p {
  margin: 0;
  color: var(--muted);
}

.service-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.section-disclosure {
  overflow: clip;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .045);
}

.section-disclosure > summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  min-height: 112px;
  padding: 24px 26px;
  cursor: pointer;
  list-style: none;
}

.section-disclosure > summary::-webkit-details-marker {
  display: none;
}

.disclosure-summary-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.disclosure-summary-copy strong {
  font-size: 1.45rem;
  line-height: 1.2;
}

.disclosure-summary-copy small {
  color: var(--muted);
  font-size: .94rem;
}

.disclosure-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface-2);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform .2s ease;
}

.section-disclosure[open] .disclosure-icon {
  transform: rotate(45deg);
}

.section-disclosure-body {
  padding: 30px 26px 26px;
  border-top: 1px solid var(--line);
}

.price-guide-disclosure .price-guide-head {
  margin-top: 0;
}

.form-progress {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 24px;
  padding: 4px;
  border-radius: 999px;
  background: #e8e9e7;
}

.form-progress span {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #6b6d69;
  font-size: .9rem;
  font-weight: 700;
}

.form-progress span.is-active {
  background: #fff;
  color: var(--text);
  box-shadow: 0 3px 12px rgba(0, 0, 0, .07);
}

.form-progress span.is-complete {
  color: var(--text);
}

.form-progress b {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: .75rem;
}

.form-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step[hidden] {
  display: none;
}

.form-step legend {
  margin-bottom: 18px;
  padding: 0;
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 800;
}

.form-step-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.form-step-actions-split {
  justify-content: space-between;
}

.mobile-estimate-bar {
  transition: width .22s ease, left .22s ease, opacity .22s ease, transform .22s ease;
}

.mobile-estimate-bar.is-condensed {
  left: auto;
  width: 176px;
  grid-template-columns: 1fr;
}

.mobile-estimate-bar.is-condensed .btn-light {
  display: none;
}

@media (max-width: 980px) {
  .service-tabs {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .service-tabs::-webkit-scrollbar {
    display: none;
  }

  .service-tab {
    flex: 0 0 auto;
    width: auto;
    scroll-snap-align: start;
  }

  .service-feature {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 720px) {
  .hero-home {
    min-height: 650px;
  }

  .hero-home-shell {
    padding-top: 82px;
    padding-bottom: 42px;
  }

  .hero-home .hero-actions {
    gap: 10px;
  }

  .hero-selection-strip {
    padding: 42px 0;
  }

  .hero-strip-copy {
    margin-bottom: 20px;
  }

  .service-feature {
    min-height: 0;
  }

  .service-feature-copy h3 {
    font-size: 1.5rem;
  }

  .service-feature-actions .btn {
    width: 100%;
  }

  .section-disclosure > summary {
    min-height: 104px;
    padding: 20px 18px;
  }

  .disclosure-summary-copy strong {
    font-size: 1.18rem;
  }

  .section-disclosure-body {
    padding: 24px 16px 18px;
  }

  .form-step-actions,
  .form-step-actions-split {
    display: grid;
    grid-template-columns: 1fr;
  }

  .form-step-actions .btn {
    width: 100%;
  }

  #contact {
    padding-bottom: 82px;
  }
}

/* ============================================================
   Project page v2: summary line, before/after slider, photo tabs,
   floating "I want this too" CTA in lightbox
   ============================================================ */

.project-summary-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  margin: 14px 0 0;
  font-weight: 700;
  color: var(--muted);
  font-size: .96rem;
}
.project-summary-line span:not(:last-child)::after {
  content: "\00b7";
  margin-left: 10px;
  color: var(--line);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.before-after-grid .before-after-slider {
  aspect-ratio: 3 / 4;
  max-height: 560px;
}
@media (max-width: 760px) {
  .before-after-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Before / after drag slider --- */
.before-after-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 640px;
  border-radius: 14px;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.before-after-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.before-after-after {
  clip-path: inset(0 0 0 50%);
}
.before-after-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  transform: translateX(-50%);
  pointer-events: none;
}
.before-after-handle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(0,0,0,.15);
}
.before-after-handle::after {
  content: "\2194";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.before-after-label {
  position: absolute;
  top: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(17,17,17,.72);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  pointer-events: none;
  transition: opacity .15s ease;
}
.before-after-label-before { left: 14px; }
.before-after-label-after { right: 14px; }
.before-after-label.is-hidden { opacity: 0; }

/* --- Photo tabs (Before / Process / Finished) --- */
.photo-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 20px;
}
.photo-tab {
  appearance: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: .92rem;
  color: var(--muted);
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.photo-tab.is-active {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #fff;
}
.photo-tab-count {
  font-weight: 500;
  opacity: .7;
  margin-left: 4px;
}

/* --- Floating "I want this too" CTA inside the lightbox --- */
.gallery-lightbox-cta {
  position: absolute;
  left: 50%;
  bottom: 92px;
  transform: translateX(-50%);
  z-index: 5;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent, #1f4f46);
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}
.gallery-lightbox-cta:hover { opacity: .92; }

@media (max-width: 640px) {
  .before-after-slider { aspect-ratio: 4 / 5; }
  .gallery-lightbox-cta { bottom: 56px; font-size: .86rem; padding: 10px 18px; }
}

/* Fix: an older .project-gallery-grid rule forces display:block, which
   defeats the native [hidden] behavior needed for photo tab panels. */
.project-gallery-grid[hidden] {
  display: none !important;
}

/* --- Video support inside the lightbox and grid thumbnails --- */
.gallery-lightbox-video {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
  touch-action: manipulation;
}

/* Fix: display:block above defeats the native [hidden] behavior used to
   swap between the photo and video inside the lightbox stage, so both
   were stacking and showing at once. */
.gallery-lightbox-image[hidden],
.gallery-lightbox-video[hidden] {
  display: none !important;
}

.project-shot.project-video {
  position: relative;
}
.project-shot.project-video::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(17,17,17,.55);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 54% center;
  background-size: 22px;
  pointer-events: none;
}

.gallery-lightbox-thumb.is-video {
  position: relative;
}
.gallery-lightbox-thumb.is-video::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(17,17,17,.6);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 56% center;
  background-size: 11px;
  pointer-events: none;
}

/* --- Real review grid (Thumbtack) --- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 20px 0;
}
.review-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.6);
}
.review-item p {
  margin: 0 0 8px;
  font-size: .92rem;
  line-height: 1.4;
}
.review-item .review-author {
  display: block;
  font-size: .84rem;
  font-weight: 700;
  color: var(--muted);
}
.review-note {
  margin: 0 0 18px;
}

/* --- Vertical (top/bottom wipe) before/after slider, for wide panoramic photos --- */
.before-after-slider.vertical {
  aspect-ratio: 20 / 9;
  max-height: none;
  cursor: ns-resize;
  touch-action: none;
}
.before-after-slider.vertical .before-after-after {
  clip-path: inset(50% 0 0 0);
}
.before-after-slider.vertical .before-after-handle {
  top: 50%;
  left: 0;
  right: 0;
  width: auto;
  height: 0;
  transform: translateY(-50%);
}
.before-after-slider.vertical .before-after-handle::before {
  top: 50%;
  left: 0;
  right: 0;
  bottom: auto;
  width: auto;
  height: 3px;
  transform: translateY(-50%);
}
.before-after-slider.vertical .before-after-handle::after {
  content: "\2195";
}
.before-after-slider.vertical .before-after-label-after {
  top: auto;
  bottom: 14px;
}
@media (max-width: 640px) {
  .before-after-slider.vertical { aspect-ratio: 16 / 9; }
}

/* === Apple-style alternating feature panels (homepage services section) === */
.apple-feature-panel {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.apple-feature-panel.muted {
  background: var(--surface-2);
}
.apple-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.apple-feature-panel.is-reverse .apple-feature-grid {
  direction: rtl;
}
.apple-feature-panel.is-reverse .apple-feature-grid > * {
  direction: ltr;
}
.apple-feature-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .35);
}
.apple-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform .6s ease;
}
.apple-feature-media:hover img {
  transform: scale(1.04);
}
.apple-feature-copy p {
  max-width: 460px;
}
.apple-feature-copy h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin: 8px 0 14px;
}
@media (max-width: 860px) {
  .apple-feature-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .apple-feature-panel.is-reverse .apple-feature-grid {
    direction: ltr;
  }
  .apple-feature-panel {
    padding: 60px 0;
  }
  .apple-feature-media img {
    aspect-ratio: 16 / 11;
  }
}


/* === Apple-style site-wide upgrade: fullscreen mobile menu, quote carousel, showcase cards, quick-contact popup, stats band === */

.btn-accent { background: var(--cta); color: #fff; border-color: transparent; }
.btn-accent:hover { background: var(--cta-hover); }
.btn-ghost-light { background: rgba(255, 255, 255, .14); color: #fff; border: 1px solid rgba(255, 255, 255, .5); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.btn-ghost-light:hover { background: rgba(255, 255, 255, .24); }
.btn-link { color: var(--cta); padding: 0; font-weight: 600; display: inline-block; }
.btn-link:after { content: "\203A"; margin-left: 4px; transition: margin .15s ease; }
.btn-link:hover:after { margin-left: 8px; }

/* Fullscreen mobile nav popup menu */
@media (max-width: 980px) {
  /* .site-header is its own stacking context (position + z-index), so a
     z-index set on .nav-toggle only ranks it within that context -- it can
     never outrank a sibling context like the fullscreen menu overlay below.
     Raising .site-header itself above the overlay keeps the toggle button
     (used to close the menu) visible and clickable while it's open. */
  .site-header {
    z-index: 920;
  }

  .site-header .nav-toggle {
    position: relative;
    z-index: 901;
  }

  .nav-links {
    display: flex !important;
    position: fixed;
    inset: 0;
    width: 100%;
    order: 0;
    margin: 0;
    padding: 0;
    background: rgba(10, 10, 12, .92);
    backdrop-filter: blur(28px) saturate(1.4);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .3s ease, transform .3s ease, visibility 0s linear .3s;
  }

  .nav-links.nav-links-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .3s ease, transform .3s ease;
  }

  body:has(.nav-links.nav-links-open) {
    overflow: hidden;
  }

  .nav-links a {
    font-size: 1.65rem;
    font-weight: 600;
    color: #fff;
  }

  .nav-links a:hover,
  .nav-links a:active {
    opacity: .7;
  }
}

/* Quotes band (reviews) */
#reviews.quotes-band {
  background: var(--dark);
  color: #fff;
  padding: 96px 0;
  text-align: center;
}

.quotes-eyebrow {
  display: block;
  color: rgba(255, 255, 255, .6) !important;
  margin-bottom: 34px;
}

.quote-carousel {
  max-width: 760px;
  margin: 0 auto;
  min-height: 160px;
}

.quote-slide { display: none; }
.quote-slide.is-active { display: block; animation: quoteFadeIn .5s ease; }

@keyframes quoteFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.quote-slide p {
  color: #fff;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.35;
  margin: 0 0 14px;
}

.quote-slide span {
  color: rgba(255, 255, 255, .55);
  font-size: .95rem;
}

.quote-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 30px;
}

.quote-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  padding: 0;
}

.quote-dots button.is-active { background: #fff; }

.quotes-band .quotes-note {
  color: rgba(255, 255, 255, .7);
  margin: 30px auto 0;
  max-width: 480px;
}

.quotes-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .quotes-actions { flex-direction: column; align-items: center; }
  .quotes-actions .btn { width: 100%; max-width: 320px; }
}

/* Showcase project cards (homepage project-gallery) */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.showcase-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #111;
  box-shadow: 0 20px 50px -25px rgba(0, 0, 0, .4);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.showcase-card:hover img { transform: scale(1.06); }

.showcase-card-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 24px 24px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .78) 78%);
  color: #fff;
}

.showcase-card-copy .tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  background: none;
  padding: 0;
}

.showcase-card-copy h3 {
  color: #fff;
  margin: 6px 0 10px;
  font-size: 1.25rem;
}

.showcase-card-copy .btn-link {
  color: #fff;
  font-weight: 600;
}

.showcase-card-copy .btn-link:hover { opacity: .8; }

@media (max-width: 860px) {
  .showcase-grid { grid-template-columns: 1fr; }
}

/* Stats-style trust strip */
.trust-strip .trust-grid.card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 34px 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-strip .trust-grid.card > div strong {
  display: block;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 6px;
}

.trust-strip .trust-grid.card > div span {
  color: var(--muted);
  font-size: .92rem;
}

@media (max-width: 720px) {
  .trust-strip .trust-grid.card { grid-template-columns: repeat(2, 1fr); }
}

/* Quick "Get estimate" popup modal */
.estimate-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(0, 0, 0, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility 0s linear .25s;
}

.estimate-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity .25s ease;
}

.estimate-modal-card {
  background: #fff;
  border-radius: 26px;
  max-width: 420px;
  width: 100%;
  padding: 38px 34px 32px;
  text-align: center;
  position: relative;
  transform: scale(.92);
  transition: transform .3s cubic-bezier(.2, .8, .3, 1.1);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, .4);
}

.estimate-modal-overlay.is-open .estimate-modal-card { transform: scale(1); }

.estimate-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 0;
  background: var(--bg);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--muted);
}

.estimate-modal-card h3 { margin-bottom: 8px; }
.estimate-modal-card p { margin-bottom: 22px; }

.estimate-modal-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.estimate-modal-contact a {
  display: block;
  padding: 13px;
  border-radius: 14px;
  background: var(--bg);
  font-weight: 600;
  color: var(--text);
}

.estimate-modal-contact a:hover { background: #ececed; }
.estimate-modal-form-link { color: var(--cta) !important; }
.estimate-modal-note { font-size: .82rem; color: var(--muted); }


/* === Apple-style full-height centered hero === */
.hero-home {
  min-height: 100vh;
  align-items: center;
}

.hero-home-card {
  margin: 0 auto;
  text-align: center;
}

.hero-home h1 {
  margin-left: auto;
  margin-right: auto;
}

.hero-lead-light {
  margin-left: auto;
  margin-right: auto;
}

.hero-home .hero-actions {
  justify-content: center;
}

@media (max-width: 720px) {
  .hero-home {
    min-height: 100svh;
  }
}


/* === Apple-style project hero band (listing + detail pages) === */
.project-hero {
  background: var(--dark);
  color: #fff;
  padding-top: 132px;
  padding-bottom: 56px;
}

.project-hero .eyebrow {
  color: rgba(255, 255, 255, .6);
}

.project-hero h1 {
  color: #fff;
  letter-spacing: -.02em;
}

.project-hero .hero-lead {
  color: rgba(255, 255, 255, .78);
}

.project-hero .btn-light {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
}

.project-hero .btn-light:hover {
  background: rgba(255, 255, 255, .24);
}

.project-cover,
.project-cover-image {
  border-radius: var(--radius);
}

.project-cover {
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .5);
  background: #191917;
}


/* === Apple-style cleaning page hero === */
.hero.section {
  background: var(--dark);
  color: #fff;
  padding-top: 132px;
}

.hero.section .eyebrow {
  color: rgba(255, 255, 255, .6);
}

.hero.section .hero-copy h1 {
  color: #fff;
}

.hero.section .hero-lead {
  color: rgba(255, 255, 255, .78);
}

.hero.section .btn-light {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
}

.hero.section .btn-light:hover {
  background: rgba(255, 255, 255, .24);
}

.hero.section .note-card {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
}

.hero.section .note-card strong {
  color: #fff;
}

.hero.section .note-card span {
  color: rgba(255, 255, 255, .65);
}

.hero.section .hero-panel {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .16);
}

.hero.section .panel-label {
  color: rgba(255, 255, 255, .7);
}

.hero.section .about-contact {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .18);
  color: #fff;
}

.hero.section .about-contact span {
  color: rgba(255, 255, 255, .7);
}

.hero.section .about-contact a {
  color: #fff;
}

/* === Thank-you page polish === */
.thankyou-card.card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  border-radius: var(--radius);
}


/* === ZIP code service-area checker + coverage radar === */
.zip-check-card {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 44px;
  margin-bottom: 28px;
  overflow: hidden;
}

.zip-check-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}

.zip-check-form-wrap .eyebrow {
  color: rgba(255, 255, 255, .6);
}

.zip-check-form-wrap h3 {
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin: 8px 0 10px;
}

.zip-check-form-wrap p {
  color: rgba(255, 255, 255, .72);
  max-width: 46ch;
}

.zip-check-form {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.zip-check-form input {
  flex: 1 1 180px;
  min-width: 0;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: .04em;
}

.zip-check-form input::placeholder {
  color: rgba(255, 255, 255, .4);
}

.zip-check-form input:focus {
  outline: none;
  border-color: var(--cta);
  background: rgba(255, 255, 255, .12);
}

.zip-result {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
}

.zip-result strong {
  font-size: 1.02rem;
  color: #fff;
}

.zip-result span {
  color: rgba(255, 255, 255, .72);
  font-size: .92rem;
}

.zip-result .btn {
  margin-top: 6px;
}

.zip-result-yes {
  background: rgba(48, 209, 88, .12);
  border-color: rgba(48, 209, 88, .35);
}

.zip-result-maybe {
  background: rgba(255, 214, 10, .1);
  border-color: rgba(255, 214, 10, .3);
}

.zip-result-no {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .16);
}

.zip-result-warn {
  background: rgba(255, 69, 58, .12);
  border-color: rgba(255, 69, 58, .32);
}

.coverage-radar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-svg {
  width: 100%;
  max-width: 300px;
  height: auto;
}

/* Real embedded map (Leaflet + OpenStreetMap tiles) replacing the old illustration */
.coverage-radar {
  position: relative;
  width: 100%;
  min-height: 340px;
  border-radius: 18px;
  overflow: hidden;
  background: #14161c;
}

.coverage-radar .leaflet-container {
  width: 100%;
  height: 100%;
  min-height: 340px;
  font-family: inherit;
  background: #14161c;
}

/* Standard OpenStreetMap tiles are light by default -- darken just the tile
   imagery (not markers/circles/controls, which live in other Leaflet panes)
   to match the dark card. */
.coverage-radar .leaflet-tile-pane {
  filter: invert(1) hue-rotate(180deg) brightness(.94) contrast(.88) saturate(.7);
}

.leaflet-tooltip.service-map-tooltip {
  background: rgba(10, 10, 12, .88);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 8px;
  box-shadow: none;
}

.leaflet-tooltip.service-map-tooltip.is-primary {
  font-weight: 700;
  font-size: 12px;
}

.leaflet-tooltip-top.service-map-tooltip::before,
.leaflet-tooltip-bottom.service-map-tooltip::before {
  border-top-color: rgba(255, 255, 255, .25);
}

.coverage-radar .leaflet-control-attribution {
  background: rgba(0, 0, 0, .45);
  color: rgba(255, 255, 255, .6);
  font-size: 9px;
}

.coverage-radar .leaflet-control-attribution a {
  color: rgba(255, 255, 255, .85);
}

.coverage-radar .leaflet-control-zoom a {
  background: rgba(20, 22, 28, .9);
  color: #fff;
  border-color: rgba(255, 255, 255, .2);
}

.coverage-radar .leaflet-control-zoom a:hover {
  background: rgba(20, 22, 28, 1);
}

@media (max-width: 860px) {
  .coverage-radar,
  .coverage-radar .leaflet-container {
    min-height: 260px;
  }
}

@media (max-width: 860px) {
  .zip-check-card {
    padding: 30px 22px;
  }

  .zip-check-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .coverage-radar {
    order: -1;
  }

  .radar-svg {
    max-width: 220px;
  }
}
