/* Senior Painting Henderson — shared site styles */
:root {
  --charcoal: #2f3226;
  --sage: #5c6e42;
  --sage-light: #8a9d5e;
  --cream: #faf6ec;
  --text: #2b2b26;
  --muted: #6b6a5a;
  --border: #e6dfc9;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a { color: var(--sage); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

header.site {
  background: var(--charcoal);
  color: #fff;
  padding: 14px 0;
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
header.site .brand { font-size: 1.25rem; font-weight: 700; color: #fff; letter-spacing: .2px; }
header.site .brand span { color: var(--sage-light); }
header.site nav a { color: #ded9c4; margin-left: 18px; font-size: .95rem; }
header.site nav a:hover { color: #fff; text-decoration: none; }
header.site .phone { background: var(--sage-light); color: #fff; font-weight: 700; padding: 8px 16px; border-radius: 4px; }
header.site .phone small { display: block; font-weight: 400; font-size: .7rem; color: #26301a; }

.hero {
  background: linear-gradient(160deg, rgba(38,42,30,.94) 0%, rgba(75,89,54,.90) 100%);
  color: #fff;
  padding: 64px 0 56px;
}
.hero-photo {
  background:
    linear-gradient(160deg, rgba(38,42,30,.88) 0%, rgba(75,89,54,.82) 100%),
    url("/assets/hero-handshake.jpg");
  background-size: cover;
  background-position: center 30%;
  padding: 72px 0 64px;
}
.hero h1 { font-size: 2.1rem; margin: 0 0 14px; max-width: 760px; }
.hero p.lead { font-size: 1.1rem; color: #ded9c4; max-width: 640px; margin: 0 0 24px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 13px 26px; border-radius: 4px; font-weight: 700;
  font-size: .98rem;
}
.btn-primary { background: var(--sage-light); color: #fff; }
.btn-primary:hover { background: var(--sage); text-decoration: none; }
.btn-outline { border: 1px solid #cbd4b3; color: #fff; }
.btn-outline:hover { border-color: #fff; text-decoration: none; }

section { padding: 52px 0; }
section.alt { background: var(--cream); }
h2 { font-size: 1.55rem; margin: 0 0 8px; color: var(--charcoal); }
h2.center { text-align: center; }
p.section-sub { color: var(--muted); max-width: 640px; margin: 0 0 28px; }
p.section-sub.center { margin-left: auto; margin-right: auto; text-align: center; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 760px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  border: 1px solid var(--border); border-radius: 6px; padding: 22px; background: #fff;
}
.card h3 { margin: 0 0 8px; color: var(--charcoal); font-size: 1.08rem; }
.card p { color: var(--muted); margin: 0; font-size: .95rem; }

.area-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px 24px; list-style: none; padding: 0; margin: 0; }
.area-list a { display: block; padding: 6px 0; border-bottom: 1px dotted var(--border); }
@media (max-width: 600px) { .area-list { grid-template-columns: 1fr 1fr; } }

.faq dt { font-weight: 700; color: var(--charcoal); margin-top: 18px; }
.faq dd { margin: 6px 0 0; color: var(--muted); }

.stripe-cta { background: var(--charcoal); color: #fff; text-align: center; padding: 44px 0; }
.stripe-cta h2 { color: #fff; }
.stripe-cta p { color: #ded9c4; }

footer.site { background: #23261c; color: #b7b39e; padding: 34px 0; font-size: .88rem; }
footer.site .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
footer.site a { color: #ded9c4; }
footer.site .note { color: #8b8873; font-size: .78rem; margin-top: 10px; }

.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 10px; }
.local-note { border-left: 3px solid var(--sage-light); background: var(--cream); padding: 14px 18px; margin: 20px 0; font-size: .95rem; }

.area-group h3.group-title { color: var(--charcoal); font-size: 1.15rem; margin: 34px 0 14px; }
.area-group:first-of-type h3.group-title { margin-top: 0; }
