/* Cinderella House Cleaning — cream / blush / charcoal / soft gold */
:root {
  --cream: #F7F0E8;
  --cream-deep: #EFE4D6;
  --blush: #D9899C;
  --blush-deep: #C46B82;
  --blush-soft: #F3D6DE;
  --charcoal: #2A2422;
  --charcoal-soft: #4A423E;
  --muted: #7A716A;
  --gold: #C4A35A;
  --gold-soft: #E8D5A3;
  --sky: #8EC5D8;
  --white: #FFFCFA;
  --line: rgba(42, 36, 34, 0.1);
  --shadow: 0 18px 50px rgba(42, 36, 34, 0.1);
  --radius: 18px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blush-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--charcoal); }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.website-field { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--charcoal); color: #fff; padding: 0.75rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

.container {
  width: min(1240px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(196, 107, 130, 0.35);
}
.btn-primary:hover { color: #fff; box-shadow: 0 12px 28px rgba(196, 107, 130, 0.45); }
.btn-outline {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: #fff; }
.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.btn-outline-light:hover { background: #fff; color: var(--charcoal); }
.btn-ghost {
  background: transparent;
  color: var(--charcoal-soft);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--cream-deep); color: var(--charcoal); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 1.6rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 240, 232, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: var(--header-h);
  position: relative;
}
.brand {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none; color: inherit; margin-right: auto;
}
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
  background: linear-gradient(120deg, #B8953F, #E0C57A, #B8953F);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-sub {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  font-weight: 600;
}
.brand-sub { display: flex; align-items: baseline; gap: .4rem; }
.brand-location { font-size: .82em; opacity: .78; }
.brand-location::before { content: "· "; }
.nav-desktop { display: none; gap: 1.25rem; }
.nav-desktop a {
  text-decoration: none;
  color: var(--charcoal-soft);
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-desktop a:hover { color: var(--blush-deep); }
.header-actions { display: none; gap: 0.5rem; }
.nav-toggle {
  width: 44px; height: 44px;
  border: 0; background: transparent;
  display: grid; place-content: center; gap: 6px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--charcoal); border-radius: 2px;
  transition: 0.2s;
}
.nav-drawer {
  display: flex; flex-direction: column; gap: 0.75rem;
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.nav-drawer a:not(.btn) {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 500;
  padding: 0.5rem 0;
}
.nav-drawer[hidden] { display: none; }

@media (min-width: 880px) {
  .nav-desktop, .header-actions { display: flex; }
  .nav-toggle, .nav-drawer { display: none !important; }
  .header-inner { display: grid; grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr); }
  .brand { margin-right: 0; justify-self: start; }
  .nav-desktop { justify-self: center; }
  .header-actions { justify-self: end; }
}

@media (max-width: 879px) {
  .header-inner { justify-content: center; }
  .brand { margin-right: 0; text-align: center; }
  .nav-toggle { position: absolute; right: 0; }
}

/* Hero */
.hero {
  padding: 2rem 0 3.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(232, 213, 163, 0.45), transparent),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(243, 214, 222, 0.5), transparent),
    var(--cream);
}
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blush-deep);
  margin-bottom: 0.75rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 7vw, 3.75rem);
  margin-bottom: 0.75rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--blush-deep);
}
.hero-brandline { color: var(--charcoal-soft); letter-spacing: .16em; }
.hero-promise {
  margin: -.15rem 0 .7rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--blush-deep);
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--charcoal-soft);
  max-width: 34rem;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin: 1.35rem 0 .55rem;
}
.hero-note { margin: 0 0 1.35rem; color: var(--muted); font-size: .82rem; }
.trust-chips {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.trust-chips li {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  box-shadow: 0 4px 12px rgba(42,36,34,0.04);
}
.chip-icon { color: var(--gold); font-size: 0.85rem; }

.hero-visual { position: relative; justify-self: center; width: min(100%, 380px); }
.hero-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream-deep);
}
.hero-caption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  flex-direction: column;
  gap: .1rem;
  padding: 2.8rem clamp(1.15rem, 3vw, 2rem) clamp(1rem, 2vw, 1.5rem);
  color: var(--charcoal);
  background: linear-gradient(180deg, transparent, rgba(255,252,250,.93) 58%, rgba(255,252,250,.98));
}
.hero-caption strong {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  line-height: 1;
}
.hero-caption span { color: var(--charcoal-soft); font-size: .82rem; letter-spacing: .025em; }
.hero-frame img {
  width: 100%;
  aspect-ratio: 3/4.4;
  object-fit: cover;
  object-position: center top;
}
.hero-badge {
  position: absolute; left: 1rem; right: 1rem; bottom: 1rem;
  background: rgba(255, 252, 250, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  display: flex; flex-direction: column;
  border: 1px solid rgba(255,255,255,0.8);
}
.hero-badge strong { font-size: 0.95rem; }
.hero-badge span { font-size: 0.8rem; color: var(--muted); }

.sparkle {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0.85;
  animation: twinkle 3s ease-in-out infinite;
}
.s1 { top: 8%; right: -4%; animation-delay: 0s; }
.s2 { top: 42%; left: -6%; width: 10px; height: 10px; background: var(--sky); animation-delay: 1s; }
.s3 { bottom: 18%; right: 4%; width: 12px; height: 12px; animation-delay: 1.8s; }
@keyframes twinkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
  50% { transform: scale(1.25) rotate(20deg); opacity: 1; }
}

@media (min-width: 900px) {
  .hero { padding: 3rem 0 4.5rem; }
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; }
  .hero-visual { width: 100%; max-width: 420px; justify-self: end; }
}

/* Sections */
.section-head { text-align: center; max-width: 560px; margin: 0 auto 2.5rem; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.section-lede { color: var(--charcoal-soft); margin: 0; }

/* Quote */
.quote-section {
  padding: 4rem 0;
  background: var(--white);
  border-block: 1px solid var(--line);
}
.quote-layout {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}
@media (min-width: 960px) {
  .quote-layout {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
  }
  .price-card { position: sticky; top: calc(var(--header-h) + 1rem); }
}

.quote-form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.35rem;
  display: grid;
  gap: 1.35rem;
}
@media (min-width: 600px) {
  .quote-form { padding: 1.75rem; }
}

.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
  color: var(--charcoal);
}
.optional { font-weight: 400; color: var(--muted); font-size: 0.8rem; }
.field-row {
  display: flex; justify-content: space-between; align-items: baseline;
}
.field-value {
  font-weight: 700;
  color: var(--blush-deep);
  font-variant-numeric: tabular-nums;
}
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--blush);
  box-shadow: 0 0 0 3px rgba(217, 137, 156, 0.2);
}
.field textarea { resize: vertical; min-height: 88px; }

