/* HOA Painting Las Vegas — shared site styles */
:root {
  --navy: #1c2b3a;
  --gold: #b8862c;
  --gold-light: #d9a94a;
  --off-white: #f7f5f1;
  --text: #2b2b2b;
  --muted: #6b6b6b;
  --border: #e3ded4;
}
* { 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(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

header.site {
  background: var(--navy);
  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(--gold-light); }
header.site nav a { color: #dfe6ee; margin-left: 18px; font-size: .95rem; }
header.site nav a:hover { color: #fff; text-decoration: none; }
header.site .phone { background: var(--gold); color: var(--navy); font-weight: 700; padding: 8px 16px; border-radius: 4px; }
header.site .phone small { display: block; font-weight: 400; font-size: .7rem; color: #4a3a13; }

.hero {
  background:
    linear-gradient(180deg, rgba(28,43,58,.88) 0%, rgba(34,54,73,.92) 100%),
    url('/assets/hero-peeling-trim.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 64px 0 56px;
}
.hero h1 { font-size: 2.1rem; margin: 0 0 14px; max-width: 760px; }
.hero p.lead { font-size: 1.1rem; color: #cdd7e0; max-width: 620px; 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(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); text-decoration: none; }
.btn-outline { border: 1px solid #cdd7e0; color: #fff; }
.btn-outline:hover { border-color: #fff; text-decoration: none; }

section { padding: 52px 0; }
section.alt { background: var(--off-white); }
h2 { font-size: 1.55rem; margin: 0 0 8px; color: var(--navy); }
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(--navy); 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(--navy); margin-top: 18px; }
.faq dd { margin: 6px 0 0; color: var(--muted); }

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

footer.site { background: #14202b; color: #9fb0bd; padding: 34px 0; font-size: .88rem; }
footer.site .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
footer.site a { color: #cdd7e0; }
footer.site .note { color: #6f818e; font-size: .78rem; margin-top: 10px; }

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