/* AAA Cleaning Genies — Facebook brand (royal blue + gold lamp) */
:root {
  --blue: #0057D9;
  --blue-dark: #003FA8;
  --blue-deep: #0A1F4A;
  --blue-soft: #E8F0FF;
  --gold: #E8B923;
  --gold-dark: #C99A12;
  --gold-soft: #FFF6D6;
  --ink: #141820;
  --muted: #4A5568;
  --line: #D6DEEB;
  --cream: #F7F9FC;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 87, 217, 0.1);
  --radius: 14px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1100px, calc(100% - 2rem)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,0.97);
  border-bottom: 3px solid var(--blue);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.55rem 0; flex-wrap: wrap;
}
.brand {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none; color: var(--blue-dark);
  font-weight: 800; font-size: 1.05rem; letter-spacing: -0.02em;
}
.brand picture { display: block; line-height: 0; flex-shrink: 0; }
.brand img {
  width: auto; height: 48px; max-width: 48px; object-fit: contain;
  border-radius: 50%; border: none; background: transparent; padding: 0;
}
.brand-text { line-height: 1.15; }
.brand-text small {
  display: block; font-weight: 650; font-size: 0.72rem;
  color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase;
}
.brand span { color: var(--gold-dark); }
.nav { display: flex; gap: 0.95rem; align-items: center; flex-wrap: wrap; }
.nav a { color: var(--muted); font-weight: 650; font-size: 0.95rem; text-decoration: none; }
.nav a[aria-current="page"], .nav a:hover { color: var(--blue-dark); }
.header-phone {
  font-weight: 800; color: var(--blue-dark); text-decoration: none; white-space: nowrap;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem; border-radius: 999px; padding: 0.75rem 1.3rem;
  font-weight: 750; border: 2px solid transparent; cursor: pointer;
  text-decoration: none; font-size: 0.98rem; line-height: 1.2;
}
.btn-primary { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); text-decoration: none; }
.btn-blue { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); text-decoration: none; }
.btn-outline { background: transparent; color: var(--blue-dark); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue-soft); text-decoration: none; }
.btn-light { background: #fff; color: var(--blue-dark); }
.btn-light:hover { background: var(--gold-soft); text-decoration: none; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; }

.hero {
  background:
    radial-gradient(circle at 90% 10%, rgba(232,185,35,0.18), transparent 38%),
    linear-gradient(180deg, var(--blue-soft), #fff 72%);
  padding: 2.75rem 0 2.5rem;
}
.hero-grid { display: grid; gap: 1.75rem; align-items: center; }
@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; }
}
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.75rem; font-weight: 800; color: var(--blue); margin: 0 0 0.55rem;
}
.hero h1 {
  margin: 0 0 0.75rem; font-size: clamp(1.85rem, 4.6vw, 2.85rem);
  line-height: 1.12; letter-spacing: -0.03em; color: var(--blue-deep);
}
.lede { font-size: 1.12rem; color: var(--muted); max-width: 40rem; margin: 0; }
.trust { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.35rem; }
.pill {
  background: var(--white); color: var(--blue-dark);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.35rem 0.8rem; font-size: 0.85rem; font-weight: 700;
}
.pill-gold { background: var(--gold-soft); border-color: #f0d78a; color: #7a5a00; }
.hero-art {
  border-radius: 16px; overflow: hidden;
  border: 3px solid var(--blue); box-shadow: var(--shadow);
  background: #fff;
}
.hero-art img { width: 100%; }

.section { padding: 3rem 0; }
.section.alt { background: var(--cream); }
.section h2 {
  margin: 0 0 0.5rem; font-size: clamp(1.55rem, 3vw, 2.05rem);
  letter-spacing: -0.02em; color: var(--blue-deep);
}
.section .intro { color: var(--muted); max-width: 42rem; margin: 0 0 1.5rem; }
.grid-2, .grid-3 { display: grid; gap: 1rem; }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.25rem 1.3rem; box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 0.4rem; color: var(--blue-dark); font-size: 1.15rem; }
.card p { margin: 0; color: var(--muted); }
.card ul { margin: 0.6rem 0 0; padding-left: 1.1rem; color: var(--muted); }
.card li { margin: 0.25rem 0; }
.areas .card { text-align: center; }
.areas .card strong { display: block; font-size: 1.15rem; color: var(--blue-dark); margin-bottom: 0.35rem; }

