/* ================================================================
   LUMINAE — Global Stylesheet
   Fonts: Cormorant Garamond (display) + Jost (UI)
   ================================================================ */

/* Fonts loaded via <link> in HTML — no @import to avoid render blocking */

/* ── CSS Variables ─────────────────────────────────────────────── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E2C97E;
  --gold-pale:   #F5EDDA;
  --navy:        #1A1F2E;
  --navy-mid:    #2C3347;
  --ivory:       #F9F6F0;
  --warm-white:  #FDFBF7;
  --charcoal:    #3D3D3D;
  --mist:        #E8E2D9;
  --success:     #5DD39E;
  --error:       #E07070;
  --shadow-sm:   0 2px 16px rgba(26,31,46,.06);
  --shadow-md:   0 8px 40px rgba(26,31,46,.12);
  --shadow-lg:   0 24px 64px rgba(26,31,46,.18);
  --radius:      0px;
  --transition:  all .35s ease;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  color: var(--navy);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── Scrollbar ─────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeUp   { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes slideIn  { from { opacity:0; transform:translateX(20px); } to { opacity:1; transform:none; } }
@keyframes floatY   { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } }
@keyframes pulseGlow{ 0%,100% { opacity:.4; transform:scale(1); } 50% { opacity:.8; transform:scale(1.12); } }
@keyframes shimmer  { 0% { background-position:-200% center; } 100% { background-position:200% center; } }
@keyframes spin     { from { transform:rotate(0); } to { transform:rotate(360deg); } }
@keyframes scaleIn  { from { transform:scale(.96); opacity:0; } to { transform:scale(1); opacity:1; } }
@keyframes countUp  { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:none; } }

.animate-fade-up   { animation: fadeUp .7s ease both; }
.animate-fade-in   { animation: fadeIn .6s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
.delay-5 { animation-delay: .5s; }
.delay-6 { animation-delay: .6s; }

/* Scroll-reveal */
.reveal { opacity:0; transform:translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity:1; transform:none; }
.reveal.delay-1 { transition-delay:.1s; }
.reveal.delay-2 { transition-delay:.2s; }
.reveal.delay-3 { transition-delay:.3s; }
.reveal.delay-4 { transition-delay:.4s; }
.reveal.delay-5 { transition-delay:.5s; }
.reveal.delay-6 { transition-delay:.6s; }

/* ================================================================
   LAYOUT
   ================================================================ */
.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.section    { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.grid-2     { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3     { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4     { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
.display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.1;
}
.display-xl  { font-size: clamp(52px,8vw,104px); }
.display-lg  { font-size: clamp(38px,5vw,64px); }
.display-md  { font-size: clamp(28px,4vw,44px); }
.display-sm  { font-size: clamp(22px,3vw,32px); }
.subtitle    { font-size: 13px; letter-spacing:.38em; text-transform:uppercase; color:var(--gold); }
.body-text   { font-size: 15px; line-height: 1.85; color: rgba(26,31,46,.9); }
.caption     { font-size: 11px; letter-spacing:.2em; text-transform:uppercase; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Jost', sans-serif; font-weight: 500; font-size: 11px;
  letter-spacing: .32em; text-transform: uppercase; transition: var(--transition);
  border: none; padding: 16px 36px; white-space: nowrap;
}
.btn-gold {
  background: var(--gold); color: var(--navy);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(201,168,76,.3); }
.btn-navy { background: var(--navy); color: var(--ivory); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid rgba(26,31,46,.22);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-pale); }
.btn-outline-white {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 10px 22px; font-size: 10px; }
.btn-lg { padding: 20px 52px; font-size: 12px; }
.btn-full { width: 100%; }

/* Loading state */
.btn.loading { pointer-events:none; opacity:.7; }
.btn.loading::after {
  content:''; width:14px; height:14px; border:2px solid currentColor;
  border-top-color:transparent; border-radius:50%;
  animation: spin .7s linear infinite;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px; display: flex; align-items: center;
  padding: 0 48px;
  transition: background .5s ease, border .5s ease, backdrop-filter .5s ease;
}
.nav.scrolled {
  background: rgba(253,251,247,.96);
  border-bottom: 1px solid rgba(26,31,46,.07);
  backdrop-filter: blur(14px);
}
.nav.dark-nav {
  background: rgba(26,31,46,.85);
  border-bottom: 1px solid rgba(201,168,76,.1);
  backdrop-filter: blur(14px);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}

/* ── LOGO ──────────────────────────────────────────────────────── */
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.logo-image-slot {
  /* Drop your logo image here — recommended: 140×40px PNG/SVG with transparent bg */
  width: 140px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,.08);
  border: 1px dashed rgba(201,168,76,.3);
  font-size: 9px; letter-spacing:.25em; text-transform:uppercase;
  color: rgba(201,168,76,.6);
  position: relative;
}
.logo-image-slot img {
  width: 100%; height: 100%; object-fit: contain;
  position: absolute; inset: 0;
}

/* FIX #1: Was "nav-logo-text" in components.js — now both files use
   "logo-text-fallback" so scroll/dark colour changes work.          */
.logo-text-fallback {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 22px; letter-spacing:.2em;
}
.nav.scrolled .logo-text-fallback { color: var(--navy); }
.nav:not(.scrolled):not(.dark-nav) .logo-text-fallback { color: var(--ivory); }
.dark-nav .logo-text-fallback { color: var(--ivory); }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-link {
  font-size: 10px; letter-spacing:.35em; text-transform:uppercase;
  transition: color .3s;
}
.nav.scrolled .nav-link    { color: rgba(26,31,46,.72); }
.nav:not(.scrolled):not(.dark-nav) .nav-link { color: rgba(255,255,255,.82); }
.dark-nav .nav-link        { color: rgba(249,246,240,.72); }
.nav-link:hover            { color: var(--gold) !important; }
.nav-link.is-active        { color: var(--gold) !important; }

.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-signin {
  font-size: 10px; letter-spacing:.3em; text-transform:uppercase;
  transition: color .3s;
}
.nav.scrolled .nav-signin    { color: rgba(26,31,46,.72); }
.nav:not(.scrolled) .nav-signin { color: rgba(255,255,255,.82); }
.nav-signin:hover            { color: var(--gold) !important; }

/* Mobile menu toggle */
.nav-toggle { display:none; flex-direction:column; gap:5px; background:none; border:none; padding:4px; }
.nav-toggle span {
  display:block; width:22px; height:1.5px; background:currentColor;
  transition: var(--transition);
}
.nav.scrolled .nav-toggle { color: var(--navy); }
.nav:not(.scrolled) .nav-toggle { color: white; }

/* Open state: the toggle becomes a clear close (X), always light on the
   dark drawer regardless of scroll position. */
.nav.open .nav-toggle { color: var(--ivory) !important; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding: 120px 40px 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,31,46,.75) 0%,
    rgba(26,31,46,.55) 50%,
    rgba(26,31,46,.4) 100%
  );
}
.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  font-size: 10px; letter-spacing:.5em; text-transform:uppercase;
  color: var(--gold); margin-bottom: 24px;
  animation: fadeUp .8s ease both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: clamp(56px,9vw,110px);
  color: white; letter-spacing:.1em; line-height: 1.02;
  animation: fadeUp .9s .12s ease both; opacity: 0;
  animation-fill-mode: forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 36px auto;
  animation: fadeUp .8s .28s ease both; opacity: 0;
  animation-fill-mode: forwards;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px,2.5vw,26px); font-weight: 600;
  color: white; max-width: 540px; margin: 0 auto 48px;
  line-height: 1.6;
  animation: fadeUp .8s .4s ease both; opacity: 0;
  animation-fill-mode: forwards;
}
.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .8s .54s ease both; opacity: 0;
  animation-fill-mode: forwards;
}
.hero-trust {
  display: flex; gap: 32px; justify-content: center; margin-top: 60px;
  animation: fadeUp .8s .68s ease both; opacity: 0;
  animation-fill-mode: forwards;
  flex-wrap: wrap;
}
.hero-trust-item { display: flex; align-items: center; gap: 8px; }
.hero-trust-dot  { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero-trust-text { font-size: 11px; letter-spacing:.15em; text-transform:uppercase; color: rgba(255,255,255,.82); }

/* Stats */
.hero-stats {
  display: flex; gap: 60px; justify-content: center; margin-top: 72px;
  animation: fadeUp .8s .82s ease both; opacity: 0;
  animation-fill-mode: forwards;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 500; color: white; line-height: 1;
}
.hero-stat-label { font-size: 9px; letter-spacing:.3em; text-transform:uppercase; color: rgba(255,255,255,.65); margin-top: 6px; }

/* Scroll arrow */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  animation: floatY 2.2s ease-in-out infinite; z-index: 2;
}
.hero-scroll svg { opacity: .45; }

