/* ========================================
   Home Additions NoVA — Shared Stylesheet
   Deep forest + cream + brass palette
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --forest: #1f3a2e;
  --forest-deep: #152a22;
  --forest-dark: #0d1a15;
  --cream: #f7f2e8;
  --cream-warm: #ede4d1;
  --brass: #b8914a;
  --brass-light: #d4af6f;
  --brass-dark: #8a6a2f;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --white: #ffffff;
  --border: #e8e0cf;
  --shadow-sm: 0 2px 8px rgba(13, 26, 21, 0.08);
  --shadow-md: 0 8px 24px rgba(13, 26, 21, 0.12);
  --shadow-lg: 0 20px 50px rgba(13, 26, 21, 0.18);
  --radius: 4px;
  --radius-lg: 10px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--forest); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--brass-dark); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--forest);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.85rem); }
h3 { font-size: clamp(1.35rem, 2.3vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brass-dark);
  margin-bottom: 1rem;
  display: inline-block;
}

.lead {
  font-size: 1.12rem;
  line-height: 1.7;
  color: #3a3a3a;
  max-width: 640px;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

section { padding: 96px 0; }
@media (max-width: 768px) { section { padding: 64px 0; } }

/* ========== Top call bar ========== */
.topbar {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 10px 0;
  font-size: 0.86rem;
  text-align: center;
  letter-spacing: 0.02em;
}
.topbar a { color: var(--brass-light); font-weight: 600; }
.topbar a:hover { color: var(--white); }
.topbar span { margin: 0 12px; opacity: 0.5; }

/* ========== Header ========== */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(6px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--forest);
  color: var(--brass-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 3px;
}

.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--ink); position: relative; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--brass);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--forest);
  color: var(--cream) !important;
  padding: 11px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover { background: var(--brass-dark); color: var(--white) !important; }
.nav-cta::after { display: none; }
.nav-cta::before { content: '\260E'; font-size: 0.95rem; }

.mobile-toggle {
  display: none;
  background: none; border: 0;
  font-size: 1.5rem; color: var(--forest);
  cursor: pointer; z-index: 101;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed; top: 0; right: 0;
    height: 100vh; width: 280px;
    background: var(--forest);
    flex-direction: column;
    padding: 80px 30px 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    gap: 20px; align-items: flex-start;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--cream); }
  .nav-links a:hover { color: var(--brass-light); }
  .nav-cta { background: var(--brass); color: var(--forest-deep) !important; width: 100%; text-align: center; justify-content: center; }
  .mobile-toggle { display: block; }
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: var(--brass);
  color: var(--forest-deep);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  border: 0;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.btn:hover { background: var(--forest); color: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border: 2px solid var(--cream); color: var(--cream); }
.btn-outline:hover { background: var(--cream); color: var(--forest); border-color: var(--cream); }
.btn-large { padding: 20px 40px; font-size: 1rem; }
.btn-phone::before { content: '\260E'; font-size: 1.1rem; }

/* ========== Hero ========== */
.hero {
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 60%, var(--forest-dark) 100%);
  color: var(--cream);
  padding: 110px 0 130px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  top: -30%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(184, 145, 74, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero h1 { color: var(--cream); margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--brass-light); font-weight: 400; }
.hero .eyebrow { color: var(--brass-light); }

.hero-sub {
  font-size: 1.18rem;
  color: rgba(247, 242, 232, 0.82);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-trust {
  margin-top: 48px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(247, 242, 232, 0.15);
}
.hero-trust-item { display: flex; flex-direction: column; gap: 2px; }
.hero-trust-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--brass-light);
  line-height: 1;
}
.hero-trust-label {
  font-size: 0.8rem;
  color: rgba(247, 242, 232, 0.7);
  letter-spacing: 0.05em;
  margin-top: 6px;
}

.hero-card {
  background: var(--cream);
  color: var(--ink);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--brass);
}
.hero-card h3 { color: var(--forest); margin-bottom: 8px; }
.hero-card-sub { color: var(--muted); font-size: 0.95rem; margin-bottom: 24px; }
.hero-card ul { list-style: none; margin-bottom: 24px; }
.hero-card li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}
.hero-card li::before {
  content: '\2713';
  color: var(--brass-dark);
  font-weight: 700;
  font-size: 1.1rem;
}
.hero-card li:last-child { border: 0; }
.hero-card .btn { width: 100%; justify-content: center; }

/* ========== Services grid ========== */
.section-head { text-align: center; margin-bottom: 60px; }
.section-head .lead { margin: 16px auto 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 0; height: 3px;
  background: var(--brass);
  transition: width 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brass);
}
.service-card:hover::before { width: 100%; }

.service-icon {
  width: 56px; height: 56px;
  background: var(--forest);
  color: var(--brass-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.service-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.service-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }
.service-card .link-arrow {
  color: var(--brass-dark);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ========== Why Us / Features ========== */
.why-us { background: var(--cream-warm); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: 48px; } }

.why-visual {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.why-visual::before {
  content: ''; position: absolute;
  top: -40px; right: -40px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, var(--brass-dark) 0%, transparent 70%);
  opacity: 0.55;
}
.why-visual::after {
  content: ''; position: absolute;
  top: 48px; left: 48px;
  width: 60px; height: 2px;
  background: var(--brass-light);
}
.why-visual-big {
  font-family: var(--font-display);
  font-size: 5.5rem;
  line-height: 0.9;
  color: var(--brass-light);
  margin-bottom: 20px;
  font-weight: 500;
  position: relative;
}
.why-visual-label { font-size: 1.15rem; color: rgba(247, 242, 232, 0.88); position: relative; }

.why-list { list-style: none; }
.why-list li {
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: start;
}
.why-list li:last-child { border: 0; }
.why-list-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brass-dark);
  font-weight: 500;
}
.why-list h4 { margin-bottom: 4px; color: var(--forest); }
.why-list p { color: var(--muted); font-size: 0.95rem; }