input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  background: linear-gradient(90deg, var(--blush-soft), var(--gold-soft));
  border-radius: 999px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blush-deep);
  box-shadow: 0 4px 10px rgba(42,36,34,0.15);
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blush-deep);
  cursor: pointer;
}
.range-ends {
  display: flex; justify-content: space-between;
  font-size: 0.75rem; color: var(--muted); margin-top: 0.35rem;
}

.seg-row { display: grid; gap: 0.85rem; }
@media (min-width: 520px) {
  .seg-row { grid-template-columns: 1fr 1fr; }
}
.seg-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.seg-btns { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.seg-btns button {
  flex: 1;
  min-width: 44px;
  border: 1.5px solid var(--line);
  background: var(--white);
  border-radius: 10px;
  padding: 0.65rem 0.5rem;
  font-weight: 600;
  color: var(--charcoal-soft);
  transition: 0.15s;
}
.seg-btns button.active,
.seg-btns button:hover {
  border-color: var(--blush-deep);
  background: var(--blush-soft);
  color: var(--charcoal);
}

.card-options { display: grid; gap: 0.6rem; }
.card-opt {
  text-align: left;
  border: 1.5px solid var(--line);
  background: var(--white);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  display: grid; gap: 0.2rem;
  transition: 0.15s;
}
.card-opt strong { font-size: 1rem; }
.card-opt span { font-size: 0.82rem; color: var(--muted); }
.card-opt.active,
.card-opt:hover {
  border-color: var(--blush-deep);
  box-shadow: 0 0 0 3px rgba(217, 137, 156, 0.15);
}
.card-opt.active { background: linear-gradient(180deg, #fff, var(--blush-soft)); }

.freq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.freq-opt {
  text-align: left;
  border: 1.5px solid var(--line);
  background: var(--white);
  border-radius: 14px;
  padding: 0.85rem;
  display: grid; gap: 0.25rem;
  transition: 0.15s;
}
.freq-opt strong { font-size: 0.92rem; }
.freq-opt span { font-size: 0.78rem; color: var(--muted); }
.freq-opt .tag {
  display: inline-block;
  width: fit-content;
  background: var(--gold-soft);
  color: #6B5420;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-size: 0.72rem;
}
.freq-opt.active {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fff, #FBF5E6);
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.2);
}

.ongoing-upgrade {
  margin-top: .7rem;
  padding: .72rem .85rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.58);
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  cursor: pointer;
}
.ongoing-upgrade[hidden] { display: none; }
.ongoing-upgrade input { margin-top: .2rem; accent-color: var(--blush-deep); }
.ongoing-upgrade span { display: grid; gap: .12rem; }
.ongoing-upgrade strong { font-size: .86rem; }
.ongoing-upgrade small { color: var(--muted); font-size: .76rem; }

.move-plan[hidden] { display: none; }
.move-plan-note {
  margin: 0;
  padding: .8rem .9rem;
  border-radius: 12px;
  background: rgba(255,255,255,.62);
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.5;
}
.move-plan-note strong { color: var(--ink); }

.intro-offer[hidden] { display: none; }
.intro-offer {
  margin: .75rem 0 1rem; padding: .8rem .9rem;
  border: 1.5px solid var(--gold); border-radius: 13px;
  background: linear-gradient(105deg, #fffaf0, #fff);
  display: grid; gap: .45rem;
}
.intro-offer-button { width: 100%; border: 0; border-radius: 999px; padding: .78rem 1rem; background: var(--blush-deep); color: #fff; font-weight: 800; font-size: .94rem; cursor: pointer; box-shadow: 0 8px 18px rgba(183,95,119,.2); }
.intro-offer-button:hover { background: var(--blush); }
.intro-offer p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.35; text-align: center; }

.addons { display: grid; gap: 0.5rem; }
.addon { display: block; cursor: pointer; }
.addon input { position: absolute; opacity: 0; pointer-events: none; }
.addon-box {
  display: flex; justify-content: space-between; align-items: center;
  border: 1.5px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease, transform .12s ease;
}
.addon-box em { font-style: normal; font-weight: 700; color: var(--blush-deep); }
.addon input:checked + .addon-box {
  border-color: var(--blush-deep);
  background: var(--blush-soft);
  box-shadow: inset 4px 0 0 var(--blush-deep);
}
.addon input:not(:checked) + .addon-box {
  border-color: var(--line);
  background: var(--white);
  box-shadow: none;
}
@media (hover: hover) and (pointer: fine) {
  .addon:hover .addon-box {
    border-color: var(--blush-deep);
    background: var(--blush-soft);
  }
}
.addon:active .addon-box { transform: scale(.995); }
.addon input:focus-visible + .addon-box {
  outline: 2px solid var(--blush-deep);
  outline-offset: 2px;
}

/* Price card */
.price-card {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(160deg, var(--charcoal) 0%, #3D332F 100%);
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.price-card-inner { padding: 1.6rem 1.5rem 1.5rem; position: relative; z-index: 1; }
.price-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 0.5rem;
  font-weight: 600;
}
.price-row {
  display: flex; align-items: baseline; gap: 0.75rem;
  margin-bottom: 1rem;
  min-height: 3.2rem;
}
.price-now {
  font-family: var(--display);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-was {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
}
.future-price {
  display: grid; gap: .45rem;
  margin: -.15rem 0 1rem; padding: .75rem .85rem;
  border-radius: 12px; background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.72); font-size: .82rem;
}
.future-price[hidden] { display: none; }
.future-price-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.future-price strong { color: var(--gold-soft); font-size: 1rem; white-space: nowrap; }
.future-price-math { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .2rem 1rem; font-size: .74rem; }
.future-price-math span:last-child { color: #fff; font-weight: 700; }
.future-price-math { display: none; }
.price-breakdown {
  display: grid; gap: 0.45rem;
  padding: 1rem 0;
  border-block: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
}
.price-breakdown li {
  display: flex; justify-content: space-between; gap: 1rem;
  color: rgba(255,255,255,0.75);
}
.price-breakdown li span:last-child {
  color: #fff; font-weight: 600; font-variant-numeric: tabular-nums;
}
.price-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin: 0 0 1.15rem;
}
.price-actions { display: grid; gap: 0.55rem; }
.price-card .btn-outline {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.price-card .btn-outline:hover {
  background: #fff; color: var(--charcoal);
}
.price-card .btn-ghost { color: rgba(255,255,255,0.7); }
.price-card .btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }

.magic-dust {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
}

.price-card.pulse .price-now {
  animation: pricePop 0.45s ease;
}
@keyframes pricePop {
  0% { transform: scale(1); }
  40% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* About — pink collage */
.about { padding: 0; }
.about-blush {
  padding: 4.5rem 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 30%, rgba(243, 214, 222, 0.95), transparent 55%),
    radial-gradient(ellipse 55% 50% at 90% 70%, rgba(232, 213, 163, 0.4), transparent 50%),
    linear-gradient(165deg, #FBE8EE 0%, var(--cream) 45%, #F3D6DE 100%);
}
.about-grid {
  display: grid; gap: 2.75rem; align-items: center;
}
@media (min-width: 960px) {
  .about-grid { grid-template-columns: 1.15fr 0.95fr; gap: 3.5rem; }
}

.about-collage {
  position: relative;
  min-height: 420px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1.15fr 0.75fr;
  gap: 0.85rem;
  padding: 0.5rem 0.25rem 1.5rem;
}
.collage-item {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(196, 107, 130, 0.22), 0 4px 12px rgba(42,36,34,0.08);
  border: 3px solid rgba(255,252,250,0.85);
  background: var(--blush-soft);
}
.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.collage-hero {
  grid-column: 1;
  grid-row: 1 / 3;
  transform: rotate(-2.5deg);
  z-index: 2;
  min-height: 360px;
}
.collage-hero img { aspect-ratio: 3/4.2; min-height: 100%; }
.collage-mid {
  grid-column: 2;
  grid-row: 1;
  transform: rotate(3deg) translateY(0.5rem);
  z-index: 3;
}
.collage-mid img { aspect-ratio: 4/5; }
.collage-wide {
  grid-column: 2;
  grid-row: 2;
  transform: rotate(-1.5deg);
  z-index: 2;
}
.collage-wide img { aspect-ratio: 16/10; }
.collage-accent {
  position: absolute;
  width: min(38%, 180px);
  bottom: -0.25rem;
  left: 42%;
  transform: rotate(6deg);
  z-index: 4;
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(42,36,34,0.18);
}
.collage-accent img { aspect-ratio: 3/4; }
.collage-badge {
  position: absolute;
  z-index: 5;
  left: 0.75rem;
  bottom: 0.25rem;
  background: rgba(255, 252, 250, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 8px 24px rgba(196, 107, 130, 0.2);
  display: flex;
  flex-direction: column;
  max-width: 220px;
}
.collage-badge strong { font-size: 0.95rem; color: var(--charcoal); }
.collage-badge span { font-size: 0.78rem; color: var(--muted); }

@media (max-width: 700px) {
  .about-collage {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 0 0 1rem;
  }
  .collage-hero,
  .collage-mid,
  .collage-wide {
    position: relative;
    grid-column: auto;
    grid-row: auto;
    transform: none;
    min-height: 0;
  }
  .collage-hero { transform: rotate(-1.5deg); }
  .collage-mid { transform: rotate(2deg); margin-inline: 1rem; }
  .collage-wide { transform: rotate(-1deg); }
  .collage-hero img,
  .collage-mid img { aspect-ratio: 3/4; max-height: 420px; width: 100%; }
  .collage-wide img { aspect-ratio: 16/10; max-height: 220px; }
  .collage-accent {
    position: relative;
    width: min(55%, 200px);
    left: auto;
    bottom: auto;
    align-self: flex-end;
    margin-top: -3rem;
    margin-right: 0.5rem;
    transform: rotate(5deg);
  }
  .collage-badge {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: -0.5rem;
    align-self: flex-start;
  }
}

.about-copy h2 { font-size: clamp(1.85rem, 3.5vw, 2.5rem); }
.about-copy p { color: var(--charcoal-soft); }
.about-points {
  display: grid; gap: 0.55rem;
  margin: 1.25rem 0 1.5rem;
}
.about-points li {
  padding-left: 1.5rem;
  position: relative;
  font-weight: 500;
}
.about-points li::before {
  content: "✦";
  position: absolute; left: 0;
  color: var(--gold);
  font-size: 0.85rem;
}
.about-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Gallery */
.gallery {
  padding: 0 0 1rem;
}
.gallery-grid {
  display: grid; gap: 0.85rem;
}
@media (min-width: 700px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
.gallery figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(42,36,34,0.08);
}
.gallery img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.gallery-caption {
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--muted);
  margin: 1.25rem auto 0;
}

/* Included */
.included {
  padding: 4rem 0;
  background: var(--white);
  border-block: 1px solid var(--line);
}
.include-grid {
  display: grid; gap: 1rem;
}
@media (min-width: 800px) {
  .include-grid { grid-template-columns: repeat(3, 1fr); }
}
.include-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
}
.include-card.featured {
  background: linear-gradient(180deg, #fff, var(--blush-soft));
  border-color: var(--blush);
  box-shadow: 0 12px 32px rgba(217, 137, 156, 0.18);
}
.ribbon {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--blush-deep);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}
.include-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.15rem;
}
.include-tag {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.include-card ul { display: grid; gap: 0.55rem; }
.include-card li {
  padding-left: 1.15rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--charcoal-soft);
}
.include-card li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.deep-details {
  margin-top: 1.2rem;
  border-top: 1px solid rgba(217, 137, 156, 0.35);
  padding-top: 0.9rem;
}
.deep-details summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.9rem;
}
.deep-details summary::-webkit-details-marker { display: none; }
.deep-details summary::after {
  content: "+";
  color: var(--blush-deep);
  font-size: 1.15rem;
  font-weight: 500;
}
.deep-details[open] summary::after { content: "–"; }
.deep-checklist-grid {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
}
.deep-checklist-grid h4 {
  font-family: var(--font);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blush-deep);
  margin: 0 0 0.55rem;
}
.deep-checklist-grid ul { gap: 0.42rem; }
.deep-checklist-grid li { font-size: 0.86rem; }
.service-boundaries {
  margin-top: 1.25rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--cream), #fff);
}
.service-boundaries h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  margin: 0.15rem 0 1rem;
}
.service-boundaries ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.service-boundaries li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 0.52rem 0.75rem;
  color: var(--charcoal-soft);
  font-size: 0.84rem;
}
.service-boundaries > p:last-child {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}
@media (min-width: 800px) {
  .include-card.featured:has(.deep-details[open]) { grid-column: span 2; }
  .deep-checklist-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .deep-checklist-grid section:last-child { grid-column: 1 / -1; }
  .service-boundaries {
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) 1.6fr;
    gap: 0.9rem 1.5rem;
    align-items: start;
  }
  .service-boundaries > p:last-child { grid-column: 1 / -1; }
}

