/* All Dry Indy — water-damage landing page
   Brand colors sampled from All Dry Services (myalldry.com). */
:root {
  --navy: #003a5d;
  --navy-2: #002a44;
  --navy-3: #004d7a;
  --ink: #2b2b2b;
  --muted: #404040;
  --paper: #f3f5f7;
  --paper-2: #e8eef2;
  --white: #ffffff;
  --call: #f7931f;
  --call-deep: #d97f12;
  --call-hover: #f69420;
  --call-ink: #ffffff;
  --accent: #2ea3f2;
  --teal: #82c0c7;
  --line: #d5dde3;
  --ok: #1f6b45;
  --focus: #2ea3f2;
  --radius: 4px;
  --shadow: 0 18px 40px rgba(0, 58, 93, 0.18);
  --header-h: 76px;
  --bar-h: 64px;
  --max: 1120px;
  --font: "Segoe UI", "Helvetica Neue", ui-sans-serif, system-ui, -apple-system, Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 900px) {
  body { padding-bottom: 0; }
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--call);
  color: #fff;
  padding: 8px 12px;
  z-index: 1000;
}
.skip:focus { left: 8px; }

.wrap {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

/* Header */
.site-head {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: var(--navy);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-head .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  min-width: 0;
}
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
}
.head-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--call);
  color: var(--call-ink);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 10px 14px;
  min-height: 44px;
  border-radius: var(--radius);
  box-shadow: 0 3px 0 var(--call-deep);
  flex: 0 0 auto;
}
.head-call:hover { background: var(--call-hover); }
.head-call:focus-visible,
.btn:focus-visible,
.form button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.head-phone { display: none; }
@media (min-width: 560px) {
  .head-phone { display: inline; }
  .brand-logo { height: 58px; }
}

/* Mobile call bar */
.callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: var(--navy);
  color: #fff;
  border-top: 3px solid var(--call);
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
}
.callbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--call);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  min-height: 48px;
  border-radius: var(--radius);
  font-size: 0.95rem;
}
.callbar small {
  display: block;
  text-align: center;
  margin-top: 4px;
  color: var(--teal);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@media (min-width: 900px) {
  .callbar { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  min-height: 52px;
  padding: 12px 20px;
}
.btn-call {
  background: var(--call);
  color: #fff;
  box-shadow: 0 4px 0 var(--call-deep);
  font-size: 1.05rem;
}
.btn-call:hover { background: var(--call-hover); }
.btn-call.xl {
  min-height: 60px;
  font-size: 1.15rem;
  width: 100%;
  max-width: 420px;
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid var(--accent);
}
.btn-ghost:hover { background: rgba(46, 163, 242, 0.16); border-color: #5bb8f5; }

/* Hero */
.hero {
  background:
    linear-gradient(180deg, rgba(0,58,93,.15) 0%, rgba(0,42,68,.5) 55%, var(--navy) 100%),
    var(--navy-2);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 28px 0 0;
}
.hero::before {
  content: "24/7";
  position: absolute;
  right: -4vw;
  top: 12px;
  font-size: clamp(6rem, 22vw, 14rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(130, 192, 199, .16);
  pointer-events: none;
  line-height: 0.8;
}
.hero-grid {
  display: grid;
  gap: 28px;
  position: relative;
  z-index: 1;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 12px;
}
.kicker i {
  width: 8px;
  height: 8px;
  background: var(--call);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(247, 147, 31, .28);
  display: inline-block;
}
.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.05rem, 8.2vw, 4.35rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 900;
  max-width: 14ch;
}
.hero h1 em {
  font-style: normal;
  color: #7ec8f2;
}
.lede {
  margin: 0 0 12px;
  font-size: 1.05rem;
  color: #d5e0ec;
  max-width: 42ch;
}
.mascot-line {
  margin: 0 0 22px;
  font-size: 0.95rem;
  color: var(--teal);
  max-width: 42ch;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.proof-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 520px;
}
.proof-row li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: #e8eef4;
  font-weight: 600;
}
.proof-row svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; color: var(--teal); }

.hero-art {
  display: none;
}
.wave {
  display: block;
  width: 100%;
  height: 48px;
  margin-top: 28px;
}
.wave path { fill: var(--paper); }

.form-card {
  background: var(--white);
  color: var(--ink);
  padding: 20px 18px 18px;
  border-radius: 6px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--call);
  margin-bottom: 8px;
}
.form-card h2 {
  margin: 0 0 4px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}
.form-card p.hint {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (min-width: 900px) {
  .hero { padding: 40px 0 0; }
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    gap: 40px;
    padding-bottom: 12px;
  }
  .hero-art {
    display: block;
    position: absolute;
    right: 42%;
    bottom: 40px;
    width: 220px;
    opacity: 0.22;
    pointer-events: none;
  }
  .form-card { margin-bottom: 24px; }
  .btn-call.xl { width: auto; }
  .hero-actions { flex-direction: row; align-items: center; flex-wrap: wrap; }
}

