:root {
  --bg: #fffaf7;
  --surface: #ffffff;
  --tint: #f8ece9;
  --ink: #23262b;
  --muted: #5d6167;
  --line: #eadfdb;
  --brand: #9e3d56;
  --brand-dark: #7d2c42;
  --blush: #f4c9c4;
  --radius: 18px;
  --shadow: 0 1px 2px rgba(35, 38, 43, 0.05), 0 12px 32px -12px rgba(35, 38, 43, 0.18);
  --display: "Fraunces", Georgia, serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 17px/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); }
h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.15; margin: 0 0 0.5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
.muted { color: var(--muted); }

.container { width: min(1140px, 100% - 32px); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 100; background: var(--surface); padding: 8px 12px; border-radius: 8px; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }

.eyebrow { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand); margin-bottom: 0.9em; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  min-height: 48px; padding: 0 1.4em; border-radius: 999px;
  font: 600 1rem var(--body); text-decoration: none; border: 2px solid transparent;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-sm { min-height: 42px; padding: 0 1.1em; font-size: 0.95rem; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-ghost { color: var(--ink); border-color: var(--line); background: var(--surface); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { background: #fff; color: var(--brand-dark); }
.btn-outline-light { color: #fff; border-color: rgba(255, 255, 255, 0.6); }
.btn-outline-light:hover { border-color: #fff; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 250, 247, 0.9); backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand-text { display: grid; line-height: 1.1; }
.brand-name { font: 600 1.3rem var(--display); color: var(--brand); }
.brand-sub { font-size: 0.75rem; color: var(--muted); }
.site-nav { display: flex; gap: 26px; }
.site-nav a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: 0.95rem; }
.site-nav a:hover { color: var(--brand); }
.site-nav .admin-link, .mobile-menu .admin-link { color: var(--brand); font-weight: 600; }
.menu-btn, .mobile-menu { display: none; }
.menu-btn { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--ink); cursor: pointer; place-items: center; }
.menu-btn svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(36px, 5vw, 72px) 0 clamp(28px, 4vw, 56px);
  background:
    radial-gradient(55% 90% at 85% 10%, rgba(244, 201, 196, 0.5), transparent 70%);
}

.hero h1 { max-width: 12em; }

.hero-inner { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, 380px); column-gap: clamp(32px, 6vw, 96px); align-items: start; }
.hero-inner > :not(.hero-picker) { grid-column: 1; }
.hero-inner > .btn { justify-self: center; }
.hero-inner > :not(.hero-picker) { text-align: center; }
.hero h1, .hero .lede, .owner-line { margin-inline: auto; }
.hero-picker { display: block; grid-column: 2; grid-row: 1 / span 3; width: 100%; }
.hero-picker-label { font-weight: 600; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand); margin-bottom: 12px; }
.hero-picker-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-picker-grid a {
  display: grid; gap: 4px; padding: 22px 20px; border-radius: var(--radius); background: var(--surface);
  border: 1px solid var(--line); box-shadow: var(--shadow); text-decoration: none; color: var(--ink);
  transition: transform 0.15s, border-color 0.15s;
}
.hero-picker-grid a:hover { transform: translateY(-2px); border-color: var(--brand); }
.hero-picker-grid strong { font: 600 1.2rem var(--display); }
.hero-picker-grid span { color: var(--brand); font-weight: 600; font-size: 0.92rem; }
.hero-picker-grid a.is-feature { background: var(--brand); border-color: var(--brand); color: #fff; }
.hero-picker-grid a.is-feature span { color: rgba(255, 255, 255, 0.88); }

.hero-picker-grid { grid-template-columns: 1fr; gap: 10px; }
.hero-picker-grid a { grid-auto-flow: column; justify-content: space-between; align-items: center; padding: 18px 22px; }

/* Generated banner photo behind the hero text (marketing art, never in the work gallery) */
.hero:has(.hero-banner) { padding: clamp(40px, 5vw, 72px) 0; }
.hero-banner { position: absolute; inset: 0; }
.hero-banner img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; }
.hero-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255, 250, 247, 0.92) 0%, rgba(255, 250, 247, 0.75) 45%, rgba(255, 250, 247, 0.15) 75%); }
.hero-picker-label { background: rgba(255, 250, 247, 0.9); width: fit-content; padding: 4px 10px; border-radius: 999px; margin-top: 0; }