/* ================================================================
   BOOKING SEARCH BAR
   ================================================================ */
.search-bar {
  background: white; border-top: 1px solid rgba(26,31,46,.07);
  border-bottom: 1px solid rgba(26,31,46,.07);
  padding: 36px 0;
}
.search-bar-inner {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 12px; align-items: end;
}
.search-field label {
  display: block; font-size: 9px; letter-spacing:.35em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.search-field select,
.search-field input {
  width: 100%; background: var(--ivory);
  border: 1px solid rgba(26,31,46,.12);
  color: var(--navy); font-family: 'Jost', sans-serif;
  font-weight: 500; font-size: 13px;
  padding: 12px 16px; outline: none;
  transition: border-color .25s;
  appearance: none;
}
.search-field select:focus,
.search-field input:focus  { border-color: var(--gold); }
.search-field input::placeholder { color: rgba(26,31,46,.3); }

/* ================================================================
   SECTION LABELS
   ================================================================ */
.section-label {
  display: flex; align-items: center; gap: 16px;
  font-size: 10px; letter-spacing:.4em; text-transform:uppercase;
  color: var(--gold); margin-bottom: 52px;
}
.section-label::after {
  content: ''; flex: 1; height: 1px;
  background: rgba(201,168,76,.25);
}

/* ================================================================
   SERVICES
   ================================================================ */
.service-card {
  position: relative; overflow: hidden; cursor: pointer;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-img {
  height: 240px; overflow: hidden; position: relative;
}
.service-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .service-img img { transform: scale(1.06); }
.service-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--navy);
  font-size: 9px; letter-spacing:.22em; text-transform:uppercase;
  padding: 5px 12px;
}
.service-body { padding: 24px; background: white; border: 1px solid rgba(26,31,46,.08); border-top: none; }
.service-name { font-family:'Cormorant Garamond',serif; font-size:22px; color:var(--navy); margin-bottom:8px; }
.service-desc { font-size:13.5px; line-height:1.78; color:rgba(26,31,46,.72); margin-bottom:18px; }
.service-price { font-family:'Cormorant Garamond',serif; font-size:20px; color:var(--gold); }

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.how-bg { background: var(--ivory); }
.step-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.step {
  padding: 48px 32px; border-top:1px solid rgba(26,31,46,.1);
  border-right:1px solid rgba(26,31,46,.1);
  border-bottom:1px solid rgba(26,31,46,.1);
}
.step:first-child { border-left:1px solid rgba(26,31,46,.1); }
.step-num {
  font-family:'Cormorant Garamond',serif; font-size:72px; font-weight:500;
  color:rgba(75, 53, 2, 0.18); line-height:1; margin-bottom:20px;
}
.step-icon { font-size:28px; margin-bottom:16px; }
.step-title { font-family:'Cormorant Garamond',serif; font-size:20px; color:var(--navy); margin-bottom:12px; }
.step-desc { font-size:13.5px; line-height:1.8; color:rgba(26,31,46,.72); }

