/* 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.35rem;
  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.65rem;
  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);
}

.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: 0.15s;
}
.addon-box em { font-style: normal; font-weight: 700; color: var(--blush-deep); }
.addon input:checked + .addon-box,
.addon:hover .addon-box {
  border-color: var(--blush-deep);
  background: var(--blush-soft);
}
.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: flex; align-items: center; justify-content: space-between; gap: 1rem;
  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 strong { color: var(--gold-soft); font-size: 1rem; white-space: nowrap; }
.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);
}

/* 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 { 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); }


.reviews { padding: 5rem 0; background: linear-gradient(145deg, var(--cream), var(--blush-soft)); }
.reviews-layout { display: grid; gap: 2rem; align-items: start; }
.reviews-intro h2 { font-size: clamp(2.25rem, 5vw, 4.25rem); max-width: 10ch; }
.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); }
.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: 5rem; }
  .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; }

@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: 10ch;
    font-size: clamp(4.5rem, 5.4vw, 6.25rem);
    line-height: .94;
    letter-spacing: -.035em;
  }
  .route-home .hero h1 em { margin-top: .12em; }
  .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: 9.5ch;
    margin-inline: auto;
    font-size: clamp(3.25rem, 10.5vw, 5rem);
    line-height: .94;
    letter-spacing: -.03em;
  }
  .route-home .hero h1 em { display: block; margin-top: .1em; }
  .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: 54px; height: 54px; }
  .brand { gap: .55rem; }
  .brand-name { font-size: 1.5rem; line-height: .9; }
  .brand-sub { align-items: flex-start; flex-direction: column; gap: .08rem; line-height: 1; }
  .brand-service { font-size: .76rem; letter-spacing: .13em; }
  .brand-location { font-size: .58rem; 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(3.1rem, 14vw, 4rem); }
  .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: 48px; height: 48px; }
  .brand-name { font-size: 1.35rem; }
  .brand-service { font-size: .7rem; }
  .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; }
}
