/* ===========================================================
   ZEST CLEANING — Design System
   Upscale, calm, editorial. Built for West Lake Hills / Rollingwood.
   =========================================================== */

:root {
  /* Core palette — the real Zest brand: electric lime on charcoal, clean white space */
  --ink:        #1f211d;   /* brand charcoal — header, hero, footer */
  --ink-deep:   #161814;   /* deepest charcoal */
  --body:       #2c2f2a;   /* body text on light */
  --ink-soft:   #45493f;   /* secondary text on light */
  --muted:      #71776b;
  --line:       #ecefe7;
  --cream:      #ffffff;   /* page background — bright, clean white */
  --cream-2:    #f4f7ef;   /* soft warm-lime tint for alt sections */
  --mint:       #eef7df;   /* soft lime panel tint (friendly) */
  --white:      #ffffff;

  --zest:       #c6f23e;   /* THE electric lime — the signature */
  --zest-deep:  #4ca60a;   /* fresh vivid brand green, for accent text on light bg */
  --zest-glow:  #d6fa66;
  --zest-dim:   #9bbe2a;
  --sage:       #aeb89a;

  --gold:       #b08d57;

  /* Type — Futura geometric display + Inter body */
  --serif: "Futura", "Century Gothic", "Trebuchet MS", sans-serif;  /* (var name kept = display face) */
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing / shape — soft & rounded */
  --radius:   24px;
  --radius-sm: 16px;
  --shadow:   0 30px 60px -30px rgba(30, 40, 25, 0.18);
  --shadow-sm: 0 14px 36px -20px rgba(30, 40, 25, 0.16);
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; color: var(--ink); line-height: 1.12; margin: 0 0 .5em; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p  { margin: 0 0 1.1em; color: var(--ink-soft); }
a  { color: var(--zest-deep); text-decoration: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }

section { padding: clamp(64px, 9vw, 120px) 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: .8rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--zest-deep); margin-bottom: 1rem; display: inline-block;
}
.lead { font-size: 1.2rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-weight: 600; font-size: .96rem; letter-spacing: .005em;
  padding: 15px 30px; border-radius: 14px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none; white-space: nowrap;
}
/* primary CTA = clean lime fill with dark text */
.btn-primary { background: var(--zest); color: var(--ink); box-shadow: 0 12px 26px -14px rgba(198,242,62,.85); }
.btn-primary:hover { transform: translateY(-2px); background: var(--zest-glow); color: var(--ink); }
.nav-cta .btn-primary { box-shadow: 0 10px 22px -12px rgba(198,242,62,.7); }
.nav-cta .btn-primary:hover { background: var(--zest-glow); color: var(--ink); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: #000; color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
/* ghost on dark backgrounds */
.on-dark .btn-ghost, .btn-ghost.light { color: #fff; border-color: rgba(255,255,255,.32); }
.on-dark .btn-ghost:hover, .btn-ghost.light:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn-lime { background: var(--ink); color: var(--zest); box-shadow: 0 14px 30px -16px rgba(0,0,0,.5); }
.btn-lime:hover { background: #000; color: var(--zest-glow); transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ---------- Header (transparent, bordered floating nav) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: transparent; padding: 14px 0; transition: padding .25s ease;
}
.nav {
  display: flex; align-items: center; justify-content: space-between; height: 62px;
  border: 1px solid rgba(31,33,29,.14); border-radius: 16px;
  padding-left: 22px; padding-right: 12px;
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm);
  transition: background .25s ease, border-color .25s ease;
}
.site-header.scrolled { padding: 8px 0; }
.site-header.scrolled .nav { background: #fff; border-color: rgba(31,33,29,.14); }

/* ---------- Services hover dropdown ---------- */
.has-drop { position: relative; }
.has-drop > a { display: inline-flex; align-items: center; gap: 6px; }
.has-drop .caret { font-size: .7rem; transition: transform .2s; }
.has-drop:hover .caret { transform: rotate(180deg); }
.has-drop::after { content: ""; position: absolute; left: -10px; right: -10px; top: 100%; height: 20px; }
.dropdown {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 250px; background: #fff; border-radius: 16px; padding: 8px;
  box-shadow: 0 30px 60px -22px rgba(0,0,0,.45); border: 1px solid var(--line);
  opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease; z-index: 60;
}
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-links .dropdown a {
  display: block; padding: 16px 18px; color: var(--ink); font-weight: 700; font-size: 1.04rem;
  border-radius: 11px; border-bottom: 1px solid var(--line); transition: background .15s, color .15s;
}
.nav-links .dropdown a:last-child { border-bottom: 0; }
.nav-links .dropdown a:hover { background: var(--cream-2); color: var(--zest-deep); }
.brand { display: flex; align-items: center; gap: .55rem; font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--ink); letter-spacing: -.02em; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink-soft); font-weight: 500; font-size: .96rem; transition: color .15s; }
.nav-links a:hover { color: var(--zest-deep); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-phone { font-weight: 600; color: var(--ink); font-size: .95rem; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--ink); }

/* ---------- Real Zest logo: clean mist spray + glossy shine sweep ---------- */
.zlogo-wrap { position: relative; display: inline-flex; align-items: center; line-height: 0; }
.zlogo { height: 34px; width: auto; display: block; position: relative; z-index: 1; }
.site-footer .zlogo { height: 32px; }

/* glossy shine sweeping across the wordmark (masked to the letters) */
.zshine2 {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; mix-blend-mode: screen;
  -webkit-mask: url('zest-logo.png') center / contain no-repeat;
          mask: url('zest-logo.png') center / contain no-repeat;
  background: linear-gradient(105deg, transparent 36%, rgba(255,255,255,1) 50%, transparent 64%);
  background-size: 300% 100%; background-position: 160% 0;
  animation: zShineSweep 3s cubic-bezier(.5,0,.2,1) infinite;
}
/* gleam sweeps mid-cycle, after the spray puff */
@keyframes zShineSweep {
  0%, 34% { background-position: 160% 0; }
  60%     { background-position: -160% 0; }
  100%    { background-position: -160% 0; }
}
/* soft spray puff + droplets + sparkle, on a calm 4s loop synced with the gleam */
.zfx { position: absolute; left: -5px; top: -6px; width: 32px; height: 26px; z-index: 3; overflow: visible; pointer-events: none; }
.zpuff { fill: var(--zest); opacity: 0; transform-box: fill-box; transform-origin: center; animation: zPuff 3s ease-out infinite; }
.zdroplet { fill: var(--zest); opacity: 0; transform-box: fill-box; transform-origin: center;
  filter: drop-shadow(0 0 2px rgba(198,242,62,1)); animation: zDrop 3s ease-out infinite; }
.zdroplet.d2 { animation-delay: .18s; }
.zspk { fill: #fff; opacity: 0; transform-box: fill-box; transform-origin: center; animation: zSpk 3s ease-in-out infinite; }
@keyframes zPuff {
  0%   { opacity: 0; transform: translate(3px,3px) scale(.2); }
  8%   { opacity: .85; }
  30%  { opacity: 0; transform: translate(-7px,-7px) scale(2.4); }
  100% { opacity: 0; }
}
@keyframes zDrop {
  0%   { opacity: 0; transform: translate(2px,2px) scale(.3); }
  10%  { opacity: 1; }
  32%  { opacity: 0; transform: translate(-10px,-9px) scale(1.3); }
  100% { opacity: 0; }
}
@keyframes zSpk {
  0%, 58% { opacity: 0; transform: scale(0) rotate(-20deg); }
  70%     { opacity: 1; transform: scale(1.5) rotate(0); }
  84%     { opacity: 0; transform: scale(.6) rotate(10deg); }
  100%    { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .zpuff, .zdroplet, .zspk, .zshine2 { animation: none; opacity: 0; }
}

/* ---------- Hero (clean & light) ---------- */
.hero { position: relative; padding: clamp(48px, 6vw, 84px) 0 clamp(56px, 7vw, 96px); overflow: hidden;
  background: var(--cream); color: var(--ink); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { color: var(--ink); }
.hero h1 span { color: var(--zest-deep); white-space: nowrap; }
.hero .eyebrow { color: var(--zest-deep); }
.hero .lead { max-width: 32rem; color: var(--ink-soft); }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; }
/* trust checkmarks row */
.hero-checks { list-style: none; padding: 0; margin: 2rem 0 0; display: flex; gap: 22px; flex-wrap: wrap; }
.hero-checks li { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .95rem; color: var(--ink); }
.hero-checks li svg { color: var(--zest-deep); flex: none; }

.hero-visual { position: relative; }
.media-frame {
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4/5; background: var(--cream-2); position: relative;
}
.media-frame img, .media-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-badge {
  position: absolute; left: 18px; bottom: 18px; z-index: 3;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  padding: 10px 16px; border-radius: 100px; font-size: .82rem; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; gap: .4rem; box-shadow: var(--shadow-sm);
}
.media-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--zest); }