/* ========== Process ========== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process-num {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 500;
  color: var(--brass);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h4 { margin-bottom: 10px; }
.process-step p { color: var(--muted); font-size: 0.92rem; }

/* ========== CTA Banner ========== */
.cta-banner {
  background: var(--forest-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 140%; height: 140%;
  background: radial-gradient(ellipse at center, rgba(184, 145, 74, 0.2) 0%, transparent 50%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 2; text-align: center; }
.cta-banner h2 { color: var(--cream); margin-bottom: 20px; }
.cta-banner h2 em { font-style: italic; color: var(--brass-light); font-weight: 400; }
.cta-banner .lead { color: rgba(247, 242, 232, 0.8); margin: 0 auto 36px; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-banner-phone {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  color: var(--brass-light);
  font-weight: 500;
  display: block;
  margin-top: 24px;
  letter-spacing: -0.02em;
}
.cta-banner-phone:hover { color: var(--white); }

/* ========== Testimonials ========== */
.testimonials { background: var(--cream-warm); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .test-grid { grid-template-columns: 1fr; } }

.test-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
}
.test-card::before {
  content: '\201C';
  position: absolute;
  top: 14px; left: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--brass);
  line-height: 1;
  opacity: 0.25;
}
.test-stars { color: var(--brass); margin-bottom: 16px; letter-spacing: 3px; position: relative; }
.test-quote {
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 400;
  position: relative;
}
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 44px; height: 44px;
  background: var(--forest);
  color: var(--brass-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
}
.test-name { font-weight: 600; font-size: 0.95rem; }
.test-loc { font-size: 0.82rem; color: var(--muted); }

/* ========== Service Areas ========== */
.areas { background: var(--cream); }
.areas-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .areas-head { grid-template-columns: 1fr; gap: 24px; } }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.area-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--forest);
  transition: all 0.2s ease;
  font-size: 0.95rem;
}
.area-link:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
  transform: translateX(4px);
}
.area-link .arrow { color: var(--brass-dark); transition: transform 0.2s ease; }
.area-link:hover .arrow { color: var(--brass-light); transform: translateX(4px); }

/* ========== Neighborhoods (city pages) ========== */
.neighborhoods { background: var(--white); }
.neigh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.neigh-card {
  padding: 28px 24px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--brass);
  transition: all 0.25s ease;
}
.neigh-card:hover { background: var(--cream-warm); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.neigh-card h4 { color: var(--forest); margin-bottom: 6px; font-size: 1.1rem; }
.neigh-card .zip {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--brass-dark);
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}
.neigh-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

/* ========== FAQ ========== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 26px 0;
  background: none;
  border: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--forest);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-q::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--brass-dark);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-weight: 300;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: #3a3a3a;
  line-height: 1.7;
  font-size: 0.98rem;
}
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 28px; }

/* ========== Local intro (city pages) ========== */
.local-intro { background: var(--cream-warm); }
.local-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .local-intro-grid { grid-template-columns: 1fr; gap: 40px; } }

.local-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.local-card h4 { color: var(--forest); margin-bottom: 14px; }
.local-card dl { display: grid; grid-template-columns: auto 1fr; gap: 12px 24px; margin-top: 20px; }
.local-card dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brass-dark);
  font-weight: 600;
  padding-top: 2px;
}
.local-card dd { font-size: 0.95rem; color: var(--ink); }

/* ========== Footer ========== */
.site-footer {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h5 {
  color: var(--brass-light);
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(247, 242, 232, 0.72); font-size: 0.9rem; }
.site-footer a:hover { color: var(--brass-light); }

.footer-logo { color: var(--cream); margin-bottom: 16px; }
.footer-logo .logo-mark { background: var(--brass); color: var(--forest-dark); }
.footer-about {
  color: rgba(247, 242, 232, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.site-footer .footer-phone {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--brass-light);
  font-weight: 500;
  display: inline-block;
}
.site-footer .footer-phone:hover { color: var(--white); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(247, 242, 232, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(247, 242, 232, 0.55);
}

/* ========== Sticky mobile call button ========== */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  background: var(--brass);
  color: var(--forest-deep);
  padding: 16px;
  border-radius: var(--radius);
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 99;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}
.sticky-call:hover { background: var(--forest); color: var(--cream); }
.sticky-call::before { content: '\260E'; margin-right: 8px; }
@media (max-width: 768px) { .sticky-call { display: block; } }

/* ========== Utility ========== */
.text-center { text-align: center; }
.mt-sm { margin-top: 16px; } .mt-md { margin-top: 32px; } .mt-lg { margin-top: 48px; }

/* ========== Fade-in on scroll (progressive — visible by default) ========== */
.js-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js-ready .reveal.visible { opacity: 1; transform: none; }
