/* Clean & Conscious Co., Brand System
   Premium, health-conscious residential cleaning
   Batesville, Indiana
*/

:root {
  /* Palette: client-specified brand colors
     Sage, slate, cream, deep sage. Spa + medical-wellness mood.
     Client hex codes: #7D9B76, #4A5568, #F5F0E8, #5C7A5C */
  --sage: #7D9B76;             /* primary brand sage */
  --sage-deep: #5C7A5C;        /* darker sage, headline accent */
  --slate: #4A5568;            /* dark text + headline slate */
  --slate-ink: #2D3340;        /* deeper slate for strongest text */
  --cream: #F5F0E8;            /* brand cream (page bg) */
  --cream-soft: #FAF6EE;       /* lighter page bg variant */
  --paper: #FFFFFF;            /* cards */
  --ink: #2D3340;              /* body text = slate ink */
  --muted: #6B7482;            /* secondary text */
  --line: #E6DFD2;             /* borders */
  --line-deep: #CFC7B2;
  --sage-mist: #EBF0E7;        /* subtle sage tint */
  --sage-soft: #D6E0D0;        /* soft sage accent */
  --warm: #E8A886;             /* warm accent (used sparingly) */
  --gold: #B4835B;             /* trust accents */
  --mist: #EEF2ED;             /* faint bg for subtle blocks */
  --red: #B03A2E;
  --green-ok: #5C7A5C;
  /* Back-compat aliases so existing markup still resolves */
  --forest: var(--sage-deep);
  --forest-ink: var(--slate);
  --peach: var(--warm);
  --peach-soft: #F3DFCD;

  /* Type */
  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 12px 28px -18px rgba(31,74,58,0.18), 0 4px 10px -6px rgba(31,74,58,0.08);
  --shadow-lift: 0 24px 48px -20px rgba(31,74,58,0.25), 0 10px 20px -10px rgba(31,74,58,0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--forest-ink);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.75rem); }
h3 { font-size: 1.3rem; letter-spacing: -0.01em; }
h4 { font-size: 1.05rem; font-weight: 700; letter-spacing: 0.02em; text-transform: none; }
p { margin: 0 0 1rem; }
a { color: var(--forest); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--forest-ink); }

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

/* Layout */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 28px; }
section { padding: 88px 0; }
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 14px;
  display: inline-block;
}
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head p { font-size: 1.08rem; color: var(--muted); margin-top: 16px; }

/* Utility bar */
.utility {
  background: var(--forest-ink);
  color: #E7EFEC;
  font-size: 13px;
  padding: 9px 0;
}
.utility .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.utility a { color: #E7EFEC; }
.utility a:hover { color: #fff; }
.utility .pill { background: rgba(255,255,255,0.1); padding: 3px 10px; border-radius: 999px; font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; }

/* Nav */
nav.main {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: saturate(1.3) blur(8px);
}
nav.main .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; padding-bottom: 18px; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-logo {
  height: 110px;
  width: auto;
  max-width: 360px;
  object-fit: contain;
  display: block;
}
@media (max-width: 900px) {
  .brand-logo { height: 84px; max-width: 280px; }
}
@media (max-width: 520px) {
  .brand-logo { height: 68px; max-width: 220px; }
}
.brand-mark { /* legacy fallback */
  width: 46px; height: 46px;
  background: var(--sage-deep);
  color: var(--cream);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.brand-name { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--forest-ink); line-height: 1.05; }
.brand-name span { display: block; font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 2px; font-family: var(--font-body); }
nav.main ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 28px; align-items: center; }
nav.main ul a { color: var(--ink); font-weight: 500; font-size: 15px; }
nav.main ul a:hover { color: var(--forest); }
nav.main ul a.active { color: var(--forest-ink); }

.btn {
  display: inline-block;
  padding: 13px 24px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.12s, background 0.15s, border-color 0.15s;
  font-family: inherit;
  text-decoration: none;
}
.btn-primary { background: var(--forest); color: var(--cream); }
.btn-primary:hover { background: var(--forest-ink); color: var(--cream); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--forest-ink); border-color: var(--forest-ink); }
.btn-outline:hover { background: var(--forest-ink); color: var(--cream); }
.btn-peach { background: var(--peach); color: #fff; }
.btn-peach:hover { background: #D48A66; color: #fff; transform: translateY(-1px); }

/* Hero (home) */
.hero {
  background: linear-gradient(180deg, #F6F2E9 0%, var(--cream) 100%);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero .grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .hero .grid { grid-template-columns: 1fr; } }
.trust-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.trust-pill {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--forest-ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); }
.trust-pill.gold .dot { background: var(--gold); }
.trust-pill.peach .dot { background: var(--peach); }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 520px; margin-bottom: 28px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--mist);
  box-shadow: var(--shadow-lift);
}
.hero-media img, .hero-media .ph { width: 100%; height: 100%; object-fit: cover; }
.hero-media .ph {
  background:
    radial-gradient(circle at 30% 20%, rgba(127,166,150,0.3), transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(232,168,134,0.25), transparent 50%),
    linear-gradient(135deg, #DEE7E1 0%, #F4E9DD 100%);
  display: grid; place-items: center;
  color: var(--forest-ink);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 40px;
  text-align: center;
  position: relative;
}
.hero-media .ph::after {
  content: attr(data-label);
  position: absolute;
  bottom: 18px; left: 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(31,74,58,0.85);
  color: var(--cream);
  padding: 5px 12px;
  border-radius: 6px;
}
.stat-card {
  position: absolute;
  left: -22px; bottom: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 14px 28px;
}
.stat-card strong { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--forest-ink); line-height: 1; }
.stat-card span { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; }

/* Trust strip */
.strip { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 30px 0; }
.strip .row { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; align-items: center; font-size: 13px; letter-spacing: 0.06em; color: var(--muted); }
.strip .chip { background: var(--mist); padding: 8px 14px; border-radius: 8px; font-weight: 600; color: var(--forest-ink); letter-spacing: 0.03em; }

/* Pillar cards (3-trust blocks) */
.pillars { background: var(--cream); }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .pillar-grid { grid-template-columns: 1fr; } }
.pillar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.pillar .icon {
  width: 52px; height: 52px;
  background: var(--mist);
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 18px;
  font-size: 22px;
}
.pillar h3 { margin-bottom: 10px; }
.pillar p { color: var(--muted); font-size: 15.5px; margin: 0; }

