
:root {
  --bg: #f7f3ec;
  --surface: #fffaf2;
  --surface-2: #efe7da;
  --ink: #17201b;
  --ink-soft: #334039;
  --muted: #69736c;
  --line: rgba(23, 32, 27, .13);
  --green: #184a35;
  --green-2: #0f6b4d;
  --sand: #d4a96a;
  --sand-2: #f1d8a8;
  --red: #8f2d2d;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(23, 32, 27, .13);
  --shadow-soft: 0 14px 40px rgba(23, 32, 27, .08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(212, 169, 106, .25), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(24, 74, 53, .12), transparent 28%),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image:
    linear-gradient(rgba(23,32,27,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,32,27,.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.top-strip {
  padding: 10px 18px;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  background: var(--ink);
  color: rgba(255,255,255,.86);
  font-size: 13px;
  font-weight: 750;
}

.top-strip a {
  color: var(--sand-2);
  font-weight: 900;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(1220px, calc(100% - 28px));
  min-height: 78px;
  margin: 14px auto 0;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(23, 32, 27, .11);
  border-radius: 999px;
  background: rgba(255, 250, 242, .82);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 46px rgba(23, 32, 27, .08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 20%, var(--sand-2), var(--sand));
  color: var(--ink);
  font-weight: 1000;
  letter-spacing: -.6px;
  box-shadow: inset 0 0 0 1px rgba(23,32,27,.10), 0 12px 24px rgba(212,169,106,.25);
}

.brand strong {
  display: block;
  font-size: 16px;
  letter-spacing: -.25px;
}

.brand small {
  display: block;
  margin-top: 1px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(23, 32, 27, .045);
}

.nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  transition: .2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23,32,27,.08);
}

.nav .quote-link {
  color: white;
  background: var(--green);
}

.nav .quote-link:hover,
.nav .quote-link.active {
  color: white;
  background: var(--green-2);
}

.header-call {
  min-width: max-content;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(23,32,27,.15);
}

.btn {
  min-height: 50px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 950;
  transition: .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--green);
  color: white;
  box-shadow: 0 16px 34px rgba(24,74,53,.22);
}

.btn.gold {
  background: linear-gradient(135deg, var(--sand), var(--sand-2));
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(212,169,106,.24);
}

.btn.light {
  background: rgba(255,255,255,.82);
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero {
  padding: 74px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  min-height: 620px;
  padding: clamp(28px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0% 0%, rgba(212,169,106,.22), transparent 34%),
    linear-gradient(135deg, rgba(255,250,242,.92), rgba(239,231,218,.86));
  box-shadow: var(--shadow);
}

.kicker {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(24, 74, 53, .09);
  color: var(--green);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .9px;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 14px 0 18px;
  max-width: 800px;
  color: var(--ink);
  font-size: clamp(44px, 7vw, 86px);
  line-height: .9;
  letter-spacing: -4px;
}

.hero p,
.page-hero p {
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 850;
}

.hero-media {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--ink);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(23,32,27,.72), transparent 58%),
    radial-gradient(circle at 50% 0%, transparent, rgba(23,32,27,.15));
}

.floating-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: rgba(255,250,242,.90);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 46px rgba(0,0,0,.20);
}

.floating-card strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
}

.floating-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: 84px 0;
}

.section-tight {
  padding: 54px 0;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 5vw, 58px);
  line-height: .96;
  letter-spacing: -2.4px;
}

.section-head p {
  color: var(--muted);
  line-height: 1.75;
}

.bento {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
}

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

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.clean-card,
.review-card,
.price-card,
.faq-card,
.protect-card,
.process-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,250,242,.78);
  box-shadow: var(--shadow-soft);
}

.clean-card,
.process-card,
.faq-card,
.protect-card {
  padding: 26px;
}

.clean-card::before,
.price-card::before,
.protect-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--sand));
}

.clean-card .icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 17px;
  background: rgba(24,74,53,.08);
  font-size: 24px;
}

.clean-card strong,
.process-card strong,
.faq-card strong,
.protect-card strong,
.review-card strong {
  display: block;
  color: var(--ink);
  font-size: 21px;
  letter-spacing: -.4px;
  margin-bottom: 10px;
}

.clean-card p,
.clean-card li,
.process-card p,
.faq-card p,
.protect-card p,
.protect-card li,
.review-card p,
.price-card p,
.price-card li {
  color: var(--muted);
  line-height: 1.68;
}

.clean-card ul,
.protect-card ul,
.price-card ul {
  padding-left: 20px;
  margin: 12px 0 0;
}

.large-feature {
  min-height: 430px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: white;
  background:
    linear-gradient(to top, rgba(23,32,27,.92), rgba(23,32,27,.18)),
    url("assets/img/clean-home-exterior-pro.jpg") center/cover;
}

.large-feature strong {
  color: white;
  font-size: clamp(30px, 5vw, 52px);
  line-height: .98;
  letter-spacing: -2px;
}

.large-feature p {
  color: rgba(255,255,255,.78);
}

.stats-strip {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.6);
}

.stat strong {
  display: block;
  color: var(--green);
  font-size: 28px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.process-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-weight: 1000;
}

.cta-band {
  margin-top: 30px;
  padding: 26px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(212,169,106,.28), transparent 40%),
    linear-gradient(135deg, var(--ink), #26312b);
  color: white;
  box-shadow: var(--shadow);
}

