/* ============================================================
   MyCleanHaven — v2 Design System
   Warm, editorial layer that sits on top of styles.css.
   Scoped to .mch-v2 so no other page is affected.
   ============================================================ */

.mch-v2 {
  /* Warm neutrals — cream instead of grey is what makes it feel
     like a local business rather than a software company. */
  --cream:    #FBF7F1;
  --cream-2:  #F4EDE2;
  --sand:     #EFE6D8;
  --line:     #E6DCCC;
  --line-2:   #D8CCB8;

  --ink:      #221F1C;
  --ink-2:    #4B443D;
  --ink-3:    #746B61;

  --brand:    #FA903E;   /* brand orange — accents, rules, marks */
  --brand-dk: #DE7523;   /* button fill (readable with white text) */
  --brand-lt: #FDF0E3;
  --leaf:     #5C8C3A;   /* darker green — safe for text on cream */
  --leaf-lt:  #EDF4E4;

  --night:    #1D1E20;
  --night-2:  #292A2C;

  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

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

.mch-v2 h1, .mch-v2 h2, .mch-v2 h3, .mch-v2 .display {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.12;
}
.mch-v2 p { color: var(--ink-2); }

/* The rule above is deliberately broad, which means it also reaches the dark
   footer, the cookie banner and the modal — all of which set their own colours
   at equal specificity and would lose on load order. Restore them explicitly,
   or body copy ends up dark-on-dark. */
.mch-v2 .footer p         { color: rgba(255,255,255,.6); }   /* general first… */
.mch-v2 .footer-brand > p { color: rgba(255,255,255,.6); }   /* …specific after */
.mch-v2 .footer-tagline   { color: rgba(255,255,255,.35); }
.mch-v2 .footer-address   { color: rgba(255,255,255,.38); }
.mch-v2 .footer-bottom p  { color: rgba(255,255,255,.35); }
.mch-v2 .cookie-banner-text { color: rgba(255,255,255,.58); }
.mch-v2 .cookie-banner-title { color: #fff; }
.mch-v2 .modal-card .modal-sub { color: #6b7280; }

/* Same trap, lower stakes: these are <p> elements meant to sit a step quieter
   than body copy. Re-scoped so the muted tone survives. */
.mch-v2 .cta-note,
.mch-v2 .note-caption,
.mch-v2 .areas-note,
.mch-v2 .svc-for,
.mch-v2 .opt-best { color: var(--ink-3); }
.mch-v2 .band-night .cta-note { color: rgba(255,255,255,.45); }
.mch-v2 .closer .cta-note { color: rgba(255,255,255,.5); }

.mch-v2 .wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.mch-v2 .wrap-narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.mch-v2 .band { padding: 96px 0; }
.mch-v2 .band-sm { padding: 64px 0; }
.mch-v2 .band-cream { background: var(--cream); }
.mch-v2 .band-white { background: #fff; }
.mch-v2 .band-sand  { background: var(--cream-2); }
.mch-v2 .band-night { background: var(--night); }

/* ---------- Shared bits ---------- */

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .74rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--leaf);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; width: 22px; height: 1.5px; background: var(--brand);
  display: block; flex-shrink: 0;
}
.eyebrow-light { color: #A9CC85; }
.band-night .eyebrow { color: #A9CC85; }

.lede { font-size: 1.08rem; line-height: 1.75; color: var(--ink-2); }
.band-night .lede, .band-night p { color: rgba(255,255,255,.72); }
.band-night h2, .band-night h3 { color: #fff; }

.head-block { max-width: 640px; }
.head-block.centred { margin: 0 auto; text-align: center; }
.head-block.centred .eyebrow { justify-content: center; }
.head-block h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); margin-bottom: 16px; }

/* Icons — thin line SVGs, never emoji */
.ico { width: 22px; height: 22px; flex-shrink: 0; stroke-width: 1.6; }
.tick { width: 17px; height: 17px; flex-shrink: 0; margin-top: 4px; color: var(--leaf); }

/* Buttons */
.mch-v2 .cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--body); font-size: .96rem; font-weight: 600;
  padding: 16px 30px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.mch-v2 .cta-primary {
  background: var(--brand-dk); color: #fff; border-color: var(--brand-dk);
  box-shadow: 0 6px 18px rgba(222,117,35,.22);
}
.mch-v2 .cta-primary:hover {
  background: #C96718; border-color: #C96718;
  transform: translateY(-2px); box-shadow: 0 10px 26px rgba(222,117,35,.3);
}
.mch-v2 .cta-ghost {
  background: transparent; color: var(--ink); border-color: var(--line-2);
}
.mch-v2 .cta-ghost:hover { border-color: var(--ink); background: rgba(0,0,0,.02); }
.mch-v2 .cta-onnight {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.34);
}
.mch-v2 .cta-onnight:hover { background: rgba(255,255,255,.08); border-color: #fff; }
.mch-v2 .cta-lg { padding: 18px 36px; font-size: 1.02rem; }

.cta-note { font-size: .84rem; color: var(--ink-3); margin-top: 14px; }
.band-night .cta-note { color: rgba(255,255,255,.45); }

/* Offer chip — announces the $50 without shouting */
.offer-chip {
  display: inline-flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  margin-top: 18px; padding: 9px 16px 9px 14px;
  background: var(--brand-lt); border: 1px solid rgba(250,144,62,.35);
  border-radius: 999px; font-size: .87rem; color: var(--ink-2);
}
.offer-chip strong { color: var(--brand-dk); font-weight: 700; }
.closer .offer-chip {
  background: rgba(250,144,62,.14); border-color: rgba(250,144,62,.4);
  color: rgba(255,255,255,.82);
}
.closer .offer-chip strong { color: #F6A863; }

/* ---------- Harmonise the shared nav/footer with the warm palette ---------- */
.mch-v2 .nav {
  background: rgba(251,247,241,.94);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}
.mch-v2 .nav-inner { padding: 12px 24px; }
.mch-v2 .nav-links a,
.mch-v2 .nav-dropdown-btn { color: var(--ink); font-weight: 500; }
.mch-v2 .nav-links a:hover,
.mch-v2 .nav-links a.active,
.mch-v2 .nav-dropdown-btn:hover { color: var(--brand-dk); }
.mch-v2 .nav-links a::after,
.mch-v2 .nav-dropdown-btn::after { background: var(--brand); }
.mch-v2 .nav-dropdown-menu { border-color: var(--line); border-radius: 12px; }
.mch-v2 .nav-dropdown-menu a:hover { background: var(--brand-lt); color: var(--brand-dk); }
.mch-v2 .btn-primary,
.mch-v2 .modal-submit { background: var(--brand-dk); border-color: var(--brand-dk); }
.mch-v2 .btn-primary:hover,
.mch-v2 .modal-submit:hover:not(:disabled) { background: #C96718; border-color: #C96718; }
/* Book Online button — must stay white text; the .mch-v2 .nav-links a rule
   above ties on specificity and would otherwise darken it. */
.mch-v2 .nav-links a.btn-primary,
.mch-v2 .nav-links a.btn-primary:hover,
.mch-v2 .nav-links a.btn-primary.active,
.mch-v2 .nav-mobile a.btn-primary,
.mch-v2 .nav-mobile a.btn-primary:hover { color: #fff; }
.mch-v2 .nav-links a.btn-primary::after { display: none; }
.mch-v2 .footer { background: var(--night); }
.mch-v2 .modal-card h2 { font-family: var(--display); font-weight: 600; }
.mch-v2 .modal-eyebrow {
  text-transform: none; letter-spacing: .01em; font-weight: 600;
  background: var(--leaf-lt); border-color: rgba(92,140,58,.25); color: var(--leaf);
}

/* ============================================================
   HERO
   ============================================================ */
.hero-v2 {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 74px 0 78px;
  position: relative; overflow: hidden;
}
.hero-v2::after {
  content: ''; position: absolute; top: -180px; right: -140px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(250,144,62,.13), transparent 68%);
  pointer-events: none;
}
.hero-v2-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px;
  align-items: center; position: relative; z-index: 1;
}
.hero-v2 h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.9rem);
  line-height: 1.06; margin-bottom: 22px;
}
.hero-v2 h1 em {
  font-style: italic; color: var(--brand-dk); font-weight: 500;
}
.hero-v2 .lede { font-size: 1.13rem; max-width: 520px; margin-bottom: 16px; }
.hero-v2 .lede-2 { font-size: 1rem; color: var(--ink-3); max-width: 500px; margin-bottom: 32px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: .98rem; color: var(--ink);
  text-decoration: none; padding: 16px 4px;
}
.hero-phone:hover { color: var(--brand-dk); }
.hero-phone svg { color: var(--leaf); }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 28px;
  margin-top: 38px; padding-top: 28px; border-top: 1px solid var(--line);
}
.hero-trust li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .88rem; font-weight: 500; color: var(--ink-2); list-style: none;
}

