:root {
  --green: #24451d;
  --green-dark: #172d13;
  --green-soft: #eef4ea;
  --tan: #d6b071;
  --tan-light: #f7efe2;
  --wood: #7a552c;
  --charcoal: #232522;
  --muted: #62665f;
  --line: #dde3d7;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(23, 45, 19, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(16px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
  font-weight: 750;
}

.top-nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 10px 15px;
  color: var(--white);
  background: var(--green);
  border-radius: 7px;
}

.section-band,
.content-section,
.quote-section,
.partner-band {
  padding: clamp(48px, 8vw, 92px) clamp(16px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(290px, 0.75fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  min-height: calc(100svh - 230px);
  padding-top: clamp(28px, 5vw, 46px);
  padding-bottom: clamp(28px, 5vw, 46px);
  background:
    linear-gradient(115deg, rgba(238, 244, 234, 0.98), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at 80% 18%, rgba(214, 176, 113, 0.22), transparent 30%);
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--wood);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: clamp(3rem, 6.4vw, 5.15rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--green-dark);
  font-size: clamp(2rem, 5vw, 3.65rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-subtitle {
  max-width: 680px;
  margin-bottom: 12px;
  color: var(--green);
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  font-weight: 850;
  line-height: 1.18;
}

.hero-copy,
.section-heading p,
.quote-intro p,
.content-section > div > p {
  color: var(--muted);
  font-size: 1.07rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: 7px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.secondary {
  color: var(--green-dark);
  background: var(--tan-light);
  border-color: var(--tan);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.contact-note {
  color: var(--muted);
  font-weight: 750;
}

.contact-note a {
  color: var(--green);
}

.hero-logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-logo-panel img {
  width: min(100%, 460px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--green-dark);
  color: var(--white);
}

.trust-strip div {
  padding: 22px clamp(16px, 4vw, 42px);
  background: var(--green);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.78);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.detail-list div,
.process-grid article,
.price-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.detail-list div {
  padding: 22px;
}

.detail-list p,
.process-grid p,
.price-card p,
.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.pricing-section,
.process-section,
.faq-section {
  background: #fbfcfa;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.price-card {
  padding: 24px;
}

.price-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--wood);
  font-weight: 900;
}

.price-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 1.55rem;
  line-height: 1.1;
}

.pricing-note {
  margin: 22px 0 0;
  padding: 18px 20px;
  color: var(--green-dark);
  background: var(--tan-light);
  border: 1px solid rgba(122, 85, 44, 0.2);
  border-radius: 8px;
  font-weight: 800;
}

.area-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 10px 14px;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-weight: 850;
}

.pill-list.muted li {
  background: #f7f5ef;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.process-grid article {
  padding: 26px;
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 950;
}

.checklist {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding: 14px 16px 14px 44px;
  background: var(--green-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.checklist li::before {
  position: absolute;
  left: 16px;
  content: "✓";
  color: var(--green);
  font-weight: 950;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.photo-placeholder {
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 28px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(238, 244, 234, 0.95), rgba(247, 239, 226, 0.95)),
    repeating-linear-gradient(45deg, rgba(36, 69, 29, 0.08) 0 12px, transparent 12px 24px);
  border: 2px dashed rgba(36, 69, 29, 0.34);
  border-radius: 8px;
}

.photo-placeholder span {
  color: var(--green-dark);
  font-size: 1.45rem;
  font-weight: 950;
}

.photo-placeholder p {
  margin: 8px 0 0;
  color: var(--muted);
}

.partner-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  background: var(--green-dark);
}

.partner-band h2 {
  color: var(--white);
}

.partner-band p {
  max-width: 840px;
  color: rgba(255, 255, 255, 0.8);
}

.partner-band .eyebrow {
  color: var(--tan);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  color: var(--green-dark);
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::marker {
  color: var(--tan);
}

.faq-list p {
  padding-top: 12px;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  background: var(--green-soft);
}

.quote-intro {
  align-self: start;
  position: sticky;
  top: 94px;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--green-dark);
  font-weight: 850;
}

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

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--charcoal);
  font: inherit;
  background: #fbfcfa;
  border: 1px solid #cbd5c4;
  border-radius: 7px;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(214, 176, 113, 0.42);
  border-color: var(--green);
}

button.button {
  width: 100%;
  font: inherit;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(16px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--charcoal);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  background: var(--white);
  border-radius: 6px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
}

@media (max-width: 980px) {
  .hero,
  .two-column,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  .hero-logo-panel {
    max-width: 520px;
  }

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

  .quote-intro {
    position: static;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav {
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .top-nav a {
    flex: 0 0 auto;
    padding: 8px 10px;
  }

  .nav-cta {
    padding: 8px 12px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .hero-logo-panel {
    display: none;
  }

  .hero {
    gap: 0;
  }

  .trust-strip,
  .pricing-grid,
  .process-grid,
  .area-groups,
  .photo-grid,
  .faq-list,
  .detail-list,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .partner-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .photo-placeholder {
    min-height: 220px;
  }
}

@media (max-width: 430px) {
  .brand span {
    font-size: 0.95rem;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .section-band,
  .content-section,
  .quote-section,
  .partner-band {
    padding-left: 14px;
    padding-right: 14px;
  }
}
