/* Bibb County Mold Remediation — stylesheet
   Palette grounded in the Ocmulgee fall line: river teal, wet slate, dry bone, signal gold. */

:root {
  --ink: #0c2429;
  --river: #0f4750;
  --river-deep: #08343b;
  --moss: #2f6f63;
  --paper: #f4f6f6;
  --paper-2: #e9eeed;
  --line: #ccd9d7;
  --gold: #d99a1f;
  --gold-deep: #a8730f;
  --body: #26383c;
  --muted: #5a6f73;
  --white: #ffffff;

  --wrap: 1120px;
  --narrow: 720px;
  --radius: 4px;
  --shadow: 0 1px 2px rgba(12, 36, 41, .06), 0 8px 24px rgba(12, 36, 41, .07);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; }

a { color: var(--river); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--gold-deep); }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

h1, h2, h3, h4 {
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.012em;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2rem, 5.2vw, 3.15rem); }
h2 { font-size: clamp(1.5rem, 3.6vw, 2.1rem); margin-top: 2.2em; }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.35rem); margin-top: 1.9em; }
h2:first-child, h3:first-child { margin-top: 0; }

p { margin: 0 0 1.15em; }

.eyebrow {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--moss);
  margin: 0 0 .9em;
  display: block;
}
.eyebrow::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background: var(--gold);
  margin-top: .55em;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: var(--narrow); }

/* ---------- Utility bar + header ---------- */

.topbar {
  background: var(--river-deep);
  color: #cfe0de;
  font-size: .82rem;
  letter-spacing: .01em;
}
.topbar .wrap {
  display: flex; flex-wrap: wrap; gap: .3em 1.2em;
  align-items: center; justify-content: center;
  padding-top: .5em; padding-bottom: .5em; text-align: center;
}
.topbar strong { color: var(--white); font-weight: 600; }

.masthead {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.masthead .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 14px; padding-bottom: 14px;
}

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; min-width: 0; }
.brand-mark { flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.12; }
.brand-name {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1rem, 3.1vw, 1.16rem); font-weight: 600; color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: .64rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-top: 3px;
}

.head-cta { display: flex; align-items: center; gap: 9px; flex: none; }
.head-phone {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--river); color: var(--white);
  padding: 10px 15px; border-radius: var(--radius);
  font-weight: 700; font-size: .98rem; text-decoration: none;
  white-space: nowrap;
}
.head-phone:hover { background: var(--river-deep); color: var(--white); }
.head-phone svg { flex: none; }

@media (max-width: 700px) {
  .masthead .wrap { gap: 10px; }
  .head-phone span { display: none; }
  .head-phone { padding: 11px 13px; }
  .brand-sub { letter-spacing: .09em; font-size: .6rem; }
}
@media (max-width: 400px) {
  .brand-sub { display: none; }
}

.navtoggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 42px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius);
  cursor: pointer; color: var(--ink); padding: 0;
}

nav.mainnav { border-bottom: 1px solid var(--line); background: var(--white); }
nav.mainnav ul {
  list-style: none; margin: 0; padding: 0;
  display: none; flex-direction: column;
}
nav.mainnav.open ul { display: flex; }
nav.mainnav li { border-top: 1px solid var(--paper-2); }
nav.mainnav a {
  display: block; padding: 13px 0; text-decoration: none;
  color: var(--ink); font-weight: 600; font-size: .95rem;
}
nav.mainnav a:hover, nav.mainnav a[aria-current="page"] { color: var(--gold-deep); }

