
:root {
  --bg: #f6f6f4;
  --surface: #ffffff;
  --surface-soft: #f0f4ef;
  --text: #222;
  --muted: #5f665d;
  --line: #e5e8e2;
  --green: #2e7d32;
  --green-dark: #1f5f24;
  --footer: #111;
  --footer-muted: #d9ddd6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 10px 32px;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 20;
}

.logo {
  flex: 0 0 auto;
}

.logo img {
  width: auto;
  height: auto;
  max-height: 86px;
  max-width: 260px;
  object-fit: contain;
}

.navbar nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.navbar nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.navbar nav a:hover,
.text-link:hover,
.footer-links a:hover,
.social-link:hover {
  color: var(--green);
}

.hero {
  height: 65vh;
  min-height: 468px;
  background: url('../images/washougal-wa-circular-paver-fire-pit-patio-02.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  text-align: center;
  background: rgba(0, 0, 0, 0.42);
  padding: 40px;
  color: white;
  max-width: 760px;
  border-radius: 18px;
}

.hero-overlay h1,
.page-hero-inner h1 {
  margin: 0 0 12px;
  line-height: 1.05;
}

.hero-overlay p,
.page-hero-inner p {
  margin: 0;
}

.hero-buttons,
.cta-actions {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.2;
  white-space: normal;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}

.btn-primary {
  background: var(--green);
  color: white;
}

.btn-secondary {
  background: white;
  color: var(--green);
  border: 1px solid rgba(46, 125, 50, 0.18);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.hero-inline-btn {
  margin-top: 18px;
}

.services,
.gallery,
.contact,
.gallery-category,
.content-section {
  padding: 56px 40px;
}

.services,
.gallery,
.contact {
  text-align: center;
}

.service-grid,
.feature-grid,
.policy-grid {
  display: grid;
  gap: 30px;
  margin-top: 30px;
}

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

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

.service-card,
.feature-card,
.policy-card,
.content-card,
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.03);
}

.service-card {
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  padding-bottom: 20px;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card h3 {
  margin: 18px 20px 10px;
}

.service-card p {
  margin: 0 20px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.section-head h2 {
  margin: 0;
}

.text-link {
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
}

.gallery {
  background: #f7f7f7;
}

.gallery-grid {
  display: grid;
  gap: 18px;
}

.recent-projects {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.recent-projects img,
.full-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
}

.contact {
  padding-top: 50px;
  padding-bottom: 38px;
}

.contact-box {
  margin-top: 20px;
  font-size: 18px;
}

.contact-box p {
  margin: 12px 0;
}

.contact-box a {
  color: var(--green);
  text-decoration: none;
}

.page-hero,
.gallery-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f0f4ef 100%);
}

.page-hero {
  padding: 46px 40px 34px;
}

.compact-hero {
  padding: 34px 40px 20px;
}

