/* ─── Reset & Root ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FAF6F0;
  --surface: #F4EEE4;
  --sage: #7A9E7E;
  --sage-light: #C3D8C4;
  --sage-xlight: #E8F0E9;
  --forest: #2D4A3E;
  --text: #1A2B22;
  --text-mid: #3D5044;
  --text-light: #6B8072;
  --cream: #FAF6F0;
  --warm-border: #D8DDD5;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--sage-xlight); }
::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 4px; }

::selection { background: var(--sage-light); color: var(--forest); }

/* ─── Layout Helpers ─── */
.section-inner { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
.section-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 48px;
}

/* ─── Topbar ─── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--forest);
  padding: 0 28px;
}
.topbar-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.topbar-logo-img {
  height: 48px;
  width: auto;
  border-radius: 10px;
}
.topbar-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}
.topbar-cta {
  padding: 16px 44px;
  background: #8DB88A;
  color: white;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2), 0 0 20px rgba(141,184,138,0.35);
}
.topbar-cta:hover {
  background: #9fc99a;
  color: var(--forest);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3), 0 0 28px rgba(141,184,138,0.5);
}
.topbar-call {
  padding: 16px 24px;
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.topbar-call:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.55);
}

@media (max-width: 480px) {
  .topbar-inner { height: auto; padding: 16px 0; flex-wrap: wrap; gap: 12px; }
  .topbar-logo { flex-direction: column; gap: 6px; }
  .topbar-logo-img { height: 40px; }
  .topbar-logo-name { font-size: 18px; }
  .topbar-cta { padding: 12px 24px; font-size: 16px; }
  .topbar-call { padding: 12px 18px; font-size: 15px; }
}

/* ─── Nav ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--warm-border);
  padding: 0 28px;
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 400;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover {
  color: var(--sage);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 900px) {
  .nav-tagline { display: none; }
  .nav-links { gap: 14px; }
}
@media (max-width: 640px) {
  .nav-inner { gap: 12px; }
  .nav-links { gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
  .nav-link { font-size: 13px; }
}
@media (max-width: 480px) {
  .nav-links { width: 100%; justify-content: center; padding-top: 4px; }
  .nav-cta { padding: 10px 18px; font-size: 14px; }
  .nav-call { padding: 10px 16px; font-size: 14px; }
}

/* ─── Hero ─── */
.hero {
  padding: 72px 28px 56px;
  max-width: 1080px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 360px;
}
.hero-text { grid-column: 1; }
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 440px;
}
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--sage);
  margin-bottom: 8px;
  margin-top: -8px;
}
.hero-visual {
  grid-column: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-illustration {
  position: relative;
  width: 260px;
  height: 240px;
}
.laundry-stack {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  filter: drop-shadow(0 8px 24px rgba(45,74,62,0.12));
}
.laundry-item { border-radius: 6px; }
.laundry-item svg { display: block; }
.item-1 { transform: rotate(-3deg) translateY(-16px); }
.item-2 { transform: rotate(2deg) translateY(-12px); }
.item-3 { transform: rotate(-1deg); }
.hero-wings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.wing { position: absolute; }
.wing-left { top: 10px; left: 0; width: 90px; }
.wing-right { top: 10px; right: 0; width: 90px; }
.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--sage-xlight);
  border: 1px solid var(--sage-light);
  padding: 6px 14px;
  border-radius: 99px;
}

/* ─── Badges Strip ─── */
.badges {
  padding: 16px 0 24px;
}
.badges-strip {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--surface);
  border: 1px solid var(--warm-border);
  padding: 7px 14px;
  border-radius: 99px;
}
.badge svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── How It Works ─── */
.howitworks {
  padding: 96px 0;
  background: var(--surface);
}
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
}
.step { flex: 1; max-width: 240px; }
.step-connector { flex: 0 0 60px; align-self: center; padding-top: 20px; }
.step-connector svg { display: block; width: 40px; height: 20px; }
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--sage-light);
  margin-bottom: 16px;
}
.step-icon {
  width: 56px;
  height: 56px;
  background: var(--sage-xlight);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-icon svg { width: 40px; height: 40px; }
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 10px;
}
.step-body { font-size: 15px; color: var(--text-mid); line-height: 1.6; }

/* ─── Who We Help ─── */
.whowehelp { padding: 96px 0; background: var(--bg); }
.whowehelp-intro { margin-bottom: 8px; }
.who-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.who-card {
  background: var(--surface);
  border: 1px solid var(--warm-border);
  border-radius: 20px;
  padding: 36px 28px;
  transition: transform 0.2s ease;
}
.who-card:hover { transform: translateY(-4px); }
.who-card--alt { background: var(--sage-xlight); border-color: var(--sage-light); }
.who-icon { margin-bottom: 20px; }
.who-icon svg { width: 48px; height: 48px; }
.who-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 12px;
}
.who-body { font-size: 15px; color: var(--text-mid); line-height: 1.65; }

