/* ==========================================================================
   Ohio Water Damage Pros - design variant 0 "Deep Water"
   Navy #0B2545 / teal #0E7C7B palette, orange #F97316 CTA,
   centered gradient hero, rounded 12px cards, dark header, roomy rhythm.
   ========================================================================== */

:root {
  --ink: #0b2545;
  --ink-soft: #143a63;
  --ink-line: #1d4a7a;
  --accent: #0e7c7b;
  --accent-soft: #e6f4f4;
  --cta: #f97316;
  --cta-dark: #e2620b;
  --cta-ink: #ffffff;
  --text: #1f2937;
  --text-soft: #475569;
  --text-faint: #64748b;
  --page: #ffffff;
  --page-alt: #f4f7f9;
  --border: #dbe4ec;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(11, 37, 69, 0.08);
  --shadow: 0 10px 26px rgba(11, 37, 69, 0.10);
  --wrap: 1120px;
  --rhythm: 72px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--page);
}

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

a {
  color: #0a6b6a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--ink);
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 1.85rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1em;
}

ul,
ol {
  margin: 0 0 1.2em;
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.45em;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--cta);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 var(--radius) 0;
  z-index: 60;
}

.skip-link:focus {
  left: 0;
}

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

.site-header {
  background: var(--ink);
  border-bottom: 3px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.15;
  flex: 0 0 auto;
}

.brand:hover {
  color: #fff;
}

.brand-text span {
  display: block;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ec3d6;
}

.brand-drop {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.site-nav {
  display: none;
}

.site-nav ul {
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: block;
  padding: 8px 11px;
  color: #dfe9f2;
  text-decoration: none;
  font-size: 0.95rem;
  border-radius: 8px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--ink-soft);
  color: #fff;
}

.nav-strip {
  border-top: 1px solid var(--ink-line);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-strip ul {
  display: flex;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 6px 12px;
  white-space: nowrap;
}

.nav-strip a {
  display: block;
  padding: 7px 11px;
  color: #dfe9f2;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 8px;
}

.nav-strip a:hover {
  background: var(--ink-soft);
  color: #fff;
}

/* -------------------------------------------------------------- buttons -- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-cta {
  background: var(--cta);
  color: var(--cta-ink);
  box-shadow: var(--shadow-sm);
}

.btn-cta:hover {
  background: var(--cta-dark);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-outline {
  background: #fff;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent-soft);
  color: var(--ink);
}

.btn-lg {
  padding: 15px 26px;
  font-size: 1.08rem;
}

.btn-block {
  width: 100%;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

/* ----------------------------------------------------------------- hero -- */

.hero {
  background: linear-gradient(160deg, #0b2545 0%, #103a63 52%, #0e7c7b 100%);
  color: #fff;
  text-align: center;
  padding: 46px 0 40px;
}

.hero h1 {
  color: #fff;
  font-size: 1.95rem;
  margin-bottom: 14px;
}

.hero p {
  color: #dbe9f3;
  font-size: 1.05rem;
  max-width: 46rem;
  margin: 0 auto 22px;
}

.hero .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 22rem;
  margin: 0 auto 26px;
}

.hero-cta small {
  color: #cfe0ec;
  font-size: 0.85rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  color: #e6eff6;
  font-size: 0.92rem;
}

.hero-points li {
  margin: 0;
}

.hero-points li::before {
  content: "\2713";
  color: #7fd1c8;
  font-weight: 700;
  margin-right: 6px;
}

/* Narrow gradient hero used on inner pages */
.page-hero {
  background: linear-gradient(150deg, #0b2545 0%, #14486f 70%, #0e7c7b 100%);
  color: #fff;
  padding: 34px 0 30px;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 8px;
}

.page-hero p {
  color: #d8e6f0;
  margin-bottom: 16px;
  max-width: 48rem;
}

/* ----------------------------------------------------------- trust strip -- */

.trust-strip {
  background: var(--ink-soft);
  color: #e8f0f6;
  border-bottom: 1px solid var(--ink-line);
}

.trust-strip ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 16px 0;
}

.trust-strip li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  font-size: 0.93rem;
}

.trust-strip strong {
  color: #fff;
  display: block;
}

.trust-strip svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: #7fd1c8;
}

/* -------------------------------------------------------------- section -- */

.section {
  padding: 46px 0;
}

