/* 24 Hour Roof Repair Ohio Valley — brick red on graphite */
:root {
  --brand: #b8382c;
  --brand-dark: #8f2820;
  --brand-soft: #fbeceb;
  --ink: #1b1f22;
  --ink-soft: #56606a;
  --line: #e2e5e8;
  --bg: #fff;
  --bg-alt: #f5f6f7;
  --bg-dark: #2a3036;
  --bg-darker: #1b1f22;
  --max: 1160px;
  --radius: 4px;
  --shadow: 0 10px 26px rgba(27, 31, 34, .10);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink-soft); line-height: 1.68; background: var(--bg); -webkit-font-smoothing: antialiased; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
h1, h2, h3, h4 { font-family: var(--font); line-height: 1.14; color: var(--ink); letter-spacing: -.021em; text-wrap: balance; }
h1 { font-size: clamp(2rem, 5.2vw, 3.35rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.35rem); font-weight: 800; margin-bottom: .55em; }
h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: .35em; }
p { margin-bottom: 1rem; max-width: 68ch; }
a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul { padding-left: 1.15rem; margin-bottom: 1rem; }
li { margin-bottom: .35rem; }
strong { color: var(--ink); }
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 3px;
}

.topbar { background: var(--bg-darker); color: #b7bdc3; font-size: .82rem; padding: 8px 0; }
.topbar .wrap { display: flex; justify-content: space-between; gap: 16px; align-items: center; flex-wrap: wrap; }
.topbar span { margin-right: 16px; }
.topbar .dot::before { content: "\2022"; color: var(--brand); margin-right: 8px; }
.topbar a { color: #fff; font-weight: 700; }

.nav { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 40; }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 16px; }
.logo { font-weight: 800; color: var(--ink); font-size: 1.02rem; line-height: 1.2; text-decoration: none; max-width: 220px; }
.logo:hover { text-decoration: none; color: var(--ink); }
.nav__links { display: flex; align-items: center; gap: 2px; list-style: none; padding: 0; margin: 0; }
.nav__links > li > a {
  display: block; padding: 10px 12px; font-size: .76rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--ink); border-bottom: 3px solid transparent;
}
.nav__links > li > a:hover { color: var(--brand-dark); border-bottom-color: var(--brand); text-decoration: none; }
.has-dropdown { position: relative; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); min-width: 270px; padding: 6px 0; box-shadow: var(--shadow);
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { display: block; }
.dropdown li { list-style: none; margin: 0; }
.dropdown a { display: block; padding: 9px 18px; font-size: .92rem; color: var(--ink); font-weight: 500; border-left: 3px solid transparent; text-transform: none; letter-spacing: 0; }
.dropdown a:hover { background: var(--brand-soft); border-left-color: var(--brand); text-decoration: none; }
.nav__call {
  background: var(--brand); color: #fff !important; padding: 11px 18px; border-radius: var(--radius);
  font-weight: 700; box-shadow: 0 6px 16px rgba(184, 56, 44, .28);
}
.nav__call:hover { background: var(--brand-dark); text-decoration: none; border-bottom-color: transparent !important; }
.nav__toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--ink); }