/* Hero stacks into one column: left-aligned copy, picker becomes a 2x2 grid below */
@media (max-width: 640px) {
  .hero:has(.hero-banner) { padding: 28px 0 22px; }
  .hero-banner img { object-position: 72% 30%; }
  .hero-banner::after { background: linear-gradient(180deg, rgba(255, 250, 247, 0.2) 0%, rgba(255, 250, 247, 0.72) 34%, rgba(255, 250, 247, 0.95) 58%); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-inner > :not(.hero-picker) { text-align: left; }
  .hero-inner > .btn { justify-self: start; }
  .hero h1, .hero .lede, .owner-line { margin-inline: 0; }
  .hero h1 { font-size: 2rem; margin-bottom: 12px; }
  .hero .lede { font-size: 1rem; margin-bottom: 18px; }
  .hero-picker { grid-column: 1; grid-row: auto; margin-top: 20px; }
  .hero-picker-label { margin-bottom: 8px; font-size: 0.72rem; }
  .hero-picker-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-picker-grid a { grid-auto-flow: row; justify-content: stretch; gap: 0; padding: 10px 14px; border-radius: 14px; }
  .hero-picker-grid strong { font-size: 1.05rem; }
  .hero-picker-grid span { font-size: 0.82rem; }
  .owner-band { padding: 14px 0; }
  .owner-line { font-size: 0.9rem; }
  .owner-line img { width: 38px; height: 38px; }

  /* Quote steps: number beside text so the block stays short */
  .quote-block { padding: 32px 0; }
  .quote-block h2 { margin-bottom: 18px; }
  .quote-block .steps { gap: 14px; }
  .quote-block .steps li { display: grid; grid-template-columns: 34px 1fr; column-gap: 12px; }
  .quote-block .step-num { width: 34px; height: 34px; font-size: 1rem; margin: 0; grid-row: 1 / span 2; }
  .quote-block .steps h3 { font-size: 1.05rem; margin: 4px 0 2px; }
  .quote-block .steps p { font-size: 0.92rem; margin: 0; }
  .quote-block .contact-actions { margin-top: 22px; }
  .quote-block .contact-actions .btn { flex: 1 1 100%; }
}

.hero h1 em { font-style: italic; color: var(--brand); }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 32em; margin-bottom: 28px; }
.owner-band { padding: 18px 0; }
.owner-line { display: flex; align-items: center; gap: 12px; color: var(--muted); text-decoration: none; font-size: 0.95rem; width: fit-content; }
.owner-line img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--surface); box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1); flex: none; }
.owner-link { color: var(--brand); font-weight: 600; white-space: nowrap; }
.owner-line:hover .owner-link { text-decoration: underline; }

