:root {
  --green-950: #0d1d11;
  --green-900: #132819;
  --green-800: #1e3a24;
  --green-700: #285333;
  --green-100: #eef5ec;
  --cream: #fbf5e8;
  --tan: #f2e6d1;
  --gold: #d79a2b;
  --gold-2: #efbd61;
  --ink: #162017;
  --muted: #65705f;
  --white: #ffffff;
  --line: rgba(19, 40, 25, 0.14);
  --shadow: 0 20px 55px rgba(19, 40, 25, 0.18);
  --radius: 22px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 880px; }
.hidden { display: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 245, 232, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 235px; height: auto; }
.nav { display: flex; align-items: center; gap: 22px; font-weight: 800; color: var(--green-800); }
.nav a:hover, .nav .active { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 900;
  border: 2px solid transparent;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  cursor: pointer;
  font: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: var(--green-950); box-shadow: 0 12px 24px rgba(215, 154, 43, .25); }
.btn-primary:hover { background: var(--gold-2); }
.btn-secondary { border-color: rgba(255,255,255,.38); color: var(--white); }
.btn-outline { border-color: var(--green-700); color: var(--green-800); }

.hero, .page-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(215,154,43,.26), transparent 28%),
    linear-gradient(135deg, var(--green-950), var(--green-700));
  color: var(--white);
}
.hero { padding: 82px 0; }
.page-hero { padding: 80px 0; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: start; }
.eyebrow { margin: 0 0 12px; color: var(--gold); font-weight: 950; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; }
h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: -.035em; }
h1 { font-size: clamp(2.55rem, 6vw, 5.35rem); max-width: 920px; }
.hero-home h1 { font-size: clamp(2.25rem, 4.8vw, 4.35rem); max-width: 780px; }
.hero-service-title { display: block; width: 100%; font-size: clamp(.72rem, 1vw, .86rem); color: var(--gold); letter-spacing: .18em; text-transform: uppercase; margin: 0 0 24px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.16); }
.hero-service-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.hero-service-list li { position: relative; padding-left: 30px; font-size: clamp(2.2rem, 4.8vw, 4.25rem); line-height: .98; letter-spacing: -.04em; font-weight: 950; }
.hero-service-list li::before { content: ""; position: absolute; left: 0; top: .42em; width: 12px; height: 12px; border-radius: 999px; background: var(--gold); box-shadow: 0 0 0 6px rgba(215,154,43,.16); }
h2 { font-size: clamp(2rem, 3.8vw, 3.35rem); }
h3 { font-size: 1.35rem; }
.lede { font-size: 1.18rem; color: rgba(255,255,255,.84); max-width: 760px; margin: 22px 0 0; }
.lede.dark { color: rgba(255,255,255,.84); }
.page-hero .btn-outline { color: var(--white); border-color: rgba(255,255,255,.42); }
.body-copy { color: var(--muted); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.trust-list { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.trust-list li { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08); padding: 9px 12px; border-radius: 999px; font-weight: 800; }

.hero-media-card { position: relative; border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.18); background: rgba(13,29,17,.42); }
.hero-media-card img { width: 100%; height: 520px; object-fit: contain; }
.media-note { margin: 14px 0 0; color: rgba(255,255,255,.78); font-weight: 850; font-size: .98rem; }

.section { padding: 82px 0; }
.section-white { background: var(--white); }
.section-dark { background: var(--green-900); color: var(--white); }
.section-head { margin-bottom: 30px; }
.cards { display: grid; gap: 20px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card { background: var(--green-100); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.card span { color: var(--gold); font-weight: 950; }
.card p { color: var(--muted); }
.card a { color: var(--green-800); font-weight: 900; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; align-items: center; }
.split.aligned { align-items: start; }
.checklist { font-size: 1.12rem; color: rgba(255,255,255,.82); }
.area-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 12px; }
.area-list li { background: var(--green-100); border: 1px solid var(--line); padding: 12px 17px; border-radius: 999px; font-weight: 900; }

.service-stack .container { display: grid; gap: 18px; }
.service-row { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); }
.service-row p { color: var(--muted); font-size: 1.08rem; }
.service-row strong { color: var(--green-800); }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: start; }
.quote-form, .photo-guide { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: 0 12px 34px rgba(19,40,25,.08); }
.quote-form { display: grid; gap: 15px; }
.quote-form label { display: grid; gap: 7px; font-weight: 850; color: var(--green-800); }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 13px; padding: 12px 13px; font: inherit; color: var(--ink); background: var(--white);
}
.quote-form button { width: fit-content; }
.guide-item { border-top: 1px solid var(--line); padding-top: 18px; margin-top: 18px; }
.guide-item strong { color: var(--green-800); font-size: 1.1rem; }
.guide-item p { color: var(--muted); margin-bottom: 0; }

.footer { background: var(--green-950); color: rgba(255,255,255,.78); padding: 48px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr 1fr; gap: 34px; }
.footer-logo { width: 210px; background: var(--cream); border-radius: 14px; padding: 8px; margin-bottom: 14px; }
.footer h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 12px; }
.footer a { display: block; color: rgba(255,255,255,.78); margin: 6px 0; }
.footer a:hover, .footer .review-link { color: var(--gold); font-weight: 850; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 28px; padding-top: 18px; font-size: .92rem; }

@media (max-width: 900px) {
  .nav { display: none; }
  .brand img { width: 190px; }
  .header-cta { padding: 11px 14px; font-size: .92rem; }
  .hero, .page-hero { padding: 58px 0; }
  .hero-grid, .cards.three, .split, .service-row, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-media-card img { height: 360px; }
  .header-inner { min-height: 76px; }
}
.section-cream { background: var(--cream); }
.body-copy.wide { max-width: 820px; }
.faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.faq-grid article { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.faq-grid p { color: var(--muted); }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } }
.form-note { margin: -4px 0 0; color: var(--muted); font-size: .92rem; }
.after-submit { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 18px; }
.after-submit h3 { font-size: 1.1rem; color: var(--green-800); }
.after-submit p { color: var(--muted); margin-bottom: 0; }
@media (max-width: 480px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .header-inner { gap: 10px; min-height: 68px; }
  .brand img { width: 145px; }
  .header-cta { padding: 10px 12px; font-size: 0; }
  .header-cta::after { content: "Free Quote"; font-size: .88rem; }
  h1 { font-size: clamp(2.15rem, 12vw, 3rem); }
}
.header-actions { display: flex; align-items: center; gap: 12px; }
.phone-link { font-weight: 950; color: var(--green-800); white-space: nowrap; }
.footer .footer-phone { color: var(--white); font-weight: 950; font-size: 1.08rem; }
.full-width { width: 100%; margin-bottom: 10px; }
.contact-grid .lede a, .page-hero a[href^="tel:"] { color: var(--gold-2); font-weight: 900; }
.mobile-sticky { display: none; }
@media (max-width: 900px) {
  .phone-link { display: none; }
}
@media (max-width: 480px) {
  .header-actions { gap: 8px; }
}
@media (max-width: 760px) {
  body { padding-bottom: 68px; }
  .mobile-sticky { position: fixed; display: grid; grid-template-columns: 1fr 1fr; left: 0; right: 0; bottom: 0; z-index: 30; background: var(--green-950); box-shadow: 0 -10px 28px rgba(0,0,0,.22); }
  .mobile-sticky a { color: var(--white); text-align: center; padding: 14px 10px; font-weight: 950; }
  .mobile-sticky a:first-child { background: var(--gold); color: var(--green-950); }
}
