/* ===========================================================
   Higher Level Maids — Luxury Black & Gold Theme
   =========================================================== */

:root {
  --black:      #0b0b0c;
  --black-2:    #131316;
  --black-3:    #1c1c20;
  --gold:       #c9a227;
  --gold-light: #e6c757;
  --gold-soft:  rgba(201, 162, 39, 0.15);
  --cream:      #f6f3ec;
  --muted:      #b8b4ab;
  --muted-dark: #6f6c66;
  --line:       rgba(201, 162, 39, 0.22);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--cream);
  background: var(--black);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 14px 28px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1407;
  border-color: var(--gold);
}
.btn--gold:hover { box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--cream); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn--lg { padding: 17px 38px; font-size: 0.82rem; }
.btn--block { width: 100%; text-align: center; }

/* ---------- Top bar ---------- */
.topbar {
  background: #000;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--muted);
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; padding-top: 9px; padding-bottom: 9px; }
.topbar__item { letter-spacing: 0.04em; }
.topbar__contact a:hover { color: var(--gold-light); }
.topbar .dot { margin: 0 10px; color: var(--gold); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 11, 12, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand__crest {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border: 1.5px solid var(--gold);
  border-radius: 3px;
  padding: 6px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.brand__crest img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand:hover .brand__crest { box-shadow: 0 0 16px rgba(201,162,39,0.4); transform: translateY(-1px); }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; letter-spacing: 0.02em; }
.brand__tag { font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 0.82rem; letter-spacing: 0.05em; color: var(--muted); transition: color 0.2s; }
.nav a:hover { color: var(--gold-light); }
.nav__cta { color: #1a1407 !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--gold); transition: 0.3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  background:
    radial-gradient(circle at 70% 20%, rgba(201,162,39,0.12), transparent 55%),
    linear-gradient(180deg, var(--black) 0%, var(--black-2) 100%);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 75%);
}
.hero__inner { position: relative; z-index: 2; padding: 80px 24px; max-width: 880px; }
.hero__eyebrow {
  color: var(--gold); letter-spacing: 0.32em; text-transform: uppercase;
  font-size: 0.8rem; margin-bottom: 22px;
}
.hero__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.05; letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.hero__sub { font-size: 1.18rem; color: var(--muted); max-width: 620px; margin-bottom: 38px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.hero__trust { list-style: none; display: flex; flex-wrap: wrap; gap: 32px; }
.hero__trust li { font-size: 0.9rem; color: var(--muted); position: relative; padding-left: 22px; }
.hero__trust li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
.hero__trust strong { color: var(--cream); font-weight: 500; }

/* ---------- Section base ---------- */
.section { padding: 96px 0; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.eyebrow {
  color: var(--gold); letter-spacing: 0.3em; text-transform: uppercase;
  font-size: 0.76rem; margin-bottom: 16px;
}
.eyebrow--light { color: var(--gold-light); }
.section__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1;
  margin-bottom: 18px;
}
.section__lead { color: var(--muted); font-size: 1.08rem; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 38px 32px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 18px 40px rgba(0,0,0,0.45); }
.card__icon {
  width: 48px; height: 48px; display: grid; place-items: center;
  color: var(--gold); font-size: 1.4rem;
  border: 1px solid var(--line); border-radius: 50%;
  margin-bottom: 22px;
}
.card h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Why (dark band) ---------- */
.why { background: linear-gradient(180deg, var(--black-2), var(--black)); }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.why__item { padding-top: 24px; border-top: 1px solid var(--line); }
.why__num { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); margin-bottom: 12px; }
.why__item h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; margin-bottom: 10px; }
.why__item p { color: var(--muted); font-size: 0.93rem; }