/* ================================================================
   CLEANERS
   ================================================================ */
.cleaner-card {
  background: white; border: 1px solid rgba(26,31,46,.08);
  box-shadow: var(--shadow-sm); transition: var(--transition);
  overflow: hidden;
}
.cleaner-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(201,168,76,.35); }
.cleaner-photo { height: 280px; overflow: hidden; position: relative; }
.cleaner-photo img { width:100%; height:100%; object-fit:cover; object-position:top; transition: transform .6s ease; }
.cleaner-card:hover .cleaner-photo img { transform: scale(1.05); }
.cleaner-badge {
  position:absolute; top:16px; right:16px;
  background:var(--gold); color:var(--navy);
  font-size:9px; letter-spacing:.2em; text-transform:uppercase; padding:5px 12px;
}
.cleaner-body { padding:22px 24px; }
.cleaner-name { font-family:'Cormorant Garamond',serif; font-size:21px; color:var(--navy); margin-bottom:4px; }
.cleaner-city { font-size:11px; letter-spacing:.15em; color:rgba(26,31,46,.62); text-transform:uppercase; margin-bottom:14px; }
.cleaner-rating { display:flex; align-items:center; gap:6px; margin-bottom:14px; }
.stars { color:var(--gold); font-size:13px; letter-spacing:2px; }
.cleaner-rating-num { font-family:'Cormorant Garamond',serif; font-size:16px; }
.cleaner-tags { display:flex; gap:7px; flex-wrap:wrap; margin-bottom:18px; }
.cleaner-tag {
  font-size:9px; letter-spacing:.15em; text-transform:uppercase;
  padding:4px 11px; border:1px solid rgba(201,168,76,.3);
  color:rgba(26,31,46,.75); background:var(--gold-pale);
}
.cleaner-footer {
  display:flex; align-items:center; justify-content:space-between;
  padding-top:16px; border-top:1px solid rgba(26,31,46,.06);
}
.verified-badge { display:flex; align-items:center; gap:6px; }
.verified-dot   { width:6px; height:6px; border-radius:50%; background:var(--success); }
.verified-text  { font-size:9px; letter-spacing:.18em; text-transform:uppercase; color:rgba(93,211,158,.8); }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonial-bg { background: var(--navy); }
.testimonial-slide { display:none; }
.testimonial-slide.active { display:block; animation:fadeIn .6s ease; }
.testimonial-quote {
  font-family:'Cormorant Garamond',serif; font-size:clamp(22px,3vw,34px);
  font-weight:500; font-style:italic; color:var(--ivory);
  line-height:1.6; max-width:700px; margin:0 auto 36px;
  text-align:center;
}
.testimonial-mark {
  font-family:'Cormorant Garamond',serif; font-size:90px;
  color:rgba(201,168,76,.12); line-height:0.6; margin-bottom:24px;
  text-align:center;
}
.testimonial-author { text-align:center; }
.testimonial-name { font-family:'Cormorant Garamond',serif; font-size:18px; color:var(--gold); }
.testimonial-loc  { font-size:10px; letter-spacing:.3em; text-transform:uppercase; color:rgba(249,246,240,.62); margin-top:5px; }
.testimonial-dots { display:flex; justify-content:center; gap:10px; margin-top:48px; }
.t-dot {
  width:6px; height:6px; border-radius:3px; cursor:pointer;
  background:rgba(249,246,240,.2); transition:all .35s ease;
  border:none;
}
.t-dot.active { width:24px; background:var(--gold); }

/* ================================================================
   IMAGE SPLIT SECTION
   ================================================================ */
.split-section { display:grid; grid-template-columns:1fr 1fr; min-height:560px; }
.split-image { overflow:hidden; }
.split-image img { width:100%; height:100%; object-fit:cover; }
.split-content {
  padding:80px 64px; display:flex; flex-direction:column;
  justify-content:center; background:var(--warm-white);
}
.split-content.dark {
  background:var(--navy);
}
.split-content.dark .display { color:var(--ivory); }
.split-content.dark .body-text { color:rgba(249,246,240,.5); }

/* ================================================================
   CITIES
   ================================================================ */
.city-grid { display:flex; flex-wrap:wrap; gap:10px; }
.city-pill {
  padding:10px 22px; border:1px solid rgba(201,168,76,.28);
  font-size:12px; letter-spacing:.18em; text-transform:uppercase;
  color:var(--charcoal); background:white; transition:var(--transition); cursor:pointer;
}
.city-pill:hover { border-color:var(--gold); color:var(--gold); background:var(--gold-pale); }

/* ================================================================
   PRICING
   ================================================================ */
.pricing-bg { background:var(--ivory); }
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.pricing-card {
  background:white; border:1px solid rgba(26,31,46,.1);
  padding:40px 32px; position:relative; transition:var(--transition);
  box-shadow:var(--shadow-sm);
}
.pricing-card:hover { box-shadow:var(--shadow-md); transform:translateY(-4px); }
.pricing-card.featured {
  border:1.5px solid var(--gold); background:var(--gold-pale);
  box-shadow:0 8px 40px rgba(201,168,76,.15);
  padding-top:56px;
}
.pricing-badge {
  position:absolute; top:0; left:50%; transform:translateX(-50%);
  background:var(--gold); color:var(--navy);
  font-size:9px; letter-spacing:.25em; text-transform:uppercase; padding:5px 20px;
}
.pricing-plan { font-size:9px; letter-spacing:.4em; text-transform:uppercase; color:var(--gold); margin-bottom:20px; }
.pricing-price { font-family:'Cormorant Garamond',serif; font-size:54px; font-weight:500; color:var(--navy); line-height:1; }
.pricing-unit  { font-size:11px; letter-spacing:.15em; color:rgba(26,31,46,.58); margin:6px 0 14px; }
.pricing-desc  { font-size:13.5px; color:rgba(26,31,46,.72); line-height:1.7; margin-bottom:30px; }
.pricing-features { display:flex; flex-direction:column; gap:12px; margin-bottom:36px; }
.pricing-feature { display:flex; align-items:center; gap:11px; font-size:13.5px; color:rgba(26,31,46,.78); }
.pricing-feature::before { content:'◆'; color:var(--gold); font-size:10px; flex-shrink:0; }