.page-hero-inner,
.gallery-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-hero-inner p {
  color: var(--muted);
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-nav {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 40px 10px;
}

.gallery-nav a {
  text-decoration: none;
  color: var(--green);
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
  background: #edf5ee;
}

.gallery-category {
  padding-top: 34px;
  padding-bottom: 38px;
}

.full-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.narrow {
  max-width: 1180px;
  margin: 0 auto;
}

.content-card,
.feature-card,
.policy-card {
  padding: 28px;
}

.content-card h2,
.feature-card h3,
.policy-card h2 {
  margin-top: 0;
}

.clean-list {
  margin: 0;
  padding-left: 18px;
}

.section-intro.centered {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

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

.testimonial-card {
  padding: 24px;
}

.testimonial-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.testimonial-card h3 {
  margin: 0 0 4px;
}

.review-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.stars {
  color: #d6a800;
  font-size: 1.05rem;
  letter-spacing: 1px;
  white-space: nowrap;
}

.cta-strip {
  margin: 10px 40px 0;
  padding: 28px 30px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-strip h2 {
  margin: 0 0 8px;
}

.cta-strip p {
  margin: 0;
  color: var(--muted);
  max-width: 640px;
}

.site-footer {
  background: var(--footer);
  color: white;
  margin-top: 34px;
  padding: 28px 18px 30px;
}

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

.footer-brand {
  margin: 0 0 14px;
  font-size: 1.12rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--footer-muted);
  text-decoration: none;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  text-decoration: none;
  color: white;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #1c1c1c;
  border: 1px solid rgba(255,255,255,.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.footer-license,
.footer-copy {
  margin: 8px 0 0;
  color: var(--footer-muted);
  font-size: 0.98rem;
}

@media (min-width: 1024px) {
  .hero {
    background-position: center 75%;
  }
}

@media (max-width: 1200px) {
  .recent-projects {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .full-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .navbar {
    padding: 10px 18px;
    gap: 14px;
    flex-wrap: wrap;
  }

  .navbar nav {
    width: 100%;
    justify-content: center;
    gap: 14px;
  }

  .logo {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .logo img {
    max-height: 72px;
    max-width: 220px;
  }

  .service-grid,
  .feature-grid,
  .policy-grid,
  .testimonial-grid,
  .recent-projects,
  .full-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-strip {
    flex-direction: column;
    text-align: center;
    margin-left: 18px;
    margin-right: 18px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 414px;
    height: 61vh;
  }

  .hero-overlay {
    margin: 0 16px;
    padding: 28px 22px;
  }

  .hero-buttons,
  .cta-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
    padding: 14px 18px;
  }

  .hero-overlay h1,
  .page-hero-inner h1 {
    font-size: 2.2rem;
  }

  .services,
  .gallery,
  .contact,
  .gallery-category,
  .content-section,
  .page-hero,
  .gallery-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .compact-hero {
    padding-top: 28px;
    padding-bottom: 16px;
  }

  .gallery-nav {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 2px;
  }

  .gallery-category {
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 14px;
  }

  .contact {
    padding-top: 40px;
    padding-bottom: 28px;
  }
}

@media (max-width: 640px) {
  .service-grid,
  .feature-grid,
  .policy-grid,
  .testimonial-grid,
  .recent-projects,
  .full-gallery {
    grid-template-columns: 1fr;
  }

  .navbar nav {
    gap: 10px 18px;
  }

  .navbar nav a {
    font-size: 1rem;
  }

  .hero-overlay h1,
  .page-hero-inner h1 {
    font-size: 1.95rem;
  }

  .page-hero-inner p {
    font-size: 1rem;
  }

  .testimonial-top {
    flex-direction: column;
  }

  .social-link {
    flex-direction: column;
    gap: 8px;
  }

  .footer-links {
    gap: 10px 16px;
  }
}



/* Shared centered site footer */
.site-footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 34px 18px 30px;
}

.site-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer p {
  margin: 0 0 14px;
}

.site-footer-links,
.site-footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
  width: 100%;
}

.site-footer-links {
  margin-top: 0;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  color: #cfe6d2;
}

.footer-license {
  opacity: 0.86;
  font-size: 0.95rem;
  margin-top: 12px;
  margin-bottom: 10px;
}

.facebook-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}

.facebook-link::before {
  content: "f";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
}

.gallery-hero {
  padding: 28px 40px 12px;
}

.gallery-hero-inner h1 {
  margin-bottom: 0;
}

.gallery-nav {
  padding: 12px 40px 2px;
  margin-bottom: 0;
}

.gallery-category {
  padding-top: 8px;
}

.subpage-kicker {
  margin: 16px 0 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
}

.testimonials-intro {
  padding-top: 26px;
}

.testimonials-intro h2 {
  margin-top: 0;
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .gallery-hero {
    padding: 22px 18px 10px;
  }

  .gallery-nav {
    padding: 12px 18px 2px;
  }

  .gallery-category {
    padding-top: 6px;
  }

  .subpage-kicker {
    font-size: 1.12rem;
    margin-top: 12px;
  }

  .site-footer {
    padding: 24px 16px 28px;
  }
}