/* Story block */
.story-block { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.story-block .grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .story-block .grid { grid-template-columns: 1fr; } }
.story-img { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; background: var(--mist); }
.story-img .ph {
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 20% 80%, rgba(232,168,134,0.35), transparent 55%),
    radial-gradient(circle at 70% 20%, rgba(127,166,150,0.3), transparent 60%),
    linear-gradient(180deg, #F1E4D1 0%, #E1EBE4 100%);
  display: grid; place-items: center;
  color: var(--forest-ink);
  font-family: var(--font-display);
  padding: 40px;
  text-align: center;
  position: relative;
}
blockquote {
  margin: 24px 0;
  padding: 6px 0 6px 22px;
  border-left: 3px solid var(--peach);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--forest-ink);
  line-height: 1.5;
}

/* Services cards */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr; } }
.svc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.svc:hover .svc-photo img { transform: scale(1.03); }
.svc-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--mist);
}
.svc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.svc .body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.svc-tag { display: inline-block; background: var(--mist); color: var(--forest-ink); padding: 4px 10px; border-radius: 6px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 12px; }
.svc h3 { margin-bottom: 10px; }
.svc p { color: var(--muted); font-size: 15px; flex: 1; }
.svc .link { color: var(--forest); font-weight: 600; font-size: 14px; margin-top: 14px; display: inline-block; }

/* Service detail page FAQ section */
.service-faq { padding: 56px 0; background: var(--cream-soft); }
.service-faq h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 500; letter-spacing: -0.015em; color: var(--forest-ink); margin: 0 0 32px; text-align: center; }

/* Service-area HUB page sections */
.service-area-hero { background: linear-gradient(180deg, var(--cream-soft) 0%, var(--sage-mist) 100%); padding: 72px 0 48px; }
.service-area-hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 4.2vw, 3.2rem); line-height: 1.08; letter-spacing: -0.015em; font-weight: 500; color: var(--forest-ink); margin: 20px 0 22px; }
.service-area-hero h1 em { font-style: italic; color: var(--sage-deep); font-weight: 400; }
.service-area-hero .lede { font-size: 1.08rem; line-height: 1.65; color: var(--muted); max-width: 700px; margin: 0 auto; }
.service-area-hero .eyebrow { display: inline-block; font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage-deep); padding-bottom: 12px; border-bottom: 1px solid var(--sage-soft); }
.service-area-map-section { padding: 0 0 64px; }
.service-area-map-section .area-map { max-width: 960px; margin: 0 auto; aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius-lg); box-shadow: 0 30px 70px -30px rgba(49,58,52,0.3); }
.tier-explainer { padding: 72px 0; background: var(--paper); }
.tier-explainer .section-head { text-align: center; }
.tier-explainer h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 500; letter-spacing: -0.015em; color: var(--forest-ink); margin-bottom: 16px; text-align: center; }
.tier-explainer .lede { text-align: center; max-width: 640px; margin: 0 auto; }
.tier-explainer .eyebrow { display: inline-block; }
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tier-card { background: var(--cream-soft); border: 1px solid var(--line); border-radius: 12px; padding: 28px; display: flex; flex-direction: column; }
.tier-card .tier-num { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--sage-deep); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 6px; }
.tier-card h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--forest-ink); margin: 0 0 6px; letter-spacing: -0.01em; }
.tier-card .tier-range { color: var(--muted); font-size: 13.5px; margin: 0 0 18px; letter-spacing: 0.02em; }
.tier-card ul { list-style: none; padding: 0; margin: 0 0 18px; }
.tier-card li { padding: 6px 0; border-bottom: 1px solid var(--sage-soft); font-size: 14.5px; }
.tier-card li:last-of-type { border-bottom: 0; }
.tier-card li a { color: var(--forest-ink); font-weight: 600; }
.tier-card li a:hover { color: var(--sage-deep); }
.tier-card .tier-note { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin: 0; padding-top: 12px; border-top: 1px solid var(--line); }
@media (max-width: 900px) {
  .tier-grid { grid-template-columns: 1fr; gap: 20px; }
}
.county-groupings { padding: 72px 0; background: var(--sage-mist); }
.county-groupings h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 500; letter-spacing: -0.015em; color: var(--forest-ink); margin-bottom: 16px; }
/* Featured home county block */
.county-featured {
  background: var(--paper);
  border: 1px solid var(--sage-soft);
  border-radius: 14px;
  padding: 36px 40px;
  margin-bottom: 32px;
  box-shadow: 0 20px 50px -25px rgba(49,58,52,0.18);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}
