:root {
  --cream: #f4efe4;
  --cream-soft: #efe8d8;
  --black: #14120f;
  --black-soft: #201d18;
  --gold: #c2933d;
  --gold-light: #d9b571;
  --ink: #1c1a16;
  --muted: #6b6558;
  --border: #ddd3ba;
  --radius: 4px;
  --serif: Georgia, 'Times New Roman', Times, serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  background-image: radial-gradient(circle at 1px 1px, rgba(20,18,15,0.05) 1px, transparent 0);
  background-size: 20px 20px;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  margin: 0 0 10px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  height: 1px;
  width: 26px;
  background: var(--gold);
  opacity: 0.55;
  flex-shrink: 0;
}
.eyebrow.center, .hero .eyebrow { justify-content: center; }
h2.center { text-align: center; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--black);
  margin: 0 0 14px;
}

h2 { position: relative; padding-bottom: 22px; }
h2.center::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  background: var(--gold);
  opacity: 0.8;
}

/* Reusable double-border "frame" motif, echoing the logo's double ring */
.frame {
  position: relative;
  border: 1px solid var(--border);
}
.frame::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid var(--gold);
  opacity: 0.35;
  pointer-events: none;
}

.chevron-divider {
  display: flex;
  justify-content: center;
  padding: 6px 0;
  color: var(--gold);
  background: var(--cream);
}
.chevron-divider svg { width: 30px; height: 15px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 228, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
}
.brand-mark { width: 40px; height: 40px; color: var(--black); flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1; font-family: var(--serif); }
.brand-text strong { font-size: 1.1rem; letter-spacing: 0.04em; }
.brand-text em { font-style: normal; font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { font-size: 0.92rem; letter-spacing: 0.02em; color: var(--ink); }
.site-nav a:hover { color: var(--gold); }
.nav-cta {
  background: var(--black);
  color: var(--cream) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-cta:hover { background: var(--gold); color: var(--black) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--black); display: block; }
.mobile-nav { display: none; flex-direction: column; background: var(--cream); border-top: 1px solid var(--border); padding: 8px 24px 20px; }
.mobile-nav a { padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 1rem; }
.mobile-nav .nav-cta { text-align: center; margin-top: 12px; border-bottom: none; }

@media (max-width: 820px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav.open { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 56px 0 70px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top, rgba(194,147,61,0.12), transparent 60%),
    var(--cream);
}
.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 620px;
  height: 620px;
  transform: translate(-50%, -50%);
  color: var(--gold);
  opacity: 0.06;
  pointer-events: none;
}
.hero-inner { position: relative; }
.hero-logo { width: 108px; height: auto; color: var(--black); margin: 0 auto 22px; }
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.01em;
}
.hero-lead {
  max-width: 520px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 1.05rem;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 6px 18px rgba(194,147,61,0.35); }
.btn-outline { border-color: var(--black); color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--cream); }
.btn-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366; color: #0b2b17; width: 100%; padding: 15px;
  border-radius: var(--radius);
}
.btn-whatsapp:hover { background: #1ebe57; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.services { padding-bottom: 0; }

/* What We Clean — brochure-style rows: icon | copy | photo */
.service-rows {
  margin-top: 44px;
  background: #fff;
  border-radius: var(--radius);
}
.service-row {
  display: grid;
  grid-template-columns: 64px 1fr 130px;
  align-items: center;
  gap: 24px;
  padding: 26px 28px;
  border-bottom: 1px solid var(--border);
}
.service-row:last-child { border-bottom: none; }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-icon svg { width: 28px; height: 28px; }
.service-copy h3 { font-size: 1.1rem; margin-bottom: 6px; }
.service-copy p { color: var(--muted); font-size: 0.92rem; margin: 0; }

.photo-placeholder {
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: var(--radius);
  border: 1px dashed var(--border);
  background: linear-gradient(135deg, var(--cream-soft), #e6ddc2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
  color: var(--muted);
}
.photo-placeholder svg { width: 22px; height: 22px; opacity: 0.6; }
.photo-placeholder span { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.08em; }

.banner { background: var(--black); color: var(--cream); margin-top: 60px; }
.banner-inner { padding: 26px 24px; display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; text-align: left; }
.banner-icon { width: 30px; height: 30px; color: var(--gold-light); flex-shrink: 0; }
.banner-copy { display: flex; flex-direction: column; gap: 2px; }
.banner-title { color: var(--gold-light); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.95rem; }
.banner-sub { color: #cfc8b6; font-size: 0.9rem; }

.home-visits { background: var(--cream-soft); }
.visit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 44px;
}
.visit-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 22px;
  align-items: start;
}
.visit-card .photo-placeholder { aspect-ratio: 1 / 1.1; }
.visit-copy h3 { color: var(--gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--sans); font-weight: 700; margin-bottom: 16px; }
.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.check-list li { position: relative; padding-left: 28px; font-size: 0.93rem; }
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 18px; height: 18px;
  color: var(--gold);
  font-weight: 700;
}
@media (max-width: 520px) {
  .visit-card { grid-template-columns: 1fr; }
  .visit-card .photo-placeholder { aspect-ratio: 16 / 9; }
}