/* FAQ */
.faq { padding: 4rem 0; }
.faq-wrap { max-width: 720px; }
.faq-list { display: grid; gap: 0.65rem; }
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.15rem 1.1rem;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--blush-deep);
  font-weight: 400;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p {
  color: var(--charcoal-soft);
  padding-bottom: 1rem;
  margin: 0;
}

/* Final CTA */
.final-cta {
  padding: 4rem 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(196, 163, 90, 0.25), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(217, 137, 156, 0.3), transparent 45%),
    var(--charcoal);
  color: #fff;
  text-align: center;
}
.final-inner h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin-bottom: 0.5rem;
}
.final-inner p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.25rem;
}
.final-cta .hero-ctas { justify-content: center; }

/* Footer */
.site-footer {
  background: #1F1A18;
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid; gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand {
  display: flex; gap: 0.85rem; align-items: center;
}
.footer-brand img { width: 56px; height: 56px; }
.footer-brand strong {
  display: block;
  color: #fff;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
}
.footer-brand p { margin: 0.15rem 0 0; font-size: 0.82rem; }
.footer-col { display: grid; gap: 0.45rem; align-content: start; }
.footer-col h3 {
  font-family: var(--font);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 0.35rem;
}
.footer-col a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 1.25rem;
  display: grid; gap: 0.35rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom p { margin: 0; }
.fine { font-size: 0.72rem; }

/* Modal */
.modal[hidden] { display: none; }
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: end center;
}
@media (min-width: 600px) {
  .modal { place-items: center; padding: 1rem; }
}
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(42, 36, 34, 0.55);
  backdrop-filter: blur(4px);
}
.modal-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  background: var(--cream);
  border-radius: 24px 24px 0 0;
  padding: 1.75rem 1.35rem 1.5rem;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
}
@media (min-width: 600px) {
  .modal-panel {
    border-radius: 24px;
    padding: 2rem;
  }
}
.modal-close {
  position: absolute; top: 0.85rem; right: 0.85rem;
  width: 40px; height: 40px;
  border: 0; border-radius: 50%;
  background: var(--cream-deep);
  font-size: 1.4rem;
  color: var(--charcoal-soft);
  line-height: 1;
}
.modal-panel h2 { font-size: 1.75rem; padding-right: 2rem; }
.modal-lede { color: var(--muted); margin-top: -0.25rem; }
.field-2 {
  display: grid; gap: 0.85rem;
}
@media (min-width: 480px) {
  .field-2 { grid-template-columns: 1fr 1fr; }
}
.modal-quote-chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  margin: 0.5rem 0 1rem;
}
.modal-actions { display: grid; gap: 0.5rem; }
.success-mark {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--blush-soft);
  color: var(--blush-deep);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