.county-featured-tag { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage-deep); display: inline-block; margin-bottom: 8px; }
.county-featured-head h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--forest-ink); margin: 0 0 14px; letter-spacing: -0.015em; }
.county-featured-head p { color: var(--muted); font-size: 14.5px; line-height: 1.65; margin: 0; }
.county-featured-towns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.county-chip { background: var(--sage-mist); border: 1px solid var(--sage-soft); border-radius: 8px; padding: 12px 14px; display: flex; flex-direction: column; text-decoration: none; transition: transform 0.15s, box-shadow 0.15s; }
.county-chip:hover { transform: translateY(-2px); box-shadow: 0 8px 18px -10px rgba(49,58,52,0.25); }
.county-chip strong { color: var(--forest-ink); font-size: 14.5px; font-weight: 600; line-height: 1.2; }
.county-chip span { color: var(--sage-deep); font-size: 11.5px; margin-top: 2px; letter-spacing: 0.04em; }

/* Secondary county grid (4 cards equal) */
.county-secondary-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.county-card-v2 { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 22px; transition: transform 0.15s, box-shadow 0.15s; }
.county-card-v2:hover { transform: translateY(-3px); box-shadow: 0 12px 28px -14px rgba(49,58,52,0.22); }
.county-card-v2 h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--forest-ink); margin: 0 0 4px; letter-spacing: -0.005em; }
.county-card-v2 .county-tag { color: var(--sage-deep); font-size: 11px; font-weight: 500; letter-spacing: 0.05em; margin: 0 0 14px; text-transform: uppercase; line-height: 1.3; }
.county-card-towns { display: flex; flex-direction: column; gap: 4px; }
.county-card-towns a { display: block; padding: 6px 0; font-size: 14px; color: var(--forest-ink); font-weight: 500; border-bottom: 1px dashed var(--sage-soft); }
.county-card-towns a:hover { color: var(--sage-deep); }
.county-card-towns a:last-child { border-bottom: 0; }
@media (max-width: 1100px) {
  .county-secondary-grid { grid-template-columns: repeat(2, 1fr); }
  .county-featured { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
}
@media (max-width: 600px) {
  .county-secondary-grid { grid-template-columns: 1fr; }
  .county-featured-towns { grid-template-columns: 1fr; }
}

/* Legacy county-grid styles kept for backward compat */
.county-grid { display: none; }
.hub-why { padding: 72px 0 56px; background: var(--paper); }
.hub-why h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 3.2vw, 2.5rem); font-weight: 500; letter-spacing: -0.015em; color: var(--forest-ink); margin-bottom: 22px; }
.hub-why p { font-size: 1.05rem; line-height: 1.7; color: var(--slate); margin-bottom: 20px; }
.hub-faq { padding: 64px 0 80px; background: var(--cream); }
.hub-faq h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 3.2vw, 2.5rem); font-weight: 500; letter-spacing: -0.015em; color: var(--forest-ink); margin-bottom: 32px; text-align: center; }

/* City page body — new content sections */
.city-body { padding: 48px 0 72px; }
.city-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--forest-ink);
  margin: 48px 0 18px;
}
.city-body h2:first-child { margin-top: 0; }
.city-body p { font-size: 1rem; line-height: 1.65; color: var(--slate); margin-bottom: 16px; }
.city-body .checklist { margin-bottom: 20px; }
.city-price-box {
  background: var(--sage-mist);
  border-left: 4px solid var(--sage);
  padding: 22px 26px;
  border-radius: 8px;
  margin: 32px 0;
}
.city-price-box h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--forest-ink);
  margin: 0 0 8px;
  font-weight: 600;
}
.city-price-box p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.city-faq { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.city-faq .faq-item {
  padding: 20px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.city-faq .faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest-ink);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.city-faq .faq-item p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
.city-authority-links {
  list-style: none;
  padding: 14px 22px;
  margin: 14px 0 28px;
  background: var(--paper);
  border-left: 3px solid var(--sage);
  border-radius: 6px;
}
.city-authority-links li { padding: 6px 0; }
.city-authority-links a { font-weight: 600; color: var(--sage-deep); }
.city-authority-links a:hover { color: var(--forest-ink); }

/* Service detail hero photo */
.service-hero-photo {
  width: 100%;
  aspect-ratio: 16/6;
  max-height: 380px;
  overflow: hidden;
  background: var(--mist);
}
.service-hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 700px) { .service-hero-photo { aspect-ratio: 3/2; max-height: 260px; } }

/* Promise page hero photo */
.promise-hero {
  width: 100%;
  aspect-ratio: 21/9;
  max-height: 420px;
  overflow: hidden;
  background: var(--mist);
}
.promise-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 700px) { .promise-hero { aspect-ratio: 16/10; max-height: 280px; } }

/* City page hero — editorial two-column card (not a stretched banner) */
.city-hero-photo {
  display: none; /* legacy, replaced by .city-hero-editorial pattern */
}
.city-hero-editorial {
  background: linear-gradient(180deg, var(--cream-soft) 0%, var(--sage-mist) 100%);
  padding: 56px 0 24px;
}
.city-hero-editorial .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.city-hero-editorial-copy .eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-deep);
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sage-soft);
  margin-bottom: 20px;
}
.city-hero-editorial h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--forest-ink);
  margin: 0 0 18px;
}
.city-hero-editorial h1 em { font-style: italic; color: var(--sage-deep); font-weight: 400; }
.city-hero-editorial-lede { font-size: 1.08rem; line-height: 1.6; color: var(--muted); margin: 0 0 28px; }
.city-hero-editorial-photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 30px 70px -30px rgba(49, 58, 52, 0.32);
}
.city-hero-editorial-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.city-hero-editorial-photo iframe { width: 100%; height: 100%; border: 0; display: block; }
/* Visible photo credit overlay removed per Caitlyn — credits stay legally compliant via /credits page linked in footer. Caption kept in DOM (visually hidden) for screen readers. */
.city-hero-editorial-photo figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.city-hero-editorial-photo figcaption a { color: inherit; }
@media (max-width: 900px) {
  .city-hero-editorial .wrap { grid-template-columns: 1fr; gap: 32px; }
}