/* ---------- Process ---------- */
.steps { display: flex; align-items: stretch; justify-content: center; gap: 18px; flex-wrap: wrap; }
.step { flex: 1; min-width: 220px; max-width: 320px; text-align: center; padding: 36px 26px; background: var(--black-2); border: 1px solid var(--line); border-radius: 4px; }
.step__num {
  display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 20px;
  border: 1.5px solid var(--gold); border-radius: 50%; color: var(--gold);
  font-family: var(--serif); font-size: 1.5rem;
}
.step h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.95rem; }
.step__arrow { display: grid; place-items: center; color: var(--gold); font-size: 1.8rem; }

/* ---------- Stats ---------- */
.stats { background: #000; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 54px 0; }
.stats__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat__num { display: block; font-family: var(--serif); font-size: 3rem; font-weight: 700; line-height: 1; }
.stat__label { display: block; margin-top: 10px; font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* ---------- Reviews ---------- */
.reviews__grid { grid-template-columns: repeat(3, 1fr); }
.review { background: var(--black-2); border: 1px solid var(--line); border-radius: 4px; padding: 34px 30px; }
.review__stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 16px; }
.review p { font-family: var(--serif); font-size: 1.22rem; font-style: italic; line-height: 1.5; margin-bottom: 18px; }
.review footer { font-size: 0.85rem; letter-spacing: 0.08em; color: var(--gold-light); text-transform: uppercase; }
.reviews__note { text-align: center; margin-top: 28px; font-size: 0.82rem; color: var(--muted-dark); font-style: italic; }

/* ---------- Areas ---------- */
.areas { background: linear-gradient(180deg, var(--black), var(--black-2)); }
.areas__list { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 860px; margin: 0 auto; }
.areas__list li {
  text-align: center; padding: 16px; border: 1px solid var(--line); border-radius: 3px;
  color: var(--cream); font-size: 0.95rem; letter-spacing: 0.04em;
  transition: background 0.25s, color 0.25s;
}
.areas__list li:hover { background: var(--gold-soft); color: var(--gold-light); }
.areas__note { text-align: center; margin-top: 30px; color: var(--muted); }
.areas__note a { color: var(--gold-light); text-decoration: underline; }

/* ---------- Contact ---------- */
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact__lead { color: var(--muted); margin-bottom: 30px; }
.contact__details { list-style: none; margin-bottom: 28px; }
.contact__details li { display: flex; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.contact__label { color: var(--gold); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; min-width: 56px; }
.contact__details a:hover { color: var(--gold-light); }
.contact__social { display: flex; gap: 20px; }
.contact__social a { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid transparent; padding-bottom: 2px; }
.contact__social a:hover { color: var(--gold-light); border-color: var(--gold); }

.quote-form { background: var(--black-2); border: 1px solid var(--line); border-radius: 6px; padding: 38px 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  background: var(--black); border: 1px solid var(--line); border-radius: 3px;
  color: var(--cream); padding: 12px 14px; font-family: var(--sans); font-size: 0.95rem;
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.quote-form .btn { grid-column: 1 / -1; }
.quote-form__fineprint { grid-column: 1 / -1; text-align: center; font-size: 0.76rem; color: var(--muted-dark); }

/* ---------- Footer ---------- */
.footer { background: #000; border-top: 1px solid var(--line); padding-top: 50px; }
.footer__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 26px; padding-bottom: 36px; }
.footer__brand { display: flex; align-items: center; gap: 16px; }
.footer__tagline { color: var(--muted); font-size: 0.86rem; margin-top: 4px; }
.footer__nav { display: flex; gap: 26px; }
.footer__nav a { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.05em; }
.footer__nav a:hover { color: var(--gold-light); }
.footer__bottom { border-top: 1px solid var(--line); padding: 22px 0; }
.footer__bottom p { font-size: 0.8rem; color: var(--muted-dark); text-align: center; }

/* ---------- Floating call ---------- */
.floating-call {
  position: fixed; bottom: 22px; right: 22px; z-index: 200; display: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #1a1407;
  padding: 14px 22px; border-radius: 40px; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

/* ---------- Active nav state ---------- */
.nav a[aria-current="page"] { color: var(--gold); }
.nav a.nav__cta[aria-current="page"] { color: #1a1407; }

/* ---------- Section CTA link ---------- */
.section__cta { text-align: center; margin-top: 46px; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: 80px 0 64px;
  background:
    radial-gradient(circle at 75% 10%, rgba(201,162,39,0.12), transparent 55%),
    linear-gradient(180deg, var(--black) 0%, var(--black-2) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero__title { font-family: var(--serif); font-weight: 600; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.08; margin: 8px 0 18px; }
.page-hero__sub { color: var(--muted); font-size: 1.12rem; max-width: 640px; }
.page-hero__sub a.gold { text-decoration: underline; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(circle at 20% 50%, rgba(201,162,39,0.14), transparent 60%),
    #000;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 60px 0;
}
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 600; }
.cta-band p { color: var(--muted); margin-top: 6px; }

/* ---------- Service detail rows ---------- */
.service-detail { display: grid; gap: 30px; }
.service-row {
  background: var(--black-2); border: 1px solid var(--line); border-radius: 6px;
  padding: 44px 42px; transition: border-color 0.3s;
}
.service-row:hover { border-color: var(--gold); }
.service-row__kicker { font-family: var(--serif); font-size: 1.1rem; color: var(--gold); letter-spacing: 0.2em; }
.service-row h2 { font-family: var(--serif); font-size: 2rem; font-weight: 600; margin: 6px 0 14px; }
.service-row__text > p { color: var(--muted); max-width: 760px; margin-bottom: 22px; }

.check-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 30px; }
.check-list li { position: relative; padding-left: 28px; color: var(--cream); font-size: 0.96rem; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--gold); font-weight: 600;
}
.service-note { margin-top: 20px; color: var(--muted); font-size: 0.9rem; font-style: italic; }
.service-note em { color: var(--gold); font-style: normal; }
.service-note a { color: var(--gold-light); text-decoration: underline; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card {
  position: relative; background: var(--black-2); border: 1px solid var(--line);
  border-radius: 6px; padding: 40px 32px; text-align: center;
}
.price-card--featured { border-color: var(--gold); box-shadow: 0 18px 50px rgba(201,162,39,0.12); transform: translateY(-8px); }
.price-card__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #1a1407;
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  padding: 6px 16px; border-radius: 20px;
}
.price-card__name { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; margin-bottom: 8px; }
.price-card__desc { color: var(--muted); font-size: 0.92rem; min-height: 42px; margin-bottom: 18px; }
.price-card__price { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: var(--gold); margin-bottom: 22px; line-height: 1.15; }
.price-card__from { display: block; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.price-card__list { list-style: none; text-align: left; margin-bottom: 28px; display: grid; gap: 10px; }
.price-card__list li { position: relative; padding-left: 24px; color: var(--cream); font-size: 0.93rem; }
.price-card__list li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
.price-note { text-align: center; margin-top: 30px; color: var(--muted); font-style: italic; font-size: 0.92rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.price-note a { color: var(--gold-light); text-decoration: underline; }
.price-perks { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; margin-top: 40px; }
.price-perk { color: var(--muted); font-size: 0.92rem; }

/* pricing extras */
.price-lead { max-width: 720px; margin: 0 auto 44px; text-align: center; color: var(--muted); font-size: 1.04rem; line-height: 1.6; }
.price-lead strong { color: var(--cream); font-weight: 500; }
.price-card__unit { font-size: 1.1rem; font-weight: 600; color: var(--muted); }
.price-card__list li strong { color: var(--gold-light); font-weight: 600; }

/* add-ons panel */
.addons { max-width: 760px; margin: 56px auto 0; padding: 38px 34px; background: var(--black-2); border: 1px solid var(--line); border-radius: 6px; text-align: center; }
.addons__title { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; margin-bottom: 8px; }
.addons__lead { color: var(--muted); font-size: 0.95rem; max-width: 540px; margin: 0 auto 26px; }
.addons__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.addon { display: flex; flex-direction: column; gap: 8px; padding: 22px 16px; border: 1px solid var(--line); border-radius: 5px; transition: border-color 0.25s, transform 0.25s; }
.addon:hover { border-color: var(--gold); transform: translateY(-4px); }
.addon__label { color: var(--cream); font-size: 0.92rem; line-height: 1.4; }
.addon__label em { color: var(--gold); font-style: normal; }
.addon__price { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; }

/* ---------- FAQ accordion ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq { background: var(--black-2); border: 1px solid var(--line); border-radius: 5px; padding: 4px 26px; transition: border-color 0.25s; }
.faq[open] { border-color: var(--gold); }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 0;
  font-family: var(--serif); font-size: 1.28rem; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 1.6rem; font-family: var(--sans); transition: transform 0.25s; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); padding: 0 0 22px; font-size: 0.98rem; }
.faq p a { color: var(--gold-light); text-decoration: underline; }

/* ---------- Booking layout ---------- */
.book-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: start; }
.book-info h2 { font-family: var(--serif); font-size: 1.8rem; font-weight: 600; margin-bottom: 10px; }
.book-info > p { color: var(--muted); margin-bottom: 26px; }

/* ---------- Footer social row ---------- */
.footer__social { display: flex; gap: 20px; }
.footer__social a { font-size: 0.82rem; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase; }
.footer__social a:hover { color: var(--gold-light); }

/* ===========================================================
   Motion, illustration & interactivity
   =========================================================== */

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Animated underline under centered section titles ---------- */
.section__title::after {
  content: ""; display: block; width: 64px; height: 2px; margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ---------- Nav hover underline ---------- */
.nav a:not(.nav__cta) { position: relative; }
.nav a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 1px; width: 0;
  background: var(--gold); transition: width .25s ease;
}
.nav a:not(.nav__cta):hover::after,
.nav a:not(.nav__cta)[aria-current="page"]::after { width: 100%; }

/* ---------- Gold button shine ---------- */
.btn--gold { position: relative; overflow: hidden; }
.btn--gold::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg); transition: left .6s ease;
}
.btn--gold:hover::after { left: 150%; }

/* ---------- Service card icons (SVG) ---------- */
.card__icon svg { width: 26px; height: 26px; display: block; }
.card__icon { transition: transform .35s ease, background .35s ease, border-color .35s ease; }
.card:hover .card__icon { background: var(--gold-soft); border-color: var(--gold); transform: rotate(-8deg) scale(1.08); }

/* ---------- Process & why hover ---------- */
.step { transition: transform .3s ease, border-color .3s ease; }
.step:hover { transform: translateY(-5px); border-color: var(--gold); }
.why__item { transition: border-color .3s ease; }
.why__item:hover { border-top-color: var(--gold-light); }
.why__item:hover .why__num { color: var(--gold-light); }

/* ---------- Hero soap bubbles ---------- */
.hero__bubbles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero__bubbles span {
  position: absolute; bottom: -26px; border-radius: 50%; opacity: 0;
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.6), rgba(201,162,39,0.16) 46%, rgba(201,162,39,0) 72%);
  border: 1px solid rgba(201,162,39,0.32);
  animation: floatUp linear infinite;
}
.hero__bubbles span:nth-child(1) { left: 6%;  width: 12px; height: 12px; animation-duration: 13s;   animation-delay: 0s; }
.hero__bubbles span:nth-child(2) { left: 18%; width: 18px; height: 18px; animation-duration: 11s;   animation-delay: 2s; }
.hero__bubbles span:nth-child(3) { left: 29%; width: 9px;  height: 9px;  animation-duration: 15s;   animation-delay: 1s; }
.hero__bubbles span:nth-child(4) { left: 40%; width: 14px; height: 14px; animation-duration: 12s;   animation-delay: 4s; }
.hero__bubbles span:nth-child(5) { left: 53%; width: 20px; height: 20px; animation-duration: 16s;   animation-delay: 0.5s; }
.hero__bubbles span:nth-child(6) { left: 63%; width: 10px; height: 10px; animation-duration: 14s;   animation-delay: 3s; }
.hero__bubbles span:nth-child(7) { left: 72%; width: 16px; height: 16px; animation-duration: 11.5s; animation-delay: 1.5s; }
.hero__bubbles span:nth-child(8) { left: 83%; width: 12px; height: 12px; animation-duration: 13.5s; animation-delay: 2.5s; }
.hero__bubbles span:nth-child(9) { left: 90%; width: 8px;  height: 8px;  animation-duration: 12.5s; animation-delay: 5s; }
.hero__bubbles span:nth-child(10){ left: 47%; width: 10px; height: 10px; animation-duration: 17s;   animation-delay: 6s; }
@keyframes floatUp {
  0%   { transform: translateY(0) scale(.5);   opacity: 0; }
  15%  { opacity: .5; }
  85%  { opacity: .28; }
  100% { transform: translateY(-92vh) scale(1); opacity: 0; }
}

/* ---------- Hero floating cleaning supplies (simple & subtle) ---------- */
.hero__icons { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-icon {
  position: absolute; opacity: 0.85; pointer-events: auto; cursor: pointer;
  transition: opacity .3s ease, transform .3s ease, filter .3s ease;
  animation: bob ease-in-out infinite;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.45));
}
.hero-icon svg { width: 100%; height: 100%; display: block; }
.hero-icon:hover { animation-play-state: paused; opacity: 1; transform: scale(1.12); filter: drop-shadow(0 8px 18px rgba(201,162,39,0.35)); }
.hero-icon--spray  { width: 54px; height: 54px; top: 18%;    right: 8%;  animation-duration: 9s;  animation-delay: 0s; }
.hero-icon--vacuum { width: 54px; height: 54px; top: 45%;    right: 15%; animation-duration: 11s; animation-delay: 1.5s; }
.hero-icon--broom  { width: 50px; height: 50px; bottom: 16%; right: 7%;  animation-duration: 10s; animation-delay: 0.8s; }
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-10px) rotate(2deg); }
}