#bookSuccessView h2 { margin-bottom: 0.5rem; }

body.modal-open { overflow: hidden; }


/* Address autocomplete + magic reveal */
.address-wrap { position: relative; }
.address-suggestions {
  position: absolute;
  left: 0; right: 0; top: calc(100% + 4px);
  z-index: 20;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  max-height: 280px;
  overflow: auto;
  padding: 0.35rem;
}
.address-suggestions[hidden] { display: none; }
.suggest-item {
  display: grid;
  gap: 0.15rem;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  color: var(--charcoal);
  cursor: pointer;
}
.suggest-item:hover,
.suggest-item[aria-selected="true"] {
  background: var(--blush-soft);
}
.suggest-item strong {
  font-size: 0.95rem;
  font-weight: 600;
}
.suggest-item span {
  font-size: 0.78rem;
  color: var(--muted);
}
.linkish {
  display: inline;
  border: 0;
  background: none;
  padding: 0;
  color: var(--blush-deep);
  font: inherit;
  font-size: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.linkish:hover { color: var(--charcoal); }
.field-hint {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}
.field-status {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--blush-deep);
  min-height: 1.2em;
}
.field-status.is-error { color: #9A4A3A; }
.field-status.is-ok { color: #3D6B4F; }

.magic-reveal {
  position: relative;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(243,214,222,0.55), rgba(232,213,163,0.35));
  border: 1px solid rgba(217, 137, 156, 0.25);
  padding: 1rem;
  overflow: hidden;
}
.magic-reveal[hidden] { display: none; }
.magic-phrase {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
}
.magic-phrase.play {
  animation: phrasePop 1.15s ease forwards;
}
.magic-phrase-text {
  font-family: var(--display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  font-style: italic;
  color: var(--blush-deep);
  text-shadow: 0 2px 12px rgba(255,252,250,0.9);
  letter-spacing: 0.02em;
}
.magic-burst {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@keyframes phrasePop {
  0% { opacity: 0; transform: scale(0.7); }
  25% { opacity: 1; transform: scale(1.08); }
  70% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.05); }
}

.property-chips {
  display: grid;
  gap: 0.65rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 560px) {
  .property-chips { grid-template-columns: 1.2fr 0.9fr 0.9fr; }
}
.prop-chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  display: grid;
  gap: 0.2rem;
}
.prop-chip-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.prop-chip strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  word-break: break-word;
}
.sqft-chip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.sqft-chip-row strong { color: var(--blush-deep); }
.chip-tweak {
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--charcoal-soft);
}
.chip-tweak:hover,
.chip-tweak[aria-expanded="true"] {
  border-color: var(--blush);
  background: var(--blush-soft);
  color: var(--charcoal);
}
.sqft-manual {
  margin-top: 0.55rem;
  padding-top: 0.35rem;
}
.sqft-manual[hidden] { display: none; }

