:root {
  --ink: #171716;
  --charcoal: #272521;
  --timber: #9b6a3e;
  --timber-dark: #664325;
  --sand: #f4efe7;
  --paper: #fffaf2;
  --line: rgba(23, 23, 22, .14);
  --gold: #d7b16c;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--sand);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 250, 242, .14);
  background: rgba(23, 23, 22, .88);
  color: var(--paper);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: -.02em;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 250, 242, .28);
  background: linear-gradient(135deg, var(--gold), var(--timber));
  color: var(--ink);
  font-weight: 900;
}
.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 34px);
  font-size: .92rem;
  font-weight: 750;
}
.main-nav a, .nav-call { text-decoration: none; }
.nav-call {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(255, 250, 242, .24);
  padding: 0 16px;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  min-height: calc(100svh - 80px);
  padding: clamp(54px, 8vw, 108px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(100deg, rgba(23, 23, 22, .92), rgba(23, 23, 22, .68)),
    repeating-linear-gradient(90deg, rgba(155, 106, 62, .55) 0 18px, rgba(102, 67, 37, .55) 18px 36px);
  color: var(--paper);
}
.hero-copy { max-width: 780px; }
.eyebrow, .form-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 6.25rem);
  line-height: .92;
  letter-spacing: -.055em;
}
.hero-lede {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 250, 242, .78);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
}
.trust-row span {
  border: 1px solid rgba(255, 250, 242, .2);
  background: rgba(255, 250, 242, .08);
  padding: 10px 13px;
  color: rgba(255, 250, 242, .86);
  font-size: .86rem;
  font-weight: 800;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button, .quote-card button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0 20px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}
.button.primary, .quote-card button { background: var(--gold); color: var(--ink); }
.button.ghost { border: 1px solid rgba(255, 250, 242, .28); color: var(--paper); }

.quote-card {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .28);
}
.quote-card h2 { margin: 0 0 8px; font-size: clamp(1.6rem, 3vw, 2.35rem); line-height: 1; }
.quote-card label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-size: .8rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.quote-card input, .quote-card select, .quote-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #f8f4ed;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  min-height: 46px;
  padding: 12px 13px;
  text-transform: none;
}
.quote-card textarea { resize: vertical; line-height: 1.5; }
.quote-card input:focus, .quote-card select:focus, .quote-card textarea:focus {
  outline: 3px solid rgba(215, 177, 108, .34);
  border-color: var(--timber);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.service-strip article {
  min-height: 340px;
  padding: clamp(28px, 4vw, 54px);
  background: var(--paper);
}
.service-strip span, .site-footer span {
  display: block;
  margin-bottom: 18px;
  color: var(--timber);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.service-strip h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.service-strip p, .section-heading p, .site-footer p {
  margin: 18px 0 0;
  color: #5e564c;
  line-height: 1.7;
}

.reviews {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
  background: var(--sand);
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 470px);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.4vw, 4.6rem);
  line-height: .95;
  letter-spacing: -.05em;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-grid article {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background: var(--paper);
}
.review-grid p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--charcoal);
}
.review-grid strong, .review-grid span { display: block; }
.review-grid span { margin-top: 5px; color: #766d62; }

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 26px;
  padding: clamp(36px, 6vw, 70px) clamp(18px, 5vw, 72px);
  background: var(--charcoal);
  color: var(--paper);
}
.site-footer p, .site-footer a { color: rgba(255, 250, 242, .74); }
.footer-brand { margin-bottom: 18px; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .main-nav { display: none; }
  .hero, .section-heading, .site-footer { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 46px; }
  .service-strip, .review-grid { grid-template-columns: 1fr; }
  .service-strip article { min-height: 0; }
}

@media (max-width: 560px) {
  .site-header { padding: 14px; gap: 12px; }
  .brand-mark { width: 36px; height: 36px; }
  .nav-call { min-height: 38px; padding: 0 11px; font-size: .82rem; }
  h1 { font-size: clamp(2.35rem, 15vw, 4.4rem); }
  .hero-actions { display: grid; }
  .button, .quote-card button { width: 100%; }
  .quote-card { padding: 18px; }
}