/* Denver Cleaning Pros — spec preview
   Palette from their live house-and-broom mark: deep spruce, logo cyan, broom tan.
   Not a generic teal cleaning template. Fonts: Sora + Source Serif 4. */

:root {
  --spruce: #10282e;
  --spruce-2: #16343c;
  --cyan: #2aa8be;
  --cyan-bright: #48cbe1;
  --tan: #e5c39f;
  --tan-deep: #c49a6a;
  --linen: #f4efe6;
  --paper: #fffdf8;
  --ink: #142428;
  --mute: #4d5c60;
  --line: rgba(16, 40, 46, 0.12);
  --shadow: 0 20px 44px rgba(16, 40, 46, 0.12);
  --display: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  --serif: "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --max: 1100px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.06rem;
  line-height: 1.58;
  color: var(--ink);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 0 0.55rem;
  text-wrap: balance;
}
h1 { font-size: clamp(2.05rem, 8.2vw, 3.85rem); }
h2 { font-size: clamp(1.65rem, 4.4vw, 2.5rem); }
h3 { font-size: 1.22rem; letter-spacing: -0.02em; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--cyan-bright); color: var(--spruce);
  padding: 0.6rem 1rem; z-index: 80; font-family: var(--display); font-weight: 700;
}
.skip:focus { left: 0.6rem; top: 0.6rem; }
.wrap { width: min(var(--max), calc(100% - 1.7rem)); margin-inline: auto; }

.eyebrow, .kicker {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 0.6rem;
}
.lede { font-size: 1.14rem; color: var(--mute); max-width: 38rem; }

/* Header — linen, unlike the dark-header quality-bar shops */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.7rem; min-height: 4.35rem;
}
.brand {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none; min-width: 0; color: var(--spruce);
}
.brand img { width: 40px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
  font-family: var(--display);
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}
.brand-text span {
  font-family: var(--display);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
  margin-top: 0.14rem;
}
.nav-toggle {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--spruce);
  color: var(--linen);
  font: 700 0.84rem var(--display);
  padding: 0.55rem 0.85rem;
  min-height: 44px;
  min-width: 44px;
  cursor: pointer;
}
.nav {
  display: none;
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--paper);
  padding: 0.6rem 1rem 1rem;
  border-bottom: 1px solid var(--line);
  flex-direction: column;
}
.nav.is-open { display: flex; }
.nav a {
  text-decoration: none;
  padding: 0.75rem 0.2rem;
  min-height: 44px;
  display: flex; align-items: center;
  font-family: var(--display);
  font-weight: 650;
  font-size: 0.95rem;
  color: var(--spruce);
  border-bottom: 1px solid var(--line);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--cyan); }