.magic-reveal.revealed .property-chips {
  animation: chipIn 0.5s ease 0.35s both;
}
@keyframes chipIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.beds-baths-field.is-estimated .optional {
  color: var(--blush-deep);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* Page routing: one shared document keeps the calculator fast while each clean
   URL presents a focused page. */
.route-home .quote-section,
.route-home .about,
.route-home .included,
.route-home .faq,
.route-home .reviews,
.route-estimate .hero,
.route-estimate .about,
.route-estimate .gallery,
.route-estimate .included,
.route-estimate .faq,
.route-estimate .reviews,
.route-estimate .final-cta,
.route-about .hero,
.route-about .quote-section,
.route-about .included,
.route-about .faq,
.route-about .reviews,
.route-about .final-cta,
.route-services .hero,
.route-services .quote-section,
.route-services .about,
.route-services .gallery,
.route-services .faq,
.route-services .reviews,
.route-services .final-cta,
.route-faq .hero,
.route-faq .quote-section,
.route-faq .about,
.route-faq .gallery,
.route-faq .included,
.route-faq .reviews,
.route-faq .final-cta,
.route-reviews .hero,
.route-reviews .quote-section,
.route-reviews .about,
.route-reviews .gallery,
.route-reviews .included,
.route-reviews .faq,
.route-reviews .final-cta,
.route-home .careers,
.route-estimate .careers,
.route-about .careers,
.route-services .careers,
.route-faq .careers,
.route-reviews .careers,
.route-home .privacy,
.route-estimate .privacy,
.route-about .privacy,
.route-services .privacy,
.route-faq .privacy,
.route-reviews .privacy,
.route-careers .privacy,
.route-careers .hero,
.route-careers .quote-section,
.route-careers .about,
.route-careers .gallery,
.route-careers .included,
.route-careers .faq,
.route-careers .reviews,
.route-careers .final-cta,
.route-privacy .hero,
.route-privacy .quote-section,
.route-privacy .about,
.route-privacy .gallery,
.route-privacy .included,
.route-privacy .faq,
.route-privacy .reviews,
.route-privacy .careers,
.route-privacy .final-cta { display: none; }

.route-home .hero { min-height: min(760px, calc(100vh - var(--header-h))); display: grid; align-items: center; }
.route-home .gallery { padding-top: 4rem; }
.route-estimate .quote-section,
.route-about .about,
.route-services .included,
.route-faq .faq,
.route-reviews .reviews { min-height: calc(100vh - var(--header-h) - 220px); }

.route-careers .careers { min-height: calc(100vh - var(--header-h) - 220px); }
.route-privacy .privacy { min-height: calc(100vh - var(--header-h) - 220px); }
.careers {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(196, 163, 90, .16), transparent 30%),
    linear-gradient(145deg, var(--cream), var(--blush-soft));
}
.careers-language { display: flex; justify-content: flex-end; align-items: center; gap: .7rem; margin: 0 0 1.25rem; color: var(--charcoal-soft); font-size: .85rem; }
.careers-language button { display: inline-flex; align-items: center; gap: .35rem; min-height: 42px; padding: .55rem .9rem; border: 1px solid var(--gold); border-radius: 999px; background: white; color: var(--charcoal); font: inherit; font-weight: 600; cursor: pointer; box-shadow: 0 6px 18px rgba(42,36,34,.07); }
.careers-language button:hover { border-color: var(--blush-deep); color: var(--blush-deep); }
.careers-intro { text-align: center; max-width: 820px; margin: 0 auto 2.25rem; }
.career-callout { position: relative; display: inline-flex; align-items: center; justify-content: center; min-width: min(270px, 82%); margin: 0 auto 1.15rem !important; padding: .58rem 1.35rem .52rem; border: 1px solid var(--gold); outline: 1px solid rgba(196,163,90,.38); outline-offset: 4px; background: var(--charcoal); color: var(--gold-soft) !important; font-size: clamp(.74rem, 1.5vw, .86rem) !important; font-weight: 700; letter-spacing: .16em; line-height: 1.1; text-align: center; text-transform: uppercase; box-shadow: 0 8px 22px rgba(42,36,34,.14); }
.career-callout::before, .career-callout::after { content: "✦"; position: absolute; top: 50%; color: var(--gold); font-size: .72rem; transform: translateY(-50%); }
.career-callout::before { left: -1.15rem; }
.career-callout::after { right: -1.15rem; }
.career-title { position: relative; width: fit-content; max-width: 100% !important; margin: 0 auto .55rem; color: var(--charcoal); font-family: var(--display); font-size: clamp(3rem, 7vw, 5.25rem) !important; font-weight: 600; line-height: .92; letter-spacing: -.025em; text-wrap: balance; }
.career-promise { margin: .8rem auto 1rem !important; color: var(--blush-deep) !important; font-family: var(--display); font-size: clamp(1.45rem, 3.6vw, 2rem) !important; font-style: italic; font-weight: 600; line-height: 1.15; }
.careers-intro-framed { position: relative; padding: clamp(2rem, 5vw, 3.5rem) clamp(1.2rem, 5vw, 4rem); border: 1px solid rgba(196,163,90,.55); border-radius: 34px 34px 18px 18px; background: radial-gradient(circle at 50% 0, rgba(255,255,255,.92), rgba(255,255,255,.56)); box-shadow: inset 0 0 0 7px rgba(255,255,255,.28), 0 18px 50px rgba(42,36,34,.07); }
.careers-intro-framed::before, .careers-intro-framed::after { content: ""; position: absolute; width: 72px; height: 32px; border-color: var(--gold); opacity: .6; }
.careers-intro-framed::before { top: 12px; left: 12px; border-top: 1px solid; border-left: 1px solid; border-radius: 18px 0 0; }
.careers-intro-framed::after { right: 12px; bottom: 12px; border-right: 1px solid; border-bottom: 1px solid; border-radius: 0 0 18px; }
.career-flourish { position: absolute; color: var(--gold); font-size: .8rem; }
.career-flourish-left { left: clamp(1.5rem, 7vw, 4rem); bottom: 1.35rem; }
.career-flourish-right { right: clamp(1.5rem, 7vw, 4rem); top: 1.35rem; }
.careers-intro h2 { font-size: clamp(2.55rem, 6vw, 4.8rem); max-width: 13ch; margin-inline: auto; }
.careers-intro > p { max-width: 42rem; margin-inline: auto; color: var(--charcoal-soft); font-size: 1.08rem; }
.careers-photo { margin: 0 0 clamp(2.25rem, 6vw, 4.5rem); border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); background: var(--white); }
.careers-photo img { display: block; width: 100%; height: clamp(280px, 46vw, 560px); object-fit: cover; object-position: center 48%; }
.careers-photo figcaption { padding: .9rem 1.2rem 1rem; color: var(--charcoal-soft); text-align: center; font-family: var(--display); font-size: 1rem; font-style: italic; }
.careers-layout { display: grid; gap: 2rem; align-items: start; max-width: 1050px; margin-inline: auto; }
.career-details { margin: 0 0 1.25rem; padding: 1.4rem 1.5rem; background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: 20px; }
.career-details .eyebrow { margin-bottom: .35rem; }
.career-details h3 { margin: 0 0 .75rem; font-family: var(--display); font-size: 1.45rem; }
.career-details ul { margin: 0; padding-left: 1.2rem; display: grid; gap: .55rem; color: var(--charcoal-soft); }
.career-check-note { padding-left: 1rem; border-left: 3px solid var(--gold); font-size: .92rem !important; }
.career-form { position: relative; background: var(--white); padding: clamp(1.25rem, 4vw, 2.25rem); border-radius: 24px; box-shadow: var(--shadow); }
.career-form select { width: 100%; min-height: 52px; padding: .8rem .9rem; border: 1px solid var(--line); border-radius: 12px; background: var(--cream); color: var(--charcoal); font: inherit; }
.career-checks { border: 0; padding: 0; margin: 0 0 1.25rem; }
.career-checks legend { margin-bottom: .7rem; font-weight: 600; }
.career-checks label { display: flex; gap: .75rem; align-items: flex-start; padding: .82rem .9rem; margin-bottom: .55rem; border: 1px solid var(--line); border-radius: 13px; background: var(--cream); color: var(--charcoal-soft); line-height: 1.4; cursor: pointer; }
.career-checks label:has(input:checked) { border-color: var(--blush-deep); background: var(--blush-soft); }
.career-checks input { width: 19px; height: 19px; flex: 0 0 auto; margin-top: .08rem; accent-color: var(--blush-deep); }
.career-confirm { display: flex; gap: .7rem; align-items: flex-start; margin: 0 0 1.15rem; color: var(--charcoal-soft); font-size: .9rem; line-height: 1.45; cursor: pointer; }
.career-confirm input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: .12rem; accent-color: var(--blush-deep); }
.career-privacy { margin: .85rem 0 0; color: var(--muted); text-align: center; font-size: .78rem; line-height: 1.45; }