/* ─── Values ─── */
.values { padding: 96px 0; background: var(--surface); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 64px;
}
.value {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.value-ornament { flex-shrink: 0; }
.value-ornament svg { width: 40px; height: 40px; }
.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 10px;
  margin-top: 4px;
}
.value-body { font-size: 15px; color: var(--text-mid); line-height: 1.65; }

/* ─── Closing ─── */
.closing {
  padding: 96px 0 80px;
  background: var(--bg);
  position: relative;
}
.closing-visual { margin-bottom: 48px; overflow: hidden; }
.closing-river svg { display: block; width: 100%; height: 80px; }
.closing-content { text-align: center; max-width: 640px; margin: 0 auto; }
.closing-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 28px;
  font-style: italic;
}
.closing-body {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.closing-signoff {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

/* ─── Footer ─── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--warm-border);
  padding: 32px 0;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 6px;
}
.footer-tagline { font-size: 14px; color: var(--text-light); }
.footer-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-light);
}

/* ─── Services ─── */
.services {
  padding: 96px 0;
  background: var(--bg);
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--warm-border);
  border-left: 3px solid var(--sage);
  border-radius: 20px;
  padding: 36px 28px;
  transition: transform 0.2s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}
.service-card:hover { transform: translateY(-4px); }
.service-icon { margin-bottom: 20px; }
.service-icon svg { width: 48px; height: 48px; }
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
}
.service-price {
  font-weight: 600;
  color: var(--sage);
  font-size: 15px;
  margin-bottom: 12px;
}
.service-body { font-size: 15px; color: var(--text-mid); line-height: 1.65; }

/* ─── Trust ─── */
.trust {
  padding: 96px 0;
  background: var(--surface);
}
.trust-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 64px;
}
.trust-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.trust-ornament { flex-shrink: 0; }
.trust-ornament svg { width: 40px; height: 40px; }
.trust-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 10px;
  margin-top: 4px;
}
.trust-body { font-size: 15px; color: var(--text-mid); line-height: 1.65; }

/* ─── Testimonials ─── */
.testimonials {
  padding: 96px 0;
  background: var(--bg);
}
.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--warm-border);
  border-radius: 20px;
  padding: 36px 28px;
  transition: transform 0.2s ease;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-stars { margin-bottom: 16px; }
.testimonial-stars svg { width: 80px; height: 16px; }
.testimonial-quote {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
}
.testimonial-service {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}

/* ─── Team ─── */
.team { padding: 96px 0; background: var(--surface); }
.team-intro {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.team-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.team-card {
  background: var(--bg);
  border: 1px solid var(--warm-border);
  border-radius: 20px;
  padding: 28px 24px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}
.team-card:hover { transform: translateY(-4px); }
.team-photo {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background-color: var(--sage-xlight);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo--placeholder { background-image: none !important; }
.team-photo-initials {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--sage);
  letter-spacing: 0.02em;
}
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 4px;
}
.team-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}
.team-bio {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}
.team-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  margin-top: auto;
}
.team-cta a { font-size: 14px; padding: 10px 16px; }

.team-deeper {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--warm-border);
}
.team-deeper-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}
.team-deeper-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.team-deeper-link {
  font-size: 15px;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px dotted var(--sage);
  padding-bottom: 2px;
  transition: color 0.15s ease;
}
.team-deeper-link:hover { color: var(--sage); border-bottom-color: var(--sage); }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--sage);
  color: var(--forest);
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  transition: background 0.15s ease;
}
.btn-ghost:hover { background: var(--sage-xlight); }

/* ─── Blog ─── */
.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--warm-border);
  border-radius: 20px;
  padding: 28px 24px;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card-chip {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--sage-xlight);
  border: 1px solid var(--sage-light);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-card-excerpt {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.blog-card-meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: auto;
  margin-bottom: 12px;
}
.blog-card-link {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--sage);
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-card-link:hover { color: var(--forest); }

.blog-post {
  max-width: 720px;
  margin: 0 auto 56px;
  padding-top: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  font-size: 16px;
}
.blog-post h2 {
  font-family: 'Playfair Display', serif;
  color: var(--forest);
  margin: 32px 0 12px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}
