/* Spic N Span site styles.
   System: Fraunces (display) + Inter (UI) · cream paper · magenta + coral accents */

:root {
  --paper: #fbf7f2;
  --paper-2: #f3ebde;
  --paper-3: #ebe0cf;
  --ink: #1a1612;
  --ink-soft: #5a5147;
  --ink-faint: #9a9085;
  --rule: rgba(26,22,18,0.12);
  --magenta: #d72a64;
  --magenta-deep: #b81e51;
  --magenta-soft: #f7d7e2;
  --coral: #f08a5d;
  --coral-soft: #fbe1d2;

  --display: 'Fraunces', 'Times New Roman', serif;
  --ui: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --maxw: 1280px;
  --pad: clamp(24px, 4vw, 56px);
  --rad: 14px;
  --rad-lg: 22px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  font-family: var(--ui);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

/* ============ Top bar ============ */
.topbar {
  position: sticky; top: 0; z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 14px var(--pad);
  background: rgba(251, 247, 242, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.topbar.scrolled {
  border-bottom-color: var(--rule);
  background: rgba(251, 247, 242, 0.95);
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--ink);
}
.brand-mark { width: 44px; height: 44px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-line1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  font-variation-settings: "opsz" 20, "SOFT" 50;
  letter-spacing: -0.01em;
}
.brand-line2 {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}

.topnav {
  display: flex; gap: 28px; justify-content: center;
}
.topnav a {
  font-size: 14px; font-weight: 500;
  text-decoration: none; color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.topnav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1.5px; background: var(--magenta);
  transition: right .22s ease;
}
.topnav a:hover::after { right: 0; }

.topcta { display: flex; align-items: center; gap: 14px; }
.phone-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--ink); text-decoration: none;
}
.phone-link svg { color: var(--magenta); }
.phone-link:hover { color: var(--magenta); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ui);
  font-size: 14px; font-weight: 600;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s, color .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 8px 22px -8px rgba(26,22,18,0.4);
}
.btn-primary:hover { background: var(--magenta); }
.btn-magenta {
  background: var(--magenta);
  color: white;
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 10px 24px -10px rgba(215,42,100,0.5);
}
.btn-magenta:hover { background: var(--magenta-deep); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding-left: 6px; padding-right: 6px;
}
.btn-ghost::after {
  content: " →";
  transition: transform .2s;
}
.btn-ghost:hover::after { transform: translateX(4px); display: inline-block; }
.btn-lg { padding: 16px 30px; font-size: 15px; }

/* ============ Section base ============ */
.section {
  padding: clamp(56px, 8vw, 120px) var(--pad);
  position: relative;
}
.section-tight { padding-top: 0; }
.section-inner { max-width: var(--maxw); margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 20px;
}

.display {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.display-xl { font-size: clamp(48px, 8vw, 104px); }
.display-lg { font-size: clamp(40px, 6vw, 80px); }
.display-md { font-size: clamp(32px, 4.5vw, 56px); }
.display-sm { font-size: clamp(26px, 3vw, 36px); }
.display em {
  font-style: italic;
  color: var(--magenta);
  font-variation-settings: "opsz" 9, "SOFT" 100;
}

.lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 560px;
  text-wrap: pretty;
}
.lede.center { margin-left: auto; margin-right: auto; }

/* ============ Hero (booking-first) ============ */
.hero {
  padding: clamp(48px, 6vw, 88px) var(--pad) clamp(48px, 6vw, 96px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 0% 0%, rgba(240,138,93,0.10), transparent 60%),
    radial-gradient(50% 50% at 100% 100%, rgba(215,42,100,0.08), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.6);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  margin-bottom: 28px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: #2bb673; box-shadow: 0 0 0 4px rgba(43,182,115,0.18); }
.hero h1 { margin-bottom: 24px; }
.hero-sub { margin-bottom: 32px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 36px;
}
.trust-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 500;
  padding: 8px 14px;
  background: white;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink-soft);
}
.trust-chip svg { color: var(--magenta); flex: none; }

