:root {
  --font-display: "Cormorant Garamond", "Libre Baskerville", Georgia, serif;
  --font-text: Inter, "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ink: #141713;
  --graphite: #172520;
  --graphite-2: #22352e;
  --muted: #68736b;
  --muted-dark: #4d5b53;
  --porcelain: #fffdf8;
  --warm-white: #fbf7ef;
  --ivory: #f4ebdd;
  --linen: #e8dcc9;
  --mist: #edf0eb;
  --champagne: #c9aa6b;
  --champagne-light: #e8d3a0;
  --champagne-dark: #8b6b30;
  --sage: #687a70;
  --sage-dark: #3d5148;
  --white: #ffffff;
  --line: rgba(23, 37, 32, 0.12);
  --line-gold: rgba(139, 107, 48, 0.22);
  --shadow: 0 28px 76px rgba(23, 37, 32, 0.12);
  --shadow-soft: 0 18px 46px rgba(23, 37, 32, 0.08);
  --radius-card: 18px;
  --radius-small: 12px;
  --radius-pill: 999px;
  --max: 1180px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: var(--font-text);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(232, 211, 160, 0.18), transparent 32rem),
    linear-gradient(180deg, var(--porcelain) 0, var(--warm-white) 540px, var(--warm-white) 100%);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 44px), var(--max)); margin: 0 auto; }
.section-pad { padding: 108px 0; }
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 200;
  background: var(--graphite);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius-small);
}
.skip-link:focus { top: 16px; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.98;
}
h1 { font-size: clamp(3.35rem, 8vw, 6.8rem); max-width: 840px; margin-bottom: 24px; }
h2 { font-size: clamp(2.45rem, 4.8vw, 4.45rem); margin-bottom: 22px; }
h3 { font-size: 1.55rem; margin-bottom: 12px; }
p { color: var(--muted); }
.eyebrow {
  color: var(--champagne-dark);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid rgba(23, 37, 32, 0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 14px 34px rgba(23, 37, 32, 0.08);
}
.nav-wrap { min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; font-weight: 800; letter-spacing: 0.04em; }
.brand-mark {
  background: var(--graphite);
  color: var(--champagne-light);
  padding: 8px 11px;
  border-radius: var(--radius-pill);
  margin-right: 8px;
  font-size: 0.76rem;
}
.brand-text { color: var(--ink); font-size: 0.88rem; }
.desktop-nav { display: flex; gap: 28px; font-size: 0.9rem; color: rgba(20, 23, 19, 0.64); }
.desktop-nav a { transition: color 0.2s ease; }
.desktop-nav a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.text-link { border: 0; background: none; color: var(--ink); cursor: pointer; padding: 10px 0; font-weight: 800; }
.text-link:hover { color: var(--champagne-dark); }
.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}
.mobile-menu-toggle span { display: block; width: 18px; height: 1px; background: var(--ink); margin: 6px auto; transition: transform 0.2s ease; }
.mobile-menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu { display: none; border-top: 1px solid var(--line); padding: 14px 22px 22px; background: var(--porcelain); }
.mobile-menu a { display: block; padding: 12px 0; color: var(--ink); font-weight: 800; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(23, 37, 32, 0.15); }
.btn:focus-visible, .text-link:focus-visible, summary:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(201, 170, 107, 0.42);
  outline-offset: 3px;
}
.btn-small { min-height: 42px; padding: 0 18px; font-size: 0.88rem; }
.btn-dark { background: var(--graphite); color: var(--white); border-color: rgba(23, 37, 32, 0.18); }
.btn-gold { background: linear-gradient(180deg, var(--champagne-light), var(--champagne)); color: var(--ink); border-color: rgba(139, 107, 48, 0.34); }
.btn-outline { background: rgba(255, 255, 255, 0.74); border-color: rgba(23, 37, 32, 0.18); color: var(--ink); }
.btn-outline.light { color: var(--white); border-color: rgba(255, 255, 255, 0.34); background: rgba(255, 255, 255, 0.09); }
.btn-full { width: 100%; }

