/* Shared styles for Maid for Seattle service ("Learn More") pages. */
:root {
  --dark: #383535; --green: #4f7c44; --green-dark: #3c6335;
  --green-mid: #6f9c57; --line: #e2e6df; --bg: #f8faf7;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--dark); font-family: "Jost", sans-serif; line-height: 1.55; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* Nav */
.nav {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 16px 24px; background: #fff; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 10;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; gap: 18px; flex-wrap: wrap; margin-left: auto; }
.nav-links a { text-decoration: none; color: var(--dark); padding: 6px 2px; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--green); }
.nav-phone { text-decoration: none; font-weight: 500; color: var(--dark); }

/* Hero */
.hero { background: linear-gradient(135deg, #eef4e9, #dcebd2); padding: 72px 24px; }
.hero-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.hero .eyebrow { color: var(--green-dark); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin: 0 0 10px; }
.hero h1 { font-size: 2.8rem; margin: 0 0 16px; }
.hero p { font-family: "Playfair Display", serif; font-size: 1.1rem; color: #45503f; margin: 0 auto 28px; max-width: 680px; }
.btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 28px; border-radius: 8px; text-decoration: none;
  font-weight: 700; text-transform: uppercase; font-size: .95rem; min-height: 48px;
}
.btn.solid { background: var(--green); color: #fff; }
.btn.solid:hover { background: var(--green-dark); }
.btn.ghost { background: #fff; color: var(--green-dark); border: 2px solid var(--green); }
.btn.ghost:hover { background: #f0f6ec; }

/* Sections */
.wrap { max-width: 1060px; margin: 0 auto; padding: 64px 24px; }
.section-title { text-align: center; font-size: 2rem; margin: 0 0 8px; }
.section-sub { text-align: center; color: #5c6654; font-family: "Playfair Display", serif; max-width: 660px; margin: 0 auto 40px; }

.row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; margin-bottom: 40px; }
.row.reverse .text { order: 2; }
.row .num { color: var(--green); font-weight: 700; font-size: 1.1rem; margin: 0 0 6px; }
.row h3 { font-size: 1.4rem; margin: 0 0 12px; }
.row p { color: #4a5344; margin: 0; }
.row img { width: 100%; height: 260px; object-fit: cover; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,.08); }

/* Before/after gallery */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.ba figure { margin: 0; }
.ba img { width: 100%; height: 240px; object-fit: cover; border-radius: 12px; }
.ba figcaption { text-align: center; margin-top: 8px; font-weight: 500; color: var(--green-dark); }

/* First cleaning + stats */
.firstclean { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.firstclean .row img { height: 300px; }
.stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; margin-top: 8px; }
.stat { text-align: center; }
.stat .big { font-size: 2.6rem; font-weight: 700; color: var(--green); line-height: 1; }
.stat .lbl { color: #5c6654; margin-top: 6px; }

/* Footer */
.site-footer { background: #fff; border-top: 1px solid var(--line); padding: 32px 24px; }
.foot-cols { max-width: 1060px; margin: 0 auto; display: flex; gap: 40px; flex-wrap: wrap; justify-content: space-between; }
.foot-links { display: flex; flex-direction: column; gap: 8px; }
.foot-links a { text-decoration: none; color: var(--dark); font-family: "Playfair Display", serif; }
.foot-links a:hover { color: var(--green); }
.foot-contact p { margin: 0 0 6px; font-family: "Playfair Display", serif; color: #4a4747; }
.foot-copy { max-width: 1060px; margin: 24px auto 0; font-family: "Playfair Display", serif; font-size: .85rem; color: #8a8a8a; }

@media (max-width: 760px) {
  .hero h1 { font-size: 2.1rem; }
  .row, .row.reverse { grid-template-columns: 1fr; }
  .row.reverse .text { order: 0; }
  .gallery { grid-template-columns: 1fr; }
  .stats { gap: 28px; }
}
