/* ===========================
   THE LITTLE MAIDS — STYLESHEET
   Wil & Sadie Final Palette — June 2026
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@400;600&display=swap');

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

:root {
  /* Sadie's Final Palette */
  --tan-brown:  #B8894E;
  --coral-red:  #F04E36;
  --cream:      #F5EFE0;
  --sage-blue:  #A8B5B5;
  --charcoal:   #1C1C1C;
  --rust:       #A8431E;
  --bg:         #EFE8D6;

  /* Semantic aliases */
  --primary-accent:   var(--sage-blue);
  --secondary-accent: var(--tan-brown);
  --text-dark:        var(--charcoal);
  --text-muted:       var(--rust);
  --btn-bg:           var(--tan-brown);
  --btn-hover:        var(--coral-red);
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg);
  color: var(--text-dark);
  line-height: 1.7;
}

a { color: var(--primary-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===========================
   HEADER
   =========================== */
header {
  background: var(--cream);
  border-bottom: 2px solid var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(28,28,28,.07);
}
header .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#branding {
  display: flex;
  align-items: center;
  gap: 14px;
}
#branding img {
  width: 80px;
  height: 80px;
  margin: 0;
}
#branding .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--charcoal);
  line-height: 1.2;
  letter-spacing: .03em;
}
#branding .brand-tagline {
  font-size: 0.7rem;
  color: var(--rust);
  letter-spacing: .06em;
  text-transform: uppercase;
}
nav ul { list-style: none; display: flex; gap: 28px; align-items: center; }
nav a { font-size: 0.85rem; font-weight: 600; color: var(--charcoal); letter-spacing: .06em; text-transform: uppercase; }
nav a:hover { color: var(--sage-blue); text-decoration: none; }
nav a.active { color: var(--sage-blue); border-bottom: 2px solid var(--sage-blue); padding-bottom: 2px; }
nav a.btn-nav {
  background: var(--tan-brown);
  color: #fff;
  padding: 9px 22px;
  border-radius: 30px;
  font-weight: 600;
  transition: background .2s;
  text-transform: uppercase;
  letter-spacing: .06em;
}
nav a.btn-nav:hover { background: var(--coral-red); text-decoration: none; }

/* ===========================
   LOGO HERO — Full-Width Stripe Background
   =========================== */
.logo-hero {
  background-color: var(--cream);
  background-image: repeating-linear-gradient(
    90deg,
    var(--sage-blue) 0px,
    var(--sage-blue) 50px,
    transparent 50px,
    transparent 100px,
    var(--sage-blue) 100px,
    var(--sage-blue) 150px,
    transparent 150px,
    transparent 265px
  );
  padding: 40px 0 50px;
  text-align: center;
}
.logo-hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.logo-hero img {
  width: 300px;
  height: 300px;
  display: block;
  margin: 0 auto 12px;
}
.logo-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  color: var(--charcoal);
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--cream);
  padding: 16px 40px;
  border-radius: 8px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(28,28,28,.08);
}

/* ===========================
   STRIPE DIVIDERS
   =========================== */

/* Solid tan band — thick horizontal section separator */
.stripe-divider {
  width: 100%;
  height: 44px;
  background: var(--tan-brown);
  display: block;
}

/* Three-line decorative break: coral / tan / rust */
.stripe-divider-tri {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.stripe-divider-tri span {
  display: block;
  width: 100%;
  height: 10px;
}
.stripe-divider-tri span:nth-child(1) { background: var(--coral-red); }
.stripe-divider-tri span:nth-child(2) { background: var(--tan-brown); }
.stripe-divider-tri span:nth-child(3) { background: var(--rust); }

/* ===========================
   HERO
   =========================== */
.hero {
  background: linear-gradient(135deg, var(--bg) 0%, var(--cream) 60%);
  padding: 70px 30px 80px;
  text-align: center;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--charcoal);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.2;
}
.hero p {
  font-size: 1.15rem;
  color: var(--rust);
  max-width: 600px;
  margin: 0 auto 36px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  background: var(--btn-bg);
  color: #fff;
  padding: 16px 38px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 14px rgba(184,137,78,.28);
}
.btn:hover { background: var(--btn-hover); transform: translateY(-2px); text-decoration: none; }
.btn-outline {
  background: transparent;
  border: 2px solid var(--sage-blue);
  color: var(--sage-blue);
  box-shadow: none;
}
.btn-outline:hover { background: var(--sage-blue); color: #fff; }

/* ===========================
   SECTIONS
   =========================== */
section { padding: 70px 30px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage-blue);
  font-weight: 600;
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.25;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--rust);
  max-width: 620px;
  margin-bottom: 50px;
}
.bg-sand { background: var(--bg); }
.bg-white { background: var(--cream); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ===========================
   CARDS
   =========================== */
.card-grid { display: grid; gap: 28px; }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.card {
  background: var(--cream);
  border-radius: 16px;
  padding: 34px 30px;
  box-shadow: 0 2px 16px rgba(28,28,28,.06);
  border: 1px solid var(--bg);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(168,181,181,.18); }
.card-icon { margin-bottom: 14px; line-height: 1; }
.card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: 10px; color: var(--charcoal); }
.card p { font-size: .95rem; color: var(--rust); }
.card .price { font-size: 1.4rem; font-weight: 700; color: var(--tan-brown); margin: 14px 0 6px; }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials { background: var(--charcoal);
  color: #fff; }
.testimonials .section-title { color: #fff; }
.testimonials .section-label { color: var(--tan-brown); }
.testimonial-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.testimonial {
  background: rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.1);
}
.testimonial p { font-size: .95rem; color: rgba(255,255,255,.85); margin-bottom: 16px; font-style: italic; }
.testimonial .author { font-weight: 600; color: var(--tan-brown); font-size: .9rem; }
.stars { color: var(--tan-brown); font-size: 1rem; margin-bottom: 10px; }

/* ===========================
   PROCESS STEPS
   =========================== */
.steps { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.step { text-align: center; padding: 10px; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--sage-blue); color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h4 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; color: var(--charcoal); }
.step p { font-size: .9rem; color: var(--rust); }

/* ===========================
   BOOKING WIDGET
   =========================== */
.booking-widget {
  background: var(--cream);
  border: 2px dashed var(--bg);
  border-radius: 16px;
  padding: 70px 40px;
  text-align: center;
  color: var(--rust);
}
.booking-widget .widget-icon { margin-bottom: 16px; }
.booking-widget h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--charcoal); margin-bottom: 10px; }

