/* =========================================================
   DeSoto Water Damage Restoration — Rugged & Local theme
   ========================================================= */

:root {
  --ink: #1c1a16;
  --ink-soft: #3a352c;
  --rust: #b34521;
  --rust-dark: #8f3416;
  --clay: #c9772f;
  --olive: #4a5433;
  --olive-dark: #363d24;
  --cream: #f6f0e2;
  --cream-2: #efe6d2;
  --tan: #e0cfa8;
  --sand: #d8c8a4;
  --line: #ddd0b4;
  --white: #fffdf8;
  --muted: #6c6353;
  --shadow: 0 12px 30px rgba(28, 26, 22, 0.14);
  --shadow-sm: 0 4px 14px rgba(28, 26, 22, 0.10);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1160px;
  --font-head: "Arial Black", "Helvetica Neue", Impact, sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--rust-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--ink);
  text-transform: uppercase;
}

h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.28rem; }

p { color: var(--ink-soft); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.74rem;
  color: var(--rust-dark);
  background: var(--tan);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section { padding: 70px 0; }
.section-tan { background: var(--cream-2); }
.section-ink { background: var(--ink); }
.section-ink h2, .section-ink h3, .section-ink p { color: var(--cream); }
.section-olive { background: var(--olive-dark); }
.section-olive h2, .section-olive h3, .section-olive p { color: var(--cream); }

.center { text-align: center; }
.lead { font-size: 1.12rem; max-width: 720px; margin: 0 auto 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1rem;
  padding: 15px 26px;
  border-radius: 12px;
  border: 3px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-rust { background: var(--rust); color: #fff; box-shadow: var(--shadow-sm); }
.btn-rust:hover { background: var(--rust-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--cream); border-color: var(--tan); }
.btn-outline:hover { background: var(--tan); color: var(--ink); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: #000; color: #fff; }

/* ---------- Top strip ---------- */
.topbar {
  background: var(--olive-dark);
  color: var(--cream);
  font-size: 0.82rem;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 9px; padding-bottom: 9px; }
.topbar strong { color: var(--tan); }
.topbar .badge { display: inline-flex; align-items: center; gap: 7px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; flex: none;
  background: var(--rust); border-radius: 10px;
  display: grid; place-items: center;
  color: #fff; font-family: var(--font-head); font-size: 1.35rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--ink);
}
.brand-name { font-family: var(--font-head); text-transform: uppercase; font-size: 1.08rem; line-height: 1; letter-spacing: -0.3px; }
.brand-name span { display: block; font-size: 0.66rem; letter-spacing: 2px; color: var(--rust-dark); margin-top: 4px; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { color: var(--ink); font-weight: 700; font-size: 0.95rem; }
.nav a:hover { color: var(--rust-dark); text-decoration: none; }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; }
.nav-phone {
  font-family: var(--font-head); font-size: 1.1rem; color: var(--rust-dark);
  border: 3px solid var(--rust); border-radius: 12px; padding: 8px 16px;
}
.nav-phone:hover { background: var(--rust); color: #fff; text-decoration: none; }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; font-size: 1.6rem; color: var(--ink); }

/* Dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--white); border: 2px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow); padding: 10px; min-width: 250px; margin-top: 8px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease;
  transition-delay: .35s;
}
.has-drop::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 18px; }
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s; }
.drop a { padding: 9px 12px; border-radius: 8px; font-size: 0.9rem; }
.drop a:hover { background: var(--cream-2); text-decoration: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(rgba(20,18,14,0.72), rgba(20,18,14,0.82)),
    repeating-linear-gradient(45deg, #2a251c 0, #2a251c 22px, #26221a 22px, #26221a 44px);
  color: var(--cream);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 78% 18%, rgba(179,69,33,0.35), transparent 42%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; padding: 80px 22px 74px; }
.hero-grid { display: grid; grid-template-columns: 1.25fr 0.9fr; gap: 44px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5.4vw, 3.7rem); }
.hero h1 .hl { color: var(--clay); }
.hero p { color: #ece2cf; font-size: 1.14rem; margin: 18px 0 26px; max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; }
.hero-trust .t { display: flex; gap: 10px; align-items: flex-start; max-width: 190px; }
.hero-trust .t b { color: #fff; display: block; font-size: 0.96rem; }
.hero-trust .t span { color: #cdbfa4; font-size: 0.8rem; }
.hero-trust .dot { width: 11px; height: 11px; margin-top: 5px; border-radius: 50%; background: var(--clay); flex: none; }

.hero-card {
  background: var(--cream); color: var(--ink);
  border-radius: var(--radius-lg); border: 3px solid var(--ink);
  box-shadow: var(--shadow); padding: 26px;
}
.hero-card p { color: var(--ink-soft); }
.hero-card .kicker { font-family: var(--font-head); text-transform: uppercase; color: var(--rust-dark); font-size: 0.8rem; letter-spacing: 1.5px; }
.hero-card h3 { font-size: 1.4rem; margin: 6px 0 4px; }
.hero-card .big-phone { font-family: var(--font-head); font-size: 2rem; color: var(--ink); display: block; margin: 12px 0; }
.hero-card ul { list-style: none; margin: 14px 0; }
.hero-card li { padding: 7px 0 7px 28px; position: relative; font-size: 0.94rem; border-bottom: 1px dashed var(--line); }
.hero-card li:last-child { border-bottom: 0; }
.hero-card li::before { content: "✓"; position: absolute; left: 0; color: var(--olive); font-weight: 900; }

/* ---------- Emergency band ---------- */
.eband { background: var(--rust); color: #fff; }
.eband .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 20px; padding: 16px 22px; text-align: center; }
.eband strong { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.5px; }
.eband a { color: #fff; text-decoration: underline; font-family: var(--font-head); }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 2px solid var(--line);
  border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-sm); transition: transform .14s ease, border-color .14s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--clay); }
.card .ic { width: 52px; height: 52px; border-radius: 12px; background: var(--tan); display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 14px; border: 2px solid var(--ink); }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.95rem; }
.card .more { display: inline-block; margin-top: 12px; font-family: var(--font-head); text-transform: uppercase; font-size: 0.78rem; letter-spacing: 1px; }

/* Numbered steps */
.steps { counter-reset: step; display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); }
.step { background: var(--white); border: 2px solid var(--line); border-radius: var(--radius); padding: 26px 22px; position: relative; }
.step .n { font-family: var(--font-head); font-size: 2.4rem; color: var(--clay); line-height: 1; }
.step h3 { margin: 8px 0 6px; font-size: 1.05rem; }
.step p { font-size: 0.9rem; }

/* Signs list */
.signs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sign { background: var(--white); border-left: 5px solid var(--rust); border-radius: 10px; padding: 20px 22px; box-shadow: var(--shadow-sm); }
.sign .num { font-family: var(--font-head); color: var(--sand); font-size: 1.6rem; }
.sign h3 { font-size: 1.02rem; margin: 2px 0 6px; }
.sign p { font-size: 0.9rem; }

/* Why-us list */
.why { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.why-item { display: flex; gap: 14px; }
.why-item .tag { width: 44px; height: 44px; flex: none; border-radius: 10px; background: var(--clay); color: #fff; display: grid; place-items: center; font-size: 1.3rem; border: 2px solid var(--ink); }

/* Coverage */
.coverage { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 34px; align-items: start; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.chip { background: var(--white); border: 2px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: 0.9rem; font-weight: 700; }
.chip.here { background: var(--olive); color: #fff; border-color: var(--olive-dark); }
.chip a { color: inherit; }
.info-card { background: var(--white); border: 2px solid var(--line); border-radius: var(--radius); padding: 24px; }
.info-card .row { padding: 12px 0; border-bottom: 1px dashed var(--line); }
.info-card .row:last-child { border-bottom: 0; }
.info-card .row b { font-family: var(--font-head); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; display: block; color: var(--rust-dark); }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { background: var(--white); border: 2px solid var(--line); border-radius: 12px; margin-bottom: 12px; padding: 4px 20px; }
.faq summary { font-family: var(--font-head); text-transform: uppercase; font-size: 0.98rem; padding: 16px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--rust); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { padding: 0 0 16px; font-size: 0.96rem; }

/* CTA band */
.cta-band { background: var(--rust); color: #fff; text-align: center; }
.cta-band .wrap { padding: 56px 22px; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #ffe9dd; margin: 10px auto 22px; max-width: 620px; }
.cta-phone { font-family: var(--font-head); font-size: clamp(2rem, 6vw, 3rem); color: #fff; display: inline-block; margin-bottom: 18px; }
.cta-phone:hover { color: #ffe0d2; text-decoration: none; }

/* Page hero (interior) */
.page-hero { background: var(--ink); color: var(--cream); padding: 54px 0; }
.page-hero .crumbs { font-size: 0.82rem; color: #b9ac92; margin-bottom: 12px; }
.page-hero .crumbs a { color: var(--tan); }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.1rem); max-width: 860px; }
.page-hero p { color: #e6dcc7; max-width: 680px; margin-top: 14px; font-size: 1.08rem; }

/* Content two-col */
.content { display: grid; grid-template-columns: 1.6fr 0.9fr; gap: 40px; align-items: start; }
.prose h2 { margin: 26px 0 12px; }
.prose h3 { margin: 20px 0 8px; color: var(--rust-dark); }
.prose p { margin-bottom: 14px; }
.prose ul { margin: 0 0 16px 20px; }
.prose li { margin-bottom: 8px; color: var(--ink-soft); }
.sidebar { position: sticky; top: 110px; display: grid; gap: 20px; }
.sidebar .box { background: var(--white); border: 2px solid var(--line); border-radius: var(--radius); padding: 22px; }
.sidebar .box.dark { background: var(--olive-dark); color: var(--cream); border-color: var(--olive-dark); }
.sidebar .box.dark h3, .sidebar .box.dark p { color: var(--cream); }
.sidebar .box h3 { margin-bottom: 10px; font-size: 1.05rem; }
.sidebar .box ul { list-style: none; }
.sidebar .box li a { display: block; padding: 8px 0; border-bottom: 1px dashed var(--line); font-weight: 700; font-size: 0.92rem; }
.sidebar .box .big-phone { font-family: var(--font-head); font-size: 1.7rem; display: block; margin: 8px 0 12px; color: var(--tan); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cdbfa4; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 30px; }
.site-footer h4 { color: var(--tan); font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 14px; }
.site-footer a { color: #cdbfa4; font-size: 0.9rem; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.footer-brand p { color: #a99e88; font-size: 0.9rem; margin-top: 12px; }
.footer-phone { display: inline-block; font-family: var(--font-head); font-size: 1.5rem; color: #fff; margin-top: 8px; }
.footer-bottom { border-top: 1px solid #34302650; margin-top: 40px; padding: 22px 0; }
.footer-bottom .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 0.8rem; }
.disclaimer { background: #14120e; color: #8a8073; font-size: 0.76rem; line-height: 1.6; padding: 20px 0; }
.disclaimer .wrap { max-width: 980px; }

/* Sticky mobile call bar */
.callbar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: var(--rust); }
.callbar a { display: block; text-align: center; color: #fff; font-family: var(--font-head); text-transform: uppercase; padding: 15px; font-size: 1.05rem; }
.callbar a:hover { text-decoration: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .steps, .signs, .why, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage, .content { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .nav { display: none; }
  .menu-toggle { display: block; }
  .nav.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 4px; background: var(--cream); border-bottom: 3px solid var(--ink); padding: 14px 22px; }
  .nav.open a { padding: 8px 0; width: 100%; border-bottom: 1px dashed var(--line); }
  .nav.open .drop { position: static; transform: none; display: flex; box-shadow: none; border: 0; padding: 0 0 0 14px; min-width: 0; opacity: 1; visibility: visible; pointer-events: auto; margin-top: 0; }
  .has-drop::after { display: none; }
  .topbar { display: none; }
}
@media (max-width: 600px) {
  .grid-3, .grid-4, .steps, .signs, .why, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .callbar { display: block; }
  body { padding-bottom: 56px; }
  .nav-cta .nav-phone { display: none; }
}