.hero {
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  color: var(--white);
  padding: 116px 0 96px;
  background:
    linear-gradient(90deg, rgba(18, 27, 23, 0.84) 0%, rgba(18, 27, 23, 0.62) 45%, rgba(18, 27, 23, 0.08) 100%),
    linear-gradient(0deg, rgba(18, 27, 23, 0.52), rgba(18, 27, 23, 0.02)),
    url("assets/hero-clean-suite.jpg") center / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(251, 247, 239, 0), var(--porcelain));
}
.hero-copy { max-width: 860px; }
.hero h1 { text-wrap: balance; }
.hero .eyebrow { color: #f1dfb8; }
.hero-subtitle { font-size: clamp(1.05rem, 1.8vw, 1.26rem); max-width: 680px; margin-bottom: 32px; color: rgba(255, 255, 255, 0.88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero-actions.center { justify-content: center; }
.hero-note { display: flex; flex-wrap: wrap; gap: 10px; max-width: 850px; }
.hero-note span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-pill);
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 800;
}

.proof-strip { background: var(--porcelain); color: var(--ink); padding: 30px 0; border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.proof-grid div { border-left: 1px solid var(--line-gold); padding-left: 20px; min-height: 76px; }
.proof-grid strong { display: block; color: var(--ink); font-family: var(--font-display); font-size: 1.24rem; font-weight: 700; letter-spacing: -0.02em; }
.proof-grid span { display: block; color: var(--muted); font-size: 0.88rem; line-height: 1.48; }

.quote-section { background: linear-gradient(180deg, var(--porcelain), var(--ivory)); position: relative; }
.quote-grid { display: grid; grid-template-columns: 0.86fr 1fr; gap: 64px; align-items: start; }
.section-intro p, .section-heading p { font-size: 1.05rem; max-width: 700px; }
.contact-stack { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.contact-pill {
  display: inline-flex;
  border: 1px solid rgba(139, 107, 48, 0.24);
  background: rgba(255, 255, 255, 0.76);
  padding: 11px 15px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  color: var(--champagne-dark);
}
.contact-pill-google { background: var(--sage-dark); border-color: rgba(61, 81, 72, 0.2); color: var(--white); }
.quote-trust-card {
  margin-top: 28px;
  padding: 24px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(139, 107, 48, 0.20);
  box-shadow: var(--shadow-soft);
}
.quote-trust-card span {
  display: block;
  color: var(--champagne-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 9px;
}
.quote-trust-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.28rem;
  font-weight: 700;
  line-height: 0.98;
  margin-bottom: 12px;
  color: var(--ink);
}
.quote-trust-card p { margin-bottom: 0; }
.quote-form {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(139, 107, 48, 0.18);
  box-shadow: var(--shadow);
  border-radius: var(--radius-card);
  padding: 34px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.hidden-field { display: none; }
.form-header { display: flex; justify-content: space-between; gap: 18px; align-items: start; border-bottom: 1px solid var(--line); padding-bottom: 20px; margin-bottom: 22px; }
.form-header .eyebrow { margin-bottom: 8px; }
.form-header h3 { font-size: 2.35rem; letter-spacing: -0.025em; margin-bottom: 0; }
.form-header p { margin-bottom: 0; max-width: 230px; font-size: 0.9rem; text-align: right; }
label { display: grid; gap: 8px; font-size: 0.86rem; font-weight: 800; margin-bottom: 16px; color: rgba(20, 23, 19, 0.82); }
.optional { color: rgba(20, 23, 19, 0.46); font-weight: 700; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(23, 37, 32, 0.15);
  background: #fffefa;
  border-radius: var(--radius-small);
  padding: 14px 15px;
  color: var(--ink);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
input:focus, select:focus, textarea:focus { border-color: rgba(139, 107, 48, 0.5); box-shadow: 0 0 0 4px rgba(201, 170, 107, 0.16); background: #fff; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.field-help { font-size: 0.78rem; color: rgba(23, 37, 32, 0.56); margin: -4px 0 16px; line-height: 1.45; }
.fine-print { font-size: 0.78rem; color: rgba(23, 37, 32, 0.55); margin: 14px 0 0; }

.section-heading { text-align: center; margin-bottom: 50px; }
.section-heading h2, .section-intro h2 { text-wrap: balance; }
.section-heading p { margin-left: auto; margin-right: auto; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card, .included-card, .review-card, .step {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(139, 107, 48, 0.14);
  border-radius: var(--radius-card);
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.service-card { min-height: 238px; position: relative; overflow: hidden; }
.service-card::before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, rgba(201, 170, 107, 0.22), rgba(61, 81, 72, 0.08));
  border: 1px solid rgba(139, 107, 48, 0.22);
}
.service-card::after {
  content: "";
  position: absolute;
  top: 43px;
  left: 47px;
  width: 9px;
  height: 9px;
  border-radius: var(--radius-pill);
  background: var(--sage-dark);
}
.service-card:hover, .included-card:hover, .review-card:hover, .step:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: rgba(139, 107, 48, 0.26); background: rgba(255, 255, 255, 0.88); }
.service-card span, .step span { color: var(--champagne-dark); font-weight: 800; font-size: 0.78rem; letter-spacing: 0.12em; }
.service-card h3 { max-width: 280px; }
.service-card p, .step p, .review-card p { margin-bottom: 0; }

.conversion-band { background: var(--mist); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 62px 0; }
.conversion-band-dark { background: linear-gradient(180deg, var(--graphite), #14211d); color: var(--white); border-color: rgba(255, 255, 255, 0.12); }
.conversion-inner { display: grid; grid-template-columns: 1fr auto; gap: 38px; align-items: center; }
.conversion-inner h2 { font-size: clamp(2.15rem, 3.5vw, 3rem); margin-bottom: 12px; max-width: 760px; }
.conversion-inner p { max-width: 680px; margin-bottom: 0; }
.conversion-band-dark p { color: rgba(255, 255, 255, 0.74); }
.conversion-band-dark .eyebrow { color: #f0ddb4; }
.conversion-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

.difference { background: linear-gradient(180deg, var(--graphite), #14211d); color: var(--white); }
.difference p { color: rgba(255, 255, 255, 0.74); }
.split-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 62px; align-items: center; }
.luxury-photo {
  min-height: 560px;
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(23, 21, 18, 0.04), rgba(23, 21, 18, 0.30)),
    url("assets/hero-clean-suite.jpg") center / cover no-repeat;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}
.luxury-photo::after {
  content: "Detail-first cleaning";
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 9px 13px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  backdrop-filter: blur(14px);
}
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 28px; color: rgba(255, 255, 255, 0.86); }
.check-list li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 9px; height: 9px; border-radius: 50%; background: var(--champagne); }

.included { background: var(--ivory); }
.included-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.included-card { background: rgba(255, 255, 255, 0.68); }
.included-card ul { margin: 0; padding-left: 0; color: var(--muted); list-style: none; }
.included-card li { margin-bottom: 10px; padding-left: 22px; position: relative; }
.included-card li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 7px; height: 7px; border-radius: var(--radius-pill); background: var(--champagne); }

.pricing-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; }
.pricing-note { color: var(--muted-dark); font-weight: 600; }
.price-cards { background: linear-gradient(180deg, var(--graphite-2), var(--graphite)); color: var(--white); border-radius: var(--radius-card); padding: 36px; box-shadow: var(--shadow); border: 1px solid rgba(255, 255, 255, 0.08); }
.price-row { display: flex; justify-content: space-between; gap: 24px; padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.price-row span { color: rgba(255, 255, 255, 0.82); }
.price-row strong { white-space: nowrap; }
.price-row.muted span, .price-row.muted strong { color: rgba(255, 255, 255, 0.64); }
.price-cards .btn { margin-top: 24px; }

.reviews { background: var(--ivory); }
.google-proof .section-heading { margin-bottom: 42px; }
.google-proof-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 22px;
  align-items: stretch;
}
.google-summary-card,
.google-embed-card,
.google-widget-slot {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(139, 107, 48, 0.16);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}
.google-summary-card {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 560px;
}
.google-card-topline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--champagne-dark);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.google-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: #4285f4;
  border: 1px solid rgba(27, 45, 39, 0.1);
  box-shadow: 0 10px 24px rgba(23, 37, 32, 0.08);
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0;
}
.google-summary-card h3 {
  font-size: clamp(2.45rem, 5vw, 4rem);
  line-height: 0.96;
  max-width: 430px;
  margin-bottom: 18px;
}
.google-summary-copy { font-size: 1.02rem; max-width: 430px; }
.google-stars {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.google-stars span {
  color: var(--champagne-dark);
  letter-spacing: 0.12em;
  font-size: 1.08rem;
}
.google-stars strong { color: var(--ink); }
.google-proof-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 12px;
}
.google-proof-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted-dark);
  font-weight: 700;
}
.google-proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: var(--radius-pill);
  background: var(--champagne);
}
.google-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}
.google-profile-link,
.mini-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne-dark);
  font-weight: 800;
}
.google-profile-link:hover,
.mini-link:hover { text-decoration: underline; }
.google-embed-card {
  padding: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,253,248,0.74));
}
.google-embed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 16px 16px;
}
.google-embed-header span {
  display: block;
  color: var(--champagne-dark);
  font-size: 0.74rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.google-embed-header strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink);
}
.google-live-dot {
  position: relative;
  padding: 8px 12px 8px 26px;
  border-radius: var(--radius-pill);
  background: rgba(61, 81, 72, 0.09);
  color: var(--sage-dark) !important;
  letter-spacing: 0 !important;
}
.google-live-dot::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2e7d32;
  transform: translateY(-50%);
}
.google-map-frame {
  min-height: 486px;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(27, 45, 39, 0.12);
  background: var(--mist);
}
.google-map-frame iframe {
  width: 100%;
  height: 486px;
  display: block;
  border: 0;
}
.google-embed-note {
  margin: 14px 16px 4px;
  font-size: 0.84rem;
  color: rgba(27, 45, 39, 0.58);
}
.google-widget-slot {
  margin-top: 22px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: rgba(255, 253, 248, 0.82);
}
.google-widget-slot h3 {
  font-size: 2rem;
  margin-bottom: 8px;
}
.google-widget-slot p:last-child { margin-bottom: 0; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { min-height: 238px; background: rgba(255, 255, 255, 0.72); }

.faq { background: var(--warm-white); }
.faq-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 62px; }
.faq-list { display: grid; gap: 12px; }
details { background: rgba(255, 255, 255, 0.82); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 18px 20px; box-shadow: 0 10px 26px rgba(23, 37, 32, 0.04); }
summary { cursor: pointer; font-weight: 800; }
details p { margin: 14px 0 0; }