/* Photo side */
.hero-figure { position: relative; }
.hero-figure img {
  width: 100%; height: 520px; object-fit: cover;
  border-radius: 4px 120px 4px 4px;
  box-shadow: 0 28px 60px rgba(45,35,20,.18);
}
.hero-card {
  position: absolute; left: -32px; bottom: 42px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 18px 22px;
  box-shadow: 0 18px 44px rgba(45,35,20,.16);
  max-width: 268px;
}
.hero-card-stars { color: var(--brand); font-size: .95rem; letter-spacing: 2px; }
.hero-card-quote {
  font-size: .89rem; line-height: 1.6; color: var(--ink-2);
  margin: 8px 0 10px; font-style: italic;
}
.hero-card-name { font-size: .78rem; font-weight: 600; color: var(--ink-3); letter-spacing: .02em; }

/* ============================================================
   RIBBON — thin honest strip under hero
   ============================================================ */
.ribbon { background: var(--night); color: #fff; padding: 18px 0; }
.ribbon-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 12px 34px; text-align: center;
}
.ribbon-item {
  display: flex; align-items: center; gap: 9px;
  font-size: .875rem; color: rgba(255,255,255,.82); font-weight: 500;
}
.ribbon-item strong { color: #fff; font-weight: 700; }
.ribbon-item svg { color: #A9CC85; }

/* ============================================================
   STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; margin-top: 58px; }
.hstep { position: relative; padding-top: 30px; border-top: 2px solid var(--line); }
.hstep-num {
  position: absolute; top: -14px; left: 0;
  background: var(--cream); padding-right: 14px;
  font-family: var(--display); font-size: 1.05rem; font-weight: 600; color: var(--brand-dk);
}
.band-white .hstep-num { background: #fff; }
.hstep h3 { font-size: 1.22rem; margin-bottom: 11px; }
.hstep p { font-size: .97rem; line-height: 1.72; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 52px; }
.svc {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 34px 30px 30px; display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.svc:hover {
  transform: translateY(-4px); border-color: var(--line-2);
  box-shadow: 0 18px 42px rgba(45,35,20,.11);
}
.svc-ico {
  width: 50px; height: 50px; border-radius: 13px;
  background: var(--brand-lt); color: var(--brand-dk);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.svc-ico svg { width: 25px; height: 25px; stroke-width: 1.5; }
.svc h3 { font-size: 1.35rem; margin-bottom: 12px; }
.svc p { font-size: .96rem; line-height: 1.74; margin-bottom: 18px; }
.svc-for {
  font-size: .86rem; color: var(--ink-3); border-top: 1px solid var(--line);
  padding-top: 15px; margin-top: auto; margin-bottom: 18px;
}
.svc-for strong { color: var(--ink); font-weight: 600; }
.svc-link {
  font-size: .92rem; font-weight: 600; color: var(--brand-dk);
  text-decoration: none; display: inline-flex; align-items: center; gap: 7px;
}
.svc-link:hover { gap: 11px; }
.svc-link svg { transition: transform .18s ease; }

/* ============================================================
   OWNER'S NOTE
   ============================================================ */
.note-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 64px; align-items: center; }
.note-figure img {
  width: 100%; border-radius: 16px; object-fit: cover;
  box-shadow: 0 22px 52px rgba(45,35,20,.16);
}
.note-caption {
  font-size: .82rem; color: var(--ink-3); margin-top: 14px;
  padding-left: 14px; border-left: 2px solid var(--brand);
  line-height: 1.6;
}
.note-body { font-size: 1.06rem; line-height: 1.82; color: var(--ink-2); }
.note-body p + p { margin-top: 17px; }
.note-body p:first-of-type::first-letter {
  font-family: var(--display); font-size: 3.1rem; font-weight: 600;
  float: left; line-height: .84; padding: 6px 12px 0 0; color: var(--brand-dk);
}
.sig { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.sig-name { font-family: var(--display); font-size: 1.3rem; color: var(--ink); }
.sig-role { font-size: .85rem; color: var(--ink-3); margin-top: 3px; }

/* ============================================================
   CHECKLIST
   ============================================================ */
.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 52px; }
.check-col h3 {
  font-size: 1.1rem; padding-bottom: 13px; margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.14); color: #fff;
}
.check-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.check-col li {
  display: flex; gap: 10px; font-size: .93rem; line-height: 1.6;
  color: rgba(255,255,255,.72);
}
.check-col .tick { color: #A9CC85; }
.check-foot {
  margin-top: 46px; padding: 26px 30px; border-radius: 14px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: space-between;
  gap: 26px; flex-wrap: wrap;
}
.check-foot p { font-size: .96rem; margin: 0; max-width: 620px; }

/* ============================================================
   GUARANTEE
   ============================================================ */
.guar {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 52px 56px; display: grid; grid-template-columns: 1fr auto;
  gap: 44px; align-items: center;
  box-shadow: 0 16px 44px rgba(45,35,20,.07);
}
.guar h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); margin-bottom: 14px; }
.guar p { font-size: 1.02rem; line-height: 1.76; max-width: 560px; }
.guar-seal {
  width: 148px; height: 148px; border-radius: 50%; flex-shrink: 0;
  border: 2px dashed var(--line-2); background: var(--leaf-lt);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 3px;
}
.guar-seal-num { font-family: var(--display); font-size: 1.9rem; font-weight: 600; color: var(--leaf); line-height: 1; }
.guar-seal-txt { font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }

/* ============================================================
   REVIEWS
   ============================================================ */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.quote {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 16px; padding: 30px 28px;
  display: flex; flex-direction: column;
}
.band-cream .quote { background: #fff; }
.quote-stars { color: var(--brand); letter-spacing: 2px; font-size: .95rem; margin-bottom: 14px; }
.quote p {
  font-size: .97rem; line-height: 1.76; color: var(--ink-2);
  margin-bottom: 20px; flex-grow: 1;
}
.quote-by { display: flex; align-items: center; gap: 12px; padding-top: 17px; border-top: 1px solid var(--line); }
.quote-initial {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--sand); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 600; font-size: .98rem;
}
.quote-name { font-size: .9rem; font-weight: 600; color: var(--ink); }
.quote-meta { font-size: .79rem; color: var(--ink-3); margin-top: 1px; }

.reviews-widget { max-width: 1140px; margin: 46px auto 0; padding: 0 24px; }

/* ============================================================
   AREAS
   ============================================================ */
.areas { display: grid; grid-template-columns: repeat(auto-fill, minmax(196px, 1fr)); gap: 12px; margin-top: 46px; }
.area {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 11px;
  padding: 15px 18px; text-decoration: none;
  font-size: .93rem; font-weight: 600; color: var(--ink);
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}
.area:hover { border-color: var(--brand); transform: translateY(-2px); background: var(--brand-lt); }
.area svg { color: var(--ink-3); }
.area:hover svg { color: var(--brand-dk); }
.areas-note { text-align: center; margin-top: 30px; font-size: .95rem; color: var(--ink-3); }
.areas-note a { color: var(--brand-dk); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-v2 { margin-top: 48px; border-top: 1px solid var(--line); }
.faq-v2 details { border-bottom: 1px solid var(--line); }
.faq-v2 summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 22px;
  padding: 24px 4px; font-family: var(--display);
  font-size: 1.12rem; font-weight: 600; color: var(--ink);
  transition: color .18s ease;
}
.faq-v2 summary::-webkit-details-marker { display: none; }
.faq-v2 summary:hover { color: var(--brand-dk); }
.faq-v2 summary .faq-mark {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--line-2); color: var(--ink-3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--body); font-size: 1.05rem; line-height: 1;
  transition: transform .25s ease, border-color .18s ease, color .18s ease;
}
.faq-v2 details[open] summary .faq-mark {
  transform: rotate(45deg); border-color: var(--brand); color: var(--brand-dk);
}
.faq-v2 .faq-a { padding: 0 60px 26px 4px; }
.faq-v2 .faq-a p { font-size: .99rem; line-height: 1.8; }
.faq-v2 .faq-a p + p { margin-top: 13px; }

