:root {
  --green: #2f7d1f;
  --green-bright: #5aa52a;
  --green-soft: #edf7e8;
  --blue: #0d63b5;
  --blue-soft: #ebf4ff;
  --purple: #482b8d;
  --dark: #102015;
  --text: #233033;
  --muted: #627377;
  --border: #d9e3e2;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(16, 32, 21, 0.10);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbfdfb 0%, #f2f8f1 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  background: linear-gradient(90deg, var(--green) 0%, var(--blue) 100%);
  color: white;
  font-size: 0.95rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 10px 0;
}
.topbar a { font-weight: 800; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(217, 227, 226, 0.85);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 18px;
}
.brand img { width: 290px; max-width: 100%; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  font-size: 0.96rem;
}
.site-nav a:hover { color: var(--green); }
.menu-toggle {
  display: none;
  border: 0;
  background: var(--green-soft);
  color: var(--green);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 1.2rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  min-height: 48px;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(90deg, var(--green) 0%, var(--green-bright) 100%);
  color: white;
  box-shadow: 0 12px 25px rgba(47, 125, 31, 0.23);
}
.btn-secondary {
  background: white;
  color: var(--blue);
  border: 2px solid var(--blue-soft);
}

.hero { padding: 56px 0 36px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}
.hero h1 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1.05;
  margin: 14px 0 16px;
  color: var(--dark);
}
.hero p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 62ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}
.trust-list li {
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  color: var(--green);
}
.hero-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero-photo {
  width: 100%;
  border-radius: 22px;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.hero-badge {
  margin-top: 16px;
  background: linear-gradient(180deg, #f6fbff 0%, #eef7eb 100%);
  border-radius: 22px;
  padding: 18px;
}
.hero-badge img { width: min(320px, 100%); margin: 0 auto; }

.quick-info { padding: 10px 0 14px; }
.quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.quick-grid article {
  background: white;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.quick-grid h3 { margin: 0 0 8px; color: var(--dark); }
.quick-grid p { margin: 0; color: var(--muted); line-height: 1.65; }
.quick-grid a { color: var(--blue); font-weight: 800; }

.section { padding: 76px 0; }
.light-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  border-top: 1px solid rgba(217,227,226,0.9);
  border-bottom: 1px solid rgba(217,227,226,0.9);
}
.section-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 34px;
}
.section-heading.align-left {
  text-align: left;
  margin-left: 0;
}
.section-heading h2,
.about-copy h2,
.area-grid h2,
.quote-grid h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin: 12px 0;
  color: var(--dark);
  line-height: 1.08;
}
.section-heading p,
.about-copy p,
.area-grid p,
.quote-grid p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  overflow: hidden;
  background: white;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  background: #f4f8f3;
}
.logo-card img { object-fit: contain; padding: 18px; }
.service-body { padding: 22px; }
.service-body h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  color: var(--dark);
}
.service-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}
.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px;
}
.pricing-card h3 { margin: 0 0 18px; color: var(--dark); }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; min-width: 500px; }
th, td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
th {
  background: #f6faf5;
  color: var(--green);
  font-size: 0.96rem;
}
td { font-weight: 700; }
td:first-child { color: var(--text); font-weight: 800; }

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 22px;
}
.bundle-card {
  border-radius: 24px;
  padding: 28px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.bundle-green { background: linear-gradient(135deg, #2a8b18 0%, #79b92e 100%); }
.bundle-purple { background: linear-gradient(135deg, #4e2d92 0%, #6d3ece 100%); }
.bundle-label {
  display: inline-block;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}
.bundle-card h3 { font-size: 1.7rem; margin: 16px 0 8px; }
.bundle-card p { margin: 0; max-width: 28ch; opacity: 0.96; }
.price-tag {
  margin-top: 20px;
  display: inline-flex;
  background: white;
  color: var(--dark);
  font-weight: 900;
  font-size: 2rem;
  padding: 10px 18px;
  border-radius: 18px;
}
.yard-guide {
  margin-top: 26px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.yard-guide h3 { margin-top: 0; color: var(--dark); }
.yard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.yard-grid article {
  background: #f8fbf8;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
}
.yard-grid h4 { margin: 0 0 8px; color: var(--green); }
.yard-grid p { margin: 0; color: var(--muted); line-height: 1.6; }

.about-vincent {
  background: linear-gradient(180deg, #f9fcf8 0%, #ffffff 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
}
.about-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
  text-align: center;
}
.portrait-placeholder {
  width: 170px;
  height: 170px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 20%, #fff, transparent 25%),
    linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
  display: grid;
  place-items: center;
  color: white;
  font-size: 3rem;
  font-weight: 900;
  border: 8px solid var(--green-soft);
}
.about-card h3 { margin: 0 0 6px; font-size: 1.6rem; color: var(--dark); }
.about-card p { color: var(--muted); margin-bottom: 22px; }
.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.about-points div {
  background: #f7fbf6;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
}
.about-points strong {
  display: block;
  color: var(--green);
  margin-bottom: 6px;
}
.about-points span { color: var(--muted); line-height: 1.55; }

.gallery-section {
  background: white;
  border-top: 1px solid var(--border);
}
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.before-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 64, 46, 0.10);
  border: 1px solid rgba(21, 128, 61, 0.10);
}

.before-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.before-card div {
  padding: 22px;
}

.before-card h3 {
  margin: 0 0 10px;
  color: #0f2f28;
}

.before-card p {
  margin: 0;
  line-height: 1.6;
  color: #4b5f64;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
  align-items: start;
}
.gallery-item {
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 24px;
  overflow: hidden;
  margin: 0;
}
.gallery-item img { width: 100%; display: block; }
.gallery-item figcaption {
  padding: 16px 18px 20px;
  color: var(--muted);
  font-weight: 700;
}
.featured-card { grid-row: span 2; }

.service-area {
  background: linear-gradient(135deg, #ecf8e8 0%, #eff7ff 100%);
}
.area-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}
.area-note {
  margin-top: 18px !important;
  font-weight: 700;
  color: var(--dark) !important;
}
.area-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
}
.area-card h3 {
  margin-top: 0;
  color: var(--dark);
}
.area-card ul {
  padding-left: 20px;
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 700;
}

.quote-section {
  background: linear-gradient(180deg, #ffffff 0%, #eef7eb 100%);
}
.quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}
.contact-list {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}
.contact-list a,
.contact-list span {
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 15px 16px;
  color: var(--text);
}
.contact-list strong { color: var(--green); }
.quote-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
  display: grid;
  gap: 15px;
}
.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--dark);
  font-weight: 800;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  background: #fbfdfb;
  color: var(--text);
}
.quote-form textarea {
  min-height: 140px;
  resize: vertical;
}
.quote-form button {
  border: 0;
  cursor: pointer;
  width: 100%;
}
.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.site-footer {
  background: #0f1714;
  color: rgba(255,255,255,0.88);
  padding: 36px 0;
}
.footer-inner { text-align: center; }
.footer-inner img { width: min(280px, 100%); margin: 0 auto 16px; }
.footer-inner p { margin: 6px 0; }
.footer-inner a { color: #a7dcff; }

@media (max-width: 1100px) {
  .hero-grid,
  .pricing-grid,
  .contact-grid,
  .gallery-grid,
  .service-grid,
  .quick-grid,
  .about-grid,
  .area-grid,
  .quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-card { grid-row: auto; }
}

@media (max-width: 900px) {
  .site-nav {
    gap: 12px;
    font-size: 0.88rem;
  }
  .brand img { width: 235px; }
  .nav-cta { padding: 12px 16px; }
}

@media (max-width: 820px) {
  .topbar-inner {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }
  .header-inner {
    padding: 10px 0;
  }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    padding: 12px 10px;
    border-radius: 12px;
    background: #f8fbf8;
  }
  .nav-cta { width: 100%; }
  .hero-grid,
  .pricing-grid,
  .contact-grid,
  .gallery-grid,
  .service-grid,
  .quick-grid,
  .bundle-grid,
  .yard-grid,
  .about-grid,
  .before-after-grid,
  .area-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 36px;
  }
  .hero-card {
    padding: 12px;
    border-radius: 24px;
  }
  .brand img { width: 215px; }
  .section { padding: 58px 0; }
  .section-heading {
    margin-bottom: 26px;
  }
  .hero h1 {
    font-size: clamp(2.1rem, 9vw, 3.1rem);
  }
  .hero p {
    font-size: 1rem;
  }
  .btn {
    width: 100%;
    padding: 15px 18px;
  }
  .hero-actions {
    gap: 10px;
  }
  .trust-list li {
    width: 100%;
    text-align: center;
  }
  .quick-grid article,
  .service-body,
  .pricing-card,
  .yard-guide,
  .about-card,
  .area-card,
  .quote-form {
    padding: 20px;
  }
  .about-points {
    grid-template-columns: 1fr;
  }
  .service-card img,
  .before-card img {
    height: auto;
    max-height: 280px;
  }
  table {
    min-width: 620px;
  }
  .table-wrap {
    border-radius: 16px;
    border: 1px solid var(--border);
  }
}

@media (max-width: 440px) {
  .container {
    width: min(100% - 22px, 1180px);
  }
  .brand img {
    width: 190px;
  }
  .topbar {
    font-size: 0.86rem;
  }
  .section-heading h2,
  .about-copy h2,
  .area-grid h2,
  .quote-grid h2 {
    font-size: 1.85rem;
  }
  .bundle-card,
  .quote-form,
  .area-card {
    border-radius: 20px;
  }
}
.social-note {
  color: var(--muted);
  font-weight: 700;
}
.contact-card,
.service-card,
.info-card,
.card {
  overflow-wrap: anywhere;
  word-break: break-word;
}

a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Keep flyer-style before/after graphics from being badly cropped */
.before-card.image-contain img {
  object-fit: contain;
  background: #ffffff;
  padding: 0.5rem;
}

