:root {
  --bg: #eef3f3;
  --surface: #ffffff;
  --ink: #142126;
  --muted: #5a6a71;
  --teal: #1f8a93;
  --teal-dark: #166b72;
  --card: #dce9ea;
  --line: #cfdcdf;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

.wrap {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--teal-dark);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 0.45rem;
  padding: 0.45rem 0.7rem;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}

.nav a.is-current,
.mobile-menu a.is-current {
  color: var(--teal-dark);
}

.btn {
  border: 0;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  padding: 0.65rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  background: var(--teal-dark);
}

.mobile-menu {
  display: none;
}

.mobile-contact {
  display: none;
  padding: 0 4vw 0.75rem;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.btn-phone {
  background: #114f55;
}

.mobile-contact-label {
  width: 100%;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  overflow: hidden;
}

.hero-copy {
  padding: 2.2rem;
}

.hero-copy h1 {
  margin: 0 0 0.75rem;
  line-height: 1.1;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.hero-copy p {
  margin: 0 0 1.2rem;
  color: var(--muted);
}

.hero-photo {
  min-height: 320px;
  background: url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1400&q=80")
    center/cover no-repeat;
}

.cards {
  margin-top: 1rem;
  background: #75aeb4;
  border-radius: 0.8rem;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.card {
  background: var(--surface);
  border-radius: 0.7rem;
  padding: 1rem;
  text-align: center;
}

.card .icon {
  font-size: 1.5rem;
}

.card h3 {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.card p {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  margin-top: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 1.4rem;
}

.section h2 {
  margin: 0 0 1rem;
  text-align: center;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.review {
  background: #f7fafa;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  padding: 0.9rem;
}

.review-meta {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: #41535a;
  font-weight: 700;
}

.stars {
  color: #e7b81d;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1rem;
  align-items: center;
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.img-tile {
  min-height: 150px;
  border-radius: 0.6rem;
  background-size: cover;
  background-position: center;
}

.img-a {
  background-image: url("https://images.unsplash.com/photo-1563453392212-326f5e854473?auto=format&fit=crop&w=900&q=80");
}

.img-b {
  background-image: url("https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?auto=format&fit=crop&w=900&q=80");
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step {
  text-align: center;
}

.dot {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.subtle {
  color: var(--muted);
  font-size: 0.95rem;
}

.page-main {
  padding-bottom: 1rem;
}

.page-hero {
  margin-top: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 1.4rem;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
}

.grid-2 {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 1.1rem;
}

.info-card h3 {
  margin: 0 0 0.5rem;
}

.service-list {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.service-item {
  background: #f7fafa;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  padding: 1rem;
}

.service-item h3 {
  margin: 0 0 0.45rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  background: #f7fafa;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  padding: 1rem;
}

.faq-item h3 {
  margin: 0 0 0.45rem;
}

.quote-layout {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1rem;
}

.quote-panel,
.quote-aside {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 1.1rem;
}

.mini-kicker {
  color: var(--teal-dark);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

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

.field label {
  font-size: 0.9rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  padding: 0.65rem 0.7rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.quote-submit {
  border: 0;
  border-radius: 0.55rem;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  padding: 0.8rem 0.95rem;
  cursor: pointer;
}

.status-message {
  margin-top: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  padding: 0.75rem;
  color: var(--ink);
  display: none;
}

.status-message.is-visible {
  display: block;
}

@media (max-width: 900px) {
  .topbar-inner {
    padding: 0.7rem 0;
  }
  .menu-toggle {
    display: inline-block;
  }
  .hero,
  .before-after,
  .grid-2,
  .quote-layout {
    grid-template-columns: 1fr;
  }
  .nav {
    display: none;
  }
  .mobile-menu {
    display: none;
    padding: 0 4vw 0.6rem;
    border-top: 1px solid var(--line);
    background: #fff;
  }
  .mobile-menu.is-open {
    display: grid;
    gap: 0.45rem;
  }
  .mobile-menu a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 700;
    padding: 0.45rem 0;
  }
  .mobile-contact {
    display: flex;
  }
  .mobile-contact .btn {
    flex: 1;
    text-align: center;
    padding: 0.55rem 0.75rem;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-list {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .reviews,
  .process {
    grid-template-columns: 1fr;
  }
}