.hero-owner {
  margin-top: 36px;
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px 16px 16px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--rule);
  border-radius: 16px;
  max-width: 460px;
}
.hero-owner img {
  width: 64px; height: 64px; border-radius: 50%; object-fit: cover;
  object-position: center 20%;
  border: 2px solid white;
  box-shadow: 0 4px 12px -4px rgba(0,0,0,.15);
}
.hero-owner-text {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.hero-owner-text strong {
  display: block; color: var(--ink);
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 2px;
  font-variation-settings: "opsz" 24;
}

/* ============ Booking card ============ */
.booking-card {
  background: white;
  border-radius: var(--rad-lg);
  padding: 28px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 24px 60px -24px rgba(26,22,18,0.25),
    0 4px 12px -4px rgba(26,22,18,0.08);
  border: 1px solid var(--rule);
  position: relative;
}
.booking-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 6px;
}
.booking-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 26px;
  font-variation-settings: "opsz" 36, "SOFT" 60;
  letter-spacing: -0.015em;
}
.booking-meta {
  font-size: 12px; font-weight: 500;
  color: var(--ink-soft);
}
.booking-progress {
  display: flex; gap: 4px;
  margin: 16px 0 22px;
}
.booking-progress span {
  flex: 1; height: 4px; background: var(--paper-3); border-radius: 2px;
  transition: background .25s;
}
.booking-progress span.done { background: var(--magenta); }
.booking-progress span.active { background: var(--magenta); }

.booking-step h3 {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.booking-step h3 .num {
  display: inline-block;
  font-family: var(--display);
  font-weight: 500;
  color: var(--magenta);
  margin-right: 8px;
  font-variation-settings: "opsz" 9;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.choice {
  appearance: none;
  -webkit-appearance: none;
  border: 1.5px solid var(--rule);
  background: white;
  border-radius: 12px;
  padding: 14px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color .15s, background .15s, transform .1s;
  display: flex; align-items: center; gap: 10px;
}
.choice:hover { border-color: var(--ink-soft); }
.choice.selected {
  border-color: var(--magenta);
  background: var(--magenta-soft);
}
.choice .check {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid var(--rule);
  display: grid; place-items: center;
  flex: none;
}
.choice.selected .check {
  background: var(--magenta);
  border-color: var(--magenta);
}
.choice.selected .check::after {
  content: "";
  width: 6px; height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px,-1px);
}
.choice .lbl-title { font-weight: 600; }
.choice .lbl-meta { display: block; font-size: 11px; color: var(--ink-soft); font-weight: 400; margin-top: 2px; }

.size-row {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.size-pill {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--rule);
  background: white;
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  transition: all .15s;
}
.size-pill:hover { border-color: var(--ink-soft); }
.size-pill.selected { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.field {
  width: 100%;
  border: 1.5px solid var(--rule);
  border-radius: 12px;
  padding: 13px 14px;
  font-family: inherit;
  font-size: 14px;
  background: white;
  color: var(--ink);
  transition: border-color .15s;
}
.field:focus { outline: none; border-color: var(--magenta); }
.field::placeholder { color: var(--ink-faint); }

.booking-actions {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 22px;
  gap: 12px;
}
.booking-back {
  appearance: none; background: none; border: none;
  font-family: inherit; font-size: 13px; font-weight: 500;
  color: var(--ink-soft); cursor: pointer;
  padding: 6px 0;
}
.booking-back:hover { color: var(--ink); }
.booking-next {
  flex: 1;
  display: inline-flex; justify-content: center;
  background: var(--magenta);
  color: white;
  border: none;
  font-family: inherit;
  font-size: 14px; font-weight: 600;
  padding: 14px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s;
}
.booking-next:hover { background: var(--magenta-deep); }
.booking-next:disabled { background: var(--ink-faint); cursor: not-allowed; }
.booking-fineprint {
  margin-top: 14px;
  font-size: 11.5px;
  text-align: center;
  color: var(--ink-faint);
}

.booking-success {
  text-align: center; padding: 16px 8px;
}
.booking-success .check-circle {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  background: var(--magenta);
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
}
.booking-success h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 28px;
  margin: 0 0 8px;
  font-variation-settings: "opsz" 36;
}
.booking-success p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 8px;
  line-height: 1.55;
}