/* City map section — embedded interactive Google Maps for every city page */
.city-map {
  background: var(--cream-soft);
  padding: 40px 0 16px;
}
.city-map .wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.city-map h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--forest-ink);
  margin: 0 0 6px;
}
.city-map p.city-map-lede {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 18px;
}
.city-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 18px 40px -22px rgba(49, 58, 52, 0.28);
  display: block;
}
@media (max-width: 600px) {
  .city-map iframe { height: 300px; }
}

/* Footer logo: circular transparent badge — square aspect ratio */
.footer-logo {
  height: 160px;
  width: 160px;
  display: block;
  margin-bottom: 22px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
}
@media (max-width: 900px) {
  .footer-logo { height: 130px; width: 130px; }
}
@media (max-width: 520px) {
  .footer-logo { height: 110px; width: 110px; }
}

/* ==========================================================================
   Service Detail editorial hero (replaces service-hero-photo banner)
   ========================================================================== */
.svc-hero-editorial {
  position: relative;
  background: linear-gradient(180deg, var(--cream-soft) 0%, var(--sage-mist) 100%);
  padding: 72px 0 88px;
  overflow: hidden;
}
.svc-hero-editorial-deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.svc-hero-deco-blob {
  position: absolute;
  top: -140px;
  right: -180px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(125,155,118,0.2), rgba(125,155,118,0) 68%);
  filter: blur(8px);
}
.svc-hero-editorial-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.svc-hero-editorial-copy .eyebrow-editorial {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-deep);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--sage-soft);
  margin-bottom: 24px;
}
.svc-hero-editorial-copy h1.display-serif {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--forest-ink);
  margin: 0 0 22px;
}
.svc-hero-editorial-copy .lede {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 30px;
}
.svc-hero-editorial-copy .cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.svc-hero-price {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--sage-deep);
  letter-spacing: 0.04em;
  padding: 12px 18px;
  background: var(--paper);
  border: 1px solid var(--sage-soft);
  border-radius: 999px;
  display: inline-block;
  font-weight: 500;
}
.svc-hero-editorial-photo { margin: 0; }
.svc-hero-photo-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 70px -28px rgba(49,58,52,0.32);
  transform: rotate(-1.2deg);
  background: var(--sage-mist);
}
.svc-hero-photo-frame::before {
  content: "";
  position: absolute;
  inset: -16px;
  background: var(--sage);
  border-radius: 14px;
  z-index: -1;
  transform: rotate(3deg);
  opacity: 0.2;
}
.svc-hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .svc-hero-editorial { padding: 56px 0 72px; }
  .svc-hero-editorial-grid { grid-template-columns: 1fr; gap: 44px; }
  .svc-hero-photo-frame { transform: none; max-width: 420px; }
  .svc-hero-photo-frame::before { inset: -10px; transform: rotate(2deg); }
  .svc-hero-deco-blob { width: 300px; height: 300px; top: -80px; right: -100px; }
}

/* Other-services section on service detail pages */
.other-services {
  background: var(--mist);
  padding: 72px 0 80px;
}
.svc-authority {
  margin-top: 48px;
  padding: 18px 24px;
  border-left: 3px solid var(--sage);
  background: var(--paper);
  border-radius: 6px;
  font-size: 14px;
  color: var(--muted);
}
.svc-authority-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-right: 10px;
}
.svc-authority a { font-weight: 600; color: var(--sage-deep); }
.svc-authority a:hover { color: var(--forest-ink); }

/* Process steps */
.process { background: var(--mist); }
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 900px) { .step-grid { grid-template-columns: 1fr 1fr; } }
.step-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.step-num { font-family: var(--font-display); font-size: 2.2rem; color: var(--peach); line-height: 1; margin-bottom: 12px; }
.step-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step-card p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* Service area map */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .area-grid { grid-template-columns: 1fr; } }
.area-map {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #E6EEE9 0%, #F4EBDD 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  padding: 24px;
  overflow: hidden;
}
.area-map svg { width: 95%; height: 95%; }
.cities { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 28px; margin-top: 20px; }
.cities div { padding: 11px 0; border-bottom: 1px solid var(--line); font-weight: 500; }
.cities div:before { content: "\25C6"; color: var(--peach); margin-right: 10px; font-size: 10px; }