/* ===========================
   FAQ
   =========================== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--bg); padding: 20px 0; }
.faq-item h4 { font-size: 1rem; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
.faq-item p { font-size: .95rem; color: var(--rust); }

/* ===========================
   PROMISE BANNER
   =========================== */
.promise-banner {
  background: var(--sage-blue);
  color: #fff;
  text-align: center;
  padding: 50px 30px;
}
.promise-banner h2 { font-family: 'Playfair Display', serif; font-size: 1.9rem; margin-bottom: 12px; }
.promise-banner p { font-size: 1.05rem; opacity: .9; max-width: 560px; margin: 0 auto 28px; }
.promise-banner .btn { background: #fff; color: var(--sage-blue); box-shadow: none; }
.promise-banner .btn:hover { background: var(--cream); }

/* ===========================
   FOOTER
   =========================== */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.6);
  text-align: center;
  padding: 40px 30px;
  font-size: .88rem;
}
footer a { color: var(--tan-brown); }
footer strong { color: #fff; }

/* ===========================
   PAGE HEADER (inner pages)
   =========================== */
.page-header {
  background: linear-gradient(135deg, var(--bg), var(--cream));
  padding: 60px 30px 50px;
  text-align: center;
}
.page-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--charcoal); margin-bottom: 12px; }
.page-header p { color: var(--rust); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ===========================
   SERVICES PAGE
   =========================== */
.service-block { display: grid; gap: 30px; margin-bottom: 50px; }
.service-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid var(--bg);
  box-shadow: 0 2px 12px rgba(28,28,28,.04);
}
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--charcoal); margin-bottom: 10px; }
.service-card p { color: var(--rust); margin-bottom: 16px; }
.service-card ul { list-style: none; display: grid; gap: 8px; }
.service-card ul li { font-size: .95rem; color: var(--text-dark); padding-left: 24px; position: relative; }
.service-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--sage-blue); font-weight: 600; }

/* ===========================
   CONTACT
   =========================== */
.contact-grid { display: grid; gap: 30px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.contact-item { background: var(--cream);
  border-radius: 14px;
  padding: 30px;
  border: 1px solid var(--bg);
  text-align: center; }
.contact-item .icon { margin-bottom: 12px; line-height: 1; }
.contact-item h4 { font-weight: 600; margin-bottom: 6px; color: var(--charcoal); }
.contact-item p { font-size: .95rem; color: var(--rust); }

/* ===========================
   MOBILE NAV TOGGLE
   =========================== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   RESPONSIVE — 768px
   =========================== */
@media (max-width: 768px) {
  header .inner { padding: 12px 20px; position: relative; }
  .nav-toggle { display: flex; }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-top: 1px solid var(--bg);
    box-shadow: 0 8px 24px rgba(28,28,28,.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    z-index: 150;
  }
  nav.open { max-height: 400px; }
  nav ul { flex-direction: column; gap: 0; padding: 16px 20px 20px; }
  nav ul li { width: 100%; }
  nav a { display: block; padding: 12px 0; font-size: 1rem; border-bottom: 1px solid var(--bg); }
  nav a.btn-nav { margin-top: 12px; text-align: center; padding: 12px 20px; border-bottom: none; }

  .logo-hero img { width: 220px; height: 220px; margin: 0 auto 10px; }
  .logo-hero { padding: 30px 0 36px; }

  .stripe-divider { height: 30px; }
  .stripe-divider-tri span { height: 7px; }

  .hero { padding: 48px 20px 56px; }
  .hero p { font-size: 1rem; }
  .btn { padding: 14px 28px; }

  section { padding: 48px 20px; }

  .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .card { padding: 26px 22px; }

  .steps { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }

  .promise-banner { padding: 40px 20px; }
  .promise-banner h2 { font-size: 1.5rem; }

  .contact-grid { grid-template-columns: 1fr; }
  .service-card { padding: 26px 22px; }
  .page-header { padding: 40px 20px 36px; }
  footer { padding: 32px 20px; }
  .booking-widget { padding: 40px 20px; }
  .faq-list { padding: 0 4px; }
}

@media (max-width: 400px) {
  .steps { grid-template-columns: 1fr; }
  #branding .brand-name { font-size: 1.1rem; }

}
