/* -----------  Cedar & Steel palette  ----------- */
:root {
  --forest:      #14532D;
  --forest-dark: #0F3D22;
  --forest-tint: #E8F0EC;
  --cedar:       #B45309;
  --cedar-dark:  #92400E;
  --cream:       #FAF5EB;
  --cream-dark:  #F0E9D6;
  --charcoal:    #1C1917;
  --grey-500:    #57534E;
  --grey-300:    #A8A29E;
  --grey-200:    #D6D3D1;
  --white:       #FFFFFF;
  --success:     #16A34A;
  --shadow-sm:   0 1px 2px rgba(28,25,23,.06), 0 1px 3px rgba(28,25,23,.08);
  --shadow-md:   0 4px 6px rgba(28,25,23,.06), 0 10px 15px rgba(28,25,23,.10);
  --shadow-lg:   0 10px 15px rgba(28,25,23,.10), 0 20px 40px rgba(28,25,23,.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-head: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); text-decoration: none; }
a:hover { color: var(--cedar); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section-tight { padding: 3rem 0; }

/* -----------  NAV  ----------- */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,245,235,.92);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--cream-dark);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .875rem 1.25rem; max-width: 1200px; margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: .625rem;
  font-family: var(--font-head); font-weight: 700; color: var(--forest);
  font-size: 1.25rem; letter-spacing: -0.01em;
}
.brand-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--forest); position: relative;
  display: flex; align-items: center; justify-content: center;
}
.brand-mark::before {
  content: ''; position: absolute; inset: 6px;
  border: 2px solid var(--cedar); border-radius: 4px;
}
.brand-mark::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  width: 2px; height: 14px; background: var(--cedar);
  transform: translate(-50%, -50%);
  box-shadow: -5px 0 0 var(--cedar), 5px 0 0 var(--cedar);
}
.brand small { color: var(--cedar); font-weight: 500; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; display: block; margin-top: -2px; }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-phone {
  font-weight: 600; color: var(--forest);
  display: flex; align-items: center; gap: .375rem;
}
.nav-phone svg { width: 18px; height: 18px; }
@media (max-width: 600px) { .nav-phone span { display: none; } }

/* -----------  BUTTONS  ----------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .875rem 1.5rem; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  cursor: pointer; border: 2px solid transparent; transition: all .15s ease;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--cedar); color: var(--white); border-color: var(--cedar); }
.btn-primary:hover { background: var(--cedar-dark); border-color: var(--cedar-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-ghost:hover { background: var(--forest); color: var(--white); }
.btn-large { padding: 1.125rem 2rem; font-size: 1.125rem; }
.btn-block { width: 100%; }

/* -----------  HERO  ----------- */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  padding: 4rem 0 5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent 0 40px, rgba(20,83,45,.04) 40px 42px);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 4rem;
  align-items: center; position: relative;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.eyebrow {
  display: inline-block; font-size: .875rem; font-weight: 600;
  color: var(--cedar); text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 1rem;
}
.hero h1 span { color: var(--forest); }
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--grey-500);
  max-width: 34rem; margin: 1rem 0 1.75rem;
}
.hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.hero-trust {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  color: var(--grey-500); font-size: .9rem;
}
.hero-trust > div { display: flex; align-items: center; gap: .375rem; }
.hero-trust svg { width: 16px; height: 16px; color: var(--forest); }

/* -----------  QUOTE FORM  ----------- */
.quote-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-dark);
}
.quote-card h3 { color: var(--forest); margin-bottom: .25rem; }
.quote-card > p { color: var(--grey-500); font-size: .95rem; margin: 0 0 1.25rem; }
.form-row { display: grid; gap: .875rem; margin-bottom: .875rem; }
.form-row.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form-row.two { grid-template-columns: 1fr; } }
.form-group label {
  display: block; font-size: .8rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: .25rem;
}
.form-group label .req { color: var(--cedar); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .75rem .875rem;
  border: 1.5px solid var(--grey-200); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; color: var(--charcoal);
  background: var(--white); transition: border-color .15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(20,83,45,.12);
}
.form-group textarea { min-height: 84px; resize: vertical; }
.form-fine { font-size: .8rem; color: var(--grey-500); margin: .75rem 0 0; }

/* -----------  TRUST BAR  ----------- */
.trust-bar {
  background: var(--forest); color: var(--white);
  padding: 1.5rem 0;
}
.trust-bar-inner {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
  text-align: center; max-width: 1000px; margin: 0 auto;
}
@media (max-width: 800px) { .trust-bar-inner { grid-template-columns: repeat(2, 1fr); } }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: .375rem; }
.trust-item svg { width: 24px; height: 24px; color: var(--cedar); }
.trust-item div { font-size: .9rem; font-weight: 500; }