/* Reviews */
.reviews { background: var(--forest-ink); color: var(--cream); }
.reviews h2 { color: var(--cream); }
.reviews .eyebrow { color: var(--peach); }
.reviews .section-head p { color: #C7D3CD; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
@media (max-width: 900px) { .rev-grid { grid-template-columns: 1fr; } }
.rev-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.stars { color: #F5B841; font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.rev-card p { color: #DDE6E2; font-size: 15px; line-height: 1.6; }
.rev-card .attr { margin-top: 16px; font-size: 13px; color: #9AAAA3; }
.rev-card .attr strong { display: block; color: #fff; font-size: 14px; margin-bottom: 2px; }
.rev-footer { margin-top: 36px; text-align: center; color: #9AAAA3; font-size: 14px; }

/* CTA band */
.cta-band { background: var(--peach); padding: 60px 0; text-align: center; color: #fff; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.92); font-size: 1.1rem; margin-bottom: 24px; }
.cta-band .btn { background: var(--forest-ink); color: var(--cream); }
.cta-band .btn:hover { background: var(--forest); color: var(--cream); }

/* Tables (pricing) */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.price-table th, .price-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.price-table th {
  background: var(--forest-ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price-table tbody tr:nth-child(even) { background: var(--mist); }
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table td:first-child { font-weight: 600; color: var(--forest-ink); }
.price-table .placeholder {
  color: var(--peach);
  font-weight: 600;
  font-style: italic;
}

/* FAQ / accordion */
.faq { background: var(--cream); }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  padding: 22px 26px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest-ink);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--peach);
  font-size: 26px;
  line-height: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item .answer { padding: 0 26px 24px; color: var(--muted); font-size: 15.5px; }

/* Form */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--forest-ink); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-deep);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--forest); background: var(--paper); }
.field .help { margin-top: 6px; font-size: 12px; color: var(--muted); }

/* Info blocks */
.info-block { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.info-block .icon {
  width: 44px; height: 44px;
  background: var(--mist);
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--forest-ink);
  font-weight: 700;
  font-size: 18px;
}
.info-block .txt strong { display: block; color: var(--forest-ink); font-size: 15px; margin-bottom: 2px; }
.info-block .txt span { color: var(--muted); font-size: 14px; line-height: 1.55; }
.info-block .txt a { color: var(--forest); }

/* Checklist */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px; }
@media (max-width: 700px) { .checklist { grid-template-columns: 1fr; } }
.checklist li { padding: 10px 0 10px 28px; position: relative; border-bottom: 1px dashed var(--line); font-size: 15px; }
.checklist li::before {
  content: "\2713";
  position: absolute; left: 0; top: 10px;
  color: var(--sage); font-weight: 700;
}

/* Comparison table (non-toxic promise) */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}
@media (max-width: 700px) { .compare { grid-template-columns: 1fr; } }
.compare .col {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.compare .col.bad { border-top: 4px solid var(--red); }
.compare .col.good { border-top: 4px solid var(--sage); }
.compare h3 { font-size: 1.15rem; margin-bottom: 14px; }
.compare ul { list-style: none; padding: 0; margin: 0; }
.compare li { padding: 8px 0 8px 24px; position: relative; font-size: 15px; color: var(--ink); border-bottom: 1px dashed var(--line); }
.compare li:last-child { border-bottom: 0; }
.compare .bad li::before { content: "\00d7"; position: absolute; left: 0; color: var(--red); font-weight: 700; font-size: 18px; line-height: 1; top: 9px; }
.compare .good li::before { content: "\2713"; position: absolute; left: 0; color: var(--sage); font-weight: 700; }

/* Placeholders for intake */
.intake-flag {
  background: var(--peach-soft);
  color: #8C4A2A;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.92em;
  font-weight: 600;
  font-style: italic;
}
.intake-note {
  background: var(--peach-soft);
  color: #8C4A2A;
  border-left: 3px solid var(--peach);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13.5px;
  font-style: italic;
  margin: 16px 0;
}

/* Footer */
footer { background: var(--forest-ink); color: #C7D3CD; padding: 64px 0 28px; font-size: 14.5px; }
footer .grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 48px; }
@media (max-width: 900px) { footer .grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
footer h4 { color: #fff; margin: 0 0 16px; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--font-body); }
footer a { color: #A7B5AE; display: block; padding: 5px 0; text-decoration: none; }
footer a:hover { color: #fff; }
footer .brand-box p { color: #A7B5AE; margin-top: 14px; max-width: 300px; font-size: 14px; }
footer .bottom {
  margin-top: 48px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 12.5px; color: #7F8E88;
}

/* Draft ribbon */


/* Visually hidden */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* --- Navigation Dropdowns (added 2026-04-23) --- */
nav.main ul li.has-dropdown { position: relative; }
nav.main ul li.has-dropdown > a { display: inline-flex; align-items: center; gap: 4px; }
nav.main ul li.has-dropdown .caret { font-size: 10px; opacity: 0.7; transition: transform 0.2s; }
nav.main ul li.has-dropdown:hover .caret,
nav.main ul li.has-dropdown:focus-within .caret { transform: rotate(180deg); }

nav.main ul li.has-dropdown .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  padding: 8px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.18s, transform 0.18s, visibility 0s 0.18s;
  z-index: 100;
}
nav.main ul li.has-dropdown:hover .dropdown,
nav.main ul li.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.18s, transform 0.18s, visibility 0s;
}
nav.main ul li.has-dropdown .dropdown li { display: block; margin: 0; }
nav.main ul li.has-dropdown .dropdown li a {
  display: block;
  padding: 10px 18px;
  color: var(--forest-ink);
  font-size: 14px;
  font-weight: 500;
  border-radius: 0;
  transition: background 0.15s;
}
nav.main ul li.has-dropdown .dropdown li a:hover {
  background: var(--paper);
  color: var(--sage);
}
nav.main ul li.has-dropdown .dropdown li.divider {
  border-top: 1px solid var(--line);
  margin-top: 6px;
  padding-top: 6px;
}
nav.main ul li.has-dropdown .dropdown li.divider a {
  font-weight: 600;
  color: var(--sage);
  font-size: 13px;
}

/* Mobile: dropdowns open as expanded sections instead of hover */
@media (max-width: 900px) {
  nav.main ul li.has-dropdown .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    background: transparent;
    min-width: 0;
  }
  nav.main ul li.has-dropdown .caret { display: none; }
}

/* --- Service Card Icon Header (added 2026-04-23) --- */
.svc .icon-header {
  aspect-ratio: 16 / 8;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(127,166,150,0.28), transparent 60%),
    linear-gradient(135deg, #E6EFE9 0%, #F5EADB 100%);
  color: var(--forest-ink);
  position: relative;
}
.svc .icon-header svg {
  width: 56px;
  height: 56px;
  stroke: var(--forest-ink);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.82;
}
.svc .icon-header::after {
  content: attr(data-label);
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-ink);
  opacity: 0.65;
  font-weight: 600;
}

/* ==========================================================================
   Editorial hero (bespoke for Clean & Conscious)
   ========================================================================== */
.hero-editorial {
  position: relative;
  padding: 72px 0 96px;
  background: linear-gradient(180deg, var(--cream-soft) 0%, var(--sage-mist) 100%);
  overflow: hidden;
}
.hero-editorial-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-editorial-deco .hero-deco-blob {
  position: absolute;
  top: -180px;
  right: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(125, 155, 118, 0.18), rgba(125, 155, 118, 0) 72%);
  filter: blur(10px);
}
.hero-deco-leaf {
  position: absolute;
  color: var(--sage-soft);
  opacity: 0.42;
  width: 160px;
  height: 160px;
}
.hero-deco-leaf-1 { top: 40px; left: -60px; transform: rotate(-18deg); opacity: 0.32; }
.hero-deco-leaf-2 { bottom: 80px; right: -40px; width: 200px; height: 200px; transform: rotate(24deg); opacity: 0.22; color: var(--sage); }
.hero-editorial-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.hero-editorial-copy .eyebrow-editorial {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--sage-soft);
  margin-bottom: 24px;
}
.hero-editorial-copy h1.display-serif {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--forest-ink);
  margin-bottom: 22px;
}
.hero-editorial-copy h1.display-serif em {
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 400;
}
.hero-editorial-copy .lede {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-editorial-copy .cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.hero-trust-row li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-trust-row strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--forest-ink);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.hero-trust-row span {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.4;
}