.cta-band strong {
  display: block;
  color: white;
  font-size: 25px;
  letter-spacing: -.5px;
}

.cta-band p {
  margin: 7px 0 0;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
}

.review-card {
  padding: 24px;
}

.stars {
  color: var(--sand);
  font-size: 18px;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.review-meta {
  margin-top: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .7px;
}

.page-hero {
  padding: 74px 0 34px;
}

.page-hero-card {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0 0, rgba(212,169,106,.22), transparent 35%),
    linear-gradient(135deg, rgba(255,250,242,.92), rgba(239,231,218,.84));
  box-shadow: var(--shadow);
}

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

.price-card {
  padding: 28px;
}

.price-card.featured {
  background:
    radial-gradient(circle at 100% 0%, rgba(212,169,106,.24), transparent 44%),
    linear-gradient(135deg, var(--green), #102a20);
  color: white;
}

.price-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.price-card.featured span {
  color: var(--sand-2);
}

.price-card h3 {
  margin: 10px 0 12px;
  font-size: 28px;
  letter-spacing: -.8px;
}

.price {
  margin: 0 0 16px;
  font-size: 40px;
  font-weight: 1000;
  letter-spacing: -1.4px;
}

.price-card.featured p,
.price-card.featured li {
  color: rgba(255,255,255,.75);
}

.notice {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,250,242,.82);
  color: var(--muted);
  line-height: 1.7;
  box-shadow: var(--shadow-soft);
}

.notice strong {
  color: var(--ink);
}

.quote-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,250,242,.78);
  box-shadow: var(--shadow);
}

.quote-layout {
  display: grid;
  grid-template-columns: 1.04fr .78fr;
}

.quote-form {
  padding: clamp(22px, 4vw, 36px);
}

.form-block {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.form-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.form-block h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -.6px;
}

.form-block p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.field-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.72);
  color: var(--ink);
  outline: none;
}

.quote-form textarea {
  min-height: 138px;
  resize: vertical;
  line-height: 1.55;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(24,74,53,.42);
  box-shadow: 0 0 0 4px rgba(24,74,53,.10);
  background: white;
}

.full {
  grid-column: 1 / -1;
}

.photo-preview {
  margin-top: 14px;
  padding: 14px;
  border: 1px dashed rgba(23,32,27,.26);
  border-radius: 18px;
  background: rgba(255,255,255,.45);
  color: var(--muted);
  font-size: 13px;
}

.photo-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 13px;
}

.quote-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.status {
  margin-top: 15px;
  padding: 14px 16px;
  border: 1px solid rgba(24,74,53,.20);
  border-radius: 16px;
  background: rgba(24,74,53,.07);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.5;
}

.status.loading {
  border-color: rgba(212,169,106,.55);
  background: rgba(212,169,106,.16);
}

.status.success {
  color: #064e3b;
  border-color: #6ee7b7;
  background: #d1fae5;
}

.status.error {
  color: #7f1d1d;
  border-color: #fecaca;
  background: #fee2e2;
}

.quote-preview {
  padding: clamp(24px, 4vw, 36px);
  background:
    radial-gradient(circle at 100% 0%, rgba(212,169,106,.24), transparent 40%),
    linear-gradient(135deg, var(--green), #10251d);
  color: white;
}

.quote-preview h2 {
  margin: 0 0 16px;
  color: white;
  font-size: 34px;
  letter-spacing: -1px;
}

.preview-box {
  min-height: 350px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,250,242,.95);
  color: var(--ink);
  white-space: pre-wrap;
  line-height: 1.55;
  font-size: 14px;
}

.preview-note {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
}

.preview-note strong {
  display: block;
  color: white;
}

.preview-note p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
}

.protection-list {
  display: grid;
  gap: 18px;
}

.protect-card {
  padding: 26px;
}

.footer {
  margin-top: 44px;
  padding: 34px min(34px, 4vw);
  display: flex;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  background: var(--ink);
  color: white;
}

.footer p {
  max-width: 720px;
  color: rgba(255,255,255,.68);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: rgba(255,255,255,.82);
  font-weight: 850;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 1050px) {
  .main-header {
    border-radius: 28px;
  }

  .nav,
  .header-call {
    display: none;
  }

  .hero-grid,
  .bento,
  .quote-layout,
  .pricing-grid,
  .card-grid,
  .card-grid.two,
  .card-grid.four {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-media {
    min-height: auto;
  }

  .hero-media {
    min-height: 430px;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .mobile-action-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 200;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 24px;
    background: rgba(23,32,27,.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .mobile-action-bar a {
    min-height: 48px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: white;
    color: var(--ink);
    font-weight: 950;
  }

  .mobile-action-bar a:first-child {
    background: linear-gradient(135deg, var(--sand), var(--sand-2));
  }

  body {
    padding-bottom: 82px;
  }
}

@media (max-width: 650px) {
  .top-strip {
    gap: 8px 16px;
    font-size: 12px;
  }

  .main-header {
    width: calc(100% - 18px);
    margin-top: 8px;
    padding: 10px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 11px;
  }

  .hero {
    padding: 42px 0 34px;
  }

  .hero-copy {
    padding: 28px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 43px;
    letter-spacing: -2.4px;
  }

  .hero p,
  .page-hero p {
    font-size: 16px;
  }

  .section {
    padding: 58px 0;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .quote-form,
  .quote-preview {
    padding: 22px;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}