/* ================================================================
   TRUST BAND
   ================================================================ */
.trust-band { background:var(--navy); padding:72px 0; }
.trust-grid  { display:grid; grid-template-columns:repeat(4,1fr); gap:48px; }
.trust-icon  { font-size:26px; color:var(--gold); margin-bottom:14px; opacity:.75; }
.trust-title { font-family:'Cormorant Garamond',serif; font-size:20px; color:var(--ivory); margin-bottom:10px; }
.trust-desc  { font-size:13.5px; line-height:1.8; color:rgba(249,246,240,.68); }

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  position:relative; overflow:hidden; text-align:center;
  padding:100px 40px;
  background:linear-gradient(158deg,var(--warm-white) 0%,var(--gold-pale) 100%);
  border-top:1px solid rgba(201,168,76,.15);
}
.cta-glow {
  position:absolute; width:500px; height:500px; border-radius:50%;
  background:radial-gradient(circle,rgba(201,168,76,.1) 0%,transparent 68%);
  top:50%; left:50%; transform:translate(-50%,-50%);
  animation:pulseGlow 8s ease-in-out infinite;
  pointer-events:none;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer { background:var(--navy); }

/* ── FOOTER IMAGE PLACEHOLDER ──────────────────────────────────── */
.footer-image-slot {
  /* Drop your footer banner/image here — recommended: full-width, ~400px tall */
  width:100%; height:360px; position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  background:var(--navy-mid);
  border-bottom:1px solid rgba(201,168,76,.1);
}
.footer-image-slot img {
  width:100%; height:100%; object-fit:cover; opacity:.6;
  position:absolute; inset:0;
}
.footer-image-slot .footer-image-overlay {
  position:relative; z-index:1; text-align:center;
}
.footer-image-slot .footer-image-label {
  font-size:9px; letter-spacing:.4em; text-transform:uppercase;
  color:rgba(201,168,76,.45); margin-bottom:12px;
}
.footer-image-slot .footer-image-tagline {
  font-family:'Cormorant Garamond',serif; font-size:clamp(28px,4vw,48px);
  color:white; font-style:italic; font-weight:500;
}

.footer-main { padding:64px 0 40px; }
.footer-grid  { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:60px; margin-bottom:56px; }
.footer-brand-desc { font-size:13px; line-height:1.85; color:rgba(249,246,240,.6); max-width:250px; margin-top:20px; }
.footer-social { display:flex; gap:10px; margin-top:24px; }
.social-btn {
  width:32px; height:32px; border:1px solid rgba(201,168,76,.22);
  display:flex; align-items:center; justify-content:center;
  font-size:9px; color:rgba(249,246,240,.6); transition:var(--transition);
  background:none;
}
.social-btn:hover { border-color:var(--gold); color:var(--gold); }
.footer-col-title { font-size:9px; letter-spacing:.4em; text-transform:uppercase; color:var(--gold); margin-bottom:22px; }
.footer-col-links { display:flex; flex-direction:column; gap:14px; }
.footer-col-link  { font-size:13px; color:rgba(249,246,240,.62); transition:color .3s; }
.footer-col-link:hover { color:var(--gold); }
.footer-bottom {
  border-top:1px solid rgba(249,246,240,.07); padding-top:24px;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
}
.footer-copy { font-size:11px; color:rgba(249,246,240,.48); letter-spacing:.08em; }
.footer-legal { display:flex; gap:24px; }
.footer-legal a {
  font-size:10px; letter-spacing:.12em; text-transform:uppercase;
  color:rgba(249,246,240,.48); transition:color .3s;
}
.footer-legal a:hover { color:var(--gold); }

/* Footer logo slot */
.footer-logo-slot {
  display:flex; align-items:center; gap:10px; margin-bottom:4px;
}
.footer-logo-img {
  /* Place your logo here - light/white version recommended */
  height:36px; width:auto;
}

/* ================================================================
   FORMS
   ================================================================ */
.form-group { display:flex; flex-direction:column; gap:7px; }
.form-label { font-size:9px; letter-spacing:.38em; text-transform:uppercase; color:var(--gold); }
.form-input {
  background:white; border:1px solid rgba(26,31,46,.15);
  color:var(--navy); font-family:'Jost',sans-serif; font-weight:500;
  font-size:13px; padding:13px 16px; outline:none; width:100%;
  transition:border-color .25s, box-shadow .25s;
}
.form-input:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(201,168,76,.1); }
.form-input::placeholder { color:rgba(26,31,46,.28); }
.form-input.error { border-color:var(--error); }
.form-select { appearance:none; cursor:pointer; }
.form-textarea { resize:vertical; line-height:1.7; min-height:100px; }
.form-error { font-size:11px; color:var(--error); margin-top:4px; }

/* ================================================================
   CARDS / COMMON
   ================================================================ */
.card { background:white; border:1px solid rgba(26,31,46,.08); box-shadow:var(--shadow-sm); }
.card-hover { transition:var(--transition); }
.card-hover:hover { box-shadow:var(--shadow-md); transform:translateY(-4px); border-color:rgba(201,168,76,.35); }

.badge {
  display:inline-flex; align-items:center; gap:5px;
  font-size:9px; letter-spacing:.18em; text-transform:uppercase;
  padding:4px 10px;
}
.badge::before { content:''; width:5px; height:5px; border-radius:50%; background:currentColor; display:block; }