/* Portrait side */
.hero-editorial-portrait {
  position: relative;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.hero-portrait-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(49, 58, 52, 0.35), 0 15px 30px -12px rgba(49, 58, 52, 0.2);
  transform: rotate(-1.2deg);
  background: var(--sage-mist);
  z-index: 2;
}
.hero-portrait-frame::before {
  content: "";
  position: absolute;
  inset: -18px;
  background: var(--sage);
  border-radius: 14px;
  z-index: -1;
  transform: rotate(3deg);
  opacity: 0.22;
}
.hero-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-portrait-badge {
  position: absolute;
  bottom: -36px;
  left: -28px;
  background: var(--paper);
  padding: 18px 22px;
  border-radius: 10px;
  box-shadow: 0 20px 45px -12px rgba(49, 58, 52, 0.25);
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 260px;
  z-index: 3;
}
.hero-portrait-badge-eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 600;
  margin-bottom: 2px;
}
.hero-portrait-badge strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--forest-ink);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.hero-portrait-badge-small {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 3px;
}
@media (max-width: 900px) {
  .hero-editorial { padding: 48px 0 80px; }
  .hero-editorial-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-editorial-portrait { justify-content: flex-start; }
  .hero-portrait-frame { max-width: 340px; transform: none; }
  .hero-portrait-frame::before { inset: -12px; transform: rotate(2deg); }
  .hero-portrait-badge { position: static; margin-top: 22px; max-width: 340px; }
  .hero-trust-row { grid-template-columns: 1fr; gap: 14px; }
  .hero-editorial-copy h1.display-serif { font-size: clamp(2.1rem, 9vw, 2.8rem); }
}

/* ==========================================================================
   Nav dropdowns (elegant, keyboard-accessible)
   ========================================================================== */
nav.main ul li { position: relative; }
nav.main ul li.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 6px;
  opacity: 0.6;
  transition: transform 0.2s, opacity 0.2s;
}
nav.main ul li.has-dropdown:hover > a::after,
nav.main ul li.has-dropdown:focus-within > a::after {
  transform: rotate(-135deg) translateY(1px);
  opacity: 1;
}
nav.main .nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 260px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 20px 50px -18px rgba(49, 58, 52, 0.28), 0 8px 18px -6px rgba(49, 58, 52, 0.12);
  padding: 10px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 40;
  display: block !important;  /* override any parent flex-row cascade */
  flex-direction: column !important;
}
nav.main .nav-dropdown > li { display: block !important; width: 100%; }

/* ==========================================================================
   Air-Statement section (dark editorial)
   ========================================================================== */
.air-statement {
  position: relative;
  background: linear-gradient(140deg, #2F3D36 0%, #3E514A 100%);
  color: var(--cream);
  padding: 104px 0 112px;
  overflow: hidden;
}
.air-statement-wrap {
  position: relative;
  max-width: 1040px;
}
.air-statement-accent {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 280px;
  height: 280px;
  color: var(--sage);
  z-index: 0;
  pointer-events: none;
}
.air-statement .eyebrow-light {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.65);
  display: inline-block;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.22);
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.air-statement-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin-bottom: 40px;
  max-width: 820px;
  position: relative;
  z-index: 2;
}
.air-statement-h2 em { font-style: italic; color: var(--sage-soft); font-weight: 400; }
.air-statement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.air-statement-lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--cream);
  margin: 0;
  border-left: 2px solid var(--sage-soft);
  padding-left: 20px;
}
.air-statement-body {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.82);
  margin: 0;
}
.btn-outline-light {
  border: 1.5px solid rgba(245, 240, 232, 0.5);
  color: var(--cream);
  background: transparent;
  padding: 12px 22px;
  font-weight: 600;
  border-radius: 999px;
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline-light:hover { background: rgba(245, 240, 232, 0.08); border-color: var(--cream); color: var(--cream); }
@media (max-width: 800px) {
  .air-statement { padding: 72px 0 80px; }
  .air-statement-grid { grid-template-columns: 1fr; gap: 28px; }
  .air-statement-accent { width: 180px; height: 180px; top: -20px; right: -30px; }
}

/* ==========================================================================
   Pillars editorial list (numbered, with thumbnails)
   ========================================================================== */
.pillars-editorial { padding: 96px 0 80px; background: var(--cream); }
.pillars-editorial-head {
  max-width: 760px;
  margin-bottom: 56px;
}
.pillars-editorial-head .eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-deep);
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sage-soft);
  margin-bottom: 20px;
}
.pillars-editorial-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--forest-ink);
  margin-bottom: 18px;
}
.pillars-editorial-head h2 em { font-style: italic; color: var(--sage-deep); font-weight: 400; }
.pillars-editorial-head .lede { font-size: 1.1rem; line-height: 1.65; color: var(--muted); max-width: 620px; }
.pillars-editorial-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.pillar-row {
  display: grid;
  grid-template-columns: 80px 1fr 180px;
  gap: 36px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--sage-deep);
  line-height: 1;
  opacity: 0.85;
}
.pillar-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--forest-ink);
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.pillar-body p { font-size: 15.5px; line-height: 1.65; color: var(--muted); margin: 0; max-width: 600px; }
.pillar-thumb {
  width: 180px;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  justify-self: end;
}
@media (max-width: 800px) {
  .pillars-editorial { padding: 72px 0 64px; }
  .pillar-row { grid-template-columns: 50px 1fr; gap: 20px; padding: 24px 0; }
  .pillar-thumb { display: none; }
  .pillar-num { font-size: 2rem; }
}