/* -----------  SERVICES  ----------- */
.services { background: var(--cream); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head p { color: var(--grey-500); font-size: 1.1rem; margin: .5rem 0 0; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .service-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 2rem; border: 1px solid var(--cream-dark);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  background: var(--forest-tint); color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { color: var(--forest); }
.service-card ul {
  margin: .75rem 0 1.25rem; padding: 0; list-style: none;
  color: var(--grey-500); font-size: .95rem;
}
.service-card ul li { padding: .25rem 0 .25rem 1.25rem; position: relative; }
.service-card ul li::before {
  content: ''; position: absolute; left: 0; top: .7rem;
  width: 6px; height: 6px; border-radius: 50%; background: var(--cedar);
}
.price-tag {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: 1.5rem; color: var(--cedar);
  margin: .25rem 0 .5rem;
}
.price-tag small { font-size: .8rem; color: var(--grey-500); font-weight: 400; font-family: var(--font-body); }
.service-card .btn { margin-top: auto; }

/* -----------  AREAS  ----------- */
.areas { background: var(--forest); color: var(--white); }
.areas h2 { color: var(--white); }
.areas .section-head p { color: rgba(255,255,255,.75); }
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 900px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .areas-grid { grid-template-columns: 1fr; } }
.area-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md); padding: 1.25rem;
  transition: background .15s, border-color .15s;
}
.area-card:hover { background: rgba(255,255,255,.10); border-color: var(--cedar); }
.area-card h4 { color: var(--white); margin: 0 0 .25rem; font-size: 1.1rem; }
.area-card p { color: rgba(255,255,255,.7); font-size: .875rem; margin: 0; }
.area-card.current { background: var(--cedar); border-color: var(--cedar); }
.area-card.current p { color: rgba(255,255,255,.9); }

/* -----------  PROCESS  ----------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .process-grid { grid-template-columns: 1fr; } }
.process-step { position: relative; padding-top: 3.5rem; }
.step-num {
  position: absolute; top: 0; left: 0;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--cedar); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem;
}
.process-step h4 { color: var(--forest); margin-bottom: .375rem; }
.process-step p { color: var(--grey-500); margin: 0; font-size: .95rem; }

/* -----------  GALLERY / REVIEWS  ----------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 800px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item {
  aspect-ratio: 4/3; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); font-size: .9rem; font-style: italic;
  border: 1px dashed rgba(255,255,255,.2);
  overflow: hidden;
}

.reviews { background: var(--cream-dark); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 1.75rem; border: 1px solid var(--cream-dark);
}
.stars { color: #F59E0B; margin-bottom: .5rem; font-size: 1.1rem; }
.review-card p { font-style: italic; color: var(--charcoal); margin: 0 0 1rem; }
.review-attr { display: flex; align-items: center; justify-content: space-between; font-size: .875rem; color: var(--grey-500); }
.review-attr strong { color: var(--charcoal); }

/* -----------  FAQ  ----------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: var(--radius-sm);
  border: 1px solid var(--cream-dark);
  margin-bottom: .625rem; overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 1.125rem 1.25rem; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--charcoal);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.5rem; color: var(--cedar); font-weight: 400;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 1.25rem 1.25rem; color: var(--grey-500); }

/* -----------  CTA BAND  ----------- */
.cta-band {
  background: var(--charcoal); color: var(--white);
  text-align: center; padding: 4rem 0;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,.75); margin: .5rem 0 2rem; font-size: 1.1rem; }
.cta-band .btn-ghost { color: var(--cream); border-color: var(--cream); }
.cta-band .btn-ghost:hover { background: var(--cream); color: var(--charcoal); }

/* -----------  FOOTER  ----------- */
footer { background: var(--forest-dark); color: rgba(255,255,255,.75); padding: 3.5rem 0 1.5rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
footer h5 { color: var(--white); font-family: var(--font-body); font-weight: 600; font-size: .95rem; margin: 0 0 .875rem; text-transform: uppercase; letter-spacing: .08em; }
footer ul { list-style: none; padding: 0; margin: 0; font-size: .9rem; }
footer ul li { margin-bottom: .5rem; }
footer a { color: rgba(255,255,255,.7); }
footer a:hover { color: var(--cedar); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10); padding-top: 1.5rem;
  display: flex; justify-content: space-between; font-size: .8rem; color: rgba(255,255,255,.5);
  flex-wrap: wrap; gap: 1rem;
}
.footer-brand p { font-size: .9rem; margin: .75rem 0 0; max-width: 340px; }

/* -----------  MOBILE FAB  ----------- */
.mobile-fab {
  display: none;
  position: fixed; bottom: 1rem; right: 1rem; z-index: 40;
  background: var(--cedar); color: var(--white);
  padding: .875rem 1.25rem; border-radius: 999px;
  font-weight: 700; box-shadow: var(--shadow-lg);
  align-items: center; gap: .5rem;
}
@media (max-width: 700px) { .mobile-fab { display: inline-flex; } }
.mobile-fab svg { width: 20px; height: 20px; }

/* -----------  FORM SUCCESS  ----------- */
.form-success {
  display: none; padding: 2rem; text-align: center;
  background: var(--forest-tint); border-radius: var(--radius-md);
  color: var(--forest);
}
.form-success.show { display: block; }
.form-success h3 { color: var(--forest); margin-bottom: .5rem; }

/* -----------  CITY-PAGE INTRO  ----------- */
.city-intro { background: var(--white); padding: 4rem 0; }
.city-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 900px) { .city-intro-grid { grid-template-columns: 1fr; } }
.city-intro h2 { color: var(--forest); }
.city-intro p { color: var(--grey-500); font-size: 1.05rem; }
.city-hoods {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem;
}
.hood-tag {
  background: var(--cream-dark); color: var(--forest);
  padding: .375rem .875rem; border-radius: 999px;
  font-size: .85rem; font-weight: 500;
}
