/* Tulip City Cleaning — shared styles
   Implemented from Tulip City Cleaning.dc.html design */

:root {
  --bg: #FAF7F4;
  --ink: #1E1B1C;
  --red: #D9422F;
  --red-link: #C93B2E;
  --red-soft: #FFE2DD;
  --border: #E7DFD8;
  --muted: #514945;
  --muted-2: #6B625E;
  --muted-3: #8A7F79;
  --dark-muted: #B9AFA9;
  --dark-muted-2: #A79C96;
  --dark-border: #3A3435;
  --stat-bg: #F1EAE4;
  --input-border: #DDD3CB;
  --input-bg: #FCFAF8;
  --serif: 'Source Serif 4', Georgia, serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Archivo', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

a { color: var(--red-link); text-decoration: none; }
a:hover { color: var(--ink); }
h1, h2, h3, h4, p, ul, figure, blockquote { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; }

.page { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }
.container { max-width: 1180px; margin: 0 auto; padding-left: 28px; padding-right: 28px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
}
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--ink); color: #fff; }
.btn--outline { border: 1.5px solid var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { background: var(--ink); color: #fff; }
.btn--outline-light { border: 1.5px solid rgba(255,255,255,0.6); color: #fff; }
.btn--outline-light:hover { background: rgba(0,0,0,0.15); color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--red); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 244, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-header__logo { display: flex; align-items: center; }
.site-header__logo img { height: 38px; width: auto; display: block; }
.site-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
}
.site-nav a { color: var(--ink); }
.site-nav a:hover { color: var(--red-link); }
.site-nav a[aria-current="page"]:not(.site-nav__cta) { color: var(--red-link); }
.site-nav .site-nav__phone { font-variant-numeric: tabular-nums; }
.site-nav .site-nav__cta {
  background: var(--red);
  color: #fff;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
}
.site-nav .site-nav__cta:hover { background: var(--ink); color: #fff; }
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  padding: 8px 12px;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
}

/* ---------- Shared bits ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted-3);
}
.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--red);
  display: inline-block;
}
.section-label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-3);
}
.lede {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
  color: var(--muted);
}
.photo-ph {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: repeating-linear-gradient(135deg, #EFE7E1 0 12px, #E7DDD5 12px 24px);
  display: flex;
  align-items: flex-end;
  padding: 22px;
}
.photo-ph figcaption {
  font-family: var(--mono);
  font-size: 12px;
  color: #7A6F69;
  background: var(--bg);
  padding: 8px 12px;
  border-radius: 8px;
}

/* ---------- Home: hero ---------- */
.hero {
  padding-top: 76px;
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: 60px;
  line-height: 1.03;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin-top: 20px;
}
.hero .lede { margin-top: 22px; max-width: 33em; }
.hero__actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero__trust {
  display: flex;
  gap: 26px;
  margin-top: 34px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted-2);
  font-weight: 500;
}
.hero .photo-ph { aspect-ratio: 4 / 5; }

/* ---------- Home: who we clean for ---------- */
.section-dark { background: var(--ink); color: var(--bg); }
.section-dark__inner { padding-top: 72px; padding-bottom: 72px; }
.section-dark .section-label { color: var(--dark-muted-2); }
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.who-card { border: 1px solid var(--dark-border); border-radius: 16px; padding: 28px; }
.who-card:hover { border-color: var(--red); }
.who-card h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.01em; }
.who-card p { margin-top: 12px; color: var(--dark-muted); font-size: 16px; line-height: 1.6; }
.who-more { margin-top: 24px; color: #8F8580; font-size: 15px; }
.who-more a { color: #F0705F; border-bottom: 1px solid #6E4841; }
.who-more a:hover { color: #fff; }

/* ---------- Home: steps ---------- */
.steps-section { padding-top: 84px; padding-bottom: 84px; }
.steps-section > h2 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.022em;
  max-width: 16em;
}
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-top: 44px; }
.step { border-top: 2px solid var(--red); padding-top: 20px; }
.step__num { font-family: var(--mono); font-size: 13px; color: var(--red); }
.step h3 { font-size: 22px; font-weight: 600; margin-top: 8px; }
.step p { margin-top: 10px; color: var(--muted); font-size: 16px; line-height: 1.6; }

/* ---------- Home: stats ---------- */
.stats-band { background: var(--stat-bg); }
.stats {
  padding-top: 64px;
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.stat__value { font-size: 38px; font-weight: 700; letter-spacing: -0.02em; }
.stat p { margin-top: 8px; color: var(--muted-2); font-size: 15px; }

/* ---------- Home: testimonials ---------- */
.testimonials-section { padding-top: 84px; padding-bottom: 84px; }
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 26px; }
.testimonial { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.testimonial p { font-family: var(--serif); font-size: 19px; line-height: 1.5; }
.testimonial footer { margin-top: 18px; font-size: 14px; color: var(--muted-2); }

/* ---------- Home: CTA banner ---------- */
.cta-section { padding-bottom: 84px; }
.cta-banner {
  background: var(--red);
  color: #fff;
  border-radius: 22px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.cta-banner h2 { font-size: 40px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; }
.cta-banner p { margin-top: 14px; font-size: 18px; line-height: 1.55; color: var(--red-soft); }
.cta-banner__actions { display: flex; flex-direction: column; gap: 12px; }
.cta-banner__actions .btn { padding: 17px 28px; }

/* ---------- Page heroes ---------- */
.page-hero { padding-top: 68px; padding-bottom: 40px; }
.page-hero h1 { font-size: 52px; font-weight: 700; letter-spacing: -0.025em; max-width: 15em; }
.page-hero .lede { margin-top: 18px; max-width: 38em; }

/* ---------- Commercial ---------- */
.svc-grid {
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.svc-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 30px; }
.svc-card h3 { font-size: 24px; font-weight: 600; }
.svc-card p { margin-top: 10px; color: var(--muted); line-height: 1.6; }
.scope {
  padding-top: 72px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}
.scope h2 { font-size: 36px; font-weight: 700; letter-spacing: -0.02em; }
.scope > div > p { margin-top: 14px; color: var(--dark-muted); line-height: 1.6; }
.scope ul { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; font-size: 16px; }
.scope li { border-bottom: 1px solid var(--dark-border); padding-bottom: 12px; }
.center-cta { padding-top: 64px; padding-bottom: 84px; text-align: center; }
.center-cta h2 { font-size: 34px; font-weight: 700; letter-spacing: -0.02em; }
.center-cta__actions { display: flex; gap: 14px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }

/* ---------- Quote ---------- */
.quote-grid {
  padding-top: 68px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.quote-grid h1 { font-size: 48px; font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; }
.quote-grid .lede { margin-top: 18px; font-size: 19px; }
.quote-points { margin-top: 30px; display: grid; gap: 14px; font-size: 16px; color: var(--ink); }
.quote-points li { display: flex; gap: 12px; align-items: flex-start; }
.quote-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--red);
  margin-top: 8px;
  flex: none;
}
.quote-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 34px; }
.quote-form { display: grid; gap: 18px; }
.quote-form label { display: grid; gap: 7px; font-size: 14px; font-weight: 600; }
.quote-form input,
.quote-form textarea {
  font: inherit;
  font-weight: 400;
  font-size: 16px;
  padding: 13px 14px;
  border: 1px solid var(--input-border);
  border-radius: 10px;
  background: var(--input-bg);
}
.quote-form textarea { resize: vertical; }
.quote-form input:focus,
.quote-form textarea:focus { outline: 2px solid var(--red); outline-offset: 0; }
.quote-form button {
  font: inherit;
  font-weight: 600;
  font-size: 16px;
  background: var(--red);
  color: #fff;
  border: 0;
  padding: 16px;
  border-radius: 999px;
  cursor: pointer;
}
.quote-form button:hover { background: var(--ink); }
.quote-success { padding: 40px 8px; text-align: center; }
.quote-success h2 { font-size: 28px; font-weight: 700; }
.quote-success p { margin-top: 12px; color: var(--muted); line-height: 1.6; }
[hidden] { display: none !important; }

/* ---------- About ---------- */
.about-hero {
  padding-top: 68px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}
.about-hero h1 { font-size: 50px; font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; }
.about-hero .lede { margin-top: 20px; font-size: 19px; line-height: 1.6; }
.about-hero .body-copy { font-size: 17px; line-height: 1.6; color: var(--muted); margin-top: 16px; }
.about-hero .photo-ph { aspect-ratio: 1 / 1; }
.values-band { background: var(--stat-bg); }
.values {
  padding-top: 70px;
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.values h3 { font-size: 24px; font-weight: 600; }
.values p { margin-top: 10px; color: var(--muted); line-height: 1.6; }

/* ---------- Residential ---------- */
.res-page { padding-top: 68px; padding-bottom: 90px; }
.res-page h1 { font-size: 48px; font-weight: 700; letter-spacing: -0.025em; max-width: 14em; }
.res-page .lede { margin-top: 18px; font-size: 19px; max-width: 36em; }
.res-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 38px; }
.res-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.res-card h3 { font-size: 20px; font-weight: 600; }
.res-card p { margin-top: 8px; color: var(--muted); font-size: 15px; line-height: 1.55; }
.res-page .btn { margin-top: 34px; }

/* ---------- Service areas ---------- */
.areas-page { padding-top: 68px; padding-bottom: 90px; }
.areas-page h1 { font-size: 48px; font-weight: 700; letter-spacing: -0.025em; }
.areas-page .lede { margin-top: 18px; font-size: 19px; max-width: 34em; }
.areas-grid { margin-top: 34px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.areas-grid li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  font-weight: 600;
}
.areas-note { margin-top: 20px; font-family: var(--mono); font-size: 13px; color: var(--muted-3); }
.areas-page .areas-cta { margin-top: 36px; }

/* ---------- FAQ ---------- */
.faq-section { padding-top: 0; padding-bottom: 84px; }
.faq-section > h2 { font-size: 34px; font-weight: 700; letter-spacing: -0.02em; }
.faq { margin-top: 26px; max-width: 46em; }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--red); font-size: 22px; font-weight: 600; flex: none; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 20px; color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 42em; }
.faq details p + p { margin-top: -8px; }