/* ==========================================================================
   Who-For editorial (featured + list)
   ========================================================================== */
.who-editorial { padding: 96px 0 88px; background: var(--sage-mist); }
.who-editorial-head {
  max-width: 820px;
  margin-bottom: 56px;
}
.who-editorial-head .eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-deep);
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sage-soft);
  margin-bottom: 20px;
}
.who-editorial-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--forest-ink);
  margin: 0;
}
.who-editorial-head h2 em { font-style: italic; color: var(--sage-deep); font-weight: 400; }
.who-editorial-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.who-featured {
  background: var(--paper);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(49, 58, 52, 0.3);
}
.who-featured img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.who-featured-body { padding: 32px 32px 36px; }
.who-featured-tag {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  display: block;
  margin-bottom: 14px;
}
.who-featured-body h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 500;
  color: var(--forest-ink);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.who-featured-body p { font-size: 15.5px; line-height: 1.65; color: var(--muted); margin: 0; }
.who-editorial-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.who-editorial-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--sage-soft);
}
.who-editorial-list li:first-child { padding-top: 0; }
.who-editorial-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.who-editorial-list h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--forest-ink);
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}
.who-editorial-list p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }
@media (max-width: 900px) {
  .who-editorial { padding: 72px 0 64px; }
  .who-editorial-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ==========================================================================
   Mobile hamburger nav + responsive polish
   ========================================================================== */

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 10px;
  margin: -10px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest-ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ---- Tablet & Mobile: everything at 900px or below ---- */
@media (max-width: 900px) {
  /* Show hamburger, collapse menu */
  .nav-toggle { display: flex; margin-left: auto; }
  nav.main > .wrap { flex-wrap: wrap; }
  nav.main ul#nav-menu {
    display: none !important;
    flex-direction: column !important;
    width: 100%;
    order: 3;
    background: var(--paper);
    padding: 8px 0 16px;
    margin-top: 10px;
    border-top: 1px solid var(--line);
    list-style: none;
  }
  nav.main.nav-open ul#nav-menu { display: flex !important; }
  nav.main ul#nav-menu > li {
    width: 100%;
    display: block !important;
  }
  nav.main ul#nav-menu > li > a {
    display: block;
    padding: 12px 4px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid var(--line);
  }
  nav.main ul#nav-menu > li > a::after { display: none !important; } /* hide caret */

  /* Mobile dropdowns expand inline, no absolute positioning */
  nav.main .nav-dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: 0 !important;
    padding: 4px 16px 10px !important;
    background: var(--cream) !important;
    min-width: 0 !important;
  }
  nav.main .nav-dropdown a {
    padding: 8px 4px !important;
    font-size: 14px;
  }
  nav.main .nav-dropdown a .nav-dropdown-sub { display: none; } /* hide subtitles on mobile to save space */

  /* Nav toggle animates to X when open */
  nav.main.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.main.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
  nav.main.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Hide decorative elements that don't serve mobile */
  .hero-editorial-deco .hero-deco-leaf { display: none; }
  .hero-editorial-deco .hero-deco-blob { width: 280px; height: 280px; opacity: 0.5; }

  /* Air-statement accent shrink */
  .air-statement-accent { display: none; }
}

/* ---- Small mobile: phone-sized viewports ---- */
@media (max-width: 600px) {
  /* Tighter hero */
  .hero-editorial { padding: 36px 0 56px; }
  .hero-editorial-copy h1.display-serif { font-size: clamp(1.9rem, 8vw, 2.4rem) !important; line-height: 1.08; }
  .hero-editorial-copy .eyebrow-editorial { font-size: 10px; letter-spacing: 0.16em; margin-bottom: 18px; padding-bottom: 10px; }
  .hero-editorial-copy .lede { font-size: 0.98rem; }
  .hero-editorial-copy .cta-row { flex-direction: column; gap: 10px; margin-bottom: 32px; }
  .hero-editorial-copy .cta-row .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-portrait-frame { max-width: 100%; }
  .hero-portrait-badge { max-width: 100%; padding: 14px 18px; }

  /* Air-statement mobile */
  .air-statement { padding: 56px 0 64px; }
  .air-statement-h2 { font-size: 1.75rem; line-height: 1.15; }
  .air-statement-lede { font-size: 1.05rem; padding-left: 14px; }
  .air-statement-body { font-size: 0.95rem; }

  /* Pillars mobile */
  .pillars-editorial { padding: 56px 0 48px; }
  .pillars-editorial-head h2 { font-size: 1.75rem; line-height: 1.15; }
  .pillars-editorial-head .lede { font-size: 0.98rem; }
  .pillar-row { padding: 20px 0; gap: 12px; }
  .pillar-num { font-size: 1.6rem; }
  .pillar-body h3 { font-size: 1.2rem; }
  .pillar-body p { font-size: 14.5px; }

  /* Who-for mobile */
  .who-editorial { padding: 56px 0 56px; }
  .who-editorial-head h2 { font-size: 1.6rem; line-height: 1.2; }
  .who-featured-body { padding: 22px 22px 26px; }
  .who-featured-body h3 { font-size: 1.25rem; }
  .who-editorial-list h3 { font-size: 1.05rem; }

  /* Service cards — make stacking feel intentional */
  .svc .body { padding: 20px 22px; }
  .svc h3 { font-size: 1.15rem; }

  /* Utility bar + contact info */
  .utility { font-size: 11.5px; padding: 8px 0; }
  .utility .wrap { flex-direction: column; gap: 6px; text-align: center; }

  /* Reduce heavy section padding */
  section { padding-left: 4px; padding-right: 4px; }
  .wrap { padding-left: 20px; padding-right: 20px; }

  /* Buttons always min 44px tap target */
  .btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
}