/* ============ Marquee strip ============ */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  font-variation-settings: "opsz" 24, "SOFT" 60;
  font-style: italic;
}
.marquee-item .star { color: var(--magenta); font-style: normal; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============ Services ============ */
.services {
  background: var(--paper);
}
.services-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 56px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  border-radius: var(--rad-lg);
  overflow: hidden;
  background: white;
  border: 1px solid var(--rule);
  transition: transform .25s ease, box-shadow .25s ease;
  display: grid;
  grid-template-rows: 280px auto;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -22px rgba(26,22,18,0.25);
}
.service-card .img {
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
}
.service-card .img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .img img { transform: scale(1.05); }
.service-card .img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.35));
}
.service-card .num {
  position: absolute; top: 18px; left: 18px;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: white;
  font-weight: 500;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.service-card .price-tag {
  position: absolute; top: 18px; right: 18px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}
.service-card .price-tag .from { color: var(--ink-soft); font-weight: 500; }
.service-card .body {
  padding: 26px 26px 28px;
}
.service-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 28px;
  margin: 0 0 10px;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 36, "SOFT" 60;
  line-height: 1.15;
}
.service-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  text-wrap: pretty;
}

/* ============ Process ============ */
.process {
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.process-step {
  position: relative;
  padding: 32px;
  background: var(--paper);
  border-radius: var(--rad-lg);
  border: 1px solid var(--rule);
}
.process-step .num {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: 56px;
  color: var(--magenta);
  line-height: 1;
  font-variation-settings: "opsz" 9;
  margin-bottom: 18px;
  display: inline-block;
}
.process-step h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 8px;
  font-variation-settings: "opsz" 36;
}
.process-step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* ============ Why us ============ */
.whyus { background: var(--paper); }
.whyus-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.whyus-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--rad-lg);
  overflow: hidden;
  background: var(--paper-2);
}
.whyus-photo img { width: 100%; height: 100%; object-fit: cover; }
.whyus-photo .badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: white;
  border-radius: 16px;
  padding: 16px 18px;
  display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center;
  box-shadow: 0 14px 30px -14px rgba(26,22,18,0.3);
  max-width: 280px;
}
.whyus-photo .badge .icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--magenta);
  color: white;
  display: grid; place-items: center;
}
.whyus-photo .badge strong {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  font-variation-settings: "opsz" 24;
}
.whyus-photo .badge span { font-size: 12px; color: var(--ink-soft); }