.blog-post p { margin-bottom: 18px; }
.blog-post ul { padding-left: 22px; margin-bottom: 20px; }
.blog-post li { margin-bottom: 8px; }
.blog-back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--sage);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}
.blog-back-link:hover { color: var(--forest); }

/* ─── Contact ─── */
.contact {
  padding: 96px 0;
  background: var(--surface);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { flex-shrink: 0; }
.contact-icon svg { width: 24px; height: 24px; }
.contact-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 17px;
  color: var(--forest);
  font-weight: 500;
}
.contact-note {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-top: 8px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--warm-border);
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-primary {
  padding: 14px 28px;
  background: var(--sage);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Source Sans 3', sans-serif;
  cursor: pointer;
  transition: background 0.2s ease;
}
.btn-primary:hover { background: var(--forest); }
.btn-lg {
  padding: 16px 28px;
  font-size: 17px;
  border-radius: 10px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
}
.btn-block { display: block; width: 100%; }

/* ─── Hero Book Card ─── */
.hero-book-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px 24px;
  box-shadow: 0 14px 40px rgba(45, 74, 62, 0.12), 0 2px 6px rgba(45, 74, 62, 0.05);
  width: 100%;
  max-width: 340px;
}
.hero-book-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 8px;
}
.hero-book-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--forest);
  margin: 0 0 6px;
  line-height: 1.15;
}
.hero-book-sub {
  font-size: 14px;
  color: var(--text-mid);
  margin: 0 0 18px;
  line-height: 1.5;
}
.hero-book-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-book-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-book-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-book-field input,
.hero-book-field select {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  background: var(--bg);
  color: var(--text-dark);
}
.hero-book-field input:focus,
.hero-book-field select:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122, 158, 126, 0.18);
}
.hero-book-note {
  font-size: 12px;
  color: var(--text-mid);
  text-align: center;
  margin: 4px 0 0;
}

/* ─── Nav CTA ─── */
.nav-cta {
  padding: 8px 20px;
  background: var(--sage);
  color: white;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: var(--forest); }
.nav-call {
  padding: 8px 20px;
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--sage);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.nav-call:hover {
  background: rgba(141,184,138,0.15);
  border-color: var(--forest);
}

/* ─── Booking Page ─── */
.booking-hero {
  padding: 64px 28px 48px;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.booking-hero .hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 16px;
}
.booking-hero .hero-sub {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto;
}
.booking-layout {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px 96px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.booking-sidebar { position: sticky; top: 80px; }
.booking-form-section {
  background: var(--surface);
  border: 1px solid var(--warm-border);
  border-radius: 20px;
  padding: 40px 36px;
}
.booking-form-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 28px;
}
.service-select-card { display: flex; flex-direction: column; gap: 16px; }
.service-radio-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.service-radio-item input[type="radio"] { margin-top: 4px; accent-color: var(--sage); }
.service-radio-label { font-size: 15px; color: var(--text); line-height: 1.5; }
.service-radio-label strong {
  color: var(--forest);
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
}
.service-radio-label span { color: var(--sage); font-weight: 600; font-size: 14px; }

/* ─── Loyalty Pricing ─── */
.loyalty-pricing {
  max-width: 1080px;
  margin: 0 auto 32px;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--warm-border);
  border-left: 3px solid var(--sage);
  border-radius: 20px;
}
.loyalty-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--forest);
  font-size: 24px;
  margin-bottom: 16px;
}
.loyalty-tiers {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.loyalty-tier {
  flex: 1 1 0;
  min-width: 140px;
  background: var(--cream);
  border: 1px solid var(--warm-border);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.loyalty-tier:hover { border-color: var(--sage); }
.loyalty-tier.active {
  background: var(--sage-xlight);
  border-color: var(--sage);
}
.loyalty-tier-cadence {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 4px;
}
.loyalty-tier-discount {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--forest);
}
.loyalty-note {
  color: var(--text-mid);
  font-size: 14px;
  margin-bottom: 18px;
  line-height: 1.5;
}
.loyalty-cta {
  display: inline-block;
  text-decoration: none;
}
.booking-error {
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  border-radius: 10px;
  padding: 14px 18px;
  color: #991B1B;
  font-size: 15px;
  margin-bottom: 24px;
}
.booking-success {
  background: var(--sage-xlight);
  border: 1px solid var(--sage-light);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
}
.booking-success h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 16px;
}
.booking-success p { font-size: 17px; color: var(--text-mid); margin-bottom: 24px; }
.booking-success .success-contact { font-size: 15px; color: var(--text-light); }

