:root {
  --bg: #f7f4ed;
  --surface: #ffffff;
  --surface-alt: #eef3ef;
  --text: #132018;
  --text-soft: #4d5e53;
  --dark: #12311e;
  --dark-2: #0b2214;
  --line: rgba(19, 32, 24, 0.12);
  --line-strong: rgba(255, 255, 255, 0.12);
  --accent: #d1963b;
  --accent-strong: #bf8020;
  --shadow: 0 18px 45px rgba(12, 26, 17, 0.12);
  --radius: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img,
iframe {
  display: block;
  width: 100%;
}

img {
  height: auto;
}

iframe {
  border: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 9999;
  background: #fff;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.topbar {
  background: var(--dark-2);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.topbar-inner {
  min-height: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.topbar-inner p {
  margin: 0;
}

.topbar-call {
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 244, 237, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(19, 32, 24, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand span:last-child {
  display: grid;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.brand small {
  color: var(--text-soft);
  font-size: 0.85rem;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--dark);
  color: #fff;
  flex: 0 0 auto;
}

.brand-mark svg {
  width: 30px;
  height: 30px;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0.7rem 1rem;
  color: var(--text);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--text-soft);
  font-weight: 600;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  white-space: nowrap;
}

.section {
  padding: 5.5rem 0;
}

.section-dark {
  background: linear-gradient(180deg, var(--dark), var(--dark-2));
  color: rgba(255, 255, 255, 0.92);
}

.surface-alt {
  background: var(--surface-alt);
}

.hero {
  padding: 5.5rem 0 4.75rem;
}

.hero-grid,
.feature-grid,
.before-after-layout,
.contact-grid,
.faq-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 2.25rem;
  align-items: start;
}

.hero-copy h1,
.section-heading h2,
.feature-grid h2,
.contact-copy h2,
.faq-grid h2,
.footer-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.section-heading h2,
.feature-grid h2,
.contact-copy h2,
.faq-grid h2,
.footer-copy h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.hero-lead,
.section-heading p,
.feature-grid p,
.contact-copy > p,
.faq-grid p,
.footer-copy > p {
  margin: 0;
  font-size: 1.08rem;
}

.hero-copy,
.hero-visual,
.hero-stack,
.section-heading,
.feature-list,
.contact-form-wrap,
.project-form,
.faq-list,
.footer-copy {
  display: grid;
  gap: 1.25rem;
}

.hero-copy {
  gap: 1.45rem;
}

.eyebrow,
.note-kicker,
.microcopy,
.contact-label,
.footer-kicker,
.footer-map-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}

.eyebrow,
.note-kicker,
.footer-kicker,
.footer-map-label {
  color: rgba(255, 255, 255, 0.72);
}

.section:not(.section-dark) .eyebrow,
.surface-alt .eyebrow,
.contact-label,
.microcopy {
  color: var(--accent-strong);
}

.footer-kicker,
.footer-map-label {
  color: rgba(255, 255, 255, 0.64);
}

.hero-actions,
.contact-actions,
.result-actions,
.contact-badges,
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn:hover,
.btn:focus-visible,
.card:hover {
  transform: translateY(-2px);
}

.btn:hover,
.btn:focus-visible {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.btn-primary {
  background: var(--accent);
  color: #1a1407;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #deaa58;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.95);
}

.section:not(.section-dark) .btn-secondary,
.surface-alt .btn-secondary,
.contact-form-wrap .btn-secondary,
.project-result .btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: #fff;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.95);
}

.btn-ghost-dark {
  color: var(--text);
  border-color: var(--line);
  background: transparent;
}

.btn-large {
  min-height: 56px;
  padding-inline: 1.6rem;
}

.btn-small {
  min-height: 46px;
  padding: 0.75rem 1.1rem;
  font-size: 0.96rem;
}

.btn-full {
  width: 100%;
}

.text-link {
  font-weight: 800;
  color: var(--accent-strong);
}

.proof-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.proof-list li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(255, 255, 255, 0.86);
}

.proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-badges span,
.contact-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 0.92rem;
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-strong);
  color: rgba(255, 255, 255, 0.85);
}

.contact-badges span {
  background: rgba(18, 49, 30, 0.06);
  border: 1px solid var(--line);
  color: var(--text);
}

.image-frame {
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  background: #d9ddd9;
}

.hero-main img,
.hero-thumb img,
.gallery-item img,
.before-after-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.image-frame:hover img,
.image-frame:focus-within img {
  transform: scale(1.03);
}

.hero-main {
  min-height: 460px;
}

.hero-thumb {
  min-height: 220px;
}

.card {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.35rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-note {
  background: rgba(255, 255, 255, 0.97);
}

.trust-band {
  padding: 0 0 5.5rem;
  margin-top: -2.2rem;
}

.trust-grid,
.services-grid,
.reviews-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  aspect-ratio: 4 / 3;
}

.service-card,
.trust-card,
.feature-item,
.review-card,
.faq-item {
  height: 100%;
}