/* Before/after compare slider */
.compare { --pos: 50%; position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 1 / 1; background: var(--tint); user-select: none; }
.compare img { width: 100%; height: 100%; object-fit: cover; }
.compare-before { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.compare-handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; margin-left: -1.5px;
  background: #fff; box-shadow: 0 0 8px rgba(0, 0, 0, 0.3); pointer-events: none;
}
.compare-handle::after {
  content: "‹ ›"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 42px; height: 42px; border-radius: 50%; background: #fff; color: var(--brand);
  display: grid; place-items: center; font: 600 1.1rem/1 var(--body); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.compare-range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.compare-range:focus-visible + .compare-handle::after { outline: 3px solid var(--brand); outline-offset: 2px; }
.compare-tag {
  position: absolute; top: 12px; padding: 4px 10px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  background: rgba(35, 38, 43, 0.72); color: #fff; pointer-events: none;
}
.compare-tag-before { left: 12px; }
.compare-tag-after { right: 12px; background: rgba(158, 61, 86, 0.9); }

/* Trust points (inside Meet your cleaner) */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.trust-item { background: var(--surface); border-radius: var(--radius); padding: 18px; }
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-item svg { flex: none; width: 40px; height: 40px; padding: 9px; border-radius: 12px; background: var(--tint); fill: none; stroke: var(--brand); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.trust-item h3 { font: 600 1rem var(--body); margin: 0 0 2px; }
.trust-item p { margin: 0; font-size: 0.9rem; color: var(--muted); }

/* Sections */
.section { padding: clamp(40px, 5vw, 64px) 0; }
.section-tint { background: var(--tint); }
.section-head { max-width: 640px; margin-bottom: 28px; }
.section-head p:last-child { margin-bottom: 0; }
.prose { max-width: 720px; }
.prose h2 { font-size: 1.3rem; margin-top: 1.6em; }
.prose p { color: var(--muted); }
.section h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.section-head-row { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; }
.section-head-row h2 { margin: 0; }
.text-link { font-weight: 600; text-decoration: none; white-space: nowrap; }
.text-link:hover { text-decoration: underline; }
.site-nav a[aria-current="page"] { color: var(--brand); }
.service-grid-compact .service-card { text-decoration: none; color: var(--ink); padding: 22px; transition: border-color 0.15s, transform 0.15s; }
.service-grid-compact .service-card:hover { border-color: var(--brand); transform: translateY(-2px); }
.service-grid-compact .service-card h3 { margin-bottom: 4px; }
.service-grid-compact .service-card-feature { color: #fff; }
.section-head p:last-child { color: var(--muted); }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; display: flex; flex-direction: column; }
.service-card p { color: var(--muted); font-size: 0.95rem; }
.service-card .price { margin: auto 0 0; padding-top: 12px; font-weight: 600; color: var(--brand); }
.service-card-feature { background: var(--brand); border-color: var(--brand); color: #fff; }
.service-card-feature p, .service-card-feature .price { color: rgba(255, 255, 255, 0.88); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gallery-item { margin: 0; background: var(--surface); border-radius: calc(var(--radius) + 6px); padding: 8px; box-shadow: var(--shadow); }
.gallery-item figcaption { padding: 12px 8px 6px; font-size: 0.92rem; font-weight: 500; }
.gallery-single { border-radius: var(--radius); width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px 32px; }
.steps p { margin-bottom: 0; }
.step-num {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--tint); color: var(--brand); font: 600 1.3rem var(--display); margin-bottom: 12px;
}
.steps p { color: var(--muted); }

.about-intro { display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 4vw, 40px); align-items: center; }
.about-avatar { width: clamp(140px, 18vw, 200px); height: auto; aspect-ratio: 1; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow); border: 5px solid var(--surface); }
.about-copy p { color: var(--muted); font-size: 1.05rem; max-width: 40em; }
.about-copy p:last-child { margin-bottom: 0; }

.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.review-card { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.review-card blockquote { margin: 12px 0 16px; font-size: 1.02rem; }
.review-card figcaption { font-weight: 600; }
.review-card figcaption span { font-weight: 400; color: var(--muted); }
.stars { color: #d9a441; letter-spacing: 2px; }
.stars-off { color: var(--line); }
.review-empty { grid-column: 1 / -1; background: var(--tint); border-radius: var(--radius); padding: 28px; max-width: 640px; }
.review-empty p:last-child { margin: 0; }


.review-form-wrap { margin-top: 28px; max-width: 560px; }
.review-form-wrap summary { list-style: none; cursor: pointer; }
.review-form-wrap summary::-webkit-details-marker { display: none; }
.review-form-wrap[open] summary { display: none; }
.review-form { display: grid; gap: 10px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.review-form label, .review-form legend { font-weight: 600; font-size: 0.95rem; }
.review-form input:not([type=radio]), .review-form textarea {
  width: 100%; font: inherit; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink);
}
.review-form input[type=file] { padding: 10px; }
.rv-previews { display: flex; gap: 8px; }
.rv-previews img { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; }
.review-photos { display: flex; gap: 8px; margin: -4px 0 14px; }
.review-photos img { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; }
.review-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; }
.share-step { background: var(--tint); border-radius: 14px; padding: 16px; }
.share-step p { margin: 0 0 10px; font-size: 0.95rem; }
.share-buttons { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 6px; }
.share-note { color: var(--brand); font-weight: 500; margin: 0; }
.form-status { margin: 0; min-height: 1.4em; font-weight: 500; color: var(--brand); }
.star-input { border: 0; padding: 0; margin: 0; }
.star-input legend { margin-bottom: 4px; padding: 0; }
.star-row { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 2px; }
.star-input input { position: absolute; opacity: 0; }
.star-input label { font-size: 2rem; line-height: 1; color: var(--line); cursor: pointer; padding: 2px; }
.star-input input:checked ~ label, .star-input label:hover, .star-input label:hover ~ label { color: #d9a441; }
.star-input input:focus-visible + label { outline: 3px solid var(--brand); border-radius: 6px; }

/* Get a free quote: one block, same on every page */
.quote-block { background: var(--brand); color: #fff; padding: clamp(44px, 6vw, 72px) 0; }
.quote-block .eyebrow { color: var(--blush); }
.quote-block h2 { color: #fff; margin-bottom: 28px; }
.quote-block .step-num { background: rgba(255, 255, 255, 0.16); color: #fff; }
.quote-block .steps h3 { color: #fff; }
.quote-block .steps p { color: rgba(255, 255, 255, 0.85); }
.quote-block .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.72); font-size: 0.9rem; padding: 40px 0 48px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 20px 40px; justify-content: space-between; align-items: flex-start; }
.footer-inner p { margin: 0; }
.footer-name { color: #fff; font-weight: 600; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255, 255, 255, 0.85); }
.footer-copy { width: 100%; }


@media (max-width: 960px) {
  .trust-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid[data-limit] > :nth-child(3) { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .site-nav { display: none; }
  .menu-btn { display: grid; }
  .mobile-menu:not([hidden]) {
    display: grid; gap: 2px; padding: 8px 16px 16px; border-top: 1px solid var(--line); background: var(--bg);
  }
  .mobile-menu a:not(.btn) { padding: 12px 4px; color: var(--ink); text-decoration: none; font-weight: 500; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .mobile-menu .btn { margin-top: 12px; }

}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .header-cta { display: none; }
  .header-inner { min-height: 60px; gap: 12px; }
  .brand img { width: 30px; height: 30px; }
  .brand-name { font-size: 1.15rem; }
  .brand-sub { font-size: 0.7rem; }
  h1 { font-size: 2.1rem; }
  .eyebrow { font-size: 0.72rem; letter-spacing: 0.1em; }
  .lede { font-size: 1.05rem; }
  .trust-grid, .service-grid:not(.service-grid-compact), .gallery-grid, .steps { grid-template-columns: 1fr; }
  .service-grid-compact { gap: 10px; }
  .service-grid-compact .service-card { padding: 16px; }
  .gallery-grid[data-limit] > :nth-child(n+2) { display: none; }
  .hero .btn-primary { width: 100%; }
  .about-intro { grid-template-columns: 1fr; }
  .about-avatar { width: 120px; }
}

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