.nav .btn { margin-top: 0.75rem; border: 0; justify-content: center; }
.header-cta { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.75rem 1.15rem;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-cyan { background: var(--cyan-bright); color: var(--spruce); }
.btn-cyan:hover { background: #6ad6e8; }
.btn-spruce { background: var(--spruce); color: var(--linen); }
.btn-spruce:hover { background: #1a3d46; }
.btn-tan { background: var(--tan); color: var(--spruce); }
.btn-tan:hover { background: var(--tan-deep); color: var(--paper); }
.btn-ghost {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.hero-actions, .actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

/* Hero */
.hero {
  background:
    radial-gradient(900px 420px at 100% 0%, rgba(72,203,225,0.16), transparent 50%),
    var(--spruce);
  color: var(--linen);
  padding: 1.7rem 0 0;
}
.hero-grid { display: grid; gap: 1.5rem; }
.hero .eyebrow { color: var(--tan); }
.hero h1 { color: var(--paper); }
.hero .lede { color: #d5e4e6; }
.as-said {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--cyan-bright);
  margin: 0 0 0.9rem;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 0.55rem 1.15rem;
  padding: 0 0 1.5rem;
  color: #c5d4d6;
  font-size: 0.95rem;
}
.hero-meta b {
  display: block;
  font-family: var(--display);
  font-style: normal;
  color: var(--tan);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-media {
  margin: 0 -0.85rem 0;
  padding: 0 0 1.4rem;
}
.hero-media svg { width: 100%; height: auto; }

section { padding: 3rem 0; }
.band-paper { background: var(--paper); }
.band-tan { background: var(--tan); color: var(--spruce); }
.band-tan .kicker { color: var(--spruce-2); }
.band-tan .lede { color: #3d3428; }
.band-spruce { background: var(--spruce); color: var(--linen); }
.band-spruce h2, .band-spruce h3 { color: var(--paper); }
.band-spruce .kicker { color: var(--cyan-bright); }
.band-spruce .lede { color: #c5d4d6; }

.cadence {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  list-style: none; padding: 0; margin: 1.2rem 0 0;
}
.cadence li {
  background: var(--spruce);
  color: var(--linen);
  font-family: var(--display);
  font-weight: 650;
  font-size: 0.88rem;
  padding: 0.5rem 0.8rem;
}

.cards { display: grid; gap: 0.9rem; margin-top: 1.45rem; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.2rem 1.15rem 1.25rem;
  position: relative;
}
.card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--cyan-bright);
}
.card.tan-edge::before { background: var(--tan-deep); }
.card .num {
  font-family: var(--display);
  color: var(--cyan);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 0.4rem;
}
.card p { color: var(--mute); margin: 0; }
.card h3 { margin-bottom: 0.4rem; }

.split { display: grid; gap: 1.5rem; }
.ticket {
  background: var(--paper);
  color: var(--ink);
  padding: 1.35rem 1.2rem 1.4rem;
  border: 1px dashed rgba(16, 40, 46, 0.28);
}
.ticket h3 { margin-bottom: 0.35rem; }
.ticket p { color: var(--mute); }
.list { margin: 0.55rem 0 0; padding: 0 0 0 1.1rem; color: var(--mute); }
.list li { margin: 0.28rem 0; }

.quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 3.2vw, 1.85rem);
  line-height: 1.35;
  margin: 0;
  max-width: 28ch;
  color: var(--spruce);
}
.quote cite {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--display);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #5a4630;
}

.page-hero { padding: 2.4rem 0 0.2rem; }
.page-hero h1 { max-width: 16ch; }

.contact-grid { display: grid; gap: 1.6rem; }
.contact-list { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.contact-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-list span {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--cyan);
  margin-bottom: 0.15rem;
}
.contact-list a { font-weight: 700; font-family: var(--display); color: var(--spruce); }
.contact-list a:hover { color: var(--cyan); }

form {
  display: grid; gap: 0.45rem;
  background: var(--paper);
  padding: 1.25rem 1.15rem 1.35rem;
  border: 1px solid var(--line);
}
label {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  margin-top: 0.3rem;
}
input, textarea, select {
  font: 400 1rem var(--serif);
  padding: 0.7rem 0.75rem;
  border: 1px solid #d4cbbd;
  background: var(--linen);
  color: var(--ink);
  min-height: 46px;
  width: 100%;
}
textarea { min-height: 8rem; resize: vertical; }
.note { font-size: 0.9rem; color: var(--mute); }

.site-footer {
  background: var(--spruce);
  color: #9bb0b4;
  padding: 1.6rem 0 5.8rem;
  font-size: 0.9rem;
}
.site-footer a { color: var(--linen); text-decoration: none; }
.site-footer a:hover { color: var(--cyan-bright); }
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 0.7rem 1.4rem;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--display);
  color: var(--paper);
  font-weight: 700;
}

/* Mailto-only dock — no phone on the live page */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: var(--cyan-bright);
  box-shadow: 0 -8px 24px rgba(16, 40, 46, 0.18);
}
.dock a {
  display: flex; align-items: center; justify-content: center;
  min-height: 54px;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  color: var(--spruce);
}

@media (min-width: 800px) {
  .nav-toggle { display: none; }
  .nav {
    display: flex; flex-direction: row; align-items: center;
    position: static; background: none; padding: 0; border: 0; gap: 0.1rem;
  }
  .nav a {
    padding: 0.4rem 0.7rem; border: 0; font-size: 0.88rem; min-height: 0;
  }
  .header-cta { display: inline-flex; margin-left: 0.35rem; min-height: 42px; padding: 0.45rem 0.9rem; }
  .hero { padding-top: 2.5rem; }
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: end;
    gap: 2rem;
  }
  .hero-media { margin: 0 0 1.6rem; padding: 0; }
  .cards.three { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
  .contact-grid { grid-template-columns: 0.92fr 1.08fr; align-items: start; }
  .site-footer { padding-bottom: 1.8rem; }
  .dock { display: none; }
}

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