/* Placeholder for incoming Higgsfield video / cleaner photos */
.media-placeholder {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 24px;
  background:
    radial-gradient(120% 80% at 30% 10%, rgba(124,181,24,.16), transparent 60%),
    linear-gradient(160deg, #eef2e6, #e3ead7);
  color: var(--zest-deep);
}
.media-placeholder .ico { font-size: 2.2rem; margin-bottom: .4rem; }
.media-placeholder small { color: var(--muted); display:block; max-width: 16rem; margin: .2rem auto 0; font-size:.78rem; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--mint); padding: 20px 0; }
.trustbar .row { display: flex; justify-content: center; gap: clamp(1.2rem, 4vw, 3.4rem); flex-wrap: wrap; align-items:center; }
.trustbar .item { display: flex; align-items: center; gap: .55rem; font-size: .92rem; color: var(--ink); font-weight: 600; }
.trustbar .item svg { color: var(--zest-deep); }

/* ---------- Section heading ---------- */
.section-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Differentiators ---------- */
.diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.diff-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.diff-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.diff-card .ico { width: 52px; height: 52px; border-radius: 16px; background: var(--mint); display: grid; place-items: center; color: var(--zest-deep); margin-bottom: 18px; font-size: 1.5rem; }
.diff-card h3 { font-size: 1.18rem; margin-bottom: .35rem; }
.diff-card p { font-size: .95rem; margin: 0; }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-media { aspect-ratio: 16/11; background: var(--cream-2); position: relative; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; }
.svc-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { margin-bottom: .4rem; }
.svc-tag { font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--zest-deep); margin-bottom: .8rem; }
.svc-body p { font-size: .95rem; flex: 1; }
.svc-link { font-weight: 600; color: var(--zest-deep); display: inline-flex; align-items: center; gap: .4rem; margin-top: .6rem; }
.svc-link:hover { gap: .7rem; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split.reverse .split-text { order: 2; }
.checklist { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .9rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; font-size: 1rem; color: var(--ink-soft); }
.checklist li svg { flex: none; margin-top: 3px; color: var(--zest-deep); }

/* ---------- Areas ---------- */
.area-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.area-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 320px;
  display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow-sm);
}
.area-card .bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .5s; }
.area-card:hover .bg { transform: scale(1.05); }
.area-card .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(27,33,27,0) 30%, rgba(27,33,27,.85)); }
.area-card .content { position: relative; padding: 30px; }
.area-card h3 { color: #fff; margin-bottom: .2rem; }
.area-card p { color: #dfe6d8; margin: 0; font-size: .95rem; }

/* ---------- Testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
  display: flex; flex-direction: column; gap: 1rem;
}
.quote .stars { color: var(--zest-dim); letter-spacing: 2px; font-size: 1rem; }
.quote p { font-size: 1.02rem; color: var(--ink); margin: 0; font-family: var(--serif); line-height: 1.5; }
.quote .who { display: flex; align-items: center; gap: .7rem; margin-top: auto; }
.quote .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--sage); color: var(--zest-deep); display: grid; place-items: center; font-weight: 700; font-family: var(--sans); }
.quote .who b { display: block; font-size: .95rem; }
.quote .who span { font-size: .82rem; color: var(--muted); }

/* ---------- CTA band (soft friendly lime) ---------- */
.cta-band {
  background: var(--mint);
  color: var(--ink); border-radius: 32px; padding: clamp(40px, 6vw, 76px); text-align: center; position: relative; overflow: hidden;
  border: 1px solid rgba(95,125,16,.14);
}
.cta-band::after { content:""; position:absolute; inset:0; background: radial-gradient(70% 120% at 85% -20%, rgba(198,242,62,.5), transparent 55%); pointer-events: none; }
.cta-band h2 { color: var(--ink); position: relative; }
.cta-band p { color: #44502b; max-width: 34rem; margin-inline: auto; position: relative; }
.cta-band .btn { position: relative; }
.cta-band .btn-lime { background: var(--ink); color: var(--zest); box-shadow: 0 12px 26px -14px rgba(0,0,0,.5); }
.cta-band .btn-lime:hover { background: #000; color: var(--zest-glow); }
.cta-band .btn { position: relative; margin-top: 1.4rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #c7cec2; padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer a { color: #c7cec2; display: block; margin-bottom: .6rem; font-size: .95rem; }
.site-footer a:hover { color: var(--zest-glow); }
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .85rem; color: #8c9586; }

/* ---------- Popup (20% off capture) ---------- */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(27,33,27,.55); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; z-index: 100; padding: 20px;
}
.popup-overlay.open { display: flex; animation: ovIn .3s ease both; }
@keyframes ovIn { from { opacity: 0; } to { opacity: 1; } }
.popup {
  background: var(--cream); border-radius: 24px; max-width: 880px; width: 100%; overflow: hidden;
  display: grid; grid-template-columns: .9fr 1.1fr; box-shadow: var(--shadow); position: relative;
  animation: popIn .55s cubic-bezier(.2,1.35,.3,1) both;
}
@keyframes popIn {
  0%   { opacity: 0; transform: translateY(32px) scale(.9); }
  55%  { opacity: 1; transform: translateY(-6px) scale(1.015); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.popup-visual { background: radial-gradient(120% 100% at 0% 0%, #2c2f26, var(--ink-deep)); color: #fff; padding: 44px 36px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
/* floating spray bubbles in the lime panel */
.popup-visual::after {
  content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; left: 24px; bottom: 28px;
  background: var(--zest); opacity: .35; box-shadow: 40px -30px 0 -1px rgba(198,242,62,.3), 90px 20px 0 -2px rgba(198,242,62,.25), 140px -60px 0 0 rgba(198,242,62,.2);
  animation: bubbles 4s ease-in-out infinite;
}
@keyframes bubbles { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.popup-visual .big { font-family: var(--serif); font-size: 3.6rem; line-height: 1; color: var(--zest);
  position: relative; transform-origin: left center; animation: bigPop .7s cubic-bezier(.2,1.7,.35,1) .22s both; }
@keyframes bigPop {
  0%   { opacity: 0; transform: scale(.2) rotate(-10deg); }
  55%  { opacity: 1; transform: scale(1.16) rotate(3deg); }
  78%  { transform: scale(.95) rotate(-1deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
.popup-visual h3 { color: #fff; font-size: 1.7rem; margin: .4rem 0; position: relative; animation: popUp .5s ease .36s both; }
.popup-visual p { color: #dbe6cd; font-size: .95rem; position: relative; animation: popUp .5s ease .44s both; }
@keyframes popUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
/* stagger the form side in */
.popup-form-body > h3 { animation: popUp .5s ease .3s both; }
.popup-form-body > p  { animation: popUp .5s ease .38s both; }
.popup-form-body form > .field,
.popup-form-body form > .consent,
.popup-form-body form > button { animation: popUp .45s ease both; }
.popup-form-body form > *:nth-child(1) { animation-delay: .46s; }
.popup-form-body form > *:nth-child(2) { animation-delay: .53s; }
.popup-form-body form > *:nth-child(3) { animation-delay: .60s; }
.popup-form-body form > *:nth-child(4) { animation-delay: .67s; }
.popup-form-body form > *:nth-child(5) { animation-delay: .74s; }
@media (prefers-reduced-motion: reduce) {
  .popup, .popup-visual .big, .popup-visual h3, .popup-visual p,
  .popup-form-body > h3, .popup-form-body > p, .popup-form-body form > * { animation: none; }
  .popup-visual::after { animation: none; }
}
.popup-form { padding: 40px 38px; }
.popup-form h3 { font-size: 1.4rem; }
.popup-close { position: absolute; top: 14px; right: 18px; background: none; border: 0; font-size: 1.5rem; cursor: pointer; color: var(--muted); z-index: 5; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; font-family: var(--sans);
  font-size: .98rem; background: #fff; color: var(--ink); transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--zest); box-shadow: 0 0 0 3px rgba(124,181,24,.18); }
.consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .78rem; color: var(--muted); margin: 6px 0 16px; line-height: 1.45; }
.consent input { margin-top: 3px; flex: none; }
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--zest); color: #fff; display: grid; place-items: center; margin: 0 auto 16px; font-size: 1.8rem; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: var(--cream-2); padding: clamp(56px, 7vw, 92px) 0 clamp(48px, 6vw, 72px); border-bottom: 1px solid var(--line); }
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--zest-deep); }

/* ---------- Pricing chips ---------- */
.price-row { display:flex; align-items:baseline; gap:.5rem; margin: .4rem 0 1rem; }
.price-row .from { font-size:.85rem; color:var(--muted); }
.price-row .amount { font-family:var(--serif); font-size:2rem; color:var(--ink); }

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; transition: transform .2s, box-shadow .2s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.post-card .media { aspect-ratio: 16/10; background: var(--cream-2); background-size:cover; background-position:center; }
.post-card .body { padding: 24px; }
.post-card .cat { font-size:.75rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color: var(--zest-deep); }
.post-card h3 { font-size: 1.25rem; margin:.5rem 0; }
.post-card p { font-size:.92rem; margin:0; }

/* ---------- Booking ---------- */
.booking-wrap { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.steps { display:flex; gap:.5rem; margin-bottom: 28px; flex-wrap:wrap; }
.step-pill { font-size:.78rem; font-weight:600; padding:7px 14px; border-radius:100px; background: var(--cream-2); color: var(--muted); border:1px solid var(--line); }
.step-pill.active { background: var(--zest-deep); color:#fff; border-color: var(--zest-deep); }
.step-pill.done { background: var(--sage); color: var(--zest-deep); border-color: var(--sage); }
.booking-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.bstep { display:none; }
.bstep.active { display:block; animation: pop .3s ease; }
.opt-grid { display:grid; grid-template-columns: repeat(2,1fr); gap:14px; margin-top: 1rem; }
.opt {
  border:1px solid var(--line); border-radius:14px; padding:18px; cursor:pointer; background:#fff;
  transition: border-color .15s, box-shadow .15s, transform .1s; display:flex; gap:14px; align-items:flex-start;
}
.opt:hover { border-color: var(--zest); }
.opt.selected { border-color: var(--zest-deep); box-shadow: 0 0 0 2px rgba(79,119,45,.18); background: #fbfdf6; }
.opt .ico { font-size:1.6rem; }
.opt b { display:block; font-size:1rem; }
.opt span { font-size:.85rem; color: var(--muted); }
.stepper { display:flex; align-items:center; gap:0; border:1px solid var(--line); border-radius:100px; overflow:hidden; width:max-content; }
.stepper button { width:46px; height:46px; border:0; background:#fff; font-size:1.3rem; cursor:pointer; color:var(--ink); }
.stepper button:hover { background: var(--cream-2); }
.stepper .val { min-width:54px; text-align:center; font-weight:600; }
.addon { display:flex; align-items:center; justify-content:space-between; padding:16px; border:1px solid var(--line); border-radius:14px; margin-bottom:12px; cursor:pointer; transition: border-color .15s; }
.addon:hover { border-color: var(--zest); }
.addon.selected { border-color: var(--zest-deep); background:#fbfdf6; }
.addon .meta b { display:block; }
.addon .meta span { font-size:.85rem; color:var(--muted); }
.addon .price { font-weight:600; color: var(--zest-deep); }
.booking-nav { display:flex; justify-content:space-between; margin-top: 28px; gap: 12px; }
.summary { background: var(--white); border:1px solid var(--line); border-radius: var(--radius); padding: 28px; position: sticky; top: 96px; box-shadow: var(--shadow-sm); }
.summary h3 { font-size:1.2rem; }
.summary .line { display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px dashed var(--line); font-size:.95rem; }
.summary .line span:first-child { color: var(--muted); }
.summary .total { display:flex; justify-content:space-between; padding-top:14px; font-family:var(--serif); font-size:1.5rem; align-items:baseline; }
.summary .total small { font-size:.78rem; color:var(--muted); font-family:var(--sans); }
.summary .note { font-size:.78rem; color:var(--muted); margin-top: 14px; }
.badge-75 { display:inline-flex; align-items:center; gap:.4rem; background: var(--cream-2); border:1px solid var(--line); padding:6px 14px; border-radius:100px; font-size:.82rem; font-weight:600; color: var(--zest-deep); }

/* ---------- Checklist (75-point) ---------- */
.point-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.point-col { background:#fff; border:1px solid var(--line); border-radius:22px; box-shadow: var(--shadow-sm); padding: 28px 26px; }
.point-col h4 { font-family: var(--sans); font-size:.82rem; letter-spacing:.1em; text-transform:uppercase; color: var(--zest-deep); margin:0 0 16px; padding-bottom:14px; border-bottom:1px solid var(--line); }
.point-col ul { list-style:none; padding:0; margin:0; display:grid; gap:.75rem; }
.point-col li { font-size:.95rem; color: var(--ink-soft); display:flex; gap:.6rem; align-items:flex-start; line-height:1.45; }
.point-col li::before { content:""; flex:none; width:18px; height:18px; margin-top:2px; border-radius:50%; background:var(--mint);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234ca60a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:center; }

/* popup decline link */
.popup-decline { display:block; width:100%; margin:14px 0 0; background:none; border:none; cursor:pointer;
  font-family: var(--sans); font-size:.88rem; color: var(--muted); text-align:center; }
.popup-decline:hover { color: var(--ink); text-decoration: underline; }

/* ---------- Utility ---------- */
.bg-alt { background: var(--cream-2); }
.bg-ink { background: var(--ink); }
.text-center { text-align:center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.hide-mobile { }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .split, .booking-wrap { grid-template-columns: 1fr; }
  .split.reverse .split-text { order: 0; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid, .quote-grid, .post-grid, .point-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .popup { grid-template-columns: 1fr; }
  .popup-visual { display: none; }
  .summary { position: static; }
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column;
    background: var(--cream); padding: 20px 28px; gap: 1rem; border-bottom: 1px solid var(--line);
  }
}
@media (max-width: 560px) {
  .diff-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .opt-grid { grid-template-columns: 1fr; }
}

/* ---------- Contact / Location (Google Maps) ---------- */
.locate { background: var(--zest); }
.locate .section-head h2, .locate .section-head .eyebrow { color: var(--ink); }
.locate .section-head .eyebrow { color: var(--zest-deep); }
.locate-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 26px; align-items: stretch; }
.locate-map { border-radius: 20px; overflow: hidden; min-height: 380px; box-shadow: var(--shadow-sm); background: #fff; }
.locate-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.locate-info { display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.info-pill { background: #fff; border-radius: 18px; padding: 18px 24px; display: flex; align-items: center; gap: 15px;
  font-weight: 700; color: var(--ink); text-decoration: none; box-shadow: 0 10px 24px -18px rgba(0,0,0,.5); transition: transform .15s, box-shadow .2s; }
a.info-pill:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -18px rgba(0,0,0,.5); }
.info-pill .pico { width: 38px; height: 38px; border-radius: 10px; background: var(--cream-2); color: var(--zest-deep);
  display: grid; place-items: center; flex: none; }
.info-pill .ptxt small { display: block; font-weight: 500; color: var(--muted); font-size: .76rem; letter-spacing: .02em; }
.info-pill.is-review .pico { background: var(--ink); color: var(--zest); }
.locate-area { text-align: center; margin-top: 22px; font-weight: 600; color: var(--ink); }
.locate-area span { color: var(--zest-deep); }

/* ---------- Google reviews accents ---------- */
.greview-head { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 8px; }
.gbadge { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 100px; font-weight: 600; font-size: .9rem; box-shadow: var(--shadow-sm); }
.gbadge .gstars { color: #f2b01e; letter-spacing: 1px; }
.gbadge .glogo { font-weight: 800; font-size: 1rem; }
.gbadge .glogo b:nth-child(1){color:#4285F4}.gbadge .glogo b:nth-child(2){color:#EA4335}.gbadge .glogo b:nth-child(3){color:#FBBC05}.gbadge .glogo b:nth-child(4){color:#4285F4}.gbadge .glogo b:nth-child(5){color:#34A853}.gbadge .glogo b:nth-child(6){color:#EA4335}
.quote .gtag { display: inline-flex; align-items: center; gap: 6px; font-size: .76rem; font-weight: 600; color: var(--muted); margin-top: 2px; text-decoration: none; }
.quote .gtag:hover { color: var(--zest-deep); }
.quote .gtag .gi { font-weight: 800; font-size: .85rem; color: #4285F4; }

@media (max-width: 860px) {
  .locate-grid { grid-template-columns: 1fr; }
}

/* ---------- Hero: avatar social proof ---------- */
.hero-social { display: flex; align-items: center; gap: 16px; margin-top: 2.3rem; }
.avatars { display: flex; align-items: center; }
.avatars .av {
  width: 46px; height: 46px; border-radius: 50%; margin-left: -12px; border: 3px solid var(--cream);
  display: grid; place-items: center; font-weight: 700; font-family: var(--sans); color: #fff; font-size: .82rem;
  background-size: cover; background-position: center; box-shadow: 0 2px 6px rgba(0,0,0,.12);
}
.avatars .av:first-child { margin-left: 0; }
.avatars .av.count { background: var(--ink); color: var(--zest); font-size: .8rem; }
.hero-social .ss-txt strong { display: block; color: var(--ink); font-weight: 700; font-size: 1.05rem; }
.hero-social .ss-txt span { color: var(--muted); font-size: .88rem; }

/* ---------- Hero: flowing image columns ---------- */
.hero-marquee {
  position: relative; height: 580px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 11%, #000 87%, transparent);
          mask-image: linear-gradient(to bottom, transparent, #000 11%, #000 87%, transparent);
}
.mcol { overflow: hidden; }
.mcol:nth-child(2) { margin-top: -46px; }
.mtrack { display: flex; flex-direction: column; gap: 18px; will-change: transform; animation: marqueeUp 30s linear infinite; }
.mcol-down .mtrack { animation-name: marqueeDown; }
.mtrack img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 22px; display: block;
  box-shadow: 0 18px 40px -22px rgba(0,0,0,.7); border: 1px solid rgba(255,255,255,.06);
}
.mtrack img.circ { aspect-ratio: 1/1; border-radius: 50%; }
.hero-marquee:hover .mtrack { animation-play-state: paused; }
@keyframes marqueeUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes marqueeDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .mtrack { animation: none; } }
@media (max-width: 960px) {
  .hero-marquee { height: 380px; margin-top: 12px; }
  .mcol:nth-child(2) { margin-top: -30px; }
}

/* ---------- Mobile: nav dropdown + readable open menu ---------- */
@media (max-width: 960px) {
  .nav-links.open { top: 84px; }
  .nav-links.open a { color: var(--ink); }
  .has-drop::after { display: none; }
  .has-drop .caret { display: none; }
  .nav-links.open .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; box-shadow: none; border: 0; min-width: 0; padding: 4px 0 4px 14px;
  }
  .nav-links.open .dropdown a { color: var(--ink-soft); border-bottom: 0; padding: 8px 0; font-size: .96rem; font-weight: 600; }
}

/* Become a Cleaner nav highlight */
.nav-links a.nav-hire { color: var(--zest-deep); font-weight: 700; }
.nav-links a.nav-hire:hover { color: var(--zest-dim); }

/* ---------- Application form: radio / checkbox groups ---------- */
.form-q { margin-bottom: 16px; }
.form-q > label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.choices { display: flex; flex-wrap: wrap; gap: 10px; }
.choices label {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px;
  border: 1px solid var(--line); border-radius: 100px; cursor: pointer;
  font-weight: 600; font-size: .92rem; color: var(--ink-soft);
  transition: border-color .15s, background .15s, color .15s;
}
.choices label:hover { border-color: var(--zest); }
.choices label:has(input:checked) { border-color: var(--zest-deep); background: #fbfdf6; color: var(--ink); box-shadow: 0 0 0 2px rgba(111,143,18,.15); }
.choices input { accent-color: var(--zest-deep); width: 16px; height: 16px; margin: 0; }

/* =========================================================
   PIXAR-STYLE LOGO INTRO (homepage, once per session)
   Spray bottle bounces in → sprays → ZEST pops in → tagline → curtain wipes away
   ========================================================= */
.intro-lock { overflow: hidden; }
#zest-intro {
  position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; cursor: pointer;
  background: radial-gradient(130% 120% at 50% 28%, #262a20, var(--ink-deep) 70%);
  transition: opacity .7s ease, transform .7s ease;
}
#zest-intro.done { opacity: 0; transform: scale(1.04); pointer-events: none; }
.intro-stage { position: relative; display: flex; flex-direction: column; align-items: center; }

/* the spray bottle floats above where the logo lands */
.intro-bottle { position: absolute; bottom: calc(100% - 6px); width: 104px; height: auto;
  transform-origin: 50% 100%; animation: introBottle 2.4s cubic-bezier(.3,1,.4,1) both; }
@keyframes introBottle {
  0%   { transform: translateY(-300px) rotate(-10deg) scaleX(.85) scaleY(1.22); opacity: 0; }
  12%  { opacity: 1; }
  32%  { transform: translateY(0) rotate(0) scaleX(1.2) scaleY(.78); opacity: 1; }      /* squash on land */
  46%  { transform: translateY(-34px) rotate(0) scaleX(.96) scaleY(1.07); opacity: 1; } /* bounce up */
  58%  { transform: translateY(0) rotate(0) scaleX(1.04) scaleY(.97); opacity: 1; }
  66%  { transform: translateY(0) rotate(0) scale(1); opacity: 1; }
  74%  { transform: translateY(0) rotate(-16deg) scale(1.02); opacity: 1; }             /* tilt to spray */
  88%  { transform: translateY(0) rotate(-10deg) scale(1); opacity: 1; }
  100% { transform: translateY(-18px) rotate(-10deg) scale(.82); opacity: 0; }          /* exit */
}

/* spray droplets burst from the nozzle */
.intro-spray circle {
  fill: var(--zest); opacity: 0; transform-box: fill-box; transform-origin: center;
  filter: drop-shadow(0 0 4px rgba(198,242,62,.8));
  animation: introSpray 1.1s ease-out both;
}
@keyframes introSpray {
  0%   { opacity: 0; transform: translate(0,0) scale(.2); }
  25%  { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--dx,0), var(--dy,40px)) scale(1); }
}

/* the wordmark pops in with overshoot */
.intro-logo { display: block; height: 74px; width: auto; opacity: 0; transform: scale(.4);
  animation: introPop .9s cubic-bezier(.2,1.7,.35,1) 1.45s forwards; filter: drop-shadow(0 10px 30px rgba(0,0,0,.5)); }
@keyframes introPop {
  0%   { opacity: 0; transform: scale(.4) translateY(6px); }
  55%  { opacity: 1; transform: scale(1.1) translateY(0); }
  75%  { transform: scale(.97); }
  100% { opacity: 1; transform: scale(1); }
}
/* shine sweep across the wordmark right after it pops */
.intro-shine { position: absolute; left: 50%; top: calc(50% - 4px); width: 220px; height: 90px;
  transform: translate(-50%,-50%); pointer-events: none; overflow: hidden; }
.intro-shine::before { content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 42%, rgba(255,255,255,.85) 50%, transparent 58%);
  transform: translateX(-130%); animation: introShine .7s ease 2.05s forwards; }
@keyframes introShine { to { transform: translateX(130%); } }

.intro-tag { margin-top: 18px; font-family: var(--serif); font-size: 1.05rem; letter-spacing: .04em;
  color: #c4c9bb; opacity: 0; animation: introTag .6s ease 2.25s forwards; }
.intro-tag b { color: var(--zest); font-weight: 600; }
@keyframes introTag { 0% { opacity: 0; transform: translateY(10px); } 100% { opacity: 1; transform: translateY(0); } }

.intro-skip { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%);
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: #6f776a; opacity: 0;
  animation: introTag .5s ease 1.2s forwards; }

@media (prefers-reduced-motion: reduce) { #zest-intro { display: none; } }

/* ---------- Neighborhood page: prose + FAQ accordion ---------- */
.prose p { font-size: 1.08rem; line-height: 1.75; color: var(--ink-soft); }
.prose p:first-child { font-size: 1.16rem; color: var(--body); }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color .15s; }
.faq-item[open] { border-color: var(--sage); }
.faq-item summary { cursor: pointer; padding: 18px 22px; font-weight: 600; font-size: 1.05rem; color: var(--ink);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; line-height: 1; color: var(--zest-deep); transition: transform .2s; flex: none; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 22px 20px; }
.faq-item .faq-a p { margin: 0; color: var(--ink-soft); }
/* area link cards on homepage */
a.area-link { display: block; text-decoration: none; }
a.area-link:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
a.area-link h3 { margin-bottom: .25rem; }
a.area-link p { margin: 0; font-size: .95rem; color: var(--zest-deep); font-weight: 600; }

/* ---------- Combined Services & Areas mega-dropdown ---------- */
.dropdown-wide { min-width: 470px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
.dd-col { display: flex; flex-direction: column; }
.dd-label { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); padding: 10px 18px 6px; }
.nav-links .dropdown-wide a { padding: 11px 18px; font-size: .98rem; font-weight: 600; border-bottom: 0; border-radius: 10px; }
@media (max-width: 960px) {
  .nav-links.open .dropdown-wide { grid-template-columns: 1fr; gap: 0; }
  .nav-links.open .dropdown-wide .dd-label { padding: 8px 0 2px; }
}

/* ---------- Refer a neighbor ---------- */
.refer-band {
  background: var(--zest); border-radius: 28px; padding: clamp(34px,5vw,58px);
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 34px; align-items: center; position: relative; overflow: hidden;
}
.refer-band .eyebrow { color: var(--zest-deep); }
.refer-band h2 { color: var(--ink); }
.refer-band .refer-text p { color: #303a20; max-width: 32rem; }
.refer-band .refer-text p b { color: var(--ink); }
.refer-cards { display: flex; align-items: center; justify-content: center; gap: 16px; }
.refer-coin { background: var(--ink); color: #fff; border-radius: 20px; padding: 24px 26px; text-align: center; min-width: 130px; box-shadow: 0 16px 30px -18px rgba(0,0,0,.5); }
.refer-coin strong { display: block; font-family: var(--serif); font-size: 2.6rem; line-height: 1; color: var(--zest); }
.refer-coin span { font-size: .82rem; color: #c7cec2; letter-spacing: .03em; }
.refer-plus { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--zest-deep); }
@media (max-width: 760px) {
  .refer-band { grid-template-columns: 1fr; }
}

/* ---------- 60/75-point checklist ---------- */
.cl-legend { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; font-size: .92rem; color: var(--ink-soft); }
.cl-legend > span { display: inline-flex; align-items: center; gap: 9px; }
.cl-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.cl-tab { font-family: var(--sans); padding: 11px 22px; border-radius: 100px; border: 1px solid var(--line); background: #fff;
  font-weight: 600; font-size: .95rem; color: var(--ink-soft); cursor: pointer; transition: border-color .15s, background .15s, color .15s; }
.cl-tab:hover { border-color: var(--zest); }
.cl-tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.cl-panel { max-width: 820px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); animation: clFade .3s ease; }
.cl-row { display: flex; align-items: center; gap: 14px; padding: 15px 24px; border-bottom: 1px solid var(--line); }
.cl-row:last-child { border-bottom: 0; }
.cl-ck { width: 24px; height: 24px; border-radius: 50%; background: rgba(198,242,62,.2); color: var(--zest-deep);
  display: inline-grid; place-items: center; font-size: .82rem; font-weight: 800; flex: none; }
.cl-task { flex: 1; font-size: 1rem; color: var(--ink); }
.cl-task b { font-weight: 700; }
.cl-deep-badge { background: var(--zest); color: var(--ink); font-weight: 700; font-size: .66rem; letter-spacing: .04em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px; flex: none; }
.cl-row.deep .cl-ck { background: var(--zest); color: var(--ink); }
@keyframes clFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .cl-panel { animation: none; } }

/* ---------- Google reviews carousel (Juany-style) ---------- */
.greviews { display: grid; grid-template-columns: 200px 1fr; gap: 30px; align-items: center; }
.grev-badge { text-align: center; }
.grev-excellent { display: block; font-weight: 800; font-size: 1.3rem; color: var(--ink); letter-spacing: .04em; }
.grev-badge .grev-stars { display: block; color: #fbbc05; font-size: 1.7rem; letter-spacing: 3px; margin: 4px 0; }
.grev-sub { display: block; font-size: .9rem; color: var(--muted); }
.grev-sub b { color: var(--ink); }
.grev-google { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; font-weight: 600; font-size: .9rem; color: var(--ink); text-decoration: none; }
.grev-google:hover { color: var(--zest-deep); }
.grev-scroll { position: relative; min-width: 0; }
.grev-track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 6px 2px 16px; scrollbar-width: none; }
.grev-track::-webkit-scrollbar { display: none; }
.grev-card { flex: 0 0 300px; scroll-snap-align: start; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 22px; text-decoration: none; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .2s; }
.grev-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.grev-top { display: flex; align-items: center; gap: 12px; }
.grev-av { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex: none; background: var(--cream-2); }
.grev-name b { display: block; color: var(--ink); font-size: .98rem; }
.grev-name span { font-size: .8rem; color: var(--muted); }
.grev-g { margin-left: auto; font-weight: 800; color: #4285F4; font-size: 1rem; flex: none; }
.grev-cardstars { color: #fbbc05; letter-spacing: 1px; margin: 13px 0 9px; font-size: .98rem; }
.grev-card p { font-size: .92rem; line-height: 1.55; color: var(--ink-soft); margin: 0;
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.grev-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 42px; height: 42px;
  border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--ink); font-size: 1.5rem; line-height: 1;
  cursor: pointer; box-shadow: var(--shadow-sm); display: grid; place-items: center; transition: background .15s, transform .15s; }
.grev-arrow:hover { background: var(--cream-2); }
.grev-arrow.prev { left: -16px; }
.grev-arrow.next { right: -16px; }
@media (max-width: 760px) {
  .greviews { grid-template-columns: 1fr; gap: 18px; }
  .grev-arrow { display: none; }
}
.grev-av-fallback { display: grid; place-items: center; color: #fff; font-weight: 700; font-size: .9rem; font-family: var(--sans); }

/* ============ Bright/soft/friendly hero redesign ============ */
.hero { background: radial-gradient(115% 90% at 92% 0%, var(--mint), var(--cream) 58%); padding: clamp(40px,5vw,70px) 0 clamp(56px,7vw,92px); }
.hero h1 { font-size: clamp(2.7rem, 5.2vw, 4.1rem); line-height: 1.08; }
.hero h1 span { color: var(--zest-deep); }
.hero .lead { max-width: 31rem; font-size: 1.18rem; }
.hero-pill { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); border-radius: 100px; padding: 9px 18px; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 1.5rem; }
.hero-pill .hp-stars { color: #fbbc05; letter-spacing: 1px; }
.btn-soft { background: #fff; color: var(--ink); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-soft:hover { transform: translateY(-2px); border-color: var(--ink); }
.avatars .av.count { background: var(--zest); color: var(--ink); font-size: 1.1rem; }
.hero-photo { position: relative; }
.hero-photo > img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 34px; box-shadow: var(--shadow); display: block; }
.hero-photo::before { content: ""; position: absolute; top: -20px; right: -20px; width: 62%; height: 58%; background: var(--zest);
  opacity: .5; border-radius: 44px; z-index: 0; }
.hero-photo > img, .hero-rating-card { position: relative; z-index: 1; }
.hero-rating-card { position: absolute; left: -20px; bottom: 30px; background: #fff; border-radius: 20px;
  padding: 16px 22px; box-shadow: var(--shadow); text-align: center; }
.hero-rating-card .hrc-stars { color: #fbbc05; letter-spacing: 1px; display: block; font-size: .9rem; }
.hero-rating-card b { font-family: var(--serif); font-size: 1.5rem; line-height: 1.1; display: block; color: var(--ink); }
.hero-rating-card .hrc-sub { font-size: .76rem; color: var(--muted); }
@media (max-width: 960px) {
  .hero-photo::before { display: none; }
  .hero-rating-card { left: auto; right: 16px; bottom: 16px; }
}

/* ============ Clean, bright centered hero ============ */
.hero-img { position: relative; padding: 0; overflow: hidden;
  background: radial-gradient(125% 95% at 82% 0%, var(--mint), var(--cream) 58%); }
.hero-img::before, .hero-img::after { content: none; }
.hero-img .container { position: relative; z-index: 1; }
.hero-center { max-width: none; width: 100%; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center;
  border: 1px solid var(--line); border-radius: 36px; box-shadow: var(--shadow-sm);
  background: radial-gradient(125% 95% at 82% 0%, var(--mint), #fff 60%);
  padding: clamp(56px, 8vw, 110px) clamp(24px, 5vw, 64px); }
.hero-img { padding: clamp(24px,3.2vw,52px) 0 !important; background: var(--cream) !important; }
.hero-center .hero-pill { margin-bottom: 1.1rem; }
.hero-center .eyebrow { margin-bottom: .5rem; color: var(--ink); }
.hero-center h1 { font-size: clamp(2.6rem, 5.8vw, 4.5rem); line-height: 1.1; max-width: 16ch; color: var(--ink); }
.hero-center h1 .hl { background: none; color: var(--ink); padding: 0; white-space: normal; }
.hero-center .lead { max-width: 40rem; font-size: 1.2rem; }
.hero-center .hero-cta { justify-content: center; margin-top: 1.9rem; }
.hero-trust-mini { display: flex; gap: 10px 26px; flex-wrap: wrap; justify-content: center; margin-top: 2rem;
  color: var(--ink); font-weight: 600; font-size: .92rem; }
.hero-trust-mini span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust-mini svg { color: var(--zest-deep); }

/* ============ Hero: lime split panel (image-1 style) ============ */
.hero-split { background: var(--cream); padding: clamp(20px,3vw,48px) 0 clamp(40px,5vw,80px); }
.hero-split .container { position: relative; z-index: 1; }
.hero-panel { position: relative; overflow: hidden; border-radius: 34px;
  background: var(--zest) url('zest-bedroom.jpg') center 30% / cover no-repeat;
  padding: clamp(40px,5vw,84px); min-height: 540px; display: flex; align-items: center;
  box-shadow: var(--shadow); }
/* lime wash holds solid on the left for legible text, fades to reveal the room on the right */
.hero-panel::before { content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(90deg, var(--zest) 0%, var(--zest) 38%, rgba(198,242,62,.45) 60%, rgba(198,242,62,0) 80%); }
.hero-copy { text-align: left; position: relative; z-index: 1; max-width: 600px; }
.hero-split .hero-pill { background: rgba(255,255,255,.92); border-color: rgba(255,255,255,.6); margin-bottom: 1.4rem; }
.hero-split h1 { color: var(--ink); font-size: clamp(2.4rem,4.4vw,3.9rem); line-height: 1.04; margin-bottom: .9rem; max-width: 14ch; }
.hero-split .lead { color: #28341a; max-width: 33rem; font-size: 1.16rem; margin-bottom: 0; }
.hero-split .hero-cta { display: flex; gap: 14px; margin-top: 1.8rem; flex-wrap: wrap; }
.hero-split .hero-trust-mini { justify-content: flex-start; margin-top: 1.7rem; color: var(--ink); }
.hero-split .hero-trust-mini svg { color: var(--ink); }
.hero-figure { position: relative; }
.hero-figure img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; border-radius: 24px;
  box-shadow: 0 34px 64px -30px rgba(20,30,10,.5); display: block; }
.btn-white { background: #fff; color: var(--ink); box-shadow: 0 14px 28px -16px rgba(0,0,0,.4); }
.btn-white:hover { transform: translateY(-2px); background: #fff; box-shadow: 0 18px 34px -16px rgba(0,0,0,.45); }
@media (max-width: 900px) {
  .hero-panel { min-height: 460px; background-position: center; }
  /* stronger lime wash so the headline stays legible over the photo on small screens */
  .hero-panel::before { background: linear-gradient(90deg, var(--zest) 0%, var(--zest) 55%, rgba(198,242,62,.8) 100%); }
}

/* ============ Lime promo split panel (image-3 style) ============ */
.promo { background: var(--cream); }
.promo-panel { background: var(--zest); border-radius: 34px; padding: clamp(32px,4.5vw,68px);
  display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(28px,4vw,56px);
  align-items: center; box-shadow: var(--shadow); }
.promo-copy { text-align: left; }
.promo-copy h2 { color: var(--ink); font-size: clamp(2.1rem,3.6vw,3.1rem); line-height: 1.06;
  margin-bottom: 1rem; max-width: 15ch; }
.promo-copy .lead { color: #28341a; max-width: 32rem; margin-bottom: 1.7rem; }
.promo-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.promo-figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 22px;
  box-shadow: 0 30px 60px -28px rgba(20,30,10,.5); display: block; }
@media (max-width: 900px) { .promo-panel { grid-template-columns: 1fr; gap: 28px; } }

/* ============ Reviews 2.0 — badges + constant auto-scroll slider ============ */
.reviews2 { background: var(--cream-2); overflow: hidden; padding: clamp(56px,8vw,100px) 0; }
.rev2-badges { display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; margin-bottom: 46px; }
.rev2-badge { display: flex; flex-direction: column; align-items: center; gap: 5px; text-decoration: none; color: var(--ink); transition: transform .15s; }
.rev2-badge:hover { transform: translateY(-2px); }
.rev2-head { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.rev2-stars { color: #fbbc05; letter-spacing: 1px; }
.rev2-stars.big { font-size: 1.3rem; }
.rev2-badge b { font-size: 1.4rem; font-family: var(--serif); color: var(--ink); }
.rev2-vline { width: 1px; height: 58px; background: var(--line); }

.rev2-marquee { position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.rev2-track { display: flex; gap: 22px; width: max-content; padding: 8px 11px; animation: rev2scroll 95s linear infinite; }
.rev2-marquee:hover .rev2-track { animation-play-state: paused; }
@keyframes rev2scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.rev2-card { flex: 0 0 350px; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 24px;
  box-shadow: var(--shadow-sm); text-decoration: none; transition: transform .15s, box-shadow .2s; }
.rev2-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.rev2-top { display: flex; align-items: center; gap: 12px; }
.rev2-av { width: 46px; height: 46px; border-radius: 50%; color: #fff; font-weight: 700; font-family: var(--sans);
  display: grid; place-items: center; font-size: .95rem; flex: none; }
.rev2-name b { display: block; color: var(--ink); font-size: 1rem; line-height: 1.2; }
.rev2-name span { font-size: .82rem; color: var(--muted); }
.rev2-src { margin-left: auto; flex: none; display: inline-flex; align-items: center; }
.rev2-card .rev2-stars { display: block; margin: 14px 0 10px; font-size: 1rem; }
.rev2-card p { font-size: .93rem; line-height: 1.55; color: var(--ink-soft); margin: 0;
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
@media (prefers-reduced-motion: reduce) { .rev2-track { animation: none; } }

/* ---------- The Zest Standard: boxed card ---------- */
.standard-box { background: #fff; border: 1px solid var(--line); border-radius: 32px;
  box-shadow: var(--shadow); padding: clamp(28px, 4vw, 52px); align-items: center; }
.standard-box .split-media .media-frame { box-shadow: var(--shadow-sm); }

/* ---------- Checklist: horizontal columns (all rooms, no tabs) ---------- */
.cl-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; align-items: start; }
.cl-col { background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-sm); overflow: hidden; }
.cl-col-title { margin: 0; padding: 17px 20px; font-size: 1.05rem; background: var(--mint); border-bottom: 1px solid var(--line); }
.cl-col .cl-row { padding: 13px 18px; align-items: flex-start; gap: 11px; }
.cl-col .cl-task { font-size: .93rem; line-height: 1.45; }
.cl-col .cl-ck { flex: none; margin-top: 1px; }
.cl-col .cl-deep-badge { flex: none; margin-top: 3px; }
@media (max-width: 560px){ .cl-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ZEST CONCIERGE — floating FAQ chat
   ============================================================ */
.zc-launch { position: fixed; right: 22px; bottom: 22px; width: 62px; height: 62px; border: none;
  border-radius: 50%; background: var(--zest); color: var(--ink); display: grid; place-items: center;
  cursor: pointer; box-shadow: 0 16px 34px -12px rgba(0,0,0,.45); z-index: 9000;
  transition: transform .15s ease, box-shadow .2s ease; }
.zc-launch:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 22px 40px -14px rgba(0,0,0,.5); }
.zc-launch svg { width: 28px; height: 28px; }
.zc-launch.hide { display: none; }

.zc-panel { position: fixed; right: 22px; bottom: 22px; width: 384px; max-width: calc(100vw - 28px);
  height: 580px; max-height: calc(100vh - 90px); background: #fff; border-radius: 22px; overflow: hidden;
  display: flex; flex-direction: column; box-shadow: 0 36px 80px -22px rgba(0,0,0,.5);
  z-index: 9001; font-family: var(--sans); animation: zcIn .22s ease; }
.zc-panel[hidden] { display: none; }   /* let the hidden attribute actually hide it */
@keyframes zcIn { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }

.zc-head { background: var(--ink); color: #fff; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; }
.zc-head-id { display: flex; align-items: center; gap: 12px; }
.zc-av { width: 42px; height: 42px; border-radius: 50%; background: var(--zest); color: var(--ink);
  font-family: var(--serif); font-weight: 700; font-size: 1.25rem; display: grid; place-items: center; }
.zc-head-id b { display: block; font-size: 1.02rem; line-height: 1.2; }
.zc-status { font-size: .82rem; color: #cdd2c6; display: inline-flex; align-items: center; gap: 7px; }
.zc-status i { width: 8px; height: 8px; border-radius: 50%; background: #34d058; display: inline-block; }
.zc-close { background: none; border: none; color: #fff; font-size: 1.7rem; line-height: 1; cursor: pointer; opacity: .8; padding: 0 2px; }
.zc-close:hover { opacity: 1; }

.zc-body { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 11px; background: #f6f9f1; }
.zc-day { align-self: center; font-size: .76rem; color: var(--muted); margin: 2px 0 4px; }
.zc-msg { max-width: 85%; padding: 11px 15px; border-radius: 16px; font-size: .94rem; line-height: 1.5; }
.zc-bot { align-self: flex-start; background: #fff; color: var(--ink); border: 1px solid var(--line); border-bottom-left-radius: 5px; }
.zc-user { align-self: flex-end; background: var(--ink); color: #fff; border-bottom-right-radius: 5px; }
.zc-msg a { color: var(--zest-deep); font-weight: 600; text-decoration: underline; }
.zc-user a { color: var(--zest); }
.zc-typing { align-self: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  border-bottom-left-radius: 5px; padding: 13px 16px; display: flex; gap: 5px; }
.zc-typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); animation: zcBlink 1s infinite; }
.zc-typing span:nth-child(2) { animation-delay: .2s; }
.zc-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes zcBlink { 0%, 60%, 100% { opacity: .3; } 30% { opacity: 1; } }

.zc-quick { display: flex; flex-wrap: wrap; gap: 8px; padding: 10px 14px 4px; background: #f6f9f1; }
.zc-chip { font-family: var(--sans); font-size: .82rem; font-weight: 600; color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: 100px; padding: 7px 13px; cursor: pointer; transition: .15s; }
.zc-chip:hover { border-color: var(--zest-deep); color: var(--zest-deep); }

.zc-input { display: flex; gap: 10px; padding: 12px; border-top: 1px solid var(--line); background: #fff; }
.zc-input input { flex: 1; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px;
  font-size: .95rem; font-family: var(--sans); outline: none; }
.zc-input input:focus { border-color: var(--zest-deep); }
.zc-input button { background: var(--ink); color: #fff; border: none; border-radius: 12px; padding: 0 20px;
  font-weight: 700; cursor: pointer; font-family: var(--sans); }
.zc-input button:hover { background: #000; }
@media (max-width: 480px) { .zc-panel { right: 8px; bottom: 8px; width: calc(100vw - 16px); height: calc(100vh - 80px); } }

/* ============================================================
   FAQ — clickable lime accordion
   ============================================================ */
.faqs { background: var(--mint); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 26px; align-items: start; max-width: 1040px; margin: 0 auto; }
.faq-col { display: flex; flex-direction: column; gap: 22px; }
.faq-item { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; }
.faq-q { width: 100%; text-align: left; border: none; cursor: pointer; background: var(--zest); color: var(--ink);
  font-family: var(--serif); font-weight: 700; font-size: 1.02rem; line-height: 1.3;
  padding: 18px 52px 18px 22px; position: relative; display: block; transition: background .15s; }
.faq-q:hover { background: var(--zest-glow); }
.faq-ic { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; }
.faq-ic::before, .faq-ic::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; }
.faq-ic::before { left: 0; top: 8px; width: 18px; height: 2.5px; }                 /* horizontal bar */
.faq-ic::after  { left: 8px; top: 0; width: 2.5px; height: 18px; transition: transform .2s; } /* vertical bar */
.faq-item.open .faq-ic::after { transform: scaleY(0); }                            /* + turns into - */
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-item.open .faq-a { max-height: 520px; }
.faq-a p { margin: 0; padding: 18px 22px 20px; color: var(--ink-soft); font-size: .96rem; line-height: 1.6; }
.faq-a a { color: var(--zest-deep); font-weight: 600; }
@media (max-width: 800px) { .faq-grid { grid-template-columns: 1fr; gap: 18px; } .faq-col { gap: 18px; } }

/* ============ Neighborhood "What we clean" grid ============ */
.wwc { max-width: 920px; margin: 0 auto; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 30px; }
.wwc li { list-style: none; display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; color: var(--ink-soft); line-height: 1.55; }
.wwc li svg { color: var(--zest-deep); flex: none; margin-top: 3px; }
.wwc li b { color: var(--ink); font-weight: 700; }
@media (max-width: 700px) { .wwc { grid-template-columns: 1fr; } }
.hero-center .lead.intro2 { margin-top: 1.2rem; color: var(--ink-soft); }
.area-links { font-size: 1.05rem; }
.area-links a { font-weight: 600; }

/* ============================================================
   "Why choose Zest" split panel (charcoal, image + checklist)
   ============================================================ */
.whychoose { }
.wc-panel { background: var(--ink); color: #fff; border-radius: 32px; padding: clamp(30px,4.2vw,60px);
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px,4vw,54px); align-items: center; box-shadow: var(--shadow); }
.wc-copy { text-align: left; }
.wc-copy .eyebrow { color: var(--zest); }
.wc-copy h2 { color: #fff; margin-bottom: .5rem; }
.wc-copy h2::after { content: ""; display: block; width: 60px; height: 4px; background: var(--zest); border-radius: 3px; margin-top: 16px; }
.wc-copy > p { color: #cdd3c4; max-width: 34rem; }
.wc-list { list-style: none; padding: 0; margin: 1.5rem 0 1.7rem; display: flex; flex-direction: column; gap: 14px; }
.wc-list li { display: flex; gap: 12px; align-items: flex-start; color: #e6ebdd; font-size: .97rem; line-height: 1.5; }
.wc-list li svg { color: var(--zest); flex: none; margin-top: 3px; }
.wc-list b { color: #fff; font-weight: 700; }
.wc-media img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; border-radius: 22px; box-shadow: 0 30px 60px -28px rgba(0,0,0,.6); display: block; }
@media (max-width: 900px) { .wc-panel { grid-template-columns: 1fr; gap: 26px; } .wc-media { order: -1; } }

/* SVG icon placeholders (replacing emojis) */
.diff-card .ico svg { width: 26px; height: 26px; }
.info-pill .pico { display: grid; place-items: center; }
.info-pill .pico svg { width: 18px; height: 18px; }

/* ============================================================
   Homepage hero: bright room photo inside a bordered box
   ============================================================ */
body.home .hero-img { background: var(--cream); padding: clamp(26px,3.4vw,54px) 0; }
body.home .hero-center { position: relative; overflow: hidden; max-width: none; width: 100%;
  border: 1px solid var(--line); border-radius: 36px; box-shadow: var(--shadow); background: #fff;
  padding: clamp(58px,8vw,118px) clamp(24px,5vw,70px); }
/* the room photo, brightened so it reads clean and airy */
body.home .hero-center::before { content: ""; position: absolute; inset: 0; z-index: 0;
  background: url('zest-hero.jpg') center 40% / cover no-repeat; }
/* wash: light up top (room shows), stronger at the bottom so the subtitle + checkmarks stay readable */
body.home .hero-center::after { content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.34) 0%, rgba(255,255,255,.42) 45%, rgba(255,255,255,.78) 78%, rgba(255,255,255,.9) 100%); }
body.home .hero-center > * { position: relative; z-index: 1; }
/* darker, bolder lower text for legibility over the photo */
body.home .hero-center .lead { color: var(--ink); font-weight: 500; text-shadow: 0 1px 12px rgba(255,255,255,.85); }
body.home .hero-trust-mini { font-weight: 700; }
body.home .hero-trust-mini span { text-shadow: 0 1px 10px rgba(255,255,255,.9); }

/* Neighborhood "What we clean" as a bordered card */
#what-we-clean .wwc { background: #fff; border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow-sm);
  max-width: 1000px; padding: clamp(30px,4vw,48px) clamp(24px,4vw,52px); }

/* ============ Refer a Neighbor form ============ */
.refer-card { max-width: 700px; margin: 0 auto; background: #fff; border: 1px solid var(--line);
  border-radius: 28px; box-shadow: var(--shadow-sm); padding: clamp(28px,4vw,48px); }
.refer-card .eyebrow { margin-bottom: .4rem; }
.refer-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.form-label-group { font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--zest-deep); margin: 0 0 10px; }
.refer-card textarea { resize: vertical; }
.refer-done { display: none; text-align: center; padding: 10px 0; }
.refer-done.show { display: block; }
.refer-done .check { width: 56px; height: 56px; border-radius: 50%; background: var(--mint); color: var(--zest-deep);
  display: grid; place-items: center; font-size: 1.6rem; font-weight: 700; margin: 0 auto 16px; }
@media (max-width: 560px) { .refer-row { grid-template-columns: 1fr; } }

/* Footer CTA buttons: clean lime outline on the dark footer (no glowing lime blocks) */
.site-footer .btn-primary, .site-footer .btn-lime {
  background: transparent; color: var(--zest); border: 1.5px solid rgba(198,242,62,.5); box-shadow: none;
}
.site-footer .btn-primary:hover, .site-footer .btn-lime:hover {
  background: var(--zest); color: var(--ink); border-color: var(--zest); transform: translateY(-2px);
}

/* Service-areas grid: responsive (was a hard-coded 3-col inline style) */
.area-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .area-grid { grid-template-columns: 1fr; } }
/* mobile safety net: never allow sideways scroll */
@media (max-width: 768px) { html, body { overflow-x: hidden; } }

/* popup: zip + phone side by side */
.popup-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
@media (max-width: 420px) { .popup-row { grid-template-columns: 1fr; } }

/* ============================================================
   SQUARED DESIGN — sharp corners on every box, card, button, input,
   testimonial, panel, popup, chat, badge, etc. (no rounded edges)
   ============================================================ */
*, *::before, *::after { border-radius: 0 !important; }

/* ============================================================
   Clean shine sweep on page enter (interior page hero boxes)
   ============================================================ */
.hero-center { position: relative; overflow: hidden; }
body:not(.home) .hero-center::after {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,.62) 50%, transparent 62%);
  transform: translateX(-130%);
  animation: heroShineSweep 1.5s cubic-bezier(.4,0,.2,1) .3s 1 both;
}
@keyframes heroShineSweep {
  from { transform: translateX(-130%); }
  to   { transform: translateX(130%); }
}
@media (prefers-reduced-motion: reduce) {
  body:not(.home) .hero-center::after { animation: none; opacity: 0; }
}

/* ===== Blog post article ===== */
.post { padding: 48px 0 76px; }
.post-narrow { max-width: 760px; margin: 0 auto; }
.post .breadcrumb { margin-bottom: 14px; }
.post .eyebrow { display: block; margin-bottom: 10px; }
.post h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.08; margin: 0 0 .7em; }
.post-hero { margin: 0 0 30px; }
.post-hero img { width: 100%; height: auto; display: block; border: 1px solid var(--line); }
.post-body img { width: 100%; height: auto; display: block; margin: 1.6em 0; border: 1px solid var(--line); }
.post-body { font-size: 1.07rem; line-height: 1.75; color: var(--ink); }
.post-body h2 { font-size: 1.5rem; line-height: 1.2; margin: 1.9em 0 .5em; }
.post-body h3 { font-size: 1.18rem; margin: 1.5em 0 .4em; }
.post-body p { margin: 0 0 1.15em; }
.post-body ul { margin: 0 0 1.25em; padding-left: 1.25em; }
.post-body li { margin: .4em 0; }
.post-body a { color: var(--zest-deep); font-weight: 600; }
.post-tip { background: var(--mint); border: 1px solid var(--line); padding: 14px 18px; margin: 0 0 1.25em; font-size: .98rem; }
.post-more { border-top: 1px solid var(--line); margin-top: 8px; padding: 44px 0 8px; }
.post-more h2 { font-size: 1.4rem; margin: 0 0 1.1rem; }
.more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 1.2rem; }
.more-grid a { display: block; padding: 16px 18px; border: 1px solid var(--line); font-weight: 600; color: var(--ink); text-decoration: none; line-height: 1.3; }
.more-grid a:hover { border-color: var(--zest-deep); color: var(--zest-deep); }
@media (max-width: 700px) { .more-grid { grid-template-columns: 1fr; } }
.post-cta { margin-top: 44px; padding: 36px 32px; background: var(--ink); color: #fff; text-align: center; }
.post-cta h2 { color: #fff; margin: 0 0 .35em; }
.post-cta p { margin: 0 0 1.1em; color: rgba(255,255,255,.85); }
@media (max-width: 640px) { .post-cta { padding: 28px 20px; } }