/* Rule / divider */
.rule { height:1px; background:rgba(26,31,46,.07); }
.rule-gold { height:1px; background:linear-gradient(90deg,transparent,var(--gold),transparent); }

/* Alert banner */
.alert {
  padding:14px 20px; display:flex; align-items:center; gap:12px;
  font-size:13px; border-left:3px solid currentColor;
}
.alert-success { background:rgba(93,211,158,.08); color:var(--success); }
.alert-error   { background:rgba(224,112,112,.08); color:var(--error); }
.alert-gold    { background:var(--gold-pale); color:var(--navy); border-color:var(--gold); }

/* Spinner */
.spinner {
  width:20px; height:20px; border:2px solid rgba(26,31,46,.15);
  border-top-color:var(--gold); border-radius:50%;
  animation:spin .7s linear infinite;
}

/* ================================================================
   PAGE HEADER (inner pages)
   ================================================================ */
.page-header {
  background:var(--navy); padding:120px 0 64px; text-align:center;
  position:relative; overflow:hidden;
}
.page-header::before {
  content:''; position:absolute; inset:0;
  background-size:cover; background-position:center; opacity:.15;
}
.page-header-content { position:relative; z-index:1; }
.page-header h1 { color:var(--ivory); margin-bottom:12px; }
.page-header p  { color:rgba(249,246,240,.5); max-width:480px; margin:0 auto; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .trust-grid { grid-template-columns:repeat(2,1fr); gap:32px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:40px; }
  .step-grid { grid-template-columns:repeat(2,1fr); }
  .pricing-grid { grid-template-columns:1fr 1fr; }
  .split-section { grid-template-columns:1fr; }
  .split-image { height:360px; }
  .split-content { padding:60px 40px; }
}

@media (max-width: 768px) {
  .container { padding:0 24px; }
  .section { padding:72px 0; }
  .section-sm { padding:48px 0; }
  .nav { padding:0 24px; height:64px; }

  /* FIX #2: Also hide nav-signin on mobile so it doesn't float
     beside the hamburger. It is re-shown inside .nav.open below. */
  .nav-links,
  .nav-actions .btn-gold,
  .nav-actions .nav-signin { display:none; }

  .nav-toggle { display:flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns:1fr; }
  .pricing-grid { grid-template-columns:1fr; }
  .trust-grid { grid-template-columns:1fr; gap:32px; }
  .hero-stats { gap:40px; }
  .footer-grid { grid-template-columns:1fr; gap:36px; }
  .step-grid { grid-template-columns:1fr; }
  .search-bar-inner { grid-template-columns:1fr; }
  .split-content { padding:48px 32px; }

  .nav.open {
    height:auto; flex-direction:column; background:rgba(26,31,46,.98) !important;
    padding-bottom:24px; align-items:stretch;
  }
  .nav.open .nav-inner { flex-direction:column; align-items:flex-start; gap:0; }
  .nav.open .nav-links { display:flex; flex-direction:column; width:100%; gap:0; padding:12px 0; }
  .nav.open .nav-link { padding:12px 0; color:rgba(249,246,240,.6) !important; border-bottom:1px solid rgba(201,168,76,.08); }
  .nav.open .nav-actions {
    display:flex; flex-direction:row; align-items:center; gap:16px;
    padding-top:20px; width:100%;
    border-top:1px solid rgba(201,168,76,.08);
  }
  .nav.open .nav-actions .btn-gold { display:inline-flex; }
  /* FIX #2 continued: restore sign-in link inside open menu */
  .nav.open .nav-signin { display:inline; color:rgba(249,246,240,.6) !important; }

  /* FIX #3: Pin the hamburger so it stays top-right when the nav
     expands to full height in open state.                        */
  .nav-toggle {
    position: absolute;
    top: 20px;
    right: 24px;
  }
}

/* ================================================================
   SMALL SCREENS (480px and below)
   ================================================================ */
@media (max-width: 480px) {
  .container { padding:0 16px; }
  .hero { padding:100px 16px 60px; }
  .hero-stats { flex-direction:column; gap:20px; align-items:center; }
  .hero-trust { gap:16px; }
  .hero-ctas { flex-direction:column; align-items:center; }
  .btn-lg { padding:16px 36px; font-size:11px; }
  .split-content { padding:40px 20px; }
  .step { padding:32px 20px; }
  .pricing-card { padding:32px 20px; }
  .pricing-card.featured { padding-top:56px; }
  .search-bar { padding:24px 0; }
  .cta-banner { padding:64px 16px; }
  .footer-main { padding:48px 0 32px; }
  .footer-bottom { flex-direction:column; align-items:flex-start; gap:16px; }
  .footer-legal { flex-wrap:wrap; gap:16px; }
  .section-label { font-size:9px; letter-spacing:.25em; }
}

[hidden] { display: none !important; }


/* ================================================================
   CLEANERS MARKETPLACE — SCOPED DESIGN SYSTEM
   Activated only on <body class="page-cleaners">.
   All selectors below are scoped so they cannot leak into the rest of
   the site. Original cleaners.css design preserved verbatim, just
   namespaced. If you need to extend the marketplace styles, add them
   under this section.
   ================================================================ */

body.page-cleaners {
  /* Marketplace radius scale (overrides global --radius: 0 inside scope) */
  --radius:    8px;
  --radius-sm: 6px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Marketplace surface / text tokens */
  --surface:       #F9F6F0;
  --surface-mute:  #F9F6F0;
  --border:        #E8E2D9;
  --border-strong: rgba(26,31,46,.12);
  --text:          #1A1F2E;
  --text-mute:     rgba(26,31,46,.72);
  --text-soft:     rgba(26,31,46,.45);

  --primary:       #1A1F2E;
  --primary-hover: #2C3347;
  --gold-soft:     #F5EDDA;
  --green:         #5DD39E;
  --green-soft:    rgba(93,211,158,.12);
  --red:           #E07070;
  --red-soft:      rgba(224,112,112,.12);
  --star:          #C9A84C;

  --shadow:      0 8px 32px rgba(26,31,46,.08);
  --shadow-gold: 0 12px 40px rgba(201,168,76,.25);

  --topbar-h: 60px;
  --dock-h:   84px;

  /* Marketplace uses Inter for denser UI text */
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-feature-settings: 'cv11', 'ss01';
  line-height: 1.5;
  padding-bottom: calc(var(--dock-h) + env(safe-area-inset-bottom, 0px));
}
body.page-cleaners.no-scroll { overflow: hidden; }

