:root {
  --sage: #6b8e4e;
  --sage-dark: #4d6b38;
  --blush: #e8879c;
  --blush-light: #f7dce1;
  --cream: #faf3ea;
  --cream-2: #f2e9da;
  --ink: #3a3227;
  --ink-soft: #6b6155;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(74, 60, 40, 0.12);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: 'Nunito Sans', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Quicksand', system-ui, sans-serif;
  color: var(--sage-dark);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 5vw, 2.8rem); line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); display: flex; align-items: center; gap: 0.4em; }
h3 { font-size: 1.15rem; color: var(--ink); }

p { margin: 0 0 1em; }

a { color: var(--sage-dark); }

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

/* language toggling */
[data-lang="es"] .lang-en { display: none; }
[data-lang="en"] .lang-es { display: none; }

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 243, 234, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--cream-2);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--sage-dark);
}

.brand-accent { color: var(--blush); }

.lang-toggle {
  border: 2px solid var(--sage);
  background: transparent;
  color: var(--sage-dark);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-toggle:hover { background: var(--sage); color: white; }

.site-nav { display: flex; align-items: center; gap: 12px; }

.nav-link {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: var(--sage-dark);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.15s ease;
  white-space: nowrap;
}

.nav-link:hover { background: var(--blush-light); }

/* cross-link band between the two pages */
.section.cross-link { background: var(--blush-light); text-align: center; }
.section.cross-link h2 { justify-content: center; }
.section.cross-link p { max-width: 56ch; margin: 0 auto 1.2em; color: var(--ink-soft); }

@media (max-width: 560px) {
  .nav-link { padding: 6px 10px; font-size: 0.9rem; }
  .brand { font-size: 1.05rem; }
  .header-row { gap: 8px; }
}

/* hero */
.hero {
  padding: 56px 0 40px;
  background: linear-gradient(180deg, var(--cream-2), var(--cream) 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--blush);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 42ch;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--sage);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover { background: var(--sage-dark); }

.badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
}

.badges li {
  background: white;
  border: 1px solid var(--cream-2);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.hero-photo img {
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
  margin: 0 auto;
  border: 6px solid white;
}

/* sections */
.section { padding: 56px 0; }
.section.about { background: white; }
.section.services { background: var(--cream); }
.section.how { background: var(--blush-light); }
.section.testimonials { background: white; }
.section.contact { background: var(--cream-2); }

.leaf { filter: saturate(1.2); }

/* services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--sage);
}

.service-card p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

.disclaimer {
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  border-left: 3px solid var(--blush);
  padding-left: 16px;
}

/* how */
.how-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 14px;
}

.how-list li {
  background: white;
  border-radius: 12px;
  padding: 14px 18px;
}

/* testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.testimonial {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 0;
  box-shadow: var(--shadow);
}

.stars { color: var(--blush); letter-spacing: 2px; margin-bottom: 8px; }

.testimonial p {
  font-style: italic;
  color: var(--ink);
}

.testimonial footer {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: normal;
}

/* family services (childcare / cleaning / cooking) */
.section.family-services { background: var(--cream); }

.fs-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.fs-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--blush);
}

.fs-icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.fs-card p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

.service-area {
  margin-top: 32px;
  text-align: center;
}

.sa-label {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 10px;
}

.sa-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.sa-badges li {
  background: var(--sage);
  color: white;
  border-radius: 999px;
  padding: 8px 22px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

.note-lang {
  margin: 26px auto 22px;
  max-width: 52ch;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
  background: white;
  border-radius: 12px;
  padding: 14px 20px;
}

.note-lang p { margin: 0; }

.section.family-services .btn { display: block; width: fit-content; margin: 0 auto; text-align: center; }

/* other services */
.section.other-services { background: white; text-align: center; }
.section.other-services h2 { justify-content: center; }
.section.other-services p { max-width: 56ch; margin: 0 auto 1em; color: var(--ink-soft); }

.other-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin: 20px 0 26px;
}

.other-list li {
  background: var(--cream);
  border: 1px solid var(--cream-2);
  border-radius: 999px;
  padding: 8px 20px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: var(--sage-dark);
}

.other-list:empty { display: none; margin: 0; }

.section.other-services .btn { display: inline-block; }

/* contact */
.contact-grid h2 { justify-content: center; }
.contact-grid { text-align: center; }
.contact-grid .btn { margin-top: 12px; }

/* footer */
.site-footer {
  background: var(--sage-dark);
  color: white;
  padding: 22px 0;
  font-size: 0.85rem;
}

.site-footer a { color: white; }

@media (max-width: 780px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { order: -1; }
  .hero-photo img { max-width: 240px; }
}