.privacy { padding: clamp(3.5rem, 8vw, 6rem) 0; background: linear-gradient(145deg, var(--cream), #fff); }
.privacy-wrap { max-width: 920px; }
.privacy-head { margin-bottom: 2rem; text-align: center; }
.privacy-head h2 { font-size: clamp(2.8rem, 7vw, 4.8rem); margin-bottom: .25rem; }
.privacy-head > p:last-child { margin: 0; color: var(--muted); font-size: .9rem; }
.privacy-card { padding: clamp(1.4rem, 5vw, 3.25rem); border: 1px solid var(--line); border-radius: 26px; background: var(--white); box-shadow: var(--shadow); }
.privacy-card h3 { margin: 1.75rem 0 .45rem; font-family: var(--display); font-size: 1.45rem; }
.privacy-card h3:first-of-type { margin-top: 1.25rem; }
.privacy-card p { color: var(--charcoal-soft); line-height: 1.7; }
.privacy-card a { color: var(--blush-deep); font-weight: 600; }
.privacy-contact { margin-top: 2rem; padding: 1.2rem 1.3rem; border-left: 3px solid var(--gold); background: var(--cream); border-radius: 0 16px 16px 0; }
.privacy-contact h3 { margin-top: 0; }
.privacy-contact p { margin-bottom: 0; }

@media (min-width: 900px) {
  .careers-layout { grid-template-columns: .8fr 1.2fr; gap: clamp(2.5rem, 6vw, 5rem); }
  .career-details-wrap { position: sticky; top: calc(var(--header-h) + 2rem); }
}

@media (max-width: 520px) {
  .careers-language { justify-content: center; margin-bottom: 1rem; }
  .careers-intro-framed { border-radius: 24px 24px 14px 14px; }
  .careers-photo { border-radius: 20px; }
  .career-title { font-size: clamp(2.8rem, 12vw, 3.55rem) !important; line-height: .94; }
}


.reviews { padding: 2.25rem 0 4rem; background: linear-gradient(145deg, var(--cream), var(--blush-soft)); }
.reviews-layout { display: grid; gap: 2rem; align-items: start; }
.reviews-intro { text-align: center; }
.reviews-intro h2 { font-size: clamp(2.35rem, 5vw, 4.25rem); max-width: none; line-height: 1.05; margin: .8rem 0; }
.reviews-intro h2 span { white-space: nowrap; }
.reviews-intro > p { margin-left: auto; margin-right: auto; }
.reviews-intro .eyebrow { font-size: .75rem; }
.reviews-intro .reviews-welcome { font-family: var(--display); font-style: italic; color: var(--blush-deep); font-size: clamp(1.35rem, 2.2vw, 1.75rem); line-height: 1.25; }
.reviews-intro > p { color: var(--charcoal-soft); font-size: 1.08rem; max-width: 34rem; }
.review-promise { display: flex; flex-direction: column; gap: .2rem; padding: 1rem 1.15rem; border-left: 3px solid var(--gold); }
.review-promise span { color: var(--muted); }
.review-form { position: relative; background: var(--white); padding: clamp(1.25rem, 4vw, 2.25rem); border-radius: 24px; box-shadow: var(--shadow); }
.reviews-main { display: grid; gap: 1.25rem; }
.public-reviews { display: grid; gap: 1rem; }
.reviews-empty { margin: 0; padding: 1.5rem; border: 1px dashed rgba(42,36,34,.2); border-radius: 20px; color: var(--muted); text-align: center; }
.public-review-card { padding: 1.35rem 1.5rem; border: 1px solid rgba(42,36,34,.1); border-radius: 20px; background: rgba(255,255,255,.9); box-shadow: 0 8px 24px rgba(42,36,34,.07); }
.public-review-stars { margin-bottom: .65rem; color: var(--gold); letter-spacing: .12em; }
.public-review-card blockquote { margin: 0 0 .8rem; color: var(--charcoal); font-family: var(--display); font-size: 1.22rem; line-height: 1.45; }
.public-review-card p { margin: 0; color: var(--muted); font-size: .88rem; font-weight: 700; }
.reviews-photo { position: relative; margin: 0 0 1.5rem; overflow: hidden; border-radius: 24px; background: var(--white); box-shadow: var(--shadow); }
.reviews-sylvia { position: absolute; bottom: 14px; left: 14px; right: 14px; display: flex; align-items: center; gap: 12px; padding: 10px 14px 10px 10px; border-radius: 18px; background: rgba(255, 252, 248, .96); color: var(--charcoal); box-shadow: 0 4px 20px #30242018; }
.reviews-portrait { position: relative; width: 64px; height: 64px; flex: 0 0 64px; border-radius: 50%; overflow: hidden; }
.reviews-photo .reviews-portrait img { position: absolute; width: 160px; max-width: none; height: auto; aspect-ratio: auto; top: -10px; left: -48px; }
.reviews-sylvia strong { display: block; font-family: Georgia, serif; font-size: 1.15rem; font-weight: 400; }
.reviews-sylvia small { display: block; font-size: .75rem; margin-top: 3px; }
.reviews-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }
.rating-field { border: 0; padding: 0; margin: 0 0 1.25rem; }
.rating-field legend { font-weight: 600; margin-bottom: .65rem; }
.rating-options { display: grid; grid-template-columns: repeat(5, 1fr); gap: .45rem; }
.rating-options input { position: absolute; opacity: 0; pointer-events: none; }
.rating-options span { display: grid; place-items: center; min-height: 44px; border: 1px solid var(--line); border-radius: 12px; background: var(--cream); font-weight: 600; color: var(--charcoal-soft); cursor: pointer; }
.rating-options input:checked + span { background: var(--charcoal); color: white; border-color: var(--charcoal); }
.form-status { min-height: 1.5em; margin: .8rem 0 0; text-align: center; color: var(--charcoal-soft); }

@media (min-width: 900px) {
  .reviews-layout { grid-template-columns: .9fr 1.1fr; gap: 2rem 3rem; grid-template-areas: 'intro content' 'visual content' 'visual choices' '. form'; }
  .reviews-intro { grid-area: intro; align-self: center; }
  .reviews-visual { grid-area: visual; }
  .reviews-main { grid-area: content; }
  .reviews-layout > .review-choices { grid-area: choices; }
  .reviews-layout > .review-form { grid-area: form; }
  .route-home .hero-grid { grid-template-columns: minmax(0, 1.15fr) minmax(420px, .85fr); }
  .route-home .hero-visual { width: min(100%, 470px); }
  .route-home .gallery-grid { grid-template-columns: 1.2fr .8fr; }
  .route-home .gallery-grid figure:first-child img { min-height: 430px; }
  .route-home .gallery-grid figure:last-child img { min-height: 430px; }
}

@media (max-width: 560px) {
  .brand img { width: 42px; height: 42px; }
  .brand-name { font-size: 1.18rem; }
  .brand-sub { font-size: .58rem; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-lede { margin-inline: auto; }
  .hero-ctas, .trust-chips { justify-content: center; }
  .rating-options { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .rating-options span { font-size: .82rem; }
}

@media (max-width: 899px) {
  .route-home .hero {
    min-height: calc(100svh - var(--header-h));
    padding: 1.35rem 0 1.5rem;
    align-items: stretch;
  }
  .route-home .hero-grid {
    min-height: inherit;
    grid-template-rows: auto minmax(190px, 1fr);
    gap: 1.25rem;
  }
  .route-home .hero h1 {
    max-width: 12ch;
    margin-inline: auto;
    font-size: clamp(2.65rem, 11vw, 3.5rem);
  }
  .route-home .hero-promise { font-size: 1.35rem; }
  .route-home .hero-lede { max-width: 34rem; font-size: 1rem; line-height: 1.5; }
  .route-home .hero-ctas { display: grid; grid-template-columns: 1fr 1fr; }
  .route-home .hero-ctas .btn { padding-inline: .8rem; white-space: normal; text-align: center; }
  .route-home .hero-note { text-align: center; }
  .route-home .trust-chips { display: grid; grid-template-columns: 1fr 1fr; }
  .route-home .trust-chips li { justify-content: center; padding-inline: .55rem; }
  .route-home .hero-visual { width: min(100%, 620px); align-self: end; }
  .route-home .hero-frame img {
    aspect-ratio: 16 / 9;
    min-height: 190px;
    max-height: 270px;
    object-position: center 22%;
  }
}

@media (max-width: 359px) {
  .route-home .hero-ctas { grid-template-columns: 1fr; }
}


/* Single Sylvia portrait */
.about-photo { position: relative; }
.about-single {
  margin: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(196, 107, 130, 0.28);
  border: 4px solid rgba(255,255,255,0.7);
  background: #fff;
}
.about-single img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-single figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 1.15rem 1.2rem;
  background: linear-gradient(180deg, rgba(255,240,245,0.95), #fff);
}
.about-single figcaption strong { font-family: "Cormorant Garamond", serif; font-size: 1.25rem; color: var(--charcoal); }
.about-single figcaption span { font-size: 0.85rem; color: var(--muted); }
.first-clean-note { margin: 0 0 0.75rem; color: var(--blush-deep); }
.promo-banner {
  margin: 0 0 0.75rem;
  padding: 0.65rem 0.8rem;
  border-radius: 0.75rem;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.35;
  font-weight: 500;
}

.customer-status { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .45rem 1rem; padding: .75rem .9rem; border-radius: 12px; background: rgba(243,214,222,.32); }
.customer-status p { margin: 0; color: var(--muted); font-size: .79rem; }
.text-toggle { appearance: none; border: 0; padding: 0; color: var(--blush-deep); background: transparent; font: inherit; font-size: .79rem; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.text-toggle:hover { color: var(--charcoal); }
.text-toggle:focus-visible { outline: 2px solid var(--blush-deep); outline-offset: 4px; border-radius: 3px; }

@media (min-width: 1100px) {
  .route-home .hero { min-height: auto; padding: 4.5rem 0 5.5rem; }
  .route-home .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(460px, .95fr); gap: clamp(4rem, 7vw, 7rem); }
  .route-home .hero h1 { font-size: clamp(4rem, 4.8vw, 5rem); max-width: 12ch; }
  .route-home .hero-lede { font-size: 1.18rem; max-width: 39rem; }
  .route-home .hero-visual { width: min(100%, 520px); }
  .quote-layout { grid-template-columns: minmax(0, 1.35fr) minmax(390px, .82fr); gap: 2rem; align-items: start; }
  .price-card { position: sticky; top: calc(var(--header-h) + 1.5rem); }
}

/* Editorial, full-bleed home hero */
.route-home .hero {
  padding-block: 0;
  min-height: auto;
}
.route-home .hero-grid {
  width: 100%;
  max-width: none;
  margin: 0;
}
.route-home .hero h1 { max-width: 11ch; }
.route-home .hero h1 em { display: block; }
.route-home .hero-company { display: block; }
.route-home .hero-company > span { white-space: nowrap; }

@media (min-width: 1100px) {
  .route-home .hero-grid {
    height: clamp(650px, calc(100svh - var(--header-h)), 780px);
    min-height: 0;
    grid-template-columns: minmax(500px, 1fr) minmax(520px, 50vw);
    gap: clamp(2.5rem, 5vw, 6rem);
    padding-left: max(2rem, calc((100vw - 1240px) / 2));
  }
  .route-home .hero-copy {
    align-self: start;
    max-width: 660px;
    padding-block: clamp(3.5rem, 8vh, 6rem);
  }
  .route-home .hero h1 {
    max-width: 11ch;
    font-size: clamp(4rem, 4.7vw, 5.4rem);
    line-height: .94;
    letter-spacing: -.035em;
  }
  .route-home .hero-company > span { display: block; }
  .route-home .hero h1 em { margin-top: .22em; font-size: .58em; line-height: 1.05; }
  .route-home .hero-visual {
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    justify-self: stretch;
    align-self: stretch;
  }
  .route-home .hero-frame {
    height: 100%;
    min-height: 0;
    max-height: 100%;
    border-radius: 34px 0 0 34px;
    box-shadow: -24px 30px 80px rgba(42,36,34,.14);
  }
  .route-home .hero-frame img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-position: center 20%;
  }
}

@media (max-width: 1099px) {
  .route-home .hero { min-height: auto; padding: 0; }
  .route-home .hero-grid {
    min-height: 0;
    grid-template-rows: auto auto;
    gap: 1.2rem;
  }
  .route-home .hero-copy {
    width: min(100%, 660px);
    justify-self: center;
    padding: clamp(2rem, 6vw, 3.5rem) 1.25rem 0;
    text-align: center;
  }
  .route-home .hero h1 {
    max-width: none;
    margin-inline: auto;
    font-size: clamp(3.25rem, 10.5vw, 5rem);
    line-height: .94;
    letter-spacing: -.03em;
  }
  .route-home .hero-company > span { display: block; }
  .route-home .hero h1 em { display: block; margin-top: .35em; font-size: .52em; line-height: 1.05; white-space: nowrap; }
  .route-home .hero-lede { margin-inline: auto; }
  .route-home .hero-ctas { justify-content: center; }
  .route-home .trust-chips { justify-content: center; }
  .route-home .hero-visual {
    width: 100%;
    max-width: none;
    align-self: auto;
  }
  .route-home .hero-frame {
    border-radius: 30px 30px 0 0;
    box-shadow: 0 -10px 40px rgba(42,36,34,.10);
  }
  .route-home .hero-frame img {
    width: 100%;
    height: auto;
    max-height: none;
    min-height: 0;
    aspect-ratio: 848 / 1264;
    object-fit: cover;
    object-position: center top;
  }
}

@media (max-width: 879px) {
  .header-inner { justify-content: space-between; min-height: 76px; }
  .brand { margin-right: auto; text-align: left; }
  .brand img { width: 50px; height: 50px; }
  .brand { gap: .55rem; }
  .brand-name { font-size: 1.4rem; line-height: .9; }
  .brand-sub { align-items: flex-start; flex-direction: column; gap: .08rem; line-height: 1; }
  .brand-service { font-size: .72rem; letter-spacing: .13em; color: var(--charcoal-soft); font-weight: 600; }
  .brand-location { font-size: .52rem; letter-spacing: .16em; }
  .brand-location::before { content: none; }
}

@media (max-width: 520px) {
  .route-home .hero-copy { padding-top: 1.6rem; }
  .route-home .hero-brandline { margin-bottom: .65rem; }
  .route-home .hero h1 { font-size: clamp(2.65rem, 11.5vw, 3.1rem); }
  .route-home .hero-lede { font-size: 1rem; line-height: 1.55; }
  .route-home .hero-ctas { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); margin-top: 1.05rem; }
  .route-home .hero-ctas .btn { min-height: 56px; padding-inline: .8rem; font-size: .9rem; }
  .route-home .hero-note { margin-bottom: .15rem; }
  .route-home .hero-caption { text-align: left; }
}

@media (max-width: 359px) {
  .brand img { width: 46px; height: 46px; }
  .brand-name { font-size: 1.48rem; }
  .brand-service { font-size: .75rem; }
  .route-home .hero-ctas { grid-template-columns: 1fr; }
}

@media (max-width: 699px) {
  .site-footer { padding-top: 2rem; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem 1rem;
    padding-bottom: 1.5rem;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { padding-top: 1rem; }
}
/* Combined Google snapshot + website reviews, using the existing brand palette. */
.review-navigation{display:flex;align-items:center;justify-content:center;gap:16px;flex-wrap:wrap;margin:16px 0 24px}
.review-navigation[hidden],.review-choices [hidden]{display:none}
.review-navigation>button{min-width:44px;min-height:44px;border:1px solid currentColor;border-radius:50%;background:transparent;color:inherit;cursor:pointer;font-size:20px}
.review-dots{display:flex;flex-wrap:wrap;justify-content:center;max-width:100%;gap:2px;width:100%}
.review-dots button{width:28px;height:28px;border:0;background:transparent;cursor:pointer;padding:9px}
.review-dots button::after{content:'';display:block;width:10px;height:10px;border-radius:50%;background:#d5c4c6}
.review-dots button[aria-current=true]::after{background:#a44163}
.review-collapsed{display:-webkit-box;-webkit-line-clamp:6;-webkit-box-orient:vertical;overflow:hidden}
.review-expand{border:0;background:none;color:#8b3653;text-decoration:underline;padding:12px 0;cursor:pointer;font:inherit}
.review-source{font-size:14px!important;font-weight:400!important;margin-top:12px!important}
.review-source a{color:inherit;text-decoration:underline}
.review-choices{text-align:center;margin:0 0 8px;padding:28px clamp(18px,4vw,32px);background:rgba(255,255,255,.65);border-radius:24px}
.review-choices h3{margin:0 0 10px;font-size:2rem}
.review-choices>p{margin:0 auto 20px;max-width:34em}
#googleReviewLink{display:flex;flex-direction:column;gap:4px;padding:17px 20px;font-size:18px}
.review-recommended{font-size:12px;letter-spacing:.12em;text-transform:uppercase;font-weight:600}
.review-choices .review-alternative{margin:18px 0 0}
.review-website-link{display:inline-block;padding:8px 0;text-decoration:underline;text-underline-offset:3px;color:#8b3653}
.review-choices p,#reviewLoadStatus,#googleReviewSummary{font-size:14px;line-height:1.6}
.public-review-card blockquote{white-space:pre-wrap;overflow-wrap:anywhere}
.reviews-main{min-width:0}
#reviewLoadStatus:empty{display:none}
#publicReviews{touch-action:pan-y}