/* ─────────────────────────────────────────────────────────
 * Luminae · Cleaners Marketplace · styles
 * Mobile-first, vanilla CSS. No dependencies.
 * ───────────────────────────────────────────────────────── */

/* ── Tokens ─────────────────────────────────────── */
/* ── Reset ──────────────────────────────────────── */
/* ── Sub-header strip (sits below the global nav) ─ */
body.page-cleaners .subhead {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
body.page-cleaners .subhead__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}
body.page-cleaners .subhead__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mute);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  transition: all .18s ease;
}
body.page-cleaners .subhead__back:hover {
  color: var(--text);
  background: var(--surface-mute);
}
body.page-cleaners .subhead__title {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -.01em;
  color: var(--text);
  text-align: center;
}
body.page-cleaners .subhead__spacer { width: 60px; }
@media (min-width: 720px) {
  body.page-cleaners .subhead__inner { padding: 18px 20px; }
  body.page-cleaners .subhead__title { font-size: 26px; }
}

body.page-cleaners .modal__loading-hint {
  text-align: center;
  font-size: 12px;
  color: var(--text-soft);
  padding: 8px 0 4px;
  letter-spacing: .04em;
}

/* ── Page container ─────────────────────────────── */
body.page-cleaners .page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 16px 24px;
}

/* ── Auto-assign banner ─────────────────────────── */
body.page-cleaners .auto {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
  transition: box-shadow .25s, border-color .25s, background-color .25s;
}

body.page-cleaners .auto:hover { box-shadow: var(--shadow); }

body.page-cleaners .auto-on .auto {
  background: var(--gold-soft);
  border-color: var(--gold);
}

body.page-cleaners .auto__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}

body.page-cleaners .auto-on .auto__icon { background: var(--surface); }

body.page-cleaners .auto__title {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  letter-spacing: -.005em;
}

body.page-cleaners .auto__copy { min-width: 0; }

body.page-cleaners .auto__sub {
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 2px;
}

body.page-cleaners .auto-active {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #1F2A44;
  background: var(--gold-soft);
  border: 1px solid #E8D9A8;
  border-left: 3px solid var(--gold);
  padding: 10px 14px;
  border-radius: var(--radius);
  margin-bottom: 14px;
  animation: slideDown .25s ease both;
}

body.page-cleaners .auto-active svg { color: var(--gold); flex-shrink: 0; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* Switch */
body.page-cleaners .switch {
  display: inline-block;
  position: relative;
  width: 46px; height: 28px;
}
body.page-cleaners .switch input { opacity: 0; width: 0; height: 0; }
body.page-cleaners .switch__track {
  position: absolute; inset: 0;
  background: var(--border-strong);
  border-radius: 999px;
  transition: background-color .2s;
}
body.page-cleaners .switch__track::before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 22px; height: 22px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
  transition: transform .2s;
}
body.page-cleaners .switch input:checked + .switch__track { background: var(--gold); }
body.page-cleaners .switch input:checked + .switch__track::before { transform: translateX(18px); }
body.page-cleaners .switch input:focus-visible + .switch__track { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ── Filters ────────────────────────────────────── */
body.page-cleaners .filters {
  margin: 16px 0 18px;
}

body.page-cleaners .filters__row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  scrollbar-width: none;
}
body.page-cleaners .filters__row::-webkit-scrollbar { display: none; }

body.page-cleaners .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  font-weight: 500;
  font-size: 13.5px;
  padding: 9px 16px;
  border-radius: 999px;
  transition: all .18s ease;
  white-space: nowrap;
}
body.page-cleaners .chip:hover { border-color: var(--text); }
body.page-cleaners .chip--active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
body.page-cleaners .auto-on .chip { opacity: .4; pointer-events: none; }

body.page-cleaners .filters__count {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: .01em;
}

/* ── Cleaner grid ───────────────────────────────── */
body.page-cleaners .grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  body.page-cleaners .grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (min-width: 1080px) {
  body.page-cleaners .grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* ── Card ───────────────────────────────────────── */
body.page-cleaners .card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  transition: all .22s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  cursor: pointer;
  animation: cln-fadeUp .35s ease both;
}

body.page-cleaners .card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

body.page-cleaners .card--selected {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(245,237,218,.45) 0%, rgba(255,255,255,1) 60%);
  box-shadow: var(--shadow-gold);
}

body.page-cleaners .card--selected::before {
  content: '';
  position: absolute;
  top: 12px; right: 12px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230F172A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

body.page-cleaners .card--dim {
  opacity: .55;
  pointer-events: none;
  filter: grayscale(20%);
}

@keyframes cln-fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

/* Card top: avatar + name + rating + availability */
body.page-cleaners .card__top {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
}

body.page-cleaners .card__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-mute);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
body.page-cleaners .card__avatar-img {
  width: 100%; height: 100%; object-fit: cover;
}
body.page-cleaners .card__avatar-fallback {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--text-mute);
}

