/* BEST BUILD CONSTRUCTION — FINAL CLEAN STYLES */

:root {
  --teal: #11979a;
  --teal-dark: #087477;
  --ink: #202528;
  --muted: #687176;
  --paper: #ffffff;
  --soft: #f3f6f6;
  --line: #dfe6e6;
  --dark: #1f2528;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

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

.container {
  width: min(1120px, 86%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  box-shadow: 0 3px 18px rgba(0,0,0,.05);
}

.nav-wrap {
  width: min(1240px, 86%);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.menu-toggle {
  display: none;
}
.mobile-nav {
  display: none;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand span {
  color: var(--teal);
  font-weight: 700;
  letter-spacing: .08em;
  font-size: 1.15rem;
}

.brand small {
  margin-top: 6px;
  font-size: .67rem;
  letter-spacing: .27em;
}

.desktop-nav {
  display: flex;
  gap: 30px;
  font-size: .93rem;
  font-weight: 500;
}

.desktop-nav a:hover {
  color: var(--teal);
}

.pill {
  min-height: 48px;
  padding: 11px 23px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}

.pill-teal {
  background: var(--teal);
  color: #fff;
}

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

.pill-outline {
  color: #fff;
  border: 1px solid rgba(255,255,255,.65);
  background: rgba(255,255,255,.08);
}

.pill-dark {
  background: var(--dark);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8,15,17,.48) 0%, rgba(8,15,17,.24) 36%, rgba(8,15,17,.04) 72%),
    url("images/hero-house.jpg") center / 100% 100% no-repeat;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.08));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 86%);
  margin: 0 auto;
}

.kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.kicker.light {
  color: #8de2e4;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: .98;
  letter-spacing: -.05em;
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.94);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.section {
  padding: 68px 0;
}

.section-title {
  margin-bottom: 32px;
}

.section-title.center {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title h2,
.quote h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.section-title p:not(.kicker) {
  color: var(--muted);
}

.about {
  padding-top: 52px;
  padding-bottom: 60px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
}

.about-copy {
  margin: 0;
  color: #4c5559;
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.feature-grid div {
  padding: 15px 16px;
  border: 1px solid var(--teal);
  border-radius: 14px;
  background: var(--teal);
  color: white;
  font-size: .92rem;
  font-weight: 500;
}

.services {
  background: var(--soft);
}

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

.card {
  min-height: 205px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 35px rgba(20,35,36,.05);
}

.card h3 {
  margin: 0 0 12px;
  color: var(--teal-dark);
}

.card p {
  margin: 0;
  color: var(--muted);
}

.projects {
  padding-top: 58px;
  padding-bottom: 72px;
}

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

.project {
  position: relative;
  height: 245px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #d5dede;
  background: linear-gradient(135deg, #e8eeee, #dbe4e4);
}

.project::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.48), rgba(0,0,0,0) 58%);
  opacity: 0;
  transition: opacity .2s ease;
}

.project span {
  position: relative;
  z-index: 2;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

.project:hover::after {
  opacity: 1;
}

.project:hover span {
  color: #fff;
}

.project-driveway {
  background:
    linear-gradient(to top, rgba(0,0,0,.18), rgba(0,0,0,0) 65%),
    url("images/driveway.jpg") center / cover no-repeat,
    #fff;
}

.project-driveway::after {
  display: none;
}

.project-driveway span {
  color: #fff;
}

/* These automatically show the image if you later add the file.
   If no file exists, the tile stays as a clean placeholder. */
.project-backyard {
  background:
    linear-gradient(to top, rgba(0,0,0,.18), rgba(0,0,0,0) 65%),
    url("images/backyard.jpg") center / cover no-repeat,
    #fff;
}

.project-custom {
  background:
    linear-gradient(to top, rgba(0,0,0,.18), rgba(0,0,0,0) 65%),
    url("images/custom-home.jpg") center / cover no-repeat,
    #fff;
}

.project-kitchen {
  background:
    linear-gradient(to top, rgba(0,0,0,.18), rgba(0,0,0,0) 65%),
    url("images/kitchen.jpg") center / cover no-repeat,
    #fff;
}

.project-bathroom {
  background:
    linear-gradient(to top, rgba(0,0,0,.18), rgba(0,0,0,0) 65%),
    url("images/bathroom.jpg") center / cover no-repeat,
    #fff;
}

.project-basement {
  background:
    linear-gradient(to top, rgba(0,0,0,.18), rgba(0,0,0,0) 65%),
    url("images/basement.jpg") center / cover no-repeat,
    #fff;
}

.project-backyard span,
.project-custom span,
.project-kitchen span,
.project-bathroom span,
.project-basement span {
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,.35);
}

.quote {
  background: var(--dark);
  color: #fff;
}

.quote-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 58px;
  align-items: start;
}

.quote-copy p:not(.kicker) {
  color: #c9d0d2;
  max-width: 470px;
}
.quote-copy p.quote-trust {
  margin-top: 24px;
  color: #8de2e4;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.6;
}
.contact-link {
  display: inline-block;
  margin-top: 18px;
  color: #8de2e4;
  font-weight: 600;
}

.quote-form {
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
}

.quote-form label {
  display: block;
  margin-bottom: 13px;
}

.quote-form label > span {
  display: block;
  margin-bottom: 6px;
  font-size: .82rem;
  font-weight: 600;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-help {
  margin: 10px 0 0;
  text-align: center;
  color: #7b8589;
  font-size: .78rem;
}

.contact {
  text-align: center;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-actions .pill {
  padding: 11px 18px;
  font-size: 0.9rem;
  flex: 1;
}

footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #7b8589;
  font-size: .82rem;
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7b8589;
  text-decoration: none;
}

@media (max-width: 920px) {
  .desktop-nav {
    display: none;
  }
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--ink);
  font-size: 1.8rem;
  cursor: pointer;
}
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  background: #fff;
  padding: 18px 24px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
  gap: 4px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 12px 8px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

.mobile-nav a:last-child {
  border-bottom: none;
  color: var(--teal);
}
  .about-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .nav-wrap,
  .hero-inner,
  .container {
    width: min(92%, 1120px);
  }
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--ink);
  font-size: 1.8rem;
  cursor: pointer;
}
  .brand small {
    letter-spacing: .18em;
  }

  .nav-wrap > .pill {
    padding: 9px 14px;
    font-size: .80rem;
  }

  .hero {
    min-height: 560px;
    background-size: cover;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .section {
    padding: 52px 0;
  }

  .feature-grid,
  .service-grid,
  .project-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .project {
    height: 220px;
  }

  .footer-inner {
    padding: 18px 0;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .contact-actions {
  flex-direction: column;
  width: 100%;
  gap: 10px;
}

.contact-actions .pill {
  width: 100%;
  flex: none;
  text-align: center;
}
.services .card {
  min-height: auto;
}
}
