:root {
  --bg: #f8f7f4;
  --surface: #ffffff;
  --surface-alt: #eef2ee;
  --ink: #1b1f1d;
  --muted: #4a5550;
  --brand: #1f3b2f;
  --brand-dark: #142a21;
  --brand-soft: #335d48;
  --accent: #c08b3f;
  --accent-deep: #a66f2b;
  --line: #d3dad5;
  --ok: #1f7a3f;
  --error: #a52b2b;
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 14px 34px rgba(0, 0, 0, 0.12);
  --radius-sm: 0.6rem;
  --radius: 0.9rem;
  --radius-lg: 1.2rem;
  --max: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: -9999px;
  background: #fff;
  color: #000;
  padding: 0.6rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(16, 24, 21, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-text {
  font-size: 1.03rem;
  letter-spacing: 0.01em;
}

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}

.primary-nav a {
  color: #ecf3ef;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.16rem;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  border-radius: 0.45rem;
  padding: 0.42rem;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
}

.nav-toggle span + span { margin-top: 4px; }

.section {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}

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

h1, h2, h3 {
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

h1 { font-size: clamp(1.9rem, 3.2vw, 3rem); }
h2 { font-size: clamp(1.5rem, 2.2vw, 2.2rem); }
h3 { font-size: clamp(1.08rem, 1.5vw, 1.3rem); }

p { margin-top: 0; }

.eyebrow {
  margin-bottom: 0.6rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #e7d5b5;
}

.hero {
  color: #fff;
  background:
    linear-gradient(140deg, rgba(12, 20, 17, 0.92), rgba(24, 45, 36, 0.85)),
    radial-gradient(circle at 92% 10%, rgba(192, 139, 63, 0.30), transparent 34%),
    radial-gradient(circle at 6% 90%, rgba(53, 93, 72, 0.35), transparent 28%);
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.hero-grid,
.two-col {
  display: grid;
  gap: 2rem;
}

.hero-subheadline {
  color: #edf5f0;
  max-width: 64ch;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1rem 0 1.2rem;
}

.hero-trust-row span {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.33rem 0.75rem;
  font-size: 0.87rem;
}

.hero-points {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.hero-points li { margin-bottom: 0.35rem; }

.hero-cta,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}

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

.btn-primary {
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  color: #231505;
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.05);
}

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

.btn-call {
  background: #fff;
  color: var(--brand-dark);
  font-size: 0.92rem;
}

.btn.block {
  width: 100%;
}

.hero-media {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.hero-logo {
  width: min(280px, 72%);
  background: rgba(255, 255, 255, 0.93);
  border-radius: var(--radius);
  padding: 0.65rem;
}

.quick-estimate-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  padding: 1rem;
}

.quick-estimate-card h2 {
  font-size: 1.2rem;
}

.section-intro {
  max-width: 70ch;
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}

.service-card {
  border-top: 4px solid var(--accent);
}

.checklist {
  padding-left: 1.2rem;
  margin: 1rem 0 1.2rem;
}

.checklist li { margin-bottom: 0.45rem; }

.card-stack {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.design-note {
  background: #f6efe3;
}

.image-placeholder {
  border: 2px dashed #97a59c;
  background: repeating-linear-gradient(
    -45deg,
    #d8ded9,
    #d8ded9 12px,
    #ccd4ce 12px,
    #ccd4ce 24px
  );
  border-radius: var(--radius);
  color: #223026;
  min-height: 180px;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 1rem;
  font-weight: 600;
}

.section-header-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.text-link {
  color: var(--brand);
  font-weight: 700;
}

.reviews-summary {
  margin: 1rem 0 0.8rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--brand-dark);
  font-weight: 700;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}

.review-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.stars {
  letter-spacing: 0.1em;
  color: #ca8a2d;
  margin: 0.3rem 0 0.45rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery-item {
  margin: 0;
  min-height: 210px;
}

.gallery-item figcaption {
  margin-top: 0.45rem;
  font-size: 0.9rem;
}

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

.process-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.9rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.section-contact {
  background: linear-gradient(180deg, #e4ebe6, #d9e2dc);
}

.contact-highlight {
  margin: 1rem 0;
}

.contact-highlight p {
  margin: 0.35rem 0;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1.1rem;
}

.form-row {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

label { font-weight: 600; }

input,
select,
textarea {
  width: 100%;
  border: 1px solid #aab7af;
  border-radius: 0.45rem;
  background: #fff;
  padding: 0.62rem;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(51, 93, 72, 0.25);
  border-color: var(--brand-soft);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin-top: 0.65rem;
  font-weight: 700;
}

.form-status.success { color: var(--ok); }
.form-status.error { color: var(--error); }

.form-disclaimer,
.small-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  background: var(--brand-dark);
  color: #e6eeea;
  padding-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.footer-logo {
  width: 74px;
  border-radius: 0.45rem;
}

.site-footer a { color: #f2f7f4; }

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.copyright {
  margin: 1.5rem 0 0;
  padding: 0.85rem;
  text-align: center;
  font-size: 0.92rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

@media (min-width: 720px) {
  .hero-grid,
  .two-col {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }

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

  .card-grid.three-up {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

@media (min-width: 1040px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 940px) {
  .nav-toggle {
    display: inline-block;
  }

  .primary-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    background: var(--brand-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 0.5rem 0;
  }

  .primary-nav.open { display: block; }

  .primary-nav ul {
    flex-direction: column;
    padding: 0 1rem 0.5rem;
  }

  .btn-call { display: none; }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 1.1rem, var(--max));
  }

  .btn,
  .btn-outline,
  .btn-secondary,
  .btn-primary {
    width: 100%;
  }

  .hero-trust-row span {
    width: 100%;
    text-align: center;
  }
}