/* Prevent horizontal scroll anywhere */
html, body { overflow-x: hidden; }
nav.main .nav-dropdown.nav-dropdown-wide { min-width: 320px; }
nav.main .nav-dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 14px;
}
nav.main ul li.has-dropdown:hover > .nav-dropdown,
nav.main ul li.has-dropdown:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
nav.main .nav-dropdown li { display: block; }
nav.main .nav-dropdown a {
  display: flex;
  flex-direction: column;
  padding: 9px 12px;
  border-radius: 6px;
  color: var(--forest-ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  transition: background 0.15s, color 0.15s;
}
nav.main .nav-dropdown a .nav-dropdown-sub {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
}
nav.main .nav-dropdown a:hover,
nav.main .nav-dropdown a:focus {
  background: var(--sage-mist);
  color: var(--sage-deep);
}
nav.main .nav-dropdown hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 6px 4px;
}
nav.main .nav-dropdown .nav-dropdown-footer {
  padding: 8px 12px 4px;
  font-weight: 600;
  color: var(--sage-deep);
  font-size: 13px;
}
@media (max-width: 900px) {
  nav.main .nav-dropdown { display: none; }
}


/* === Mobile excellence patches (Wave 3 follow-up) === */
.price-table-wrap {
  width: 100%;
  /* Narrow tables (2-col Hourly + Add-Ons) reflow to available width. */
  overflow-x: visible;
  margin: 0;
  padding: 0;
}
.price-table-wrap .price-table {
  min-width: 0;
  table-layout: auto;
}
/* WIDE tier tables (Recurring & Deep Clean, Move-In / Move-Out, Allergy & Asthma HEPA)
   scroll horizontally on mobile. Reverts the Wave 3 "no scroll" patch for these tables only — Caitlyn wants the top 3 charts scrolling like they did before, since the
   column headers wrap unreadably (WE EK LY) when forced into a narrow phone viewport. */
.price-table-wrap.price-table-wide {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.price-table-wrap.price-table-wide .price-table {
  /* Force enough width that headers + tier descriptors stay on one line */
  min-width: 640px;
  table-layout: auto;
}
.price-table-wrap.price-table-wide .price-table th,
.price-table-wrap.price-table-wide .price-table td {
  /* Override the global word-break:break-word so "Weekly" / "Bi-Weekly" stay as
     single tokens. */
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
}
.price-table-wrap.price-table-wide .price-table th {
  white-space: nowrap;
}
.price-table-wrap.price-table-wide::after {
  /* Subtle scroll-hint glyph so users on mobile know the table scrolls. */
  content: "↔ scroll";
  display: block;
  text-align: right;
  font-size: 11px;
  color: var(--muted, #888);
  padding: 6px 4px 0;
  font-style: italic;
  letter-spacing: 0.04em;
}
@media (min-width: 760px) {
  /* Desktop: enough room for the wide tables to fit naturally, kill the scroll hint. */
  .price-table-wrap.price-table-wide { overflow-x: visible; }
  .price-table-wrap.price-table-wide .price-table { min-width: 0; }
  .price-table-wrap.price-table-wide::after { display: none; }
}
.price-table th, .price-table td {
  word-break: break-word;
  overflow-wrap: anywhere;
}
.price-table td:last-child {
  /* Keep prices ($75 / hr, $150 minimum) on a single line */
  white-space: nowrap;
}
@media (max-width: 900px) {
  .price-table th, .price-table td {
    padding: 12px 12px;
    font-size: 13.5px;
  }
  .price-table th { font-size: 11.5px; padding: 10px 12px; }
}
@media (max-width: 560px) {
  .price-table th, .price-table td {
    padding: 10px 10px;
    font-size: 12.5px;
  }
  .price-table th { font-size: 10.5px; padding: 8px 10px; letter-spacing: 0.02em; }
  /* Slight indent for tier label cells */
  .price-table td strong { display: block; margin-bottom: 2px; }
}
.cc-cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .cc-cols-2 { grid-template-columns: 1fr; gap: 32px; margin-top: 32px; }
}
.cc-our-story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}
@media (max-width: 900px) {
  .cc-our-story-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 700px) {
  .wrap, .wrap-narrow { padding: 0 20px; }
  h1 { font-size: 1.95rem; line-height: 1.18; }
  h2 { font-size: 1.5rem; line-height: 1.25; }
  h3 { font-size: 1.18rem; }
  section[style*="padding:72px"] { padding-top: 48px !important; padding-bottom: 36px !important; }
  section[style*="padding:24px 0 72px"] { padding-bottom: 56px !important; }
}