/* Sections */
.band { padding: 56px 0; }
.band-paper { background: var(--paper); }
.band-navy {
  background: var(--navy);
  color: #fff;
}
.band h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.section-lead {
  margin: 0 0 28px;
  color: var(--muted);
  max-width: 52ch;
  font-size: 1.05rem;
}
.band-navy .section-lead { color: #c5d2df; }

.cards {
  display: grid;
  gap: 16px;
}
@media (min-width: 720px) {
  .cards.three { grid-template-columns: repeat(3, 1fr); }
  .cards.two { grid-template-columns: repeat(2, 1fr); }
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px 20px;
}
.card svg { width: 40px; height: 40px; color: var(--accent); margin-bottom: 12px; }
.card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.card p { margin: 0; color: var(--muted); font-size: 0.98rem; }
.jobs {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.jobs li {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 6px 10px;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 3px;
}

/* Why now */
.now-grid {
  display: grid;
  gap: 22px;
}
@media (min-width: 800px) {
  .now-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}
.now-copy p { margin: 0 0 12px; font-size: 1.05rem; }
.now-copy p:last-child { margin: 0; }
.stat-stack {
  display: grid;
  gap: 10px;
}
.stat {
  background: var(--navy);
  color: #fff;
  padding: 16px 18px;
  border-left: 4px solid var(--call);
}
.stat strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.stat span { color: #c9d6e4; font-size: 0.92rem; }

/* Why us */
.why-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 700px) {
  .why-list { grid-template-columns: 1fr 1fr; }
}
.why-list li {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  padding: 18px 16px;
  display: flex;
  gap: 12px;
}
.why-list svg { width: 28px; height: 28px; flex: 0 0 auto; color: var(--teal); }
.why-list h3 { margin: 0 0 4px; font-size: 1.02rem; }
.why-list p { margin: 0; color: #c5d2df; font-size: 0.92rem; }

/* Process */
.steps {
  display: grid;
  gap: 12px;
  counter-reset: step;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}
.steps li {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 20px 16px;
  border-radius: 6px;
  position: relative;
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  display: block;
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.steps h3 { margin: 0 0 6px; font-size: 1.05rem; }
.steps p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* Cities */
.cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cities li {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px 12px;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 3px;
}

/* FAQ */
.faq {
  display: grid;
  gap: 10px;
}
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 16px;
}
.faq summary {
  cursor: pointer;
  font-weight: 800;
  padding: 14px 0;
  letter-spacing: -0.02em;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 900;
}
.faq details[open] summary::after { content: "–"; }
.faq details p {
  margin: 0 0 14px;
  color: var(--muted);
}

/* Form */
.form {
  display: grid;
  gap: 12px;
}
.form .row {
  display: grid;
  gap: 12px;
}
@media (min-width: 560px) {
  .form .row.two { grid-template-columns: 1fr 1fr; }
}
label {
  display: grid;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.req { color: var(--call); }
.optional {
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
}
input, select, textarea {
  width: 100%;
  border: 1px solid #c5ced6;
  border-radius: var(--radius);
  padding: 12px 12px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  min-height: 46px;
}
textarea { min-height: 96px; resize: vertical; }
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form .btn-call { width: 100%; border: 0; }
.form-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.form-success {
  display: none;
  background: #e8f6ee;
  border: 1px solid #b7ddc6;
  color: var(--ok);
  padding: 16px;
  border-radius: 6px;
}
.form-success strong { display: block; font-size: 1.1rem; margin-bottom: 6px; color: var(--ink); }
.form.is-ok .form-fields { display: none; }
.form.is-ok .form-success { display: block; }
.form-error {
  display: none;
  color: #b42318;
  font-size: 0.88rem;
  font-weight: 700;
}
.form.has-error .form-error { display: block; }

.lead-panel {
  display: grid;
  gap: 24px;
}
@media (min-width: 880px) {
  .lead-panel { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}
.lead-copy .btn-call { margin-top: 16px; width: 100%; max-width: 380px; }

/* Footer */
.site-foot {
  background: var(--navy-2);
  color: #c5d2df;
  padding: 36px 0 28px;
  font-size: 0.95rem;
}
.site-foot a { color: var(--accent); }
.nap strong {
  display: block;
  color: #fff;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.nap p { margin: 0 0 4px; }
.site-foot .wrap {
  display: grid;
  gap: 20px;
}
@media (min-width: 700px) {
  .site-foot .wrap {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}
.legal {
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 0.82rem;
  color: #8fa0b3;
}

/* Privacy page */
.page {
  background: var(--paper);
  min-height: 70vh;
  padding: 40px 0 64px;
}
.prose {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px 22px;
  border-radius: 6px;
  max-width: 720px;
}
.prose h1 {
  margin: 0 0 8px;
  letter-spacing: -0.04em;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}
.prose h2 {
  margin: 22px 0 8px;
  font-size: 1.15rem;
}
.prose p, .prose li { color: var(--muted); }
.prose a { color: var(--accent); }

/* Desktop-only in-hero form */
@media (max-width: 899px) {
  .hero .form-card { display: none; }
}

.form-note a,
.form-success a {
  color: var(--accent);
  font-weight: 700;
}
.faq summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
html, body { overflow-x: hidden; }
.brand:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.callbar a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