@media (min-width: 900px) {
  .navtoggle { display: none; }
  nav.mainnav ul { display: flex !important; flex-direction: row; gap: 26px; }
  nav.mainnav li { border-top: 0; }
  nav.mainnav a { padding: 12px 0; }
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(168deg, var(--river-deep) 0%, var(--river) 58%, #12545a 100%);
  color: #e4eeec;
  padding: 46px 0 40px;
}
.hero h1 { color: var(--white); max-width: 16ch; }
.hero .eyebrow { color: var(--gold); }
.hero .eyebrow::after { background: rgba(255,255,255,.35); }
.hero-lede { font-size: 1.1rem; max-width: 54ch; color: #cfe0de; }
.hero-grid { display: grid; gap: 34px; }
@media (min-width: 940px) {
  .hero { padding: 66px 0 58px; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 52px; }
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 22px; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem; text-decoration: none;
  border: 2px solid transparent; cursor: pointer; font-family: inherit;
  transition: background .15s ease, color .15s ease;
}
.btn-gold { background: var(--gold); color: #221802; }
.btn-gold:hover { background: #f0ad2b; color: #221802; }
.btn-outline { border-color: rgba(255,255,255,.45); color: var(--white); background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,.12); color: var(--white); }
.btn-river { background: var(--river); color: var(--white); }
.btn-river:hover { background: var(--river-deep); color: var(--white); }
.btn-block { width: 100%; }

.hero-note {
  margin-top: 22px; font-size: .86rem; color: #a9c4c1;
  border-left: 2px solid rgba(217,154,31,.6); padding-left: 12px; max-width: 46ch;
}

/* ---------- Signature: moisture schematic ---------- */

.schematic {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px; padding: 20px 18px 16px;
}
.schematic h2 {
  color: var(--white); font-size: 1.02rem; margin: 0 0 4px;
  font-family: "Public Sans", sans-serif; font-weight: 700;
  letter-spacing: .01em;
}
.schematic p.sub { color: #9fbcb9; font-size: .82rem; margin: 0 0 14px; }
.schematic figcaption { color: #9fbcb9; font-size: .78rem; margin-top: 14px; line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 12px; }

.legend { list-style: none; margin: 14px 0 0; padding: 0; }
.legend li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .85rem; color: #cfe0de; line-height: 1.45; margin-bottom: 9px;
}
.legend li:last-child { margin-bottom: 0; }
.legend div { min-width: 0; }
.legend span {
  flex: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); color: #221802;
  display: flex; align-items: center; justify-content: center;
  font-size: .74rem; font-weight: 700; margin-top: 1px;
}
.legend strong { color: #ffffff; font-weight: 600; }
.schematic svg { display: block; width: 100%; height: auto; }

/* ---------- Sections ---------- */

section { padding: 44px 0; }
@media (min-width: 900px) { section { padding: 64px 0; } }

.band-paper { background: var(--paper); }
.band-white { background: var(--white); }
.band-tint { background: var(--paper-2); }
.band-dark { background: var(--ink); color: #cfdcdb; }
.band-dark h2, .band-dark h3 { color: var(--white); }
.band-dark .eyebrow { color: var(--gold); }
.band-dark a { color: #9fd4cd; }

.lede { font-size: 1.1rem; color: var(--ink); max-width: 60ch; }

.prose { max-width: 68ch; }
.prose ul, .prose ol { margin: 0 0 1.15em; padding-left: 1.15em; }
.prose li { margin-bottom: .5em; }
.prose li::marker { color: var(--moss); }

/* ---------- Cards ---------- */

.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 700px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 20px;
  display: flex; flex-direction: column;
}
.card h3 { margin: 0 0 .45em; font-size: 1.16rem; }
.card p { font-size: .95rem; color: var(--muted); margin-bottom: 1em; }
.card .card-link { margin-top: auto; font-weight: 700; font-size: .92rem; text-decoration: none; }
.card .card-link::after { content: " →"; }
.card-num {
  font-family: "Newsreader", serif; font-size: .8rem; font-weight: 600;
  color: var(--gold-deep); letter-spacing: .1em; display: block; margin-bottom: .6em;
}

.linklist { list-style: none; margin: 0; padding: 0; columns: 1; }
@media (min-width: 640px) { .linklist { columns: 2; } }
@media (min-width: 980px) { .linklist { columns: 3; } }
.linklist li { break-inside: avoid; margin-bottom: 9px; }
.linklist a {
  display: block; padding: 10px 12px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius);
  text-decoration: none; font-weight: 600; font-size: .93rem;
}
.linklist a:hover { border-color: var(--moss); background: #fbfdfc; }
.linklist span { display: block; font-weight: 400; font-size: .8rem; color: var(--muted); margin-top: 2px; }

/* ---------- Callouts ---------- */

.note {
  border-left: 3px solid var(--gold); background: #fdf8ec;
  padding: 16px 18px; border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .95rem; margin: 1.6em 0;
}
.note strong { color: var(--ink); }
.note p:last-child { margin-bottom: 0; }

.disclosure {
  border: 1px dashed var(--line); background: var(--white);
  padding: 16px 18px; border-radius: var(--radius);
  font-size: .9rem; color: var(--muted); margin: 1.6em 0;
}
.disclosure p:last-child { margin-bottom: 0; }

/* ---------- FAQ ---------- */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq summary {
  cursor: pointer; list-style: none; padding: 16px 34px 16px 0;
  font-weight: 600; color: var(--ink); position: relative;
  font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 13px;
  font-size: 1.5rem; color: var(--moss); font-weight: 400; line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq .faq-body { padding: 0 0 18px; max-width: 68ch; }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* ---------- Form ---------- */

.formcard {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 6px; padding: 24px 20px; box-shadow: var(--shadow);
}
@media (min-width: 700px) { .formcard { padding: 30px 28px; } }
.formcard h2 { margin-top: 0; }

.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 6px; }
.field .hint { font-weight: 400; color: var(--muted); font-size: .82rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 13px; font: inherit; font-size: 1rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); color: var(--body);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--moss); }
.form-foot { font-size: .82rem; color: var(--muted); margin-top: 14px; }
.form-alt {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line);
  font-size: .93rem;
}

/* ---------- Sticky mobile call bar ---------- */

.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; background: var(--river-deep);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -2px 16px rgba(8,52,59,.25);
}
.callbar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 8px; color: var(--white); text-decoration: none;
  font-weight: 700; font-size: .95rem;
}
.callbar a + a { border-left: 1px solid rgba(255,255,255,.18); }
.callbar a.alt { background: var(--gold); color: #221802; }
body { padding-bottom: 56px; }
@media (min-width: 900px) { .callbar { display: none; } body { padding-bottom: 0; } }

/* ---------- Breadcrumb ---------- */

.crumbs { font-size: .82rem; color: var(--muted); padding: 14px 0 0; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.crumbs li::after { content: "/"; margin-left: 6px; color: var(--line); }
.crumbs li:last-child::after { content: ""; }

/* ---------- Page header ---------- */

.pagehead { background: var(--white); border-bottom: 1px solid var(--line); padding: 22px 0 40px; }
.pagehead h1 { max-width: 20ch; }
.pagehead .lede { margin-bottom: 0; }
.pagehead-actions { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Footer ---------- */

footer.sitefoot { background: var(--ink); color: #9fb4b6; font-size: .92rem; padding: 44px 0 28px; }
footer.sitefoot h4 {
  color: var(--white); font-family: "Public Sans", sans-serif;
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  margin: 0 0 14px; font-weight: 700;
}
footer.sitefoot a { color: #bcd0d1; text-decoration: none; }
footer.sitefoot a:hover { color: var(--gold); text-decoration: underline; }
.foot-grid { display: grid; gap: 30px; }
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
@media (min-width: 1000px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.foot-grid ul { list-style: none; margin: 0; padding: 0; }
.foot-grid li { margin-bottom: 8px; }
.foot-phone {
  display: inline-block; color: var(--white); font-weight: 700;
  font-size: 1.28rem; text-decoration: none; margin: 6px 0 4px;
  font-family: "Newsreader", serif;
}
.foot-phone:hover { color: var(--gold); }
.foot-legal {
  margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13);
  font-size: .82rem; line-height: 1.6; color: #8aa1a3;
}
.foot-legal p { margin-bottom: .7em; }
.foot-legal p:last-child { margin-bottom: 0; }

/* ---------- Misc ---------- */

.factstrip { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 700px) { .factstrip { grid-template-columns: repeat(3, 1fr); } }
.factstrip div { background: var(--white); padding: 18px 18px; }
.factstrip dt { font-family: "Newsreader", serif; font-size: 1.5rem; color: var(--river); font-weight: 600; margin-bottom: 4px; }
.factstrip dd { margin: 0; font-size: .88rem; color: var(--muted); line-height: 1.5; }

.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.steps li {
  counter-increment: step; position: relative;
  padding: 0 0 24px 52px; border-left: 1px solid var(--line); margin-left: 16px;
}
.steps li:last-child { border-left-color: transparent; padding-bottom: 0; }
.steps li::before {
  content: counter(step); position: absolute; left: -16px; top: -2px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--river); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem; font-weight: 700;
}
.steps h3 { margin: 0 0 .3em; font-size: 1.08rem; }
.steps p { font-size: .95rem; margin-bottom: 0; color: var(--muted); }

.tag {
  display: inline-block; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 700; color: var(--moss); background: #e7f0ee;
  padding: 4px 9px; border-radius: 2px; margin-bottom: 12px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