/* ---------- Residential cross-link band ---------- */
.res-band { padding-bottom: 84px; }
.res-band__inner {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 22px;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.res-band h2 { font-size: 26px; font-weight: 700; letter-spacing: -0.015em; }
.res-band p { margin-top: 8px; color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 34em; }
.res-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--dark-muted); margin-top: auto; }
.site-footer__grid {
  padding-top: 56px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.site-footer__logo { height: 44px; width: auto; display: block; filter: invert(1) brightness(1.6) saturate(0.9); }
.site-footer__blurb { margin-top: 16px; font-size: 15px; line-height: 1.6; max-width: 26em; }
.site-footer h4 {
  color: var(--bg);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.site-footer ul { margin-top: 14px; display: grid; gap: 9px; font-size: 15px; }
.site-footer a { color: var(--dark-muted); }
.site-footer a:hover { color: #fff; }
.site-footer__legal {
  padding-top: 20px;
  padding-bottom: 40px;
  border-top: 1px solid #332E2F;
  font-size: 13px;
  color: #7A706B;
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 52px; }
  .hero h1 { font-size: 44px; }
  .hero .photo-ph { aspect-ratio: 4 / 3; }
  .who-grid, .steps, .testimonials, .values { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { grid-template-columns: 1fr; padding: 40px 32px; }
  .cta-banner h2 { font-size: 32px; }
  .page-hero h1, .res-page h1, .areas-page h1, .quote-grid h1, .about-hero h1 { font-size: 38px; }
  .steps-section > h2 { font-size: 32px; }
  .svc-grid { grid-template-columns: 1fr; }
  .scope { grid-template-columns: 1fr; gap: 32px; }
  .quote-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-hero { grid-template-columns: 1fr; gap: 36px; }
  .res-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 8px 28px 20px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav .site-nav__cta { margin-top: 14px; text-align: center; padding: 13px 20px; border-bottom: 0; }
}

@media (max-width: 560px) {
  .container, .site-header__inner { padding-left: 20px; padding-right: 20px; }
  .site-nav { padding-left: 20px; padding-right: 20px; }
  .hero h1 { font-size: 36px; }
  .stats { grid-template-columns: 1fr; }
  .res-grid, .areas-grid { grid-template-columns: 1fr; }
  .scope ul { grid-template-columns: 1fr; }
  .hero__actions .btn, .center-cta__actions .btn { width: 100%; }
  .quote-card { padding: 24px 20px; }
  .cta-banner { padding: 32px 24px; }
}
