/* ===========================================================
   Essence Household Services
   Shared stylesheet (mobile-first)
   Brand: warm cream + near-black + antique gold accent
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --cream: #F7F4EF;
  --cream-warm: #FDFCFA;
  --charcoal: #1C1C1A;
  --muted: #8A8880;
  --line: #DDD9D2;

  /* Gold extracted from Edna's brand mark */
  --gold: #9F8744;
  --gold-deep: #7E6A2F;
  --gold-soft: #EFE8D2;
  --gold-line: #C4B07A;

  --white: #FFFFFF;
  --max: 1100px;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--charcoal); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: var(--gold-line); transition: text-decoration-color 0.15s ease; }
a:hover { text-decoration-color: var(--gold-deep); text-decoration-thickness: 2px; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

/* ---------- Header / nav ---------- */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* The ESSENCE. wordmark */
.brand {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--charcoal);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  line-height: 1;
}
.brand:hover { text-decoration: none; }
.brand .mark { display: inline-flex; align-items: baseline; }
.brand .dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  margin-left: 6px;
  align-self: flex-end;
  margin-bottom: 4px;
}
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}

.nav { display: flex; gap: 1.75rem; flex-wrap: wrap; align-items: center; }
.nav a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}
.nav a:hover, .nav a.active { border-bottom-color: var(--gold); }
.nav .nav-cta {
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  padding: 9px 18px;
  color: var(--gold-deep);
}
.nav .nav-cta:hover { background: var(--gold); color: var(--charcoal); border-bottom-color: var(--gold); border-color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--line);
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.hero .eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 10px;
}
.hero h1 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  max-width: 18ch;
}
.hero .lede {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--charcoal);
  max-width: 38ch;
  margin-bottom: 2rem;
  font-weight: 400;
}
.hero .actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 2px;
  text-decoration: none;
  border: 1.5px solid var(--charcoal);
  transition: all 0.15s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}
.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--cream);
}

/* ---------- Sections ---------- */
section { padding: 4.5rem 0; border-bottom: 1px solid var(--line); }
section:last-of-type { border-bottom: none; }

.section-label {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
  font-weight: 700;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 9px;
}

section h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  max-width: 22ch;
  margin-bottom: 1rem;
}
section p { font-size: 1rem; max-width: 60ch; margin-bottom: 1rem; }
section .intro { font-size: 1.1rem; max-width: 50ch; margin-bottom: 2.5rem; }

/* ---------- Tier cards ---------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.tier {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.tier::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 40px;
  background: var(--gold);
}
.tier h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.tier .tier-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.tier p { font-size: 0.95rem; margin-bottom: 1.25rem; }
.tier ul { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.tier ul li {
  font-size: 0.92rem;
  padding: 9px 0 9px 18px;
  border-bottom: 1px solid #F0EDE8;
  color: var(--charcoal);
  position: relative;
}
.tier ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.tier ul li:last-child { border-bottom: none; }

/* ---------- Two column ---------- */
.cols-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .cols-2 { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
}

/* ---------- Pull quote ---------- */
.pull {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  line-height: 1.35;
  letter-spacing: 0.005em;
  max-width: 28ch;
  padding: 2rem 0 2rem 1.75rem;
  border-left: 3px solid var(--gold);
  margin: 2rem 0;
  color: var(--charcoal);
  font-style: italic;
}

/* ---------- Areas list ---------- */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.areas-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.15s ease;
}
.areas-list li:hover { border-color: var(--gold); color: var(--gold-deep); }
.areas-list li a { text-decoration: none; color: inherit; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}
.faq-item summary {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--charcoal);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p { margin-top: 1rem; max-width: 65ch; }

/* ---------- Contact form ---------- */
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: 2px;
  border-top: 3px solid var(--gold);
}
.contact-form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--gold-deep);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 1rem;
  background: var(--cream-warm);
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  transition: border-color 0.15s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button { width: 100%; }

/* ---------- Call-out / gold callout strip ---------- */
.callout {
  background: var(--gold-soft);
  border-radius: 2px;
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 2rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 3.5rem 0 2rem;
}
.site-footer a { color: var(--cream); text-decoration-color: var(--gold); }
.site-footer a:hover { text-decoration-color: var(--gold-line); }

.site-footer .foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .site-footer .foot-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.site-footer h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-line);
  margin-bottom: 1rem;
}
.site-footer .brand-foot {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: baseline;
}
.site-footer .brand-foot .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-left: 5px;
}
.site-footer ul { list-style: none; padding: 0; }
.site-footer ul li { padding: 4px 0; font-size: 0.92rem; }
.site-footer .copy {
  border-top: 1px solid #3a3a37;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ---------- Utilities ---------- */
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: 0.9rem; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }

.divider-gold {
  height: 1px;
  background: var(--gold-line);
  border: none;
  margin: 2rem 0;
  max-width: 60px;
}

/* ---------- Skip link (a11y) ---------- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--charcoal);
  color: var(--cream);
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
}
.skip-link:focus { top: 0; }
