/* Accurate Painters — spec preview
   Plaster wall + paint-chip family shop.
   Oxblood / moss / brass — not a navy contractor template. */

:root {
  --plaster: #f3ece1;
  --linen: #e7ddd0;
  --chip: #fffaf2;
  --ink: #231c18;
  --ink-2: #3a312b;
  --mute: #5e544c;
  --rule: #d2c4b0;
  --oxblood: #7c2f2a;
  --oxblood-deep: #5c211d;
  --moss: #3d5a45;
  --brass: #c4a06a;
  --espresso: #1b1613;
  --wrap: min(1040px, calc(100% - 1.35rem));
  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink-2);
  background:
    repeating-linear-gradient(
      135deg,
      transparent,
      transparent 11px,
      rgba(210, 196, 176, 0.28) 11px,
      rgba(210, 196, 176, 0.28) 12px
    ),
    var(--plaster);
  line-height: 1.58;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 4.7rem;
}
@media (min-width: 760px) {
  body { padding-bottom: 0; }
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 0.45em;
  text-wrap: balance;
  color: var(--ink);
}
h1 { font-size: clamp(2.15rem, 8.4vw, 4.1rem); font-optical-sizing: auto; }
h2 { font-size: clamp(1.65rem, 4.4vw, 2.45rem); }
h3 { font-size: 1.28rem; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--oxblood); color: #fffaf2;
  padding: 0.5rem 0.8rem; z-index: 100;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }
.wrap { width: var(--wrap); margin-inline: auto; }
.eyebrow, .kicker {
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: var(--oxblood);
  margin: 0 0 0.55rem;
}
.lede { font-size: 1.12rem; color: var(--mute); max-width: 38rem; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(247, 241, 232, 0.96);
  backdrop-filter: blur(8px);
  color: var(--ink);
  border-bottom: 3px solid var(--oxblood);
}
.header-inner {
  display: flex; align-items: center; gap: 0.65rem; min-height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 0.55rem;
  text-decoration: none; color: var(--ink); min-width: 0;
}
.logo img, .logo svg { width: 40px; height: 40px; flex-shrink: 0; }
.logo-word {
  font-family: var(--display);
  font-size: 1.12rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 650;
}
.logo-word span {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
  margin-top: 0.18rem;
}
.nav { margin-left: auto; display: flex; align-items: center; gap: 1rem; }
.nav a {
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.88rem;
  color: var(--ink-2);
}
.nav a[aria-current="page"], .nav a:hover { color: var(--oxblood); }
.header-cta { margin-left: 0.1rem; }
.menu-toggle {
  display: none; margin-left: auto; width: 44px; height: 44px;
  border: 1px solid var(--rule); background: transparent; cursor: pointer;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block; width: 18px; height: 2px; background: var(--ink);
  margin: 0 auto; position: relative; content: "";
}
.menu-toggle span::before { position: absolute; top: -6px; }
.menu-toggle span::after { position: absolute; top: 6px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; border: 0; cursor: pointer;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.88rem;
  padding: 0.82rem 1.1rem;
  min-height: 44px;
  transition: transform 0.14s ease, background 0.14s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-blood { background: var(--oxblood); color: #fffaf2; }
.btn-blood:hover { background: var(--oxblood-deep); }
.btn-ink { background: var(--ink); color: #fffaf2; }
.btn-ghost {
  background: transparent; color: inherit;
  border: 1.5px solid currentColor;
}
.hero-actions, .actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.hero { padding: 1.5rem 0 0.2rem; }
.hero-panel {
  background: var(--chip);
  border: 1px solid var(--rule);
  box-shadow: 0 14px 0 rgba(35, 28, 24, 0.06);
  padding: 1.3rem 1.15rem 1.45rem;
}
.hero h1 { max-width: 14ch; }
.hero .lede { color: var(--ink-2); }
.hero-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.2rem;
}
.illustration {
  background: var(--linen);
  border: 1px solid var(--rule);
  padding: 0.4rem;
}
.illustration figcaption {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 0.45rem 0.25rem 0.15rem;
}
.swatch-row {
  display: flex; gap: 0.4rem; margin: 1.1rem 0 0;
  list-style: none; padding: 0;
}
.swatch-row li {
  flex: 1;
  height: 28px;
  border: 1px solid rgba(35, 28, 24, 0.12);
}
.swatch-row li:nth-child(1) { background: var(--oxblood); }
.swatch-row li:nth-child(2) { background: var(--brass); }
.swatch-row li:nth-child(3) { background: var(--moss); }
.swatch-row li:nth-child(4) { background: #d8cbb6; }
.swatch-row li:nth-child(5) { background: var(--espresso); }

.meta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-top: 1.15rem;
}
.meta-row div {
  border-top: 2px solid var(--ink);
  padding-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--mute);
}
.meta-row strong {
  display: block;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 650;
  color: var(--ink);
}

section { padding: 2.5rem 0; }
.band-blood {
  background: var(--oxblood);
  color: #f6e8dc;
}
.band-blood h2, .band-blood h3 { color: #fffaf2; }
.band-blood .kicker { color: #e7c9a4; }
.band-blood .lede { color: #f0d8c6; }
.band-moss {
  background: var(--moss);
  color: #e7efe8;
}
.band-moss h2 { color: #fffaf2; }
.band-moss .kicker { color: #c4a06a; }
.band-moss .lede { color: #d5e2d8; }

.split { display: grid; gap: 1.4rem; }
@media (min-width: 820px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; align-items: end; }
  .split { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
  .meta-row { grid-template-columns: repeat(4, 1fr); }
}

.cards { display: grid; gap: 0.75rem; }
@media (min-width: 700px) {
  .cards.three { grid-template-columns: repeat(3, 1fr); }
  .cards.two { grid-template-columns: repeat(2, 1fr); }
}

.chip-card {
  background: var(--chip);
  border: 1px solid var(--rule);
  padding: 0 0 1.15rem;
}
.chip-card .chip-top {
  height: 14px;
  background: var(--oxblood);
}
.chip-card.moss .chip-top { background: var(--moss); }
.chip-card.brass .chip-top { background: var(--brass); }
.chip-card.ink .chip-top { background: var(--espresso); }
.chip-card h3, .chip-card p, .chip-card .num {
  padding-left: 1.05rem;
  padding-right: 1.05rem;
}
.chip-card h3 { margin: 0.85rem 0 0.35rem; }
.chip-card p { color: var(--mute); font-size: 0.98rem; }
.chip-card .num {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--oxblood);
}

.quote {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.8vw, 1.6rem);
  line-height: 1.35;
  color: #fffaf2;
  margin: 0;
  font-style: italic;
  font-weight: 500;
}
.quote cite {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e7c9a4;
  font-weight: 600;
}

.counties { display: grid; gap: 0.7rem; }
@media (min-width: 700px) { .counties { grid-template-columns: repeat(3, 1fr); } }
.county {
  background: var(--chip);
  border: 1px solid var(--rule);
  padding: 1.15rem 1rem 1.2rem;
}
.county strong {
  display: block;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 650;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.county span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}

.contact-list { list-style: none; padding: 0; margin: 0 0 1.1rem; }
.contact-list li {
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--rule);
}
.contact-list span {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  color: var(--oxblood);
  margin-bottom: 0.12rem;
}
.contact-list a { font-weight: 700; }

form {
  display: grid; gap: 0.4rem;
  background: var(--chip);
  border: 1px solid var(--rule);
  padding: 1.15rem 1.05rem 1.25rem;
}
label {
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-top: 0.3rem;
}
input, textarea, select {
  font: inherit;
  padding: 0.7rem 0.75rem;
  border: 1px solid var(--rule);
  background: #fffdf8;
  color: var(--ink);
  width: 100%;
  min-height: 44px;
}
textarea { min-height: 8rem; resize: vertical; }
.note { font-size: 0.86rem; color: var(--mute); }
.contact-grid { display: grid; gap: 1.4rem; }
@media (min-width: 820px) {
  .contact-grid { grid-template-columns: 0.95fr 1.05fr; align-items: start; }
}

.page-hero { padding: 2rem 0 0.2rem; }
.page-hero h1 { max-width: 16ch; }

.fact-card {
  background: var(--chip);
  border: 1px solid var(--rule);
  padding: 1.15rem 1.1rem 1.2rem;
}

.site-footer {
  background: var(--espresso);
  color: #b7aaa0;
  padding: 1.8rem 0 2.2rem;
  font-size: 0.9rem;
}
.site-footer a { color: #fffaf2; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 0.7rem 1.3rem;
  justify-content: space-between; align-items: center;
}
.footer-brand {
  font-family: var(--display);
  color: #fffaf2;
  font-size: 1.15rem;
  font-weight: 650;
}

.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--espresso);
  border-top: 3px solid var(--oxblood);
}
.dock a {
  text-decoration: none;
  color: #fffaf2;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.86rem;
  min-height: 52px;
  display: flex; align-items: center; justify-content: center;
}
.dock a:first-child { background: var(--oxblood); }
@media (min-width: 760px) { .dock { display: none; } }

@media (max-width: 759px) {
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: #f7f1e8;
    flex-direction: column; align-items: stretch;
    padding: 0.7rem 1rem 1rem;
    gap: 0;
    border-bottom: 3px solid var(--oxblood);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.8rem 0.15rem; border-bottom: 1px solid var(--rule); }
  .nav .btn { margin-top: 0.7rem; }
}