.service-card-highlight {
  background: linear-gradient(180deg, #f4e7cc, #fff7e9);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(18, 49, 30, 0.08);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature-panel .card {
  background: rgba(255, 255, 255, 0.97);
}

.feature-grid h2,
.contact-grid h2,
.footer-copy h2 {
  color: #fff;
}

.feature-grid > .section-heading p,
.footer-copy > p,
.footer-meta p,
.footer-meta a {
  color: rgba(255, 255, 255, 0.84);
}

.feature-item h3 {
  color: var(--text);
}

.feature-item p {
  color: var(--text-soft);
}

.before-after-widget {
  padding: 1rem;
}

.before-after-stage {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  background: #d0d6d0;
}

.comparison-image {
  position: absolute;
  inset: 0;
}

.before-wrap {
  position: absolute;
  inset: 0;
  width: 48%;
  overflow: hidden;
}

.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 48%;
  width: 2px;
  background: rgba(255, 255, 255, 0.92);
  transform: translateX(-50%);
  pointer-events: none;
}

.comparison-divider span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: #fff;
  box-shadow: var(--shadow);
}

.comparison-divider span::before,
.comparison-divider span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--dark);
  border-right: 2px solid var(--dark);
}

.comparison-divider span::before {
  left: 18px;
  transform: translateY(-50%) rotate(225deg);
}

.comparison-divider span::after {
  right: 18px;
  transform: translateY(-50%) rotate(45deg);
}

.comparison-label {
  position: absolute;
  top: 1rem;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(18, 49, 30, 0.8);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.label-before {
  left: 1rem;
}

.label-after {
  right: 1rem;
}

.comparison-control {
  display: inline-block;
  margin-top: 1rem;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}

input[type="range"] {
  width: 100%;
}

.review-meta {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 0.8rem;
}

.review-meta span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.contact-shell {
  overflow: hidden;
}

.contact-copy {
  display: grid;
  gap: 1.25rem;
}

.contact-copy h2,
.contact-copy > p {
  color: var(--text);
}

.contact-panel,
.contact-form-wrap {
  background: rgba(255, 255, 255, 0.98);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(19, 32, 24, 0.08);
  margin-bottom: 1rem;
}

.detail-row-last {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.contact-label {
  margin-bottom: 0.4rem;
}

.contact-value {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--text);
  font-weight: 700;
}

.contact-hours {
  font-weight: 600;
}

.project-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 700;
}

.form-heading h3,
.project-result h3 {
  margin: 0;
  font-size: 1.45rem;
}

.form-heading p,
.project-result p,
.form-note {
  margin: 0;
  color: var(--text-soft);
}

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

.full-row {
  grid-template-columns: 1fr;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  padding: 0.95rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(209, 150, 59, 0.85);
  box-shadow: 0 0 0 4px rgba(209, 150, 59, 0.18);
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.project-result {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.project-result[hidden] {
  display: none;
}

.project-result pre {
  margin: 0;
  white-space: pre-wrap;
  background: #f6f8f6;
  border: 1px solid rgba(19, 32, 24, 0.08);
  border-radius: 16px;
  padding: 1rem;
  color: var(--text);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--accent-strong);
}

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

.faq-item p {
  margin: 1rem 0 0;
}

.site-footer {
  padding: 4rem 0 6rem;
  background: #0c1f14;
  color: rgba(255, 255, 255, 0.82);
}

.footer-meta {
  display: grid;
  gap: 0.45rem;
}

.footer-meta p,
.footer-copy h2,
.footer-copy .footer-kicker {
  margin: 0;
}

.footer-copy strong {
  color: #fff;
}

.map-frame {
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  background: #dde4dd;
  min-height: 360px;
}

.map-frame iframe {
  min-height: 360px;
  height: 100%;
}

.mobile-cta-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 22px;
  background: rgba(12, 31, 20, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.mobile-cta-bar a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  border-radius: 999px;
  font-weight: 800;
}

.mobile-cta-bar a:first-child {
  background: var(--accent);
  color: #1a1407;
}

.mobile-cta-bar a:last-child {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.narrow {
  max-width: 780px;
}

.left {
  max-width: 650px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .card,
  .image-frame img,
  .js [data-reveal] {
    transition: none !important;
    transform: none !important;
  }
}

@media (max-width: 1080px) {
  .trust-grid,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .feature-grid,
  .before-after-layout,
  .contact-grid,
  .faq-grid,
  .footer-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 0.95rem 1rem;
    border-radius: 16px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: #f6f8f6;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .section {
    padding: 4.5rem 0;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 72px;
  }

  .topbar-inner,
  .header-inner {
    gap: 0.75rem;
  }

  .topbar-inner {
    flex-direction: column;
    justify-content: center;
    padding: 0.5rem 0;
  }

  .trust-grid,
  .services-grid,
  .gallery-grid,
  .footer-grid,
  .form-row,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .section-heading h2,
  .feature-grid h2,
  .contact-copy h2,
  .faq-grid h2,
  .footer-copy h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .card {
    padding: 1.1rem;
  }

  .hero-main {
    min-height: 320px;
  }

  .hero-thumb {
    min-height: 180px;
  }

  .detail-row {
    flex-direction: column;
  }

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

  .site-footer {
    padding-bottom: 7.5rem;
  }

  .comparison-divider span {
    width: 48px;
    height: 48px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 280px;
  }
}

/* v3 patch: force readable text in the Why customers call cards */
.feature-panel .feature-list .feature-item,
.feature-panel .feature-list .feature-item h3,
.feature-panel .feature-list .feature-item p {
  color: var(--text) !important;
}

.feature-panel .feature-list .feature-item p {
  color: var(--text-soft) !important;
}