body.page-cleaners .card__head { min-width: 0; }
body.page-cleaners .card__name {
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  letter-spacing: -.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.page-cleaners .card__rating {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 3px;
}
body.page-cleaners .card__rating strong {
  font-weight: 600;
  color: var(--text);
}
body.page-cleaners .card__rating .muted {
  color: var(--text-soft);
  font-size: 12.5px;
}
body.page-cleaners .star { color: var(--star); }
body.page-cleaners .muted { color: var(--text-soft); }

body.page-cleaners .badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 999px;
  letter-spacing: .01em;
  white-space: nowrap;
}
body.page-cleaners .badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}
body.page-cleaners .badge--ok { color: #047857; background: var(--green-soft); }
body.page-cleaners .badge--off { color: #991B1B; background: var(--red-soft); }

/* Card meta */
body.page-cleaners .card__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 0;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
body.page-cleaners .meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
body.page-cleaners .meta dt {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: .06em;
}
body.page-cleaners .meta dd {
  margin: 0;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Tags */
body.page-cleaners .card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
body.page-cleaners .tag {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  background: var(--surface-mute);
  color: var(--text-mute);
  padding: 4px 10px;
  border-radius: 999px;
}
body.page-cleaners .tag--lg { font-size: 13px; padding: 6px 12px; }

/* Card footer */
body.page-cleaners .card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
body.page-cleaners .card__price {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
body.page-cleaners .card__price-amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -.01em;
}
body.page-cleaners .card__price-unit {
  font-size: 13px;
  color: var(--text-soft);
}
body.page-cleaners .card__actions {
  display: flex;
  gap: 8px;
}

/* ── Buttons ────────────────────────────────────── */
body.page-cleaners .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -.005em;
  transition: all .18s ease;
  white-space: nowrap;
}
body.page-cleaners .btn:disabled { opacity: .55; cursor: not-allowed; }

body.page-cleaners .btn--primary {
  background: var(--primary);
  color: #fff;
}
body.page-cleaners .btn--primary:not(:disabled):hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
body.page-cleaners .btn--gold {
  background: var(--gold);
  color: var(--text);
}
body.page-cleaners .btn--gold:not(:disabled):hover {
  background: #DABB66;
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}
body.page-cleaners .btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
body.page-cleaners .btn--ghost:hover {
  background: var(--surface-mute);
  border-color: var(--text);
}
body.page-cleaners .btn--sm { padding: 8px 13px; font-size: 13px; border-radius: 8px; }
body.page-cleaners .btn--lg { padding: 14px 20px; font-size: 15px; border-radius: 12px; }

/* ── State (error / empty) ──────────────────────── */
body.page-cleaners .state {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
body.page-cleaners .state__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
body.page-cleaners .state__icon--soft { background: var(--surface-mute); color: var(--text-mute); }
body.page-cleaners .state__title {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--text);
}
body.page-cleaners .state__msg {
  margin: 0 0 6px;
  color: var(--text-mute);
  font-size: 14px;
  max-width: 360px;
}

/* ── Loading skeletons ──────────────────────────── */
body.page-cleaners .skel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 250px;
  position: relative;
  overflow: hidden;
}
body.page-cleaners .skel-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(15,23,42,.04) 50%, transparent 100%);
  animation: cln-shimmer 1.4s linear infinite;
}
@keyframes cln-shimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}

/* ── Sticky bottom dock ─────────────────────────── */
body.page-cleaners .dock {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 25;
  background: rgba(255, 255, 255, .96);
  border-top: 1px solid var(--border);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
body.page-cleaners .dock__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
}
@media (min-width: 720px) {
  body.page-cleaners .dock__inner {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 16px 20px;
  }
}

body.page-cleaners .dock__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
}
body.page-cleaners .dock__hint {
  font-size: 13px;
  color: var(--text-soft);
}
body.page-cleaners .dock__sel-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: .08em;
}
body.page-cleaners .dock__sel-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
body.page-cleaners .dock__sel-price {
  color: var(--text-mute);
  font-size: 14px;
}
body.page-cleaners .dock .btn { width: 100%; }
@media (min-width: 720px) {
  body.page-cleaners .dock .btn { width: auto; min-width: 280px; }
}

/* ── Modal / Bottom sheet ───────────────────────── */
body.page-cleaners .modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

body.page-cleaners .modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .55);
  animation: cln-fadeIn .2s ease both;
}

@keyframes cln-fadeIn { from { opacity: 0; } to { opacity: 1; } }

body.page-cleaners .modal__sheet {
  position: relative;
  width: 100%;
  max-height: 92vh;
  background: var(--surface);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  animation: slideUp .3s cubic-bezier(.16, 1, .3, 1) both;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: none; }
}

@media (min-width: 720px) {
  body.page-cleaners .modal { align-items: center; padding: 24px; }
  body.page-cleaners .modal__sheet {
    width: 100%;
    max-width: 540px;
    border-radius: var(--radius-xl);
    max-height: 86vh;
    animation: zoomIn .25s cubic-bezier(.16, 1, .3, 1) both;
  }
  @keyframes zoomIn {
    from { opacity: 0; transform: scale(.96); }
    to   { opacity: 1; transform: none; }
  }
}

body.page-cleaners .modal__handle {
  width: 36px; height: 4px;
  border-radius: 999px;
  background: var(--border-strong);
  margin: 10px auto 0;
}
@media (min-width: 720px) { body.page-cleaners .modal__handle { display: none; } }

body.page-cleaners .modal__close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 1;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  display: inline-flex; align-items: center; justify-content: center;
}
body.page-cleaners .modal__close:hover { background: var(--surface-mute); }

body.page-cleaners .modal__body {
  overflow-y: auto;
  padding: 24px 22px 16px;
  flex: 1;
}

body.page-cleaners .modal__hero {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
body.page-cleaners .modal__avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-mute);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
body.page-cleaners .modal__avatar img { width: 100%; height: 100%; object-fit: cover; }
body.page-cleaners .modal__avatar-fallback {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  color: var(--text-mute);
}
body.page-cleaners .modal__heading { min-width: 0; }
body.page-cleaners .modal__name {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -.005em;
  color: var(--text);
}
body.page-cleaners .modal__rating {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 4px;
  font-size: 14px;
  color: var(--text-mute);
}