/* ─── Referral prompt (inline sub-card in booking success) ─── */
.booking-success .referral-prompt {
  background: var(--cream);
  border: 1px solid var(--sage-light);
  border-radius: 14px;
  padding: 24px 22px;
  margin-top: 24px;
  text-align: left;
}
.referral-prompt h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
}
.referral-prompt p {
  color: var(--text-mid);
  font-size: 15px;
  margin-bottom: 14px;
  line-height: 1.5;
}
.referral-code-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}
.referral-code-label strong {
  color: var(--forest);
  letter-spacing: 0.04em;
  font-weight: 700;
}
.referral-link-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.referral-link-row input[type="text"] {
  flex: 1;
  min-width: 180px;
  padding: 10px 14px;
  border: 1.5px solid var(--warm-border);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
  color: var(--text);
}
.referral-link-row input[type="text"]:focus {
  outline: none;
  border-color: var(--sage);
}
.referral-note {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 0;
  font-style: italic;
}

/* ─── Waitlist Banner ─── */
.waitlist-banner {
  background: #F5F0E8;
  border: 1px solid #D8DDD5;
  border-left: 3px solid var(--sage);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 28px;
}
.waitlist-banner p {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 12px;
}
#waitlist-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
#waitlist-form input[type="email"] {
  flex: 1;
  min-width: 180px;
  padding: 10px 14px;
  border: 1.5px solid var(--warm-border);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
  color: var(--text);
}
#waitlist-form input[type="email"]:focus {
  outline: none;
  border-color: var(--sage);
}
.btn-secondary {
  padding: 10px 20px;
  background: var(--sage);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Source Sans 3', sans-serif;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.btn-secondary:hover { background: var(--forest); }
#waitlist-success {
  font-size: 15px;
  color: var(--forest);
  font-weight: 500;
}
#waitlist-error {
  font-size: 14px;
  color: #991B1B;
}

/* ─── Scheduler ─── */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.slot-btn {
  padding: 10px 8px;
  background: var(--cream);
  border: 1.5px solid var(--warm-border);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  text-align: center;
}
.slot-btn:hover:not(:disabled) {
  border-color: var(--sage);
  background: var(--sage-xlight);
  color: var(--forest);
}
.slot-btn.active {
  background: var(--sage);
  border-color: var(--sage);
  color: white;
  font-weight: 600;
}
.slot-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.slot-btn.booked {
  opacity: 0.35;
  cursor: not-allowed;
  background: var(--surface);
  text-decoration: line-through;
}
.form-group input[type="date"] {
  padding: 12px 16px;
  border: 1.5px solid var(--warm-border);
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
  color: var(--text);
  width: 100%;
  transition: border-color 0.2s ease;
}
.form-group input[type="date"]:focus {
  outline: none;
  border-color: var(--sage);
}
@media (max-width: 480px) {
  .slot-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Service Detail ─── */
.service-detail-hero {
  padding: 64px 28px 56px;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.service-detail-hero .hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 16px;
}
.service-detail-hero .hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--sage);
  margin-bottom: 32px;
}
.service-detail-cta {
  display: inline-block;
  padding: 14px 36px;
  font-size: 16px;
  text-decoration: none;
}