.whyus-list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.whyus-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.whyus-item .icon {
  flex: none;
  width: 40px; height: 40px;
  background: var(--magenta-soft);
  color: var(--magenta);
  border-radius: 12px;
  display: grid; place-items: center;
}
.whyus-item h4 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 4px;
  font-variation-settings: "opsz" 24;
}
.whyus-item p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* ============ Pricing ============ */
.pricing { background: var(--paper-2); }
.pricing-head { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.pricing-head .lede { margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  background: var(--paper);
  border-radius: var(--rad-lg);
  padding: 36px 32px;
  border: 1.5px solid var(--rule);
  position: relative;
  display: flex; flex-direction: column;
}
.price-card.featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.price-card.featured .price-meta,
.price-card.featured .price-features li,
.price-card.featured .price-blurb { color: rgba(251, 247, 242, 0.72); }
.price-card.featured .price-features li::before { background: var(--magenta); }
.price-card .badge-popular {
  position: absolute; top: -12px; left: 32px;
  background: var(--magenta);
  color: white;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.price-name {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
  margin: 0;
  font-variation-settings: "opsz" 36, "SOFT" 60;
  letter-spacing: -0.015em;
}
.price-blurb {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 8px 0 24px;
  line-height: 1.6;
  text-wrap: pretty;
}
.price-amount {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 4px;
}
.price-amount .from { font-size: 12px; font-weight: 500; color: var(--ink-soft); margin-right: 6px; letter-spacing: 0.05em; text-transform: uppercase; }
.price-amount .num {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  letter-spacing: -0.03em;
}
.price-amount .per { font-size: 14px; font-weight: 500; color: var(--ink-soft); }
.price-meta {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.price-features {
  list-style: none; padding: 0; margin: 0 0 28px;
  font-size: 14px;
  flex: 1;
}
.price-features li {
  padding: 10px 0;
  display: flex; gap: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.price-card.featured .price-features li {
  border-bottom-color: rgba(255,255,255,0.08);
}
.price-features li::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--magenta);
  border-radius: 50%;
  margin-top: 8px;
  flex: none;
}
.price-card .btn { justify-content: center; }
.price-card.featured .btn-outline { border-color: var(--paper); color: var(--paper); }
.price-card.featured .btn-outline:hover { background: var(--paper); color: var(--ink); }

/* Band picker (above pricing tiers) */
.band-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0 auto 40px;
  max-width: 920px;
}
.band-pill {
  appearance: none;
  background: var(--paper);
  border: 1.5px solid var(--rule);
  border-radius: 14px;
  padding: 12px 18px;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  transition: all .15s;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 130px;
}
.band-pill:hover { border-color: var(--ink-soft); }
.band-pill.selected {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.band-pill-label { font-size: 13.5px; font-weight: 600; }
.band-pill-sqft { font-size: 11.5px; color: var(--ink-soft); font-weight: 500; }
.band-pill.selected .band-pill-sqft { color: rgba(251,247,242,0.65); }

.pricing-fineprint {
  text-align: center;
  margin: 18px auto 0;
  font-size: 13px;
  color: var(--ink-soft);
  max-width: 760px;
}

/* Recurring discounts row */
.recurring-row {
  margin-top: 64px;
  background: var(--paper);
  border-radius: var(--rad-lg);
  padding: 36px;
  border: 1px solid var(--rule);
}
.recurring-head { text-align: center; max-width: 620px; margin: 0 auto 28px; }
.recurring-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.recurring-card {
  position: relative;
  background: var(--paper-2);
  border-radius: 14px;
  padding: 22px 20px;
  text-align: center;
  border: 1.5px solid transparent;
}
.recurring-card.popular {
  background: var(--magenta-soft);
  border-color: var(--magenta);
}
.recurring-popular {
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--magenta);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.recurring-pct {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  color: var(--magenta);
  font-variation-settings: "opsz" 80, "SOFT" 80;
  letter-spacing: -0.02em;
}
.recurring-label { font-size: 14px; font-weight: 600; margin-top: 6px; }
.recurring-blurb { font-size: 12px; color: var(--ink-soft); margin-top: 4px; }

/* Extras (organization + commercial) */
.pricing-extras {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.extras-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--rad-lg);
  padding: 28px 30px;
}
.extras-card h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 4px;
  font-variation-settings: "opsz" 30;
}
.extras-meta { font-size: 12.5px; color: var(--ink-soft); margin: 0 0 18px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }
.extras-list { list-style: none; margin: 0; padding: 0; }
.extras-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 14px;
  gap: 16px;
}
.extras-list li:last-child { border-bottom: none; }
.extras-list strong { color: var(--magenta); font-weight: 600; white-space: nowrap; }
.extras-note { font-style: normal; color: var(--ink-faint); font-size: 12.5px; }

/* Booking band picker (in hero) */
.band-stack { display: flex; flex-direction: column; gap: 6px; }
.band-row {
  appearance: none;
  border: 1.5px solid var(--rule);
  background: white;
  border-radius: 12px;
  padding: 12px 14px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  display: flex; align-items: center; gap: 12px;
  transition: border-color .15s, background .15s;
}
.band-row:hover { border-color: var(--ink-soft); }
.band-row.selected {
  border-color: var(--magenta);
  background: var(--magenta-soft);
}
.band-row .check {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid var(--rule);
  display: grid; place-items: center; flex: none;
}
.band-row.selected .check { background: var(--magenta); border-color: var(--magenta); }
.band-row.selected .check::after {
  content: "";
  width: 6px; height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px,-1px);
}
.band-row-text { display: flex; flex-direction: column; gap: 2px; }
.band-row .lbl-title { font-size: 14px; font-weight: 600; }
.band-row .lbl-meta { font-size: 12px; color: var(--ink-soft); font-weight: 400; }