/* ---------- Review monogram avatars ---------- */
.review { display: flex; flex-direction: column; }
.review p { flex: 1; }
.review footer {
  display: flex; align-items: center; gap: 12px; margin-top: 6px;
  text-transform: none; letter-spacing: 0.02em; color: var(--cream); font-size: 0.95rem;
}
.review__avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #1a1407;
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.03em;
}

/* ---------- Back-to-top ---------- */
.to-top {
  position: fixed; bottom: 22px; left: 22px; z-index: 200;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--gold); background: rgba(11,11,12,0.75); color: var(--gold);
  font-size: 1.2rem; cursor: pointer; backdrop-filter: blur(6px);
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .3s ease, color .3s ease;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--gold); color: #1a1407; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__bubbles, .hero__icons { display: none; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 940px) {
  .cards, .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .areas__list { grid-template-columns: repeat(3, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price-card--featured { transform: none; }
  .addons__grid { grid-template-columns: 1fr; }
  .book-layout { grid-template-columns: 1fr; gap: 36px; }
  .hero-icon--bucket { display: none; }
}

@media (max-width: 720px) {
  .hero__icons { display: none; }
}

@media (max-width: 720px) {
  .topbar__item:first-child { display: none; }
  .nav {
    position: fixed; top: 78px; right: 0; left: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--black-2); border-bottom: 1px solid var(--line);
    padding: 10px 24px; transform: translateY(-130%); transition: transform 0.35s ease;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav__cta { margin: 12px 0; text-align: center; }
  .nav-toggle { display: flex; }
  .steps { flex-direction: column; align-items: center; }
  .step__arrow { transform: rotate(90deg); }
  .quote-form { grid-template-columns: 1fr; }
  .floating-call { display: block; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .check-list { grid-template-columns: 1fr; }
  .service-row { padding: 32px 26px; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 460px) {
  .cards, .reviews__grid, .why__grid, .stats__inner { grid-template-columns: 1fr; }
  .areas__list { grid-template-columns: repeat(2, 1fr); }
}