.service-detail-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-bottom: 96px;
  align-items: start;
}
.service-detail-left { display: flex; flex-direction: column; gap: 32px; }
.service-detail-image-wrap { border-radius: 20px; overflow: hidden; }
.service-detail-image {
  width: 100%;
  display: block;
  border-radius: 20px;
}
.service-detail-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-detail-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text-mid);
}
.service-detail-features li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 10l4 4 8-8' stroke='%237A9E7E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}
.service-detail-right { display: flex; flex-direction: column; gap: 28px; }
.service-detail-prose {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
}
.service-detail-pricing-box {
  background: var(--sage-xlight);
  border-left: 4px solid var(--sage);
  border-radius: 12px;
  padding: 24px 28px;
}
.service-detail-pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 4px;
}
.service-detail-pricing-note {
  font-size: 14px;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: flex; justify-content: stretch; padding-top: 8px; }
  .hero-book-card { max-width: 100%; }
  .hero-headline { font-size: 36px; }
  .steps-grid { flex-direction: column; gap: 32px; }
  .step { max-width: 100%; }
  .step-connector { display: none; }
  .who-cards { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .trust-points { grid-template-columns: 1fr; }
  .testimonial-cards { grid-template-columns: 1fr; }
  .team-cards { grid-template-columns: 1fr; }
  .team-photo { width: 112px; height: 112px; }
  .team-deeper-links { flex-direction: column; gap: 12px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .service-detail-body { grid-template-columns: 1fr; gap: 40px; }
  .blog-cards { grid-template-columns: 1fr; }
  .loyalty-cta { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .hero { padding: 48px 20px 40px; }
  .section-inner { padding: 0 20px; }
  .howitworks, .whowehelp, .values { padding: 64px 0; }
  .hero-badge-row { gap: 8px; }
  .badges-strip { gap: 8px; }
  .badge { font-size: 0.85rem; padding: 6px 10px; }
  .loyalty-pricing { padding: 24px 20px; margin-bottom: 24px; }
}

/* ─── Admin Calendar ─── */
.cal-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

/* Topbar */
.cal-topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--forest);
  padding: 0 28px;
}
.cal-topbar-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.cal-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.cal-nav { display: flex; gap: 8px; }
.cal-nav-link {
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.cal-nav-link:hover { color: white; background: rgba(255,255,255,0.1); }
.cal-nav-link--active { color: white; background: rgba(255,255,255,0.15); }

/* Main content */
.cal-main {
  flex: 1;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  padding: 32px 28px 64px;
}

/* Header row */
.cal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.cal-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 4px;
}
.cal-date-display {
  font-size: 15px;
  color: var(--text-light);
}
.cal-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* Buttons */
.cal-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Source Sans 3', sans-serif;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}
.cal-btn--primary {
  background: var(--sage);
  color: white;
}
.cal-btn--primary:hover { background: var(--forest); }
.cal-btn--ghost {
  background: transparent;
  color: var(--text-mid);
  border: 1.5px solid var(--warm-border);
}
.cal-btn--ghost:hover { background: var(--surface); border-color: var(--sage); }
.cal-btn--tab {
  background: var(--surface);
  color: var(--text-mid);
  border: 1.5px solid var(--warm-border);
}
.cal-btn--tab:hover { border-color: var(--sage); }
.cal-btn--tab.active {
  background: var(--sage);
  color: white;
  border-color: var(--sage);
}

/* View toggle group */
.cal-view-toggle { display: flex; }

/* Loading */
.cal-loading {
  text-align: center;
  padding: 64px 0;
  color: var(--text-light);
  font-size: 15px;
}

/* Day view */
.cal-day-header {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--warm-border);
}
.cal-day-list { display: flex; flex-direction: column; gap: 12px; }

