/* ============================================
   Caring Moms Cleaning — Global Stylesheet
   Brand: cream #f0ece3 | green #3d5741 | gold #c4a55a | sage #7a9e7e
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,400;1,600&family=Lato:wght@300;400;600;700&display=swap');

:root {
  --cream: #f0ece3;
  --cream-dark: #e4ddd1;
  --green: #3d5741;
  --green-dark: #2d4231;
  --green-light: #4d6e52;
  --gold: #c4a55a;
  --gold-light: #d4b96e;
  --sage: #7a9e7e;
  --text: #2a2a2a;
  --text-mid: #555;
  --text-light: #888;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.15);
  --radius: 10px;
  --radius-lg: 18px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  color: var(--green);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--text-mid); line-height: 1.8; }

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.22s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61,87,65,0.35);
}
.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,165,90,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: rgba(240,236,227,0.6);
}
.btn-outline-cream:hover {
  background: var(--cream);
  color: var(--green);
}
.btn-lg { padding: 18px 38px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo .logo-text .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.03em;
}
.nav-logo .logo-text .tagline {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: color 0.18s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--green);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone::before { content: '📞'; font-size: 0.85rem; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--green);
  color: var(--cream);
  text-align: center;
  padding: 9px 24px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.top-bar a { color: var(--gold); }
.top-bar strong { color: var(--gold); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.48);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,66,49,0.7) 0%, rgba(61,87,65,0.4) 60%, transparent 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}
.hero-content .section-label { color: var(--gold-light); }
.hero-content h1 { color: var(--cream); margin-bottom: 20px; }
.hero-content h1 em { color: var(--gold); font-style: italic; }
.hero-content p { color: rgba(240,236,227,0.85); font-size: 1.1rem; margin-bottom: 32px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(240,236,227,0.75);
  font-size: 0.82rem;
  font-weight: 600;
}
.trust-badge .icon { font-size: 1.1rem; }

.hero-card {
  background: rgba(240,236,227,0.97);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: var(--green); margin-bottom: 18px; font-size: 1.3rem; }
.price-grid { display: grid; gap: 12px; margin-bottom: 20px; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.9rem;
}
.price-row:last-child { border-bottom: none; }
.price-row .service { font-weight: 600; color: var(--text); }
.price-row .price { font-weight: 700; color: var(--green); font-family: 'Cormorant Garamond', serif; font-size: 1rem; }
.hero-card .btn { width: 100%; justify-content: center; margin-top: 4px; }
.hero-card small { display: block; text-align: center; margin-top: 10px; color: var(--text-light); font-size: 0.77rem; }

/* ── SECTION LAYOUT ── */
.section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header p { font-size: 1.05rem; margin-top: 14px; }

.section-cream { background: var(--cream); }
.section-green { background: var(--green); color: var(--cream); }
.section-green h2, .section-green h3 { color: var(--cream); }
.section-green p { color: rgba(240,236,227,0.8); }
.section-green .section-label { color: var(--gold); }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--cream-dark);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.4rem; margin-bottom: 16px; }
.service-card h3 { margin-bottom: 10px; }
.service-card .price-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 5px 14px;
  background: var(--cream);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
}
.badge-popular {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.why-item { text-align: center; }
.why-icon {
  width: 68px; height: 68px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
}
.section-green .why-icon { background: rgba(255,255,255,0.12); }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--cream-dark);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--cream-dark);
  line-height: 1;
}
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; }
.testimonial-text { font-style: italic; color: var(--text-mid); margin-bottom: 18px; padding-top: 10px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  font-family: 'Cormorant Garamond', serif;
  flex-shrink: 0;
}
.reviewer-info .name { font-weight: 700; font-size: 0.9rem; }
.reviewer-info .location { font-size: 0.78rem; color: var(--text-light); }

/* ── PHOTO GALLERY ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.photo-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.3s;
}
.photo-grid img:hover { transform: scale(1.03); }
.photo-grid .wide { grid-column: span 2; }
.photo-grid .tall { grid-row: span 2; height: 100%; }

/* ── LOCATIONS STRIP ── */
.locations-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.location-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(196,165,90,0.25);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.22s;
}
.location-card:hover {
  background: rgba(255,255,255,0.14);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.location-card .loc-icon { font-size: 1.8rem; margin-bottom: 10px; }
.location-card h4 { color: var(--cream); margin-bottom: 4px; }
.location-card p { color: rgba(240,236,227,0.6); font-size: 0.82rem; margin: 0; }
.location-card a {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
}

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
  padding: 22px 0;
}
.faq-item h4 { color: var(--green); margin-bottom: 8px; cursor: pointer; display: flex; justify-content: space-between; }
.faq-item p { font-size: 0.93rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-light) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(196,165,90,0.15)'/%3E%3C/svg%3E");
}
.cta-banner-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-banner h2 { color: var(--cream); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 14px; }
.cta-banner p { color: rgba(240,236,227,0.8); font-size: 1.05rem; margin-bottom: 32px; }
.cta-banner .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-phone {
  display: block;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 18px;
  letter-spacing: 0.04em;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--green-dark);
  color: var(--cream);
  padding: 60px 24px 30px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(196,165,90,0.2);
}
.footer-brand .logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-brand .logo-row img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}
.footer-brand .brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
}
.footer-brand p { font-size: 0.88rem; color: rgba(240,236,227,0.6); max-width: 280px; }
.footer-contact { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { color: rgba(240,236,227,0.8); font-size: 0.88rem; transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-col h5 {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  color: rgba(240,236,227,0.65);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(240,236,227,0.4);
}
.footer-bottom a { color: rgba(240,236,227,0.4); }

/* ── LOC HERO (location pages) ── */
.loc-hero {
  background: var(--green);
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}
.loc-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.loc-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.loc-hero-content .section-label { color: var(--gold); }
.loc-hero-content h1 { color: var(--cream); margin-bottom: 16px; }
.loc-hero-content p { color: rgba(240,236,227,0.8); margin-bottom: 28px; font-size: 1.05rem; }
.loc-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.loc-hero-img img { width: 100%; height: 360px; object-fit: cover; }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 12px 24px;
  background: var(--cream);
  font-size: 0.8rem;
  color: var(--text-light);
}
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; }
.breadcrumb a { color: var(--green); }
.breadcrumb span { margin: 0 8px; color: var(--text-light); }

/* ── INCLUDE LIST ── */
.include-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.include-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
}
.include-item::before { content: '✓'; color: var(--gold); font-weight: 900; }

/* ── PROCESS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step-card {
  position: relative;
  padding: 28px 22px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  text-align: center;
}
.step-num {
  width: 44px; height: 44px;
  background: var(--green);
  color: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 16px;
}
.step-card p { font-size: 0.88rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 440px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .loc-hero-inner { grid-template-columns: 1fr; }
  .loc-hero-img { display: none; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid .wide { grid-column: span 2; }
  nav .nav-links { display: none; }
}

@media (max-width: 600px) {
  .section { padding: 56px 18px; }
  .hero-inner { padding: 80px 18px 60px; }
  .hero-actions { flex-direction: column; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid .wide { grid-column: 1; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-banner .actions { flex-direction: column; align-items: center; }
}
