/* ─── 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;
}

/* ─── 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-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;
}

/* ─── 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;
}

/* ─── 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;
}
.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);
}

/* ─── 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); }

/* ─── 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); }

/* ─── 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; }
.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); }

/* ─── 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;
}
.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); }
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .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; }
  .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; }
}
@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; }
}

/* ─── 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; }