.section-alt {
  background: var(--page-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  max-width: 44rem;
  margin-bottom: 26px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p {
  color: var(--text-soft);
  margin-bottom: 0;
}

.lede {
  font-size: 1.06rem;
  color: var(--text-soft);
}

/* ---------------------------------------------------------------- grids -- */

.grid {
  display: grid;
  gap: 16px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.card h3 {
  margin-bottom: 8px;
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.card-link {
  text-decoration: none;
  display: block;
  transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.card-link:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--accent);
}

.card-link h3 {
  color: var(--ink);
}

.card-link p {
  color: var(--text-soft);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card-more {
  font-weight: 700;
  color: var(--cta-dark);
  display: inline-block;
  margin-top: 10px;
}

/* ------------------------------------------------------------- services -- */

.services-grid {
  grid-template-columns: 1fr;
}

/* ---------------------------------------------------------------- steps -- */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 0 0 22px 52px;
  margin: 0;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps li::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 40px;
  bottom: 4px;
  width: 2px;
  background: var(--border);
}

.steps li:last-child {
  padding-bottom: 0;
}

.steps li:last-child::after {
  display: none;
}

.steps h3 {
  margin-bottom: 4px;
}

.steps p {
  margin-bottom: 0;
  color: var(--text-soft);
}

/* ------------------------------------------------------------ benefits -- */

.benefits {
  list-style: none;
  margin: 0;
  padding: 0;
}

.benefits li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

.benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid var(--accent);
}

/* --------------------------------------------------------------- cities -- */

.city-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.city-grid li {
  margin: 0;
}

.city-grid a {
  display: block;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 600;
}

.city-grid a:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.city-grid a span {
  display: block;
  font-weight: 500;
  color: var(--text-faint);
  font-size: 0.78rem;
}

.alpha-group {
  margin-bottom: 26px;
}

.alpha-group h2 {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 6px;
  display: inline-block;
  margin-bottom: 14px;
}

.alpha-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 22px;
}

.alpha-group li {
  margin: 0 0 5px;
  break-inside: avoid;
}

.alpha-group a {
  text-decoration: none;
  color: var(--ink);
}

.alpha-group a:hover {
  text-decoration: underline;
}

/* ----------------------------------------------------------------- blog -- */

.post-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.post-list li {
  margin: 0;
}

.post-meta {
  color: var(--text-faint);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.takeaways {
  background: var(--accent-soft);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 0 0 26px;
}

.takeaways h2 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.takeaways ul {
  margin-bottom: 0;
}

.prose h2 {
  margin-top: 1.6em;
}

.prose h3 {
  margin-top: 1.3em;
}

/* ------------------------------------------------------------------ faq -- */

.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 10px;
}

.faq details[open] {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--cta-dark);
  font-size: 1.3rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "\2013";
}

.faq details p {
  margin: 10px 0 0;
  color: var(--text-soft);
}

/* ----------------------------------------------------------- cta band -- */

.cta-band {
  background: linear-gradient(140deg, #0b2545 0%, #0e7c7b 100%);
  color: #fff;
  text-align: center;
  padding: 46px 0;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: #d9e8f1;
  max-width: 42rem;
  margin: 0 auto 20px;
}

/* ---------------------------------------------------------- breadcrumbs -- */

.breadcrumbs {
  padding: 12px 0 0;
  font-size: 0.86rem;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: var(--text-faint);
}

.breadcrumbs li::after {
  content: "/";
  margin-left: 6px;
  color: var(--border);
}

.breadcrumbs li:last-child::after {
  content: "";
}

.breadcrumbs a {
  color: var(--text-soft);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------- footer -- */

.site-footer {
  background: var(--ink);
  color: #c8d7e3;
  padding: 40px 0 96px;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  gap: 26px;
  margin-bottom: 26px;
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
}

.site-footer a {
  color: #cfe0ec;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  color: #fff;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 6px;
}

.footer-phone {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.footer-disclaimers {
  border-top: 1px solid var(--ink-line);
  padding-top: 20px;
  font-size: 0.8rem;
  color: #a9bfd1;
}

.footer-disclaimers p {
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid var(--ink-line);
  margin-top: 16px;
  padding-top: 14px;
  font-size: 0.8rem;
  color: #9db3c6;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

/* ---------------------------------------------------- sticky call bar -- */

.call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  background: var(--ink);
  border-top: 3px solid var(--cta);
  padding: 8px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.call-bar a {
  flex: 1 1 auto;
  text-align: center;
  background: var(--cta);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 1.02rem;
}

.call-bar a:hover {
  background: var(--cta-dark);
  color: #fff;
}

/* ---------------------------------------------------------------- misc -- */

.note {
  background: #fff7ed;
  border: 1px solid #fdba74;
  border-left: 5px solid var(--cta);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 0 0 22px;
}

.note strong {
  color: #9a3412;
}

.inline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.tag-list li {
  margin: 0;
  background: var(--accent-soft);
  color: #0a5f5e;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

.stat-row {
  display: grid;
  gap: 14px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.stat-row li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 0;
}

.stat-row strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
}

.answer-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 22px;
}

.toc {
  background: var(--page-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
}

.toc h2 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.toc ul {
  margin-bottom: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 22px;
  font-size: 0.95rem;
  background: #fff;
}

th,
td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--accent-soft);
  color: var(--ink);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ------------------------------------------------------------ breakpoints */

@media (min-width: 620px) {
  body {
    font-size: 17.5px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-cta {
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }

  .trust-strip ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid,
  .grid-2,
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .city-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .alpha-group ul {
    columns: 3;
  }

  .stat-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  :root {
    --rhythm: 72px;
  }

  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero {
    padding: 68px 0 62px;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .page-hero {
    padding: 44px 0 40px;
  }

  .nav-strip {
    display: none;
  }

  .site-nav {
    display: block;
  }

  .section {
    padding: var(--rhythm) 0;
  }

  .services-grid,
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .city-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .city-grid-lg {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .alpha-group ul {
    columns: 4;
  }

  .cta-band,
  .hero {
    padding-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .site-footer {
    padding-bottom: 40px;
  }

  .call-bar {
    display: none;
  }

  .stat-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .two-col {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 34px;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

@media print {
  .site-header,
  .call-bar,
  .cta-band {
    display: none;
  }
}