/* ============================================================
   CLOSING CTA
   ============================================================ */
.closer { position: relative; padding: 104px 0; overflow: hidden; background: var(--night); }
.closer-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .3;
}
.closer-inner { position: relative; z-index: 1; text-align: center; max-width: 680px; margin: 0 auto; padding: 0 24px; }
.closer h2 { font-size: clamp(2rem, 4.2vw, 3rem); color: #fff; margin-bottom: 18px; }
.closer p { font-size: 1.1rem; color: rgba(255,255,255,.78); line-height: 1.72; margin-bottom: 34px; }
.closer .eyebrow { justify-content: center; color: #A9CC85; }
.closer-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FADE-IN
   ============================================================ */
/* Progressive enhancement, deliberately.
   Content is visible by default; the script adds .js-anim to opt an element
   into the animation. If the script fails, is blocked, or the observer never
   fires, the page still reads — it just doesn't animate. Hiding first and
   revealing with JS is how content ends up invisible forever. */
.mch-v2 [data-rise],
.mch-v2 [data-fade] { opacity: 1; transform: none; }

.mch-v2 [data-rise].js-anim {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22,.61,.36,1);
}
.mch-v2 [data-rise].js-anim.shown { opacity: 1; transform: none; }

.mch-v2 [data-fade].js-anim {
  opacity: 0; transform: translateY(32px);
  transition: opacity .65s cubic-bezier(.25,.46,.45,.94), transform .65s cubic-bezier(.25,.46,.45,.94);
}
.mch-v2 [data-fade].js-anim.in-view { opacity: 1; transform: none; }
.mch-v2 [data-fade="left"].js-anim  { transform: translateX(-32px); }
.mch-v2 [data-fade="right"].js-anim { transform: translateX(32px); }
.mch-v2 [data-fade="left"].js-anim.in-view,
.mch-v2 [data-fade="right"].js-anim.in-view { transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  .mch-v2 [data-rise] { opacity: 1; transform: none; transition: none; }
  .mch-v2 .cta:hover, .svc:hover, .area:hover { transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-v2-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-figure img { height: 420px; border-radius: 4px 90px 4px 4px; }
  .hero-card { left: 16px; bottom: -20px; }
  .hero-v2 { padding-bottom: 96px; }
  .steps, .svc-grid, .check-grid, .quotes { grid-template-columns: 1fr 1fr; gap: 32px; }
  .note-grid { grid-template-columns: 1fr; gap: 40px; }
  .guar { grid-template-columns: 1fr; padding: 40px 34px; text-align: center; justify-items: center; }
  .guar p { margin: 0 auto; }
}

@media (max-width: 700px) {
  .mch-v2 .band { padding: 68px 0; }
  .hero-v2 { padding: 48px 0 90px; }
  .hero-v2 h1 { font-size: clamp(2.1rem, 8.5vw, 2.7rem); }
  .hero-v2 .lede { font-size: 1.04rem; }
  .hero-figure img { height: 320px; border-radius: 4px 64px 4px 4px; }
  .hero-card { position: static; max-width: none; margin-top: 18px; box-shadow: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .mch-v2 .cta { width: 100%; }
  .hero-phone { justify-content: center; }
  .steps, .svc-grid, .check-grid, .quotes { grid-template-columns: 1fr; gap: 30px; }
  .areas { grid-template-columns: 1fr 1fr; }
  .note-body p:first-of-type::first-letter { font-size: 2.6rem; }
  .faq-v2 summary { font-size: 1.03rem; padding: 20px 2px; }
  .faq-v2 .faq-a { padding: 0 8px 22px 2px; }
  .check-foot { flex-direction: column; align-items: flex-start; }
  .closer { padding: 78px 0; }
  .guar { padding: 34px 24px; }
  .ribbon-inner { gap: 12px 20px; }
  .ribbon-item { font-size: .82rem; }
}

/* ============================================================
   INNER PAGES — components shared by service & location pages
   ============================================================ */

/* Breadcrumb */
.mch-v2 .crumb {
  background: var(--cream); border-bottom: 1px solid var(--line);
  padding: 13px 0; font-size: .83rem; color: var(--ink-3);
}
.mch-v2 .crumb a { color: var(--ink-3); text-decoration: none; }
.mch-v2 .crumb a:hover { color: var(--brand-dk); text-decoration: underline; text-underline-offset: 3px; }
.mch-v2 .crumb span { margin: 0 8px; opacity: .5; }
.mch-v2 .crumb b { color: var(--ink-2); font-weight: 500; }

/* Inner-page hero — photo band with a warm scrim, not a black wash */
.phero { position: relative; overflow: hidden; background: var(--night); }
.phero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.82) saturate(.92);
}
/* Heavy on the copy side, easing off over the photo. Text sits on ~.9 minimum,
   which keeps body copy readable over even a bright, sunlit room. */
.phero::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(22,17,12,.96) 0%, rgba(22,17,12,.93) 42%,
                            rgba(22,17,12,.74) 72%, rgba(22,17,12,.52) 100%);
}
.phero-inner { position: relative; z-index: 2; padding: 84px 0 78px; max-width: 720px; }
.phero .eyebrow { color: #A9CC85; }
.phero h1 {
  color: #fff; font-size: clamp(2.05rem, 4.4vw, 3.15rem);
  line-height: 1.09; margin-bottom: 20px;
}
.phero h1 em { font-style: italic; color: #F6A863; font-weight: 500; }
/* Scoped with .mch-v2 deliberately: the broad `.mch-v2 p` rule is (0,1,1) and
   would otherwise beat a bare `.phero-sub` (0,1,0), turning this dark brown on
   a dark hero. Warm off-white rather than pure white, to match the cream. */
.mch-v2 .phero-sub {
  font-size: 1.1rem; line-height: 1.72;
  color: #F6EFE4; max-width: 600px; margin-bottom: 30px;
}
.phero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.phero-phone {
  display: inline-flex; align-items: center; gap: 9px; padding: 16px 4px;
  color: #fff; font-weight: 600; font-size: .98rem; text-decoration: none;
}
.phero-phone svg { color: #A9CC85; }
.phero-phone:hover { color: #F6A863; }
.phero .offer-chip {
  background: rgba(250,144,62,.15); border-color: rgba(250,144,62,.4);
  color: rgba(255,255,255,.85);
}
.phero .offer-chip strong { color: #F6A863; }
.phero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 34px;
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,.16);
}
.phero-trust li {
  list-style: none; display: flex; align-items: flex-start; gap: 8px;
  font-size: .87rem; font-weight: 500; color: rgba(255,255,255,.8);
}
.phero-trust .tick { color: #A9CC85; }

/* Long-form prose */
.prose { max-width: 720px; }
.prose p { font-size: 1.04rem; line-height: 1.82; color: var(--ink-2); }
.prose p + p { margin-top: 16px; }
.prose h3 { font-size: 1.32rem; margin: 34px 0 12px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--brand-dk); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* Pull quote */
.pull {
  margin: 34px 0; padding: 22px 0 22px 26px;
  border-left: 3px solid var(--brand);
  font-family: var(--display); font-size: 1.28rem; line-height: 1.5;
  color: var(--ink); font-style: italic;
}

/* Two-column: copy + image */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-media img { width: 100%; border-radius: 16px; box-shadow: 0 20px 48px rgba(45,35,20,.15); }
.split-flip .split-media { order: -1; }

/* Included / excluded checklist panels */
.panels { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 48px; }
.panel {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 30px 28px;
}
.band-cream .panel, .band-sand .panel { background: #fff; }
.panel h3 { font-size: 1.14rem; padding-bottom: 14px; margin-bottom: 16px; border-bottom: 1px solid var(--line); }
.panel ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.panel li { display: flex; gap: 10px; font-size: .94rem; line-height: 1.6; color: var(--ink-2); }
.panel-no li .tick { color: var(--ink-3); }
.panel-no { background: var(--cream-2); }
.band-cream .panel-no, .band-sand .panel-no { background: var(--cream-2); }

/* Frequency / option cards */
.opts { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin-top: 46px; }
.opt {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 28px 26px; position: relative; transition: border-color .2s, transform .2s, box-shadow .2s;
}
.opt:hover { transform: translateY(-3px); border-color: var(--line-2); box-shadow: 0 16px 38px rgba(45,35,20,.1); }
.opt-tag {
  position: absolute; top: -11px; left: 26px;
  background: var(--brand-dk); color: #fff; font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px;
}
.opt h3 { font-size: 1.2rem; margin-bottom: 10px; }
.opt p { font-size: .95rem; line-height: 1.7; }
.opt-best { font-size: .86rem; color: var(--ink-3); margin-top: 14px; padding-top: 13px; border-top: 1px solid var(--line); }
.opt-best strong { color: var(--ink); font-weight: 600; }

/* Mini CTA strip inside a page */
.strip {
  background: var(--night); border-radius: 18px; padding: 40px 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.strip h3 { color: #fff; font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-bottom: 8px; }
.strip p { color: rgba(255,255,255,.68); font-size: .97rem; margin: 0; max-width: 520px; }
.strip-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Related links */
.rel { display: grid; grid-template-columns: repeat(auto-fill, minmax(232px, 1fr)); gap: 14px; margin-top: 40px; }
.rel a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 18px; text-decoration: none; color: var(--ink);
  font-size: .93rem; font-weight: 600;
  transition: border-color .18s, transform .18s, background .18s;
}
.band-white .rel a { background: var(--cream); }
.rel a:hover { border-color: var(--brand); background: var(--brand-lt); transform: translateY(-2px); }
.rel a svg { color: var(--ink-3); flex-shrink: 0; }
.rel a:hover svg { color: var(--brand-dk); }
.rel-sub { display: block; font-size: .78rem; font-weight: 400; color: var(--ink-3); margin-top: 2px; }

@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 38px; }
  .split-flip .split-media { order: 0; }
}
@media (max-width: 700px) {
  .phero-inner { padding: 58px 0 56px; }
  .phero-actions { flex-direction: column; align-items: stretch; }
  .phero-actions .cta { width: 100%; }
  .phero-phone { justify-content: center; }
  .strip { padding: 30px 24px; flex-direction: column; align-items: flex-start; }
  .strip-actions { width: 100%; }
  .strip-actions .cta { width: 100%; }
  .pull { font-size: 1.12rem; padding-left: 18px; }
  .rel { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTENT PAGES — blog articles, legal pages, careers.
   These keep their original markup; only the styling is lifted
   into the v2 system, so no article or legal text is touched.
   ============================================================ */

/* --- generic long-form content living in a bare .container --- */
.mch-v2 .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.mch-v2 section > .container > h1,
.mch-v2 .container > h1 { font-family: var(--display); color: var(--ink); }
.mch-v2 .container h2 { font-family: var(--display); color: var(--ink); margin-top: 34px; margin-bottom: 12px; }
.mch-v2 .container h3 { font-family: var(--display); color: var(--ink); margin-top: 26px; margin-bottom: 10px; }
.mch-v2 .container p,
.mch-v2 .container li { color: var(--ink-2); line-height: 1.8; }
.mch-v2 .container p { margin-bottom: 14px; }
.mch-v2 .container a { color: var(--brand-dk); }
.mch-v2 .container ul, .mch-v2 .container ol { margin: 0 0 16px 22px; }
.mch-v2 .container ul li { list-style: disc; margin-bottom: 7px; }
.mch-v2 .container ol li { list-style: decimal; margin-bottom: 7px; }

/* --- blog article layout --- */
/* Blog posts ship their own dark photo hero in a page-level <style> block, and
   the heading colours are set inline. Don't fight that — keep their dark hero
   and only lift the typography, or the white text lands on a cream background. */
.mch-v2 .blog-hero h1 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 3rem); line-height: 1.12; letter-spacing: -.015em;
}
.mch-v2 .blog-hero { border-bottom: none; }

.mch-v2 .blog-layout { gap: 52px; }
.mch-v2 .blog-body { font-size: 1.05rem; line-height: 1.85; color: var(--ink-2); }
.mch-v2 .blog-body h2 {
  font-family: var(--display); color: var(--ink);
  font-size: clamp(1.5rem, 2.8vw, 2rem); margin: 40px 0 14px; line-height: 1.18;
}
.mch-v2 .blog-body h3 {
  font-family: var(--display); color: var(--ink);
  font-size: 1.28rem; margin: 30px 0 10px;
}
.mch-v2 .blog-body p { margin-bottom: 16px; color: var(--ink-2); }
.mch-v2 .blog-body a { color: var(--brand-dk); text-decoration: underline; text-underline-offset: 3px; }
.mch-v2 .blog-body strong { color: var(--ink); font-weight: 600; }
.mch-v2 .blog-body ul, .mch-v2 .blog-body ol { margin: 0 0 18px 22px; }
.mch-v2 .blog-body li { margin-bottom: 8px; color: var(--ink-2); }
.mch-v2 .blog-body ul li { list-style: disc; }
.mch-v2 .blog-body ol li { list-style: decimal; }
.mch-v2 .blog-body img { border-radius: 14px; margin: 26px 0; }

.mch-v2 .blog-toc,
.mch-v2 .blog-highlight,
.mch-v2 .blog-tip,
.mch-v2 .blog-sidebar-box {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 14px; padding: 22px 24px; margin: 26px 0;
}
.mch-v2 .blog-tip, .mch-v2 .blog-highlight {
  background: var(--brand-lt); border-color: rgba(250,144,62,.3);
}
.mch-v2 .blog-toc a, .mch-v2 .blog-sidebar-box a { color: var(--brand-dk); }
.mch-v2 .blog-toc li, .mch-v2 .blog-sidebar-box li { color: var(--ink-2); }

.mch-v2 .blog-cta, .mch-v2 .blog-sidebar-cta {
  background: var(--night); border-radius: 16px; padding: 30px 28px; border: none;
}
.mch-v2 .blog-cta h2, .mch-v2 .blog-cta h3,
.mch-v2 .blog-sidebar-cta h2, .mch-v2 .blog-sidebar-cta h3 { color: #fff; font-family: var(--display); }
.mch-v2 .blog-cta p, .mch-v2 .blog-sidebar-cta p { color: rgba(255,255,255,.72); }
.mch-v2 .blog-cta .eyebrow, .mch-v2 .blog-cta__eyebrow { color: #A9CC85; }

.mch-v2 .blog-faq__item {
  border-bottom: 1px solid var(--line); padding: 18px 0;
}
.mch-v2 .blog-faq__item h3 { font-family: var(--display); color: var(--ink); font-size: 1.1rem; }

.mch-v2 .blog-author {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 16px; padding: 24px 26px; margin-top: 36px;
}
.mch-v2 .blog-author-avatar { background: var(--sand); color: var(--ink); font-family: var(--display); }
.mch-v2 .blog-related a { color: var(--brand-dk); }

/* --- careers --- */
.mch-v2 .star-item, .mch-v2 .offer-item, .mch-v2 .team-review-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
}
.mch-v2 .star-letter {
  background: var(--brand-lt); color: var(--brand-dk);
  font-family: var(--display); font-weight: 600;
}
.mch-v2 .star-title, .mch-v2 .offer-title, .mch-v2 .team-review-name {
  font-family: var(--display); color: var(--ink);
}
.mch-v2 .star-desc, .mch-v2 .offer-desc, .mch-v2 .team-review-text { color: var(--ink-2); }
.mch-v2 .team-review-role { color: var(--ink-3); }
.mch-v2 .form-container {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
}