.steps {
  list-style: none;
  margin: 44px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}
.step-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px; height: 68px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  margin: 0 auto 18px;
}
.step-ring svg { width: 28px; height: 28px; }
.step-num {
  position: absolute;
  top: -8px; left: -8px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.steps h3 { font-size: 1.05rem; margin-bottom: 6px; }
.steps p { color: var(--muted); font-size: 0.9rem; margin: 0; }

.pricing { padding-bottom: 0; }
.table-wrap { overflow-x: auto; margin-top: 44px; padding: 5px; background: #fff; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.price-table th, .price-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.price-table td { display: table-cell; vertical-align: middle; }
.row-icon { display: inline-flex; width: 20px; height: 20px; margin-right: 10px; color: var(--gold); vertical-align: middle; }
.row-icon svg { width: 100%; height: 100%; }
.price-table thead th {
  background: var(--black);
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 0.95rem;
}
.price-table thead th span { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-light); font-family: var(--sans); }
.price-table td.highlight, .price-table th.highlight { color: var(--gold); font-weight: 700; }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-note { color: var(--muted); font-size: 0.82rem; margin-top: 18px; }

.book { background: var(--cream-soft); }
.book-panel {
  margin-top: 44px;
  background: var(--black);
  color: var(--cream);
  border-radius: 6px;
  padding: 36px;
}
.book-panel.frame::after { inset: 10px; opacity: 0.4; }
.book-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 780px) {
  .book-grid { grid-template-columns: 1fr; }
  .book-panel { padding: 22px; }
}

.booking-embed-wrap {
  background: #fff;
  border-radius: var(--radius);
  min-height: 460px;
  position: relative;
  color: var(--ink);
}
.cal-embed { width: 100%; height: 100%; min-height: 460px; }
.cal-placeholder {
  padding: 40px 28px;
  text-align: center;
  color: var(--muted);
}
.cal-placeholder-title { font-family: var(--serif); font-size: 1.2rem; color: var(--black); margin-bottom: 12px; }
.cal-placeholder code { background: var(--cream-soft); padding: 2px 6px; border-radius: 3px; }

.book-side { display: flex; flex-direction: column; gap: 16px; }
.qr-card {
  background: var(--black-soft);
  border: 1px solid rgba(217,181,113,0.35);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}
.qr-card img { margin: 0 auto 14px; border-radius: 4px; background: #fff; padding: 8px; border: 1px solid var(--gold); }
.qr-card p { color: var(--gold-light); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; font-weight: 700; margin: 0; }
.or-divider { display: flex; align-items: center; gap: 12px; color: #8b8578; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; }
.or-divider::before, .or-divider::after { content: ""; height: 1px; flex: 1; background: rgba(217,181,113,0.3); }
.book-side-note { color: #a39d8c; font-size: 0.85rem; text-align: center; margin: 0; }

.book-panel-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(217,181,113,0.25);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  flex-wrap: wrap;
}
.book-panel-footer svg { width: 18px; height: 18px; }
.book-panel-footer .sep { opacity: 0.5; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: var(--cream); padding: 60px 0 30px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.footer-brand { display: flex; align-items: center; justify-content: center; color: var(--cream); }
.footer-logo-full { width: 150px; height: auto; color: var(--gold-light); }
.tagline { text-transform: uppercase; letter-spacing: 0.25em; font-size: 0.8rem; color: var(--gold-light); margin: 0; }
.footer-contact { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; font-size: 0.9rem; color: #cfc8b6; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-note { color: #8b8578; font-size: 0.75rem; margin: 10px 0 0; }
.copyright { color: #6f6a5e; font-size: 0.78rem; margin-top: 18px; }

@media (max-width: 640px) {
  .service-row { grid-template-columns: 52px 1fr; }
  .service-row .photo-placeholder { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
}