.hero { position: relative; color: #fff; min-height: 600px; display: flex; align-items: center; }
.hero__media { position: absolute; inset: 0; z-index: 0; background:
  linear-gradient(102deg, rgba(27,31,34,.95) 0%, rgba(27,31,34,.82) 44%, rgba(27,31,34,.45) 100%),
  url("photos/tarping-wide-dusk.jpg") center/cover no-repeat;
}
.hero--inner { min-height: 340px; }
.hero--inner .hero__media { background:
  linear-gradient(102deg, rgba(27,31,34,.94) 0%, rgba(27,31,34,.76) 100%),
  url("img/hero-shingles.svg") center/cover no-repeat;
}
.hero .wrap { position: relative; z-index: 2; padding: 68px 20px; }
.eyebrow {
  display: inline-block; background: var(--brand); color: #fff; font-weight: 800; font-size: .7rem;
  letter-spacing: .1em; text-transform: uppercase; padding: 8px 15px; border-radius: 3px; margin-bottom: 18px;
}
.hero h1 { color: #fff; max-width: 17ch; }
.hero .rule { width: 60px; height: 4px; background: var(--brand); margin: 18px 0; }
.hero p.lead { color: #cfd4d9; font-size: 1.1rem; max-width: 40em; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0 28px; }
.btn { display: inline-block; padding: 14px 24px; border-radius: var(--radius); font-weight: 700; border: 2px solid transparent; }
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { border-color: #fff; color: #fff; }
.checks { display: flex; flex-wrap: wrap; gap: 14px 22px; color: #e7eaec; font-size: .95rem; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16); }
.check::before {
  content: "\2713"; display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%; background: var(--brand); color: #fff;
  font-size: .7rem; font-weight: 800; margin-right: 8px;
}

.section { padding: 70px 0; }
.section.alt { background: var(--bg-alt); }
.section > .wrap > h2::before,
.section > .wrap > div > h2::before {
  content: ""; display: block; width: 44px; height: 4px; background: var(--brand); margin-bottom: 16px;
}
.grid-2 { display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.card h3 { margin-bottom: .4em; }
.card a.more { font-weight: 700; }
.card--accent { border-top: 4px solid var(--brand); }
.card--accent .btn { margin-top: 6px; }
.grid-4 .card { padding: 14px 16px; }
.grid-4 .card h3 { margin: 0; font-size: .98rem; line-height: 1.35; }
.grid-4 .card h3 a { color: var(--ink); }
.grid-4 .card h3 a:hover { color: var(--brand-dark); }

.pill-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; }
.pill-list li { margin: 0; }
.pill-list a, .pill-list--plain li span {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: 3px;
  padding: 8px 14px; color: var(--ink); font-weight: 600; font-size: .91rem;
}
.pill-list a:hover { background: var(--brand-soft); border-color: var(--brand); text-decoration: none; }
.pill-list--plain li span { color: var(--ink-soft); font-weight: 500; }

table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); }
td + td { font-variant-numeric: tabular-nums; white-space: nowrap; }
th { background: var(--bg-alt); color: var(--ink); font-size: .88rem; }
tr:last-child td { border-bottom: 0; }

.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li { counter-increment: step; padding: 12px 0 12px 50px; position: relative; border-bottom: 1px solid var(--line); }
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: 12px; width: 30px; height: 30px; border-radius: 50%;
  background: var(--brand); color: #fff; font-weight: 800; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
}

.faq details { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--brand); border-radius: var(--radius); padding: 14px 18px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 700; color: var(--ink); }
.faq p { margin: 10px 0 0; }

.cta-band { background: var(--bg-darker); color: #cfd4d9; padding: 62px 0; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band h2::before { margin-left: auto; margin-right: auto; }
.cta-band p { max-width: 60ch; margin-left: auto; margin-right: auto; }

.form-embed { display: grid; gap: 10px; }
.form-embed .form-note { color: var(--ink-soft); font-size: .95rem; margin: 0; }
.form-embed iframe { width: 100%; min-height: 560px; border: 0; border-radius: var(--radius); display: block; }

nav.crumbs { margin-bottom: 18px; }
nav.crumbs p { margin: 0; font-size: .87rem; color: #b7bdc3; max-width: none; }
nav.crumbs a { color: var(--brand); }

.photo { margin: 0; }
.photo img {
  width: 100%; height: auto; display: block; border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--bg-alt);
  aspect-ratio: 16 / 9; object-fit: cover;
}
.photo-wide { max-width: 900px; }
.photo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.photo-note { margin-top: 16px; color: var(--ink-soft); font-size: .95rem; }

.footer { background: var(--bg-darker); color: #949ba2; padding: 48px 0 24px; font-size: .92rem; }
.footer h4 { color: #fff; margin-bottom: 12px; font-size: 1rem; }
.footer a { color: #cfd4d9; }
.footer p { max-width: none; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 28px; }
.footer ul { list-style: none; padding: 0; }
.legal { border-top: 1px solid rgba(255,255,255,.08); margin-top: 28px; padding-top: 16px; font-size: .82rem; }

.mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 50; background: var(--bg-darker);
  padding: 10px 12px; gap: 8px; border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-cta a { flex: 1; text-align: center; padding: 13px 8px; border-radius: var(--radius); font-weight: 700; }

@media (max-width: 900px) {
  .nav__links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); padding: 10px 16px; box-shadow: var(--shadow); max-height: 76vh; overflow-y: auto; }
  .nav__links.open { display: flex; }
  .nav__toggle { display: block; }
  .dropdown { position: static; display: block; box-shadow: none; border: 0; }
  .grid-2, .grid-3, .footer-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
  .hero { min-height: 0; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 70px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