/* Booking cards */
.cal-card {
  display: flex;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--warm-border);
  border-left: 4px solid var(--sage);
  border-radius: 12px;
  padding: 16px 18px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  outline: none;
}
.cal-card:hover, .cal-card:focus { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.cal-card:focus { outline: 2px solid var(--sage); outline-offset: 2px; }
.cal-card--residential { border-left-color: var(--sage); }
.cal-card--commercial  { border-left-color: var(--forest); }
.cal-card--laundry     { border-left-color: #C8A96E; }
.cal-card--companionship { border-left-color: #9B8EC4; }
.cal-card--compact { padding: 10px 12px; }
.cal-card--empty { color: var(--text-light); font-size: 13px; padding: 8px 0; }
.cal-card__time {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  min-width: 72px;
  padding-top: 2px;
}
.cal-card__body { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.cal-card__name {
  font-weight: 600;
  font-size: 16px;
  color: var(--forest);
}
.cal-card__address {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.4;
}

/* Badges */
.cal-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 99px;
  color: white;
  line-height: 1.4;
}
.badge--residential  { background: var(--sage); }
.badge--commercial   { background: var(--forest); }
.badge--laundry      { background: #C8A96E; }
.badge--companionship { background: #9B8EC4; }

/* Empty state */
.cal-empty {
  text-align: center;
  padding: 48px 0;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cal-empty p { font-size: 16px; }

/* Week view */
.cal-week-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
.cal-week-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cal-week-col--today .cal-week-dayheader {
  background: var(--sage);
  color: white;
  border-radius: 10px;
}
.cal-week-dayheader {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 6px;
  background: var(--surface);
  border: 1px solid var(--warm-border);
  border-radius: 10px;
  margin-bottom: 4px;
}
.cal-week-dayname {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.cal-week-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.1;
  margin-top: 2px;
}
.cal-week-cards { display: flex; flex-direction: column; gap: 6px; }

/* Modal */
.cal-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 43, 34, 0.55);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cal-modal-overlay--open { display: flex; }
.cal-modal {
  background: var(--cream);
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}
.cal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--warm-border);
}
.cal-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
}
.cal-modal-close {
  width: 36px;
  height: 36px;
  background: var(--surface);
  border: 1px solid var(--warm-border);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  color: var(--text-mid);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.cal-modal-close:hover { background: var(--warm-border); }
.cal-modal-body { padding: 24px 28px; }
.cal-detail-grid { display: grid; grid-template-columns: 130px 1fr; gap: 12px 16px; }
.cal-detail-grid dt {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  padding-top: 2px;
}
.cal-detail-grid dd { font-size: 15px; color: var(--text); margin: 0; }
.cal-detail-grid dd a { color: var(--sage); text-decoration: none; }
.cal-detail-grid dd a:hover { text-decoration: underline; }
.cal-detail-notes { white-space: pre-wrap; line-height: 1.55; }
.cal-modal-error { color: #991B1B; font-size: 15px; }

/* Responsive */
@media (max-width: 900px) {
  .cal-week-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .cal-week-grid { grid-template-columns: repeat(2, 1fr); }
  .cal-header { flex-direction: column; }
  .cal-header-right { width: 100%; justify-content: space-between; }
}
@media (max-width: 480px) {
  .cal-main { padding: 24px 16px 48px; }
  .cal-topbar { padding: 0 16px; }
  .cal-nav-link { padding: 6px 10px; font-size: 13px; }
  .cal-week-grid { grid-template-columns: 1fr; }
  .cal-detail-grid { grid-template-columns: 1fr; gap: 4px; }
  .cal-detail-grid dt { margin-bottom: 0; }
}

/* ─── Admin Clients ─── */
.clients-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

/* Toolbar */
.clients-toolbar {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.clients-search {
  flex: 1;
  min-width: 200px;
  padding: 10px 16px;
  border: 1.5px solid var(--warm-border);
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.2s;
}
.clients-search:focus {
  outline: none;
  border-color: var(--sage);
}
.clients-filter {
  padding: 10px 16px;
  border: 1.5px solid var(--warm-border);
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
  color: var(--text);
  cursor: pointer;
  min-width: 160px;
}
.clients-filter:focus {
  outline: none;
  border-color: var(--sage);
}

/* Table */
.clients-table-wrap {
  background: var(--surface);
  border: 1px solid var(--warm-border);
  border-radius: 16px;
  overflow: hidden;
}
.clients-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.clients-thead {
  background: var(--forest);
}
.clients-thead th {
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}
.clients-tbody tr {
  border-bottom: 1px solid var(--warm-border);
  transition: background 0.1s;
}
.clients-tbody tr:last-child { border-bottom: none; }
.clients-tbody tr:hover { background: var(--sage-xlight); }
.clients-tbody td {
  padding: 12px 16px;
  color: var(--text-mid);
  vertical-align: middle;
}
.clients-cell--name .clients-name {
  font-weight: 600;
  color: var(--forest);
  font-size: 15px;
}
.clients-email {
  color: var(--sage);
  text-decoration: none;
}
.clients-email:hover { text-decoration: underline; }

/* Actions */
.clients-actions { white-space: nowrap; }
.clients-actions .cal-btn--sm {
  padding: 6px 10px;
  line-height: 1;
}
.clients-actions .cal-btn--sm svg { display: block; }
.cal-btn--danger:hover {
  background: #FEF2F2;
  border-color: #FCA5A5;
  color: #991B1B;
}

/* Empty state */
.clients-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 64px 0;
  color: var(--text-light);
  text-align: center;
}
.clients-empty p { font-size: 16px; }

/* Deep-clean badge */
.badge--deep-clean { background: #B87333; }

/* Form inside modal */
.clients-form { display: flex; flex-direction: column; gap: 16px; }
.clients-form .form-group { display: flex; flex-direction: column; gap: 6px; }
.clients-form .form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}
.clients-form .form-group input,
.clients-form .form-group select,
.clients-form .form-group textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--warm-border);
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.2s;
  width: 100%;
}
.clients-form .form-group input:focus,
.clients-form .form-group select:focus,
.clients-form .form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
}
.clients-form .form-group textarea { resize: vertical; min-height: 72px; }
.clients-form .form-group input[type="date"] { cursor: pointer; }

.clients-form-error {
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  border-radius: 8px;
  padding: 10px 14px;
  color: #991B1B;
  font-size: 14px;
}

.clients-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 4px;
}

/* Mobile breakpoint */
@media (max-width: 600px) {
  .clients-table-wrap { overflow: visible; }
  .clients-table { display: none; }

  .clients-tbody { display: flex; flex-direction: column; gap: 0; }
  .clients-row {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--warm-border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
  }
  .clients-row:hover { background: var(--surface); }
  .clients-tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid var(--warm-border);
    font-size: 14px;
  }
  .clients-tbody td:last-child { border-bottom: none; }
  .clients-tbody td::before {
    content: attr(data-label);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-light);
    flex-shrink: 0;
    margin-right: 8px;
  }
  .clients-cell--name { flex-direction: column; align-items: flex-start; gap: 2px; }
  .clients-cell--name .clients-name { font-size: 16px; }
  .clients-actions { justify-content: flex-end; width: 100%; }

  .clients-toolbar { flex-direction: column; }
  .clients-search { min-width: 0; width: 100%; }
  .clients-filter { width: 100%; }

  .clients-form-actions { flex-direction: column-reverse; }
  .clients-form-actions .cal-btn { width: 100%; justify-content: center; }
}

