/* ============================
   Renovi Cleaning, Base and Vars
   ============================ */
:root {
  --black: #131110;
  --black-soft: #1c1917;
  --white: #ffffff;
  --cream: #f7f4f0;

  --brown: #6b4526;

  --line: rgba(19, 17, 16, 0.12);
  --line-on-dark: rgba(255, 255, 255, 0.14);
  --text-muted: rgba(19, 17, 16, 0.64);
  --text-on-dark: rgba(255, 255, 255, 0.72);
  --text-on-dark-soft: rgba(255, 255, 255, 0.46);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --radius: 20px;
  --radius-control: 12px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(19, 17, 16, 0.05);
  --shadow-md: 0 16px 40px rgba(19, 17, 16, 0.12);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 220ms;

  --header-h: 78px;
  --section-pad: clamp(64px, 9vw, 120px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-display);
  margin: 0;
}

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

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--black);
  color: var(--white);
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 16px; top: 16px; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 14px;
}

/* ============================
   Buttons
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 24px;
  min-height: 48px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition) var(--ease), border-color var(--transition) var(--ease),
    color var(--transition) var(--ease), filter var(--transition) var(--ease), transform 120ms var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--brown);
  color: var(--white);
}
.btn-primary:hover { filter: brightness(1.12); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-outline:hover {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--line);
}
.btn-outline-dark:hover {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--white);
}

.btn-large { padding: 16px 30px; font-size: 1rem; }
.btn-small { padding: 10px 18px; min-height: 40px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ============================
   Header
   ============================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line-on-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.42em;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.005em;
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: var(--text-on-dark);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition) var(--ease);
}
.main-nav a:hover { color: var(--brown); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color var(--transition) var(--ease);
}
.phone-link:hover { color: var(--brown); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--white);
  margin: 0 auto;
  transition: transform var(--transition) var(--ease), opacity var(--transition) var(--ease);
}
.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); }

/* ============================
   Hero (dark, flat)
   ============================ */
.hero {
  background: var(--black);
  color: var(--white);
  padding: clamp(88px, 11vw, 128px) 0 clamp(72px, 9vw, 104px);
}

.hero-inner {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-on-dark);
  color: var(--text-on-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.6vw, 4.25rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
}

.hero-accent { color: var(--brown); }

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-on-dark);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-note {
  font-size: 0.88rem;
  color: var(--text-on-dark-soft);
  margin: 0;
}

/* ============================
   Trust strip
   ============================ */
.trust-strip {
  background: var(--black-soft);
  border-bottom: 1px solid var(--line-on-dark);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 30px 24px;
}

.trust-item {
  text-align: center;
}

.trust-value {
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.005em;
  color: var(--brown);
}

/* ============================
   Section head (shared)
   ============================ */
.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================
   Services
   ============================ */
.services { padding: var(--section-pad) 0; background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform var(--transition) var(--ease), box-shadow var(--transition) var(--ease),
    border-color var(--transition) var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brown);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-control);
  background: var(--brown);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.005em;
  margin: 0 0 10px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================
   Why Us
   ============================ */
.why-us { padding: var(--section-pad) 0; background: var(--cream); }

.why-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-content h2 {
  font-size: clamp(2rem, 3.4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}

.why-body {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 32px;
}

.why-panel-card {
  background: var(--brown);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
}
.why-panel-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 14px;
}
.why-panel-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 14px;
}
.why-panel-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.97rem;
  line-height: 1.6;
  margin: 0 0 26px;
}
.why-panel-card .btn-outline-dark {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.why-panel-card .btn-outline-dark:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* ============================
   Service area
   ============================ */
.service-area { padding: var(--section-pad) 0; background: var(--white); }
.service-area .section-head { margin-bottom: 0; }

.area-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 820px;
  margin: 40px auto 0;
}
.chip {
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--black);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
}
.chip-more {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--white);
}

/* ============================
   FAQ
   ============================ */
.faq { padding: var(--section-pad) 0; background: var(--cream); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  font-family: var(--font-body);
  text-align: left;
  padding: 22px 26px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  transition: background var(--transition) var(--ease);
}
.faq-question:hover { background: var(--cream); }

.faq-question .icon {
  flex-shrink: 0;
  color: var(--brown);
  transition: transform var(--transition) var(--ease);
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 320ms var(--ease), opacity 280ms var(--ease);
}
.faq-item.open .faq-answer { max-height: 240px; opacity: 1; }

.faq-answer p {
  margin: 0;
  padding: 0 26px 22px;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.65;
}

/* ============================
   Quote section
   ============================ */
.quote-section {
  padding: var(--section-pad) 0;
  background: var(--black);
  color: var(--white);
}

.quote-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.quote-copy h2 {
  font-size: clamp(2rem, 3.4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.quote-copy p {
  color: var(--text-on-dark);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.quote-form {
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.form-intro {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 24px;
  color: var(--black);
}

.form-row { margin-bottom: 20px; }

label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.range-value {
  color: var(--brown);
  font-weight: 700;
}

input, select, textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.97rem;
  padding: 14px 16px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--cream);
  color: var(--black);
  transition: border-color var(--transition) var(--ease);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--brown);
}
textarea { resize: vertical; min-height: 96px; }

.conditional-input { margin-top: 10px; }

input[type="range"] {
  padding: 0;
  min-height: 0;
  height: 6px;
  background: var(--line);
  border: none;
  -webkit-appearance: none;
  appearance: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brown);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px var(--line);
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brown);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px var(--line);
  cursor: pointer;
}

.form-disclaimer {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
  margin: 16px 0 0;
}

.form-note {
  min-height: 20px;
  margin: 10px 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brown);
  text-align: center;
}

/* ============================
   Footer
   ============================ */
.site-footer { background: var(--black-soft); color: var(--text-on-dark); padding: 72px 0 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-on-dark);
}

.footer-brand .logo { font-size: 1.4rem; }
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 16px 0 0;
  max-width: 280px;
  color: var(--text-on-dark);
}

.footer-col h4 {
  font-family: var(--font-body);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0 0 18px;
}
.footer-col { display: flex; flex-direction: column; }
.footer-col a, .footer-col span {
  font-size: 0.92rem;
  margin-bottom: 12px;
  color: var(--text-on-dark);
  transition: color var(--transition) var(--ease);
}
.footer-col a:hover { color: var(--brown); }

.footer-bottom {
  padding: 22px 24px;
  font-size: 0.8rem;
  color: var(--text-on-dark-soft);
}

/* ============================
   Mobile sticky CTA bar
   ============================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -8px 24px rgba(19, 17, 16, 0.1);
}
.mobile-cta-bar .btn-outline-dark { flex: 1; }
.mobile-cta-bar .btn-primary { flex: 1.3; }

/* ============================
   Responsive
   ============================ */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .quote-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }

  .site-header { height: var(--header-h); }
  .site-header.open { height: auto; padding-bottom: 24px; }

  .header-inner { flex-wrap: wrap; }

  .site-header.open .main-nav {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid var(--line-on-dark);
  }
  .site-header.open .header-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-basis: 100%;
    gap: 14px;
    margin-top: 22px;
  }

  .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 26px 20px; }
  .trust-value { font-size: 0.82rem; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }

  .why-panel-card { padding: 32px; }
  .quote-form { padding: 28px; }

  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 78px; }
}