.about-grid { display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 800px) {
  .about-grid { grid-template-columns: 0.85fr 1.15fr; }
}
.about-photo {
  margin: 0;
  border-radius: 16px; overflow: hidden;
  border: 3px solid var(--gold); box-shadow: var(--shadow);
  background: #fff;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.about-photo figcaption {
  padding: 0.65rem 0.85rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--blue-deep);
  background: var(--gold-soft);
  border-top: 1px solid #f0d78a;
}
.about-copy p { color: var(--muted); margin: 0 0 1rem; }
.cred-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.cred {
  background: var(--blue); color: #fff; font-weight: 750;
  font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.4rem 0.75rem; border-radius: 8px;
}

.band {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff; padding: 2.6rem 0; text-align: center;
}
.band h2 { margin: 0 0 0.5rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.band p { margin: 0 auto 1.2rem; max-width: 38rem; opacity: 0.95; }
.band .cta-row { justify-content: center; }

.thank-you {
  display: none;
  margin: 0 0 1.25rem;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  background: #e8f7ee;
  border: 1px solid #9fd4b3;
  color: #14532d;
  font-weight: 650;
}
.thank-you.is-visible { display: block; }

.contact-grid { display: grid; gap: 1.5rem; }
@media (min-width: 860px) {
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}
.contact-list { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.contact-list li { padding: 0.85rem 0; border-top: 1px solid var(--line); color: var(--muted); }
.contact-list strong { color: var(--ink); }
.form {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow);
}
.field { margin-bottom: 0.9rem; }
.field label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 0.35rem; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 10px;
  padding: 0.7rem 0.8rem; font: inherit; background: #fff; color: var(--ink);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid rgba(0,87,217,0.35); border-color: var(--blue);
}
.field-grid { display: grid; gap: 0.9rem; }
@media (min-width: 560px) { .field-grid { grid-template-columns: 1fr 1fr; } }

.site-footer { background: var(--blue-deep); color: #c9d6ef; padding: 2.5rem 0 1.5rem; }
.footer-grid { display: grid; gap: 1.5rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer a { color: #fff; }
.footer-brand strong { display: block; font-size: 1.1rem; margin-bottom: 0.4rem; color: #fff; }
.footer-brand picture { display: block; line-height: 0; }
.footer-brand img {
  width: auto; height: 56px; max-width: 56px; object-fit: contain;
  border-radius: 50%; border: none; margin-bottom: 0.65rem;
  background: transparent; padding: 0;
}
.footer-links { display: grid; gap: 0.4rem; }
.footer-bottom {
  margin-top: 1.75rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.85rem; opacity: 0.85;
}

@media (max-width: 720px) {
  .nav .btn, .nav a:not(.header-phone):not(.btn) { font-size: 0.9rem; }
  .brand img { height: 44px; max-width: 44px; }
}

.hero-art picture, .about-photo picture { display: block; }
.hero-art img { width: 100%; height: auto; }


/* Sticky mobile Call / Book */
.mobile-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  gap: 0.5rem; padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.97);
  border-top: 2px solid var(--blue);
  box-shadow: 0 -8px 24px rgba(10,31,74,0.12);
}
.mobile-cta .btn { flex: 1; padding: 0.7rem 0.5rem; font-size: 0.92rem; }
@media (max-width: 720px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 4.75rem; }
}
.process-grid {
  display: grid; gap: 1rem; margin-top: 1.25rem;
}
@media (min-width: 760px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}
.process-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.15rem 1.2rem; box-shadow: var(--shadow);
}
.process-card .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 999px;
  background: var(--blue); color: #fff; font-weight: 800; font-size: 0.9rem;
  margin-bottom: 0.65rem;
}
.process-card h3 { margin: 0 0 0.35rem; color: var(--blue-deep); font-size: 1.05rem; }
.process-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }


.card-cta { margin: 0.85rem 0 0; font-size: 0.92rem; font-weight: 650; }
.card-cta a { font-weight: 750; }

.faq-list { display: grid; gap: 0.75rem; margin-top: 1.25rem; max-width: 48rem; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.15rem 1rem 0.15rem; box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer; font-weight: 750; color: var(--blue-deep);
  padding: 0.9rem 0; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex-shrink: 0; width: 1.5rem; height: 1.5rem;
  border-radius: 999px; background: var(--blue-soft); color: var(--blue-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 0 0 1rem; color: var(--muted); font-size: 0.98rem; }
