/* Luminous Cleaning LLC — brand: hot pink, black, light gold. Elegant, simple. */

:root {
  --pink: #e91e63;
  --pink-deep: #c2185b;
  --black: #0d0d0f;
  --ink: #1c1c1f;
  --gold: #d4af6a;
  --gold-soft: #e9d3a3;
  --ivory: #fdfbf7;
  --tint: #faf5ec;
  --muted: #6b6560;
  --line: #e8e0d2;
  --radius: 10px;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Jost", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--pink); color: #fff; padding: 10px 16px; z-index: 200;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13, 13, 15, 0.97);
  border-bottom: 1px solid rgba(212, 175, 106, 0.25);
}
.header-inner {
  display: flex; align-items: center; gap: 18px;
  padding-top: 10px; padding-bottom: 10px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand-logo {
  width: 56px; height: 56px; object-fit: contain;
  background: var(--ivory);
  border: 1px solid rgba(212, 175, 106, 0.5);
  /* square, never circular */
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { color: #fff; font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.02em; }
.brand-tag { color: var(--gold-soft); font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase; }

.main-nav ul { display: flex; gap: 4px; list-style: none; }
.main-nav a {
  color: #f2ede4; text-decoration: none; font-size: 0.95rem;
  padding: 8px 12px; letter-spacing: 0.04em;
}
.main-nav a:hover { color: var(--gold); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gold); margin: 5px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; font-weight: 500; letter-spacing: 0.03em;
  padding: 12px 26px; border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease;
  border: 1px solid transparent;
}
.btn svg { width: 20px; height: 20px; fill: currentColor; flex: none; }
.btn-call { background: var(--pink); color: #fff; }
.btn-call:hover { background: var(--pink-deep); transform: translateY(-1px); }
.btn-outline { border-color: var(--gold); color: var(--gold-soft); }
.btn-outline:hover { background: rgba(212, 175, 106, 0.14); }
.btn-lg { padding: 15px 34px; font-size: 1.08rem; }
.header-call { padding: 10px 20px; font-size: 0.95rem; white-space: nowrap; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1200px 500px at 50% -10%, rgba(233, 30, 99, 0.16), transparent 60%),
    linear-gradient(180deg, #141417 0%, #0d0d0f 100%);
  color: #f5f1e8; text-align: center;
  padding: 84px 0 76px;
}
.hero-kicker {
  color: var(--gold); letter-spacing: 0.32em; text-transform: uppercase;
  font-size: 0.8rem; margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.9rem, 4.6vw, 3rem); line-height: 1.2;
  max-width: 820px; margin: 0 auto 18px;
}
.hero-sub { max-width: 640px; margin: 0 auto 22px; color: #cfc9bd; font-size: 1.1rem; font-weight: 300; }
.hero-rating { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 30px; color: #e8e2d4; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1.15rem; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section-dark { background: var(--black); color: #f2ede4; }
.section-dark .section-lead { color: #c9c2b4; }
.section-tint { background: var(--tint); }

.section-kicker {
  color: var(--pink); letter-spacing: 0.3em; text-transform: uppercase;
  font-size: 0.78rem; margin-bottom: 10px; font-weight: 500;
}
.section-dark .section-kicker { color: var(--gold); }

h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem); line-height: 1.25;
  margin-bottom: 12px; color: var(--black);
}
.section-dark h2 { color: #fff; }
.section-lead { max-width: 640px; margin-bottom: 36px; color: var(--muted); font-size: 1.06rem; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px;
}
.card-icon { width: 44px; height: 44px; color: var(--pink); margin-bottom: 14px; }
.card h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 8px; color: var(--black); }
.card p { color: var(--muted); font-size: 0.98rem; }
.card-price { margin-top: 12px; font-family: var(--font-display); font-size: 1.6rem; color: var(--pink-deep); }
.card-price span { font-size: 1rem; color: var(--muted); font-family: var(--font-body); }
.card-featured { border-color: var(--gold); box-shadow: 0 8px 28px rgba(212, 175, 106, 0.18); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-bottom: 28px; }
.price-block {
  border: 1px solid rgba(212, 175, 106, 0.35); border-radius: var(--radius);
  padding: 30px; text-align: center; background: rgba(255, 255, 255, 0.03);
}
.price-block h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold-soft); margin-bottom: 6px; }
.price-block .price { font-family: var(--font-display); font-size: 2.6rem; color: #fff; }
.price-block .price span { font-size: 1.1rem; color: #b9b2a4; font-family: var(--font-body); }
.price-block p:last-child { color: #b9b2a4; font-size: 0.95rem; }
.price-highlight { border-color: var(--pink); background: rgba(233, 30, 99, 0.08); }

.pricing-notes { list-style: none; margin: 0 0 40px; display: grid; gap: 10px; }
.pricing-notes li {
  padding-left: 30px; position: relative; color: #d8d2c4; font-size: 1rem;
}
.pricing-notes li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.pricing-notes strong { color: var(--gold-soft); }

.addons-title {
  font-family: var(--font-display); color: #fff; font-size: 1.4rem;
  margin-bottom: 16px; text-align: center;
}
.addons { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin-bottom: 14px; }
.addons > div {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  border-bottom: 1px solid rgba(212, 175, 106, 0.25); padding: 10px 2px;
}
.addons dt { color: #e9e3d5; }
.addons dd { color: var(--gold); font-weight: 600; white-space: nowrap; }
.addons dd span { font-weight: 400; color: #a9a294; font-size: 0.85rem; }
.addons-note { text-align: center; color: #a9a294; font-size: 0.95rem; margin-bottom: 34px; }
.center { text-align: center; }

/* ---------- Areas ---------- */
.area-list {
  list-style: none; display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px;
}
.area-list li {
  border: 1px solid var(--gold); color: var(--black);
  padding: 10px 22px; border-radius: 999px; font-weight: 500; letter-spacing: 0.03em;
  background: #fff;
}
.areas-note { color: var(--muted); }

/* ---------- Reviews ---------- */
.reviews-grid { margin-bottom: 30px; }
.review blockquote {
  font-family: var(--font-display); font-style: italic; font-size: 1.12rem;
  color: var(--ink); margin-bottom: 16px; line-height: 1.55;
}
.review figcaption { display: flex; flex-direction: column; }
.review figcaption strong { color: var(--pink-deep); }
.review figcaption span { color: var(--muted); font-size: 0.88rem; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 340px 1fr; gap: 48px; align-items: center; }
.about-photo img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(13, 13, 15, 0.12);
}
.about-text p { margin-bottom: 16px; color: #3d3a36; }
.about-text .btn { margin-top: 8px; }

/* ---------- Contact ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.contact-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-decoration: none; text-align: center;
  border: 1px solid rgba(212, 175, 106, 0.35); border-radius: var(--radius);
  padding: 30px 20px; background: rgba(255, 255, 255, 0.03);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.contact-card:hover { transform: translateY(-2px); border-color: var(--pink); }
.contact-card svg { width: 34px; height: 34px; fill: var(--gold); }
.contact-card strong { color: #fff; font-size: 1.05rem; letter-spacing: 0.04em; }
.contact-card span { color: #c9c2b4; font-size: 0.95rem; word-break: break-word; }

/* ---------- Footer ---------- */
.site-footer { background: #08080a; color: #9a948a; padding: 48px 0 30px; }
.footer-inner { display: flex; flex-direction: column; gap: 18px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand .brand-logo { width: 72px; height: 72px; }
.footer-brand p { color: #e8e2d4; line-height: 1.4; }
.footer-tag { color: var(--gold-soft); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-links { list-style: none; display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: #b9b2a4; text-decoration: none; font-size: 0.95rem; }
.footer-links a:hover { color: var(--gold); }
.footer-contact a { color: var(--gold-soft); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-fine { font-size: 0.82rem; border-top: 1px solid rgba(212, 175, 106, 0.2); padding-top: 18px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-photo img { max-width: 320px; margin: 0 auto; }
  .header-call { display: none; }
  .nav-toggle { display: block; }
  .main-nav ul {
    display: none; position: absolute; top: 100%; right: 0; left: 0;
    background: #0d0d0f; flex-direction: column; padding: 12px 22px 20px;
    border-bottom: 1px solid rgba(212, 175, 106, 0.25);
  }
  .main-nav ul.open { display: flex; }
  .main-nav a { padding: 12px 4px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .header-inner { position: relative; }
}

@media (max-width: 560px) {
  .section { padding: 52px 0; }
  .hero { padding: 60px 0 56px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .btn-lg { padding: 14px 22px; }
}
