/* Twin Flowers Cleaning — site stylesheet */

:root {
  --cream: #f6f1e6;
  --cream-dark: #ece4d0;
  --white: #ffffff;
  --ink: #363b46;
  --text-muted: #686f60;
  --lavender: #7c86a8;
  --lavender-dark: #5f6a8c;
  --sage: #8a9a78;
  --sage-dark: #647254;
  --pink: #d9a3b3;
  --border: #ddd3ba;
  --max-width: 1120px;
  font-size: 17px;
}

* { box-sizing: border-box; }

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

body {
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: var(--lavender-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2.section-title, .cta-band h2, .page-intro h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Header / Nav */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand:hover { text-decoration: none; }
.brand img.logo {
  height: 54px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.brand .brand-name {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.2;
}
.brand .brand-tagline {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

.main-nav a {
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.94rem;
  font-weight: 600;
}
.main-nav a:hover { background: var(--cream-dark); text-decoration: none; }
.main-nav a.current { color: var(--lavender-dark); }

.header-cta {
  background: var(--sage);
  color: #fff !important;
  padding: 9px 18px !important;
  border-radius: 4px;
  font-weight: 700 !important;
}
.header-cta:hover { background: var(--sage-dark) !important; }

/* Home hero viewport */
.home-hero-viewport {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}
.home-hero-viewport .site-header {
  flex-shrink: 0;
}
.home-hero-viewport .hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, #e3e0e9 100%);
  padding: 70px 0 80px;
  text-align: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lavender-dark);
  font-weight: 700;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.25;
  margin: 0 0 18px;
  color: var(--ink);
}
.hero p {
  font-size: 1.14rem;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 30px;
  color: var(--text-muted);
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  background: var(--sage);
  color: #fff;
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.02rem;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--sage-dark); text-decoration: none; color: #fff; }
.btn-outline {
  background: transparent;
  border: 2px solid var(--lavender);
  color: var(--lavender-dark);
}
.btn-outline:hover { background: rgba(124,134,168,0.1); color: var(--lavender-dark); }

/* Sections */
section { padding: 64px 0; }
section.alt { background: var(--cream-dark); }

h2.section-title {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin: 0 0 10px;
  color: var(--ink);
}
.section-lede {
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 36px;
  font-size: 1.05rem;
}

/* Grids / cards */
.grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin: 0 0 8px; font-family: Georgia, serif; font-weight: 400; font-size: 1.25rem; color: var(--ink); }
.card-body p { color: var(--text-muted); font-size: 0.98rem; flex: 1; }

/* Photo gallery */
.gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.gallery figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.gallery img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* Testimonials */
.testimonial {
  background: #fff;
  border-left: 4px solid var(--sage);
  padding: 22px 24px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.testimonial p.quote { font-style: italic; margin: 0 0 10px; font-size: 1.02rem; }
.testimonial .author { font-weight: 700; color: var(--ink); font-size: 0.9rem; }

/* Contact / CTA band */
.cta-band {
  background: var(--lavender);
  color: #fff;
  text-align: center;
  padding: 56px 0;
}
.cta-band h2 { color: #fff; margin: 0 0 12px; }
.cta-band p { color: #eceef4; margin-bottom: 26px; }

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 24px;
  font-size: 1.05rem;
}
.contact-details a { color: #fff; font-weight: 700; }

/* Forms */
form.inquiry {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--border);
}
form.inquiry label {
  display: block;
  font-weight: 700;
  margin: 14px 0 6px;
  font-size: 0.92rem;
  color: var(--ink);
}
form.inquiry input, form.inquiry textarea, form.inquiry select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}
form.inquiry .hint { color: var(--text-muted); font-size: 0.88rem; margin: 6px 0 0; }
form.inquiry button { margin-top: 20px; }
.inquiry-result { margin-top: 14px; font-weight: 700; text-align: center; min-height: 1.2em; }
.inquiry-result.success { color: #2e7d32; }
.inquiry-result.error { color: #b3261e; }

/* Service checklist (services page) */
.checklist-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.checklist-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.checklist-grid h3 {
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--lavender-dark);
  border-bottom: 2px solid var(--sage);
  padding-bottom: 6px;
  margin: 0 0 10px;
}
.checklist-grid ul { margin: 0; padding-left: 20px; color: var(--text-muted); }
.checklist-grid li { margin-bottom: 6px; }
.checklist-band {
  background: var(--cream-dark);
  border-radius: 6px;
  padding: 10px 16px;
  font-weight: 700;
  text-align: center;
  margin: 26px 0 20px;
  color: var(--ink);
}

/* Footer */
.site-footer {
  background: #2f3038;
  color: #c7c8d0;
  padding: 44px 0 26px;
  font-size: 0.92rem;
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.site-footer .footer-brand img {
  height: 40px;
  margin-bottom: 10px;
}
.site-footer h4 { color: #fff; margin: 0 0 12px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; }
.site-footer a { color: #c7c8d0; }
.site-footer a:hover { color: var(--pink); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 6px; }
.footer-socials { display: flex; gap: 14px; margin-top: 4px; }
.footer-socials a { display: inline-flex; }
.footer-bottom {
  border-top: 1px solid #43444e;
  margin-top: 30px;
  padding-top: 18px;
  text-align: center;
  font-size: 0.82rem;
  color: #8c8d97;
}

/* Breadcrumb / page intro (non-hero pages) */
.page-intro {
  background: linear-gradient(180deg, var(--cream) 0%, #e3e0e9 100%);
  padding: 50px 0 40px;
  text-align: center;
}
.page-intro h1 { margin: 0 0 8px; font-size: clamp(1.8rem, 3.6vw, 2.5rem); color: var(--ink); }
.page-intro p { color: var(--text-muted); max-width: 620px; margin: 0 auto; }

@media (max-width: 640px) {
  .site-header .container { justify-content: center; text-align: center; }
  .main-nav { justify-content: center; }
  .brand { flex-wrap: wrap; justify-content: center; }
}