/* ─── Where We Serve ─── */
.serve-hero {
  padding: 64px 28px 56px;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.serve-hero .hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 16px;
}
.serve-hero .hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--sage);
  margin-bottom: 0;
}

.serve-intro {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.serve-card {
  background: var(--surface);
  border: 1px solid var(--warm-border);
  border-radius: 20px;
  padding: 36px 28px;
  transition: transform 0.2s ease;
}
.serve-card:hover { transform: translateY(-4px); }
.serve-card--alt { background: var(--sage-xlight); border-color: var(--sage-light); }

.serve-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 12px;
}
.serve-card-body {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 12px;
}
.serve-card-note {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
}

.serve-card-subhead {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 18px 0 8px;
}

.serve-map-box {
  background: var(--surface);
  border: 1px solid var(--warm-border);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 64px;
}
.serve-map-icon { flex-shrink: 0; }
.serve-map-icon svg { display: block; }
.serve-map-text { display: flex; flex-direction: column; gap: 4px; }
.serve-map-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.serve-map-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--sage);
  text-decoration: none;
}
.serve-map-link:hover { text-decoration: underline; }

.serve-cta {
  text-align: center;
  padding-bottom: 96px;
}
.serve-cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 12px;
}
.serve-cta-body {
  font-size: 17px;
  color: var(--text-mid);
  margin-bottom: 28px;
}
.serve-cta-btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 16px;
  text-decoration: none;
}

.footer-nav {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}
.footer-nav-link {
  font-size: 14px;
  color: var(--text-mid);
  text-decoration: none;
}
.footer-nav-link:hover { color: var(--sage); }

/* ─── Reviews Page ─── */
.reviews-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.reviews-sources {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.reviews-sources-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.reviews-source-badge {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--surface);
  border: 1px solid var(--warm-border);
  border-radius: 20px;
  padding: 5px 14px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
}
.review-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--text-mid);
  background: var(--cream);
  border: 1px solid var(--warm-border);
  border-radius: 20px;
  padding: 3px 10px;
}
.review-before-after {
  margin: 10px 0 0;
  padding: 8px 0 8px 12px;
  border-left: 3px solid var(--sage);
  font-size: 13px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .serve-grid { grid-template-columns: 1fr; }
  .reviews-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .serve-hero { padding: 48px 20px 40px; }
  .serve-map-box { flex-direction: column; align-items: flex-start; gap: 12px; }
  .serve-cta { padding-bottom: 64px; }
}

/* ─── Gallery ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}
.gallery-card {
  background: var(--surface);
  border: 1px solid var(--warm-border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.2s ease;
}
.gallery-card:hover { transform: translateY(-4px); }
.gallery-card-button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.gallery-card-button:focus-visible { outline: 2px solid var(--sage); outline-offset: 2px; }
.gallery-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: var(--warm-border);
  aspect-ratio: 4/3;
}
.gallery-pair img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.gallery-card-meta { padding: 16px 18px 18px; }
.gallery-card-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px;
}
.gallery-tag {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-mid);
  background: var(--cream);
  border: 1px solid var(--warm-border);
  border-radius: 20px;
  padding: 3px 10px;
}
.gallery-tag--service { color: var(--sage); }
.gallery-caption {
  font-size: 14px; color: var(--text-mid);
  line-height: 1.5; margin: 0;
}

@media (max-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Gallery modal (reuses cal-modal-overlay idiom) */
.gallery-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 43, 34, 0.6);
  z-index: 600;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.gallery-modal-overlay--open { display: flex; }
.gallery-modal {
  background: var(--cream);
  border-radius: 20px;
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}
.gallery-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--warm-border);
}
.gallery-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--forest); margin: 0;
}
.gallery-modal-close {
  width: 36px; height: 36px;
  background: var(--surface);
  border: 1px solid var(--warm-border);
  border-radius: 50%;
  font-size: 20px; line-height: 1;
  color: var(--text-mid);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.gallery-modal-close:hover { background: var(--warm-border); }
.gallery-modal-body { padding: 20px 24px 28px; }
.gallery-modal-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 16px;
  background: var(--warm-border);
}
.gallery-modal-pair img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-modal-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.gallery-modal-caption {
  font-size: 15px; color: var(--text-mid);
  line-height: 1.5; margin: 0 0 20px;
}
.gallery-modal-cta {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  text-decoration: none;
}