.larger-flag {
  display: flex; align-items: center; gap: 10px;
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--paper-2);
  border-radius: 12px;
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
}
.larger-flag input { accent-color: var(--magenta); width: 16px; height: 16px; }

.addons {
  margin-top: 56px;
}
.addons h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 18px;
  font-variation-settings: "opsz" 30;
}
.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.addon {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13.5px;
}
.addon strong { color: var(--magenta); font-weight: 600; }

/* ============ Reviews ============ */
.reviews { background: var(--paper); }
.reviews-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 56px;
}
.reviews-stats {
  display: flex; gap: 32px;
  align-items: end;
}
.reviews-stats .stat .num {
  font-family: var(--display);
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  letter-spacing: -0.03em;
  color: var(--magenta);
}
.reviews-stats .stat .lbl {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}
.reviews-stats .stat .stars {
  color: var(--magenta);
  font-size: 18px;
  letter-spacing: 2px;
}

.reviews-grid {
  columns: 3;
  column-gap: 20px;
}
.review {
  break-inside: avoid;
  margin-bottom: 20px;
  background: var(--paper-2);
  border-radius: var(--rad-lg);
  padding: 26px;
  border: 1px solid var(--rule);
  display: inline-block;
  width: 100%;
}
.review.dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.review.dark .review-meta { color: rgba(251, 247, 242, 0.55); }
.review .stars {
  color: var(--magenta);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review p {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 16px;
  font-variation-settings: "opsz" 24, "SOFT" 80;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.review-meta {
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.review-meta strong { color: inherit; font-weight: 600; }

/* ============ Areas ============ */
.areas { background: var(--paper-2); }
.areas-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.areas-text { max-width: 480px; }
.area-cloud {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 28px;
}
.area-pill {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  background: var(--paper);
  border-radius: 999px;
  border: 1px solid var(--rule);
  color: var(--ink);
}
.area-pill.more {
  background: transparent;
  border-style: dashed;
  color: var(--ink-soft);
}

/* Stylized illustrative map */
.areas-map {
  position: relative;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 50% 50%, var(--paper) 0, var(--paper-2) 70%);
  border-radius: 50%;
  border: 1px solid var(--rule);
  overflow: hidden;
}
.areas-map svg { width: 100%; height: 100%; }
.areas-map .pin {
  position: absolute;
  width: 12px; height: 12px;
  background: var(--magenta);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 0 0 6px rgba(215,42,100,0.15);
}
.areas-map .pin::after {
  content: "";
  position: absolute;
  width: 4px; height: 4px;
  background: white;
  border-radius: 50%;
  top: 4px; left: 4px;
}
.areas-map .pin-label {
  position: absolute;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  background: white;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  white-space: nowrap;
  pointer-events: none;
}

/* ============ FAQ ============ */
.faq { background: var(--paper); }
.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.faq-side { position: sticky; top: 110px; }
.faq-list { border-top: 1px solid var(--rule); }
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-q {
  width: 100%;
  appearance: none;
  border: none;
  background: none;
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  font-variation-settings: "opsz" 30, "SOFT" 70;
  letter-spacing: -0.01em;
}
.faq-q:hover { color: var(--magenta); }
.faq-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: grid; place-items: center;
  font-size: 18px;
  flex: none;
  transition: background .15s, color .15s, transform .25s;
}
.faq-item.open .faq-toggle {
  background: var(--magenta);
  color: white;
  border-color: var(--magenta);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 320px; }
.faq-a-inner {
  padding: 0 0 28px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 640px;
  text-wrap: pretty;
}

/* ============ Final CTA ============ */
.final-cta {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 60% at 80% 30%, rgba(215,42,100,0.35), transparent 60%),
    radial-gradient(40% 60% at 20% 80%, rgba(240,138,93,0.18), transparent 60%);
  pointer-events: none;
}
.final-cta-inner { position: relative; max-width: 880px; margin: 0 auto; text-align: center; }
.final-cta .display { color: var(--paper); }
.final-cta .display em { color: var(--coral); }
.final-cta .lede { color: rgba(251, 247, 242, 0.72); margin: 24px auto 36px; }
.final-cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.final-cta-actions .btn-magenta { background: var(--magenta); }
.final-cta-actions .btn-outline { color: var(--paper); border-color: rgba(251, 247, 242, 0.3); }
.final-cta-actions .btn-outline:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ============ Footer ============ */
.site-footer {
  background: var(--paper-2);
  padding: 80px var(--pad) 32px;
  border-top: 1px solid var(--rule);
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule);
}
.footer-brand img { width: 64px; margin-bottom: 18px; }
.footer-tag {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  font-variation-settings: "opsz" 24, "SOFT" 80;
  line-height: 1.4;
  margin: 0 0 18px;
  max-width: 340px;
  letter-spacing: -0.005em;
}
.footer-meta {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 4px 0;
}
.footer-meta a { color: inherit; text-decoration: none; }
.footer-meta a:hover { color: var(--magenta); }
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-col a {
  font-size: 14px;
  text-decoration: none;
  color: var(--ink);
}
.footer-col a:hover { color: var(--magenta); }
.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px;
  color: var(--ink-soft);
}
.footer-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 500;
  color: var(--ink);
}