.final-cta { background: linear-gradient(180deg, #14211d, var(--graphite)); color: var(--white); }
.final-card { color: var(--white); padding: 8px 0; text-align: center; }
.final-card p { color: rgba(255, 255, 255, 0.74); margin-left: auto; margin-right: auto; max-width: 660px; }
.final-card h2 { max-width: 760px; margin-left: auto; margin-right: auto; }

.site-footer { background: var(--graphite); color: var(--white); padding: 54px 0 96px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 0.6fr; gap: 34px; }
.site-footer p, .site-footer a { color: rgba(255, 255, 255, 0.66); }
.site-footer a { display: block; margin-bottom: 8px; }
.site-footer a:hover { color: var(--white); }
.site-footer h4 { margin-bottom: 14px; color: var(--white); }
.footer-brand { margin-bottom: 18px; }
.footer-brand .brand-mark { background: var(--champagne); color: var(--ink); }
.footer-brand .brand-text { color: var(--white); }

.mobile-sticky {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 110;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(23, 37, 32, 0.95);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}
.mobile-sticky a { color: var(--white); text-align: center; padding: 13px 8px; font-weight: 800; font-size: 0.88rem; }
.mobile-sticky a + a { border-left: 1px solid rgba(255, 255, 255, 0.14); }
.mobile-sticky a:last-child { color: var(--champagne-light); }

.contact-dialog { width: min(92vw, 520px); border: 0; border-radius: var(--radius-card); padding: 34px; box-shadow: 0 30px 100px rgba(0, 0, 0, 0.24); background: var(--porcelain); color: var(--ink); }
.contact-dialog::backdrop { background: rgba(23, 21, 18, 0.52); backdrop-filter: blur(7px); }
.dialog-close { position: absolute; right: 16px; top: 14px; width: 36px; height: 36px; border: 1px solid var(--line); background: #fff; border-radius: var(--radius-pill); cursor: pointer; font-size: 24px; line-height: 1; }
.dialog-actions { display: grid; gap: 12px; margin-top: 22px; }
.copy-feedback { text-align: center; margin: 16px 0 0; font-weight: 800; color: var(--muted); }

.thank-you-main { min-height: 100svh; align-items: center; }
.thank-you-card { max-width: 860px; text-align: center; }
.thank-you-title { font-size: clamp(4rem, 8vw, 6rem); }

.legal-main { background: var(--porcelain); padding: 78px 0 96px; }
.legal-shell { max-width: 900px; }
.legal-shell h1 { font-size: clamp(3.2rem, 6vw, 5rem); color: var(--ink); }
.legal-shell h2 { font-size: 2rem; margin-top: 42px; }
.legal-shell p, .legal-shell li { color: var(--muted); }
.legal-shell ul { padding-left: 20px; }
.legal-nav { display: inline-flex; gap: 14px; margin-bottom: 34px; flex-wrap: wrap; }
.legal-nav a { font-weight: 800; color: var(--sage-dark); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1020px) {
  .desktop-nav, .nav-actions { display: none; }
  .mobile-menu-toggle { display: inline-block; }
  .mobile-menu.is-open { display: block; }
  .hero { min-height: 760px; padding: 92px 0 64px; background-position: 58% center; }
  .quote-grid, .split-grid, .pricing-grid, .faq-grid { grid-template-columns: 1fr; }
  .quote-form { position: static; }
  .conversion-inner { grid-template-columns: 1fr; }
  .conversion-actions { justify-content: flex-start; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .included-grid, .steps-grid, .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .google-proof-grid { grid-template-columns: 1fr; }
  .google-summary-card { min-height: auto; }
  .google-widget-slot { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  :root { --header-h: 66px; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section-pad { padding: 64px 0; }
  h1 { font-size: clamp(3rem, 15vw, 4.15rem); margin-bottom: 18px; }
  h2 { font-size: clamp(2.3rem, 11vw, 3.1rem); }
  .hero { min-height: 690px; padding: 80px 0 52px; background-position: 65% center; }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(23, 21, 18, 0.14);
  }
  .hero-subtitle { font-size: 1rem; margin-bottom: 24px; }
  .hero-actions, .conversion-actions { width: 100%; }
  .hero-actions .btn, .conversion-actions .btn { width: 100%; }
  .hero-note span { font-size: 0.78rem; padding: 8px 10px; }
  .proof-grid, .card-grid, .included-grid, .steps-grid, .footer-grid { grid-template-columns: 1fr; }
  .proof-grid div { min-height: auto; }
  .quote-grid { gap: 34px; }
  .quote-form { padding: 22px; border-radius: 16px; }
  .form-header { display: block; }
  .form-header p { text-align: left; max-width: 100%; margin-top: 10px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .service-card, .included-card, .review-card, .step, .google-summary-card, .google-widget-slot { padding: 24px; }
  .service-card, .step { min-height: auto; }
  .conversion-band { padding: 46px 0; }
  .luxury-photo { min-height: 360px; }
  .price-cards { padding: 24px; }
  .price-row { display: grid; gap: 2px; }
  .price-row strong { white-space: normal; }
  .mobile-sticky { display: grid; }
  .site-footer { padding-bottom: 118px; }
  .contact-dialog { padding: 28px 22px; }

  .google-card-actions .btn, .google-widget-slot .btn { width: 100%; }
  .google-map-frame, .google-map-frame iframe { height: 430px; min-height: 430px; }
  .google-embed-header { align-items: flex-start; }
}

@media (max-width: 420px) {
  .btn { min-height: 52px; padding: 0 18px; }
  .brand-mark { padding: 7px 10px; }
  .hero { min-height: 660px; }
  .hero-note { gap: 8px; }
}

/* Luxury black theme + Japanese standards positioning */
:root {
  --ink: #f7f0e4;
  --graphite: #080807;
  --graphite-2: #11100d;
  --muted: #c5b9a8;
  --muted-dark: #a99b88;
  --porcelain: #090907;
  --warm-white: #0d0c0a;
  --ivory: #14110d;
  --linen: #261f17;
  --mist: #11130f;
  --champagne: #d4b46f;
  --champagne-light: #f0d79a;
  --champagne-dark: #c8a65f;
  --sage: #7c877d;
  --sage-dark: #171d19;
  --white: #fffaf0;
  --line: rgba(240, 215, 154, 0.16);
  --line-gold: rgba(240, 215, 154, 0.26);
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.5);
  --shadow-soft: 0 24px 58px rgba(0, 0, 0, 0.36);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(212, 180, 111, 0.13), transparent 34rem),
    radial-gradient(circle at 92% 18%, rgba(255, 250, 240, 0.055), transparent 28rem),
    linear-gradient(180deg, #080807 0, #0d0c0a 520px, #080807 100%);
}

p { color: var(--muted); }
.eyebrow { color: var(--champagne-light); }

.site-header {
  background: rgba(8, 8, 7, 0.78);
  border-bottom-color: rgba(240, 215, 154, 0.12);
}
.site-header.is-scrolled {
  background: rgba(8, 8, 7, 0.94);
  border-bottom-color: rgba(240, 215, 154, 0.2);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}
.brand-mark {
  background: rgba(240, 215, 154, 0.12);
  color: var(--champagne-light);
  border: 1px solid rgba(240, 215, 154, 0.24);
}
.brand-text,
.text-link,
.desktop-nav a,
.mobile-menu a { color: var(--ink); }
.desktop-nav { color: rgba(247, 240, 228, 0.68); }
.text-link:hover,
.desktop-nav a:hover { color: var(--champagne-light); }
.mobile-menu {
  background: rgba(8, 8, 7, 0.98);
  border-top-color: rgba(240, 215, 154, 0.15);
}
.mobile-menu-toggle {
  background: rgba(255, 250, 240, 0.08);
  border-color: rgba(240, 215, 154, 0.24);
}
.mobile-menu-toggle span { background: var(--ink); }

.btn-dark {
  background: linear-gradient(180deg, #fff4d3, var(--champagne));
  color: #090907;
  border-color: rgba(240, 215, 154, 0.36);
}
.btn-gold {
  background: linear-gradient(180deg, #f5dda0, #d1ae66);
  color: #080807;
  border-color: rgba(255, 244, 211, 0.38);
}
.btn-outline {
  background: rgba(255, 250, 240, 0.06);
  border-color: rgba(240, 215, 154, 0.28);
  color: var(--ink);
}
.btn-outline.light {
  background: rgba(8, 8, 7, 0.42);
  border-color: rgba(255, 250, 240, 0.32);
  color: var(--white);
}
.btn:hover { box-shadow: 0 18px 38px rgba(0, 0, 0, 0.38); }

.hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 46%, rgba(0, 0, 0, 0.26) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.1)),
    url("assets/hero-clean-suite.jpg") center / cover no-repeat;
}
.hero::after {
  background: linear-gradient(180deg, rgba(8, 8, 7, 0), var(--porcelain));
}
.hero .eyebrow { color: var(--champagne-light); }
.hero-subtitle { color: rgba(255, 250, 240, 0.86); }
.hero-note span {
  border-color: rgba(240, 215, 154, 0.28);
  background: rgba(8, 8, 7, 0.44);
  color: rgba(255, 250, 240, 0.88);
}

.proof-strip,
.quote-section,
.services,
.included,
.reviews,
.how,
.faq,
.legal-main {
  background: var(--porcelain);
}
.proof-strip { border-top: 1px solid rgba(240, 215, 154, 0.08); border-bottom-color: rgba(240, 215, 154, 0.14); }
.proof-grid div { border-left-color: rgba(240, 215, 154, 0.32); }
.proof-grid strong,
.section-heading h2,
.section-intro h2,
.service-card h3,
.included-card h3,
.step h3,
.review-card blockquote,
.google-summary-card h3,
.google-widget-slot h3,
.quote-trust-card strong,
.form-header h3,
.price-row strong,
.legal-shell h1,
.legal-shell h2,
.final-card h2 { color: var(--ink); }
.proof-grid span,
.section-intro p,
.section-heading p,
.service-card p,
.step p,
.included-card li,
.legal-shell p,
.legal-shell li { color: var(--muted); }

.quote-section {
  background:
    radial-gradient(circle at 85% 15%, rgba(212, 180, 111, 0.10), transparent 26rem),
    linear-gradient(180deg, #090907, #12100c);
}
.quote-form,
.quote-trust-card,
.service-card,
.included-card,
.step,
details,
.review-card,
.google-summary-card,
.google-embed-card,
.google-widget-slot,
.contact-dialog {
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.075), rgba(255, 250, 240, 0.035));
  border-color: rgba(240, 215, 154, 0.18);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
}
.quote-form {
  background: linear-gradient(180deg, rgba(19, 17, 13, 0.96), rgba(11, 10, 8, 0.96));
}
.form-header { border-bottom-color: rgba(240, 215, 154, 0.16); }
.form-header p,
.fine-print,
.field-help,
.optional { color: rgba(197, 185, 168, 0.82); }
label { color: rgba(255, 250, 240, 0.86); }
input,
select,
textarea {
  background: rgba(255, 250, 240, 0.06);
  border-color: rgba(240, 215, 154, 0.18);
  color: var(--ink);
}
input::placeholder,
textarea::placeholder { color: rgba(197, 185, 168, 0.58); }
select option { background: #11100d; color: var(--ink); }
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(240, 215, 154, 0.58);
  box-shadow: 0 0 0 4px rgba(212, 180, 111, 0.16);
}
.contact-pill {
  background: rgba(255, 250, 240, 0.06);
  border-color: rgba(240, 215, 154, 0.24);
  color: var(--champagne-light);
}
.contact-pill-google {
  background: rgba(240, 215, 154, 0.14);
  border-color: rgba(240, 215, 154, 0.26);
  color: var(--ink);
}

.conversion-band {
  background: linear-gradient(180deg, #11100d, #080807);
  border-top-color: rgba(240, 215, 154, 0.14);
  border-bottom-color: rgba(240, 215, 154, 0.14);
}
.conversion-band-dark,
.difference,
.final-cta,
.site-footer,
.price-cards {
  background:
    radial-gradient(circle at top left, rgba(212, 180, 111, 0.10), transparent 24rem),
    linear-gradient(180deg, #11100d, #070706);
  border-color: rgba(240, 215, 154, 0.15);
}
.difference p,
.conversion-band-dark p,
.final-card p,
.site-footer p,
.site-footer a { color: rgba(255, 250, 240, 0.70); }
.luxury-photo {
  border: 1px solid rgba(240, 215, 154, 0.22);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.52);
}
.luxury-photo::after {
  content: "Japanese standards checklist";
  background: rgba(8, 8, 7, 0.64);
  border-color: rgba(240, 215, 154, 0.28);
  color: var(--champagne-light);
}
.check-list li { color: rgba(255, 250, 240, 0.84); }
.check-list li::before,
.included-card li::before { background: var(--champagne-light); }

.price-row { border-bottom-color: rgba(240, 215, 154, 0.15); }
.price-row span { color: rgba(255, 250, 240, 0.76); }
.price-row.muted span,
.price-row.muted strong { color: rgba(255, 250, 240, 0.56); }
.pricing-note { color: rgba(197, 185, 168, 0.86); }

.google-stars span { color: var(--champagne-light); }
.google-card-topline,
.google-embed-header span,
.google-embed-note,
.google-proof-list li,
.copy-feedback { color: var(--muted); }
.google-icon {
  background: rgba(240, 215, 154, 0.12);
  color: var(--champagne-light);
  border-color: rgba(240, 215, 154, 0.22);
}
.google-live-dot {
  background: rgba(212, 180, 111, 0.14);
  color: var(--champagne-light);
}
.google-map-frame { border-color: rgba(240, 215, 154, 0.18); background: #0b0a08; }
.google-widget-slot { background: rgba(255, 250, 240, 0.05); }
.mini-link,
.google-profile-link,
.legal-nav a { color: var(--champagne-light); }

.faq-list details { background: rgba(255, 250, 240, 0.055); }
summary { color: var(--ink); }
.site-footer { border-top: 1px solid rgba(240, 215, 154, 0.14); }
.footer-brand .brand-mark { background: rgba(240, 215, 154, 0.15); color: var(--champagne-light); }
.footer-brand .brand-text { color: var(--ink); }
.mobile-sticky {
  background: rgba(8, 8, 7, 0.96);
  border-color: rgba(240, 215, 154, 0.22);
}
.mobile-sticky a { color: var(--ink); }
.mobile-sticky a:last-child { color: var(--champagne-light); }

.contact-dialog::backdrop { background: rgba(0, 0, 0, 0.72); }
.dialog-close { background: rgba(255, 250, 240, 0.08); color: var(--ink); border-color: rgba(240, 215, 154, 0.22); }

@media (max-width: 720px) {
  .hero::before { background: rgba(0, 0, 0, 0.36); }
  .hero { background-position: 66% center; }
}

/* Form readability fix for the luxury black theme */
.quote-form input,
.quote-form select,
.quote-form textarea {
  color: #fffaf0;
  -webkit-text-fill-color: #fffaf0;
  caret-color: var(--champagne-light);
  background: rgba(255, 250, 240, 0.075);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255, 250, 240, 0.50);
  -webkit-text-fill-color: rgba(255, 250, 240, 0.50);
  opacity: 1;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  background: rgba(255, 250, 240, 0.10);
  color: #fffaf0;
  -webkit-text-fill-color: #fffaf0;
}

.quote-form input:-webkit-autofill,
.quote-form input:-webkit-autofill:hover,
.quote-form input:-webkit-autofill:focus,
.quote-form textarea:-webkit-autofill,
.quote-form textarea:-webkit-autofill:hover,
.quote-form textarea:-webkit-autofill:focus,
.quote-form select:-webkit-autofill,
.quote-form select:-webkit-autofill:hover,
.quote-form select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #15120e inset !important;
  -webkit-text-fill-color: #fffaf0 !important;
  caret-color: #fffaf0;
  border-color: rgba(240, 215, 154, 0.42);
  transition: background-color 9999s ease-in-out 0s;
}

.quote-form select option {
  background: #11100d;
  color: #fffaf0;
  -webkit-text-fill-color: #fffaf0;
}

.quote-form input[type="date"] {
  color-scheme: dark;
}