@media (max-width: 600px) {
  .gallery-modal-pair { aspect-ratio: 3/2; }
}

/* ─── Focus Styles ─── */
:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── Smooth scroll anchor offset ─── */
section[id] { scroll-margin-top: 80px; }

/* ─── FAQ ─── */
.faq {
  padding: 96px 0;
  background: var(--surface);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--warm-border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-item[open] {
  box-shadow: 0 2px 12px rgba(45,74,62,0.06);
  border-color: var(--sage-light);
}
.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--forest);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-item > summary { marker: none; }
.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--sage);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-question:hover { color: var(--sage); }
.faq-answer {
  padding: 0 24px 22px 24px;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.7;
}
.faq-answer a {
  color: var(--sage);
  text-decoration: none;
}
.faq-answer a:hover { text-decoration: underline; }

@media (max-width: 480px) {
  .faq { padding: 64px 0; }
  .faq-question { font-size: 16px; padding: 18px 20px; }
  .faq-answer { padding: 0 20px 18px 20px; }
}

/* ─── Nav dropdown + hamburger ─── */
.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--warm-border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 18px;
  line-height: 1;
  color: var(--text-mid);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.nav-hamburger:hover { background: var(--surface); color: var(--sage); }
.nav-hamburger:focus-visible { outline: 2px solid var(--sage); outline-offset: 2px; }

.nav-dropdown { position: relative; display: inline-block; }
.nav-dropdown-trigger {
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown-trigger:focus-visible { outline: 2px solid var(--sage); outline-offset: 2px; }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--bg);
  border: 1px solid var(--warm-border);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 110;
}
.nav-dropdown--open .nav-dropdown-menu {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
.nav-dropdown-link {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-link:hover { background: var(--surface); color: var(--sage); }
.nav-dropdown-placeholder {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  cursor: default;
}

@media (max-width: 768px) {
  .nav-hamburger { display: inline-flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 4px;
    background: var(--bg);
    border-top: 1px solid var(--warm-border);
    padding: 16px 0;
  }
  .nav-links--open { display: flex; }
  .nav-links .nav-link { padding: 10px 4px; }
  .nav-dropdown { display: block; width: 100%; }
  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 10px 4px;
  }
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0 0 8px 12px;
    display: block;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
    min-width: 0;
  }
  .nav-dropdown:not(.nav-dropdown--open) .nav-dropdown-menu { display: none; opacity: 0; pointer-events: none; }
  .nav-dropdown-link { padding: 8px 4px; }
  .nav-dropdown-placeholder { padding: 8px 4px; }
}

/* ─── Deep Cleaning detail page ─── */
.dc-checklist { margin-bottom: 64px; }
.dc-checklist .section-heading { margin-bottom: 24px; }
.dc-checklist-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}
.dc-checklist-item {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.6;
}
.dc-checklist-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sage);
  font-weight: 700;
}
.dc-addons { margin-top: 28px; padding-top: 20px; border-top: 1px dashed var(--warm-border); }
.dc-addons-heading {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}
.dc-addons-list .dc-checklist-item::before { content: '+'; }

.dc-benefits { margin-bottom: 56px; }
.dc-benefits-heading { text-align: center; }
.dc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dc-benefit-card { height: 100%; }

.dc-pricing { max-width: 560px; margin: 0 auto 56px; }
.dc-pricing .service-detail-pricing-note a {
  color: var(--sage);
  text-decoration: none;
  font-weight: 600;
}
.dc-pricing .service-detail-pricing-note a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .dc-checklist-list { grid-template-columns: 1fr; gap: 10px; }
  .dc-benefits-grid { grid-template-columns: 1fr; }
  .dc-pricing { margin-bottom: 40px; }
}

/* ─── FAQ page ─── */
.value-content { flex: 1; min-width: 0; }
.faq-page-cta { margin-top: 14px; }
.faq-page-cta .btn-primary { padding: 10px 20px; font-size: 14px; }

.faq-sticky-call {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 50;
  background: var(--forest);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: background 0.18s ease, transform 0.18s ease;
}
.faq-sticky-call:hover {
  background: var(--sage);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .faq-sticky-call {
    left: 16px;
    right: 16px;
    bottom: 12px;
    text-align: center;
    padding: 14px 18px;
    font-size: 16px;
  }
}