/* ============ Dirt intro overlay ============ */
#dirt-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: auto;
  cursor: pointer;
  transition: opacity .55s ease;
  opacity: 1;
  /* slight glassy sheen so it reads as a screen */
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.06), transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(255,255,255,0.04), transparent 60%);
}
#dirt-intro.done {
  opacity: 0;
  pointer-events: none;
}
#dirt-canvas {
  position: absolute;
  inset: 0;
  display: block;
}
.dirt-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: opacity .35s ease;
}
.dirt-hint.hide { opacity: 0; }
.dirt-hint-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,22,18,0.78);
  color: #fbf7f2;
  padding: 9px 16px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px -10px rgba(0,0,0,0.5);
}
.dirt-hint-spark {
  color: #d72a64;
  animation: dirtSpark 1.2s ease-in-out infinite;
}
@keyframes dirtSpark {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .topnav { display: none; }
  .hero-grid,
  .whyus-grid,
  .areas-grid,
  .faq-grid,
  .reviews-head { grid-template-columns: 1fr; }
  .reviews-stats { gap: 36px; }
  .services-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .reviews-grid { columns: 2; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .addon-grid { grid-template-columns: 1fr 1fr; }
  .whyus-list { grid-template-columns: 1fr; }
  .faq-side { position: static; }
  .recurring-grid { grid-template-columns: 1fr 1fr; }
  .pricing-extras { grid-template-columns: 1fr; }
  .band-picker { gap: 6px; }
  .band-pill { min-width: calc(50% - 6px); padding: 10px 12px; }
  .topcta .btn-primary {
    background: var(--magenta);
    color: white;
    border-color: var(--magenta);
    box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 10px 24px -10px rgba(215,42,100,0.5);
  }
  .topcta .btn-primary:hover { background: var(--magenta-deep); }
}
@media (max-width: 700px) {
  :root { --pad: 28px; }
  .hero { padding-left: 24px; padding-right: 24px; }
  .booking-card { margin-left: 4px; margin-right: 4px; }
  .topbar { gap: 10px; padding: 10px 18px; grid-template-columns: auto auto; justify-content: space-between; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-line1 { font-size: 18px; }
  .brand-line2 { font-size: 9.5px; letter-spacing: 0.12em; margin-top: 2px; }
  .topcta { gap: 8px; }
  .topcta .phone-link { display: none; }
  .topcta .btn { padding: 9px 14px; font-size: 13px; }
  .hero {
    padding-top: 40px;
    padding-bottom: 56px;
  }
  .hero-grid { gap: 36px; }
  .hero h1 { margin-bottom: 18px; }
  .hero-eyebrow { margin-bottom: 20px; }
  .hero-trust { gap: 8px; margin-top: 28px; }
  .hero-owner { margin-top: 28px; padding: 14px; }
  .booking-card { padding: 22px; }
  .booking-title { font-size: 22px; }
  .reviews-grid { columns: 1; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .choice-grid { grid-template-columns: 1fr; }
  .services-head { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-rows: 220px auto; }
  .areas-map { display: none; }
}