body.page-cleaners .modal__stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
@media (max-width: 480px) {
  body.page-cleaners .modal__stats { grid-template-columns: 1fr 1fr; }
}
body.page-cleaners .stat {
  background: var(--surface-mute);
  border-radius: var(--radius);
  padding: 12px 8px;
  text-align: center;
}
body.page-cleaners .stat__value {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
body.page-cleaners .stat__label {
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

body.page-cleaners .modal__bio {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.6;
  background: var(--surface-mute);
  padding: 12px 14px;
  border-radius: var(--radius);
}

body.page-cleaners .modal__section { margin-bottom: 18px; }
body.page-cleaners .modal__h3 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: .08em;
}
body.page-cleaners .modal__chips {
  display: flex; flex-wrap: wrap; gap: 6px;
}
body.page-cleaners .modal__slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 6px;
}
body.page-cleaners .slot {
  font-size: 13px;
  padding: 8px 10px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  text-align: center;
  color: var(--text);
}

body.page-cleaners .modal__foot {
  border-top: 1px solid var(--border);
  padding: 14px 22px;
  background: var(--surface);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
body.page-cleaners .modal__foot .btn { width: 100%; }

/* ── Focus styles (a11y) ────────────────────────── */
body.page-cleaners .btn:focus-visible,
body.page-cleaners .chip:focus-visible,
body.page-cleaners .iconbtn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
body.page-cleaners .card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ── Print fallback (just hide dock) ───────────── */
@media print {
  body.page-cleaners .dock,
body.page-cleaners .modal,
body.page-cleaners .topbar { display: none !important; }
}

/* ── Cleaners — favorite (heart) button ──────────────────────── */
body.page-cleaners .card { position: relative; }
body.page-cleaners .card__fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(26,31,46,.12);
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: rgba(26,31,46,.75);
  transition: color .18s, transform .18s, background .18s, border-color .18s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
body.page-cleaners .card__fav:hover { transform: scale(1.08); color: var(--gold); border-color: var(--gold); }
body.page-cleaners .card__fav.is-faved {
  color: #c2185b;
  border-color: rgba(194,24,91,.5);
  background: rgba(194,24,91,.06);
}
body.page-cleaners .card__fav.is-faved:hover { color: #c2185b; }
body.page-cleaners .card--blocked { opacity: .35; filter: grayscale(.3); }

/* ── Cleaners directory — weekly availability grid in profile modal ── */
body.page-cleaners .avail-grid {
  display: grid;
  gap: 8px;
}
body.page-cleaners .avail-grid__row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(26,31,46,.06);
}
body.page-cleaners .avail-grid__row:last-child { border-bottom: 0; }
body.page-cleaners .avail-grid__day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--navy);
}
body.page-cleaners .avail-grid__slots {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
body.page-cleaners .avail-grid__slot {
  background: rgba(201,168,76,.10);
  color: var(--navy);
  font-size: 12px;
  padding: 4px 10px;
  letter-spacing: .04em;
}
body.page-cleaners .avail-grid__off {
  color: rgba(26,31,46,.75);
  font-size: 12px;
  font-style: italic;
}
@media (max-width: 600px) {
  body.page-cleaners .avail-grid__row { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
}


/* ── Legibility overrides (added) ───────────────────────────────
   Force thin inline weights to a clearly visible medium, and lift
   the faintest inline text colours so copy reads well on light
   backgrounds. Scoped to `color:` so borders/backgrounds are left
   untouched. Real bold (600/700) is preserved. */
[style*="font-weight:300"],
[style*="font-weight: 300"]{ font-weight:500 !important; }

[style*="font-weight:400"],
[style*="font-weight: 400"]{ font-weight:500 !important; }

[style*="color:rgba(26,31,46,.3)"],
[style*="color:rgba(26,31,46,.35)"],
[style*="color:rgba(26,31,46,.38)"],
[style*="color:rgba(26,31,46,.4)"],
[style*="color:rgba(26,31,46,.42)"],
[style*="color:rgba(26,31,46,.45)"],
[style*="color:rgba(26,31,46,.5)"],
[style*="color:rgba(26,31,46,.55)"]{ color:rgba(26,31,46,.78) !important; }

/* Accessibility: skip-to-content link, visually hidden until focused. */
.skip-link{position:absolute;top:-48px;left:0;background:var(--navy);color:var(--ivory);padding:10px 16px;font-size:12px;letter-spacing:.2em;text-transform:uppercase;z-index:9999;text-decoration:none;transition:top .15s}
.skip-link:focus{top:0;outline:2px solid var(--gold);outline-offset:2px}

/* Featured-cleaner initials fallback when a professional has no photo. */
.cleaner-initials{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;background:var(--navy);color:var(--gold);font-family:'Cormorant Garamond',serif;font-size:46px;letter-spacing:.04em;}

/* Accessibility: honor the OS "reduce motion" preference. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* Cleaner-profile reviews (modal) */
.review-list { display: flex; flex-direction: column; gap: 12px; }
.review-card { border: 1px solid rgba(26,31,46,.1); border-radius: 10px; padding: 14px 16px; background: #fff; }
.review-card__stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; margin-bottom: 6px; }
.review-card__text { font-size: 13.5px; line-height: 1.65; color: rgba(26,31,46,.78); margin: 0 0 8px; }
.review-card__meta { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: rgba(26,31,46,.45); }

/* Homepage testimonials (real reviews) */
.tst-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; text-align: left; }
.tst-card { background: rgba(249,246,240,.06); border: 1px solid rgba(201,168,76,.22); border-radius: 12px; padding: 22px; }
.tst-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; font-size: 14px; }
.tst-text { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-style: italic; line-height: 1.6; color: rgba(249,246,240,.92); margin: 0 0 14px; }
.tst-meta { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: rgba(249,246,240,.45); }
