:root {
  --bg: #f4f6f4;
  --surface: #ffffff;
  --ink: #2d3933;
  --muted: #5f6d67;
  --line: #d4ddd7;
  --primary: #93a58f;
  --primary-dark: #6f816c;
  --sage-soft: #c2cdc0;
  --green: #87a085;
  --dark: #2c3932;
  --dark-soft: #415046;
  --radius: 18px;
  --shadow: 0 10px 28px rgba(33, 43, 38, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  line-height: 1.62;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }

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

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.12;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  letter-spacing: -0.015em;
}
p { margin: 0; color: var(--muted); }

.section { padding: 76px 0; }
.section-head {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 34px;
}
.section-head h2 {
  margin-top: 10px;
  font-size: clamp(36px, 4.2vw, 58px);
}
.section-head p {
  margin-top: 12px;
  font-size: clamp(16px, 1.8vw, 21px);
  color: #6f7d76;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 999px;
  background: #dbe4d9;
  color: #4f5f53;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 12px;
  text-transform: uppercase;
}

.top-strip {
  background: linear-gradient(120deg, #6d7e69, #8c9e87);
  color: #f5f8f4;
  border-top: 4px solid #5b6b57;
}
.top-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  min-height: 42px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}
.top-strip-grid span { text-align: center; }
.top-strip a { color: #ffffff; font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(111, 129, 108, 0.2);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 270px;
  color: var(--dark);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
}
.brand-logo {
  background: #f4f6f4;
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 0 0 1px rgba(111, 129, 108, 0.2);
}
.brand-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 18px;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-list > li { position: relative; }
.nav-list a,
.dropdown-toggle {
  color: #3d4d44;
  font-size: 15px;
  font-weight: 700;
}
.nav-list a:hover,
.dropdown-toggle:hover { color: #5f775b; }
.dropdown-toggle {
  background: none;
  border: 0;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  padding: 0;
}
.caret {
  font-size: 12px;
  opacity: 0.85;
}

.dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 350px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #ffffff;
  display: none;
  box-shadow: var(--shadow);
}
.has-dropdown.open .dropdown-menu { display: block; }
@media (min-width: 961px) {
  .has-dropdown:hover .dropdown-menu { display: block; }
}
.dropdown-menu a {
  display: block;
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 10px;
}
.dropdown-menu a:hover { background: #edf2ed; }

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-phone {
  color: #3a4b40;
  font-weight: 700;
  border: 2px solid rgba(117, 133, 112, 0.35);
  border-radius: 12px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.9);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 800;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(111, 129, 108, 0.28);
}
.btn-outline {
  border-color: #5f705e;
  color: #5f705e;
  background: transparent;
}
.btn-dark-outline {
  border-color: #465a4f;
  color: #465a4f;
  background: transparent;
}
.btn-light {
  background: #ffffff;
  color: var(--primary-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(88, 102, 90, 0.35);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #435447;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.48) saturate(0.92);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(42, 56, 47, 0.86) 0%, rgba(59, 75, 64, 0.84) 52%, rgba(77, 96, 83, 0.84) 100%);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.26) 52%, rgba(0, 0, 0, 0.1) 76%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 940px;
  margin: 0 auto;
}
.hero .pill {
  background: rgba(255,255,255,0.18);
  color: #f4f8f1;
}
.hero h1 {
  margin-top: 16px;
  font-size: clamp(44px, 5.8vw, 76px);
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.34);
}
.hero p {
  margin: 16px auto 0;
  max-width: 820px;
  color: #ecf3ed;
  font-size: clamp(17px, 1.7vw, 23px);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.cta-row {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.hero .btn-outline,
.service-hero .btn-outline,
.cta-band .btn-outline {
  border-color: #ffffff;
  color: #ffffff;
}
.quick-facts {
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 660px;
}
.fact {
  padding: 0 12px;
  border-right: 1px solid rgba(255,255,255,0.24);
}
.fact:last-child { border-right: 0; }
.fact strong {
  display: block;
  font-size: clamp(38px, 4.3vw, 50px);
  line-height: 1;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
}
.fact span {
  color: #f2f6f2;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 13px;
}

.page-hero {
  padding: 92px 0 70px;
  background: linear-gradient(140deg, #5f735e, #849783);
  color: #ffffff;
}
.page-hero p {
  margin-top: 12px;
  max-width: 740px;
  color: #f1f6f1;
}
.page-hero h1 {
  margin-top: 12px;
  font-size: clamp(36px, 5vw, 66px);
}

.grid-2,
.services-grid,
.process-grid,
.testimonials-grid,
.quote-grid,
.content-grid,
.standards-grid,
.area-flex {
  display: grid;
  gap: 22px;
}
.grid-2,
.standards-grid,
.area-flex { grid-template-columns: 1fr 1fr; }
.services-grid,
.process-grid,
.testimonials-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.quote-grid { grid-template-columns: 1.5fr 0.9fr; align-items: start; }
.content-grid { grid-template-columns: 1.45fr 0.8fr; align-items: start; }

.frame {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #dde4df;
  overflow: hidden;
  min-height: 420px;
  position: relative;
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.float-stat {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.float-stat .dot {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.float-stat strong {
  font-size: 20px;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
}
.float-stat span { color: #65746b; font-size: 13px; }

.check-list {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}
.check-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
}
.check-item::before {
  content: "?";
  color: var(--primary-dark);
  font-weight: 900;
}
.check-item strong {
  display: block;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: #34443b;
}

.service-card,
.process-card,
.t-card,
.side-card,
.contact-panel,
.areas-card,
.price-card,
.faq-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-card { overflow: hidden; }
.service-media {
  height: 255px;
  position: relative;
  background: #d9e1db;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-icon {
  position: absolute;
  right: 14px;
  bottom: -18px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #d2dbd4;
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.service-body { padding: 22px; }
.service-body h3 {
  font-size: 34px;
}
.service-body p { margin-top: 8px; }
.service-body a {
  margin-top: 12px;
  color: var(--primary-dark);
  font-weight: 800;
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.process-card,
.t-card { padding: 24px; }
.process-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.process-num {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
}
.process-card h3 { font-size: 34px; }
.process-card p { margin-top: 8px; }

.stars { color: #8fa083; font-size: 22px; letter-spacing: 2px; }
.t-card blockquote {
  margin: 12px 0 14px;
  color: #2c3b33;
  font-size: 20px;
}
.t-meta {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #e8efea;
}
.t-name { font-weight: 800; }
.t-role { color: #7a8781; font-size: 13px; }

.blue-band {
  background: linear-gradient(135deg, #6f806c, #8ea189);
  color: #ffffff;
}
.blue-band .section-head h2,
.blue-band .section-head p,
.blue-band h3,
.blue-band p { color: #f3f8f2; }
.areas-card {
  padding: 26px;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.26);
  box-shadow: none;
}
.area-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}
.area-item {
  border-radius: 12px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.14);
  font-weight: 700;
  color: #f5faf5;
}
.areas-note {
  margin-top: 14px;
  color: #f0f5ef;
}
.map-card {
  border-radius: 20px;
  overflow: hidden;
  min-height: 480px;
  border: 1px solid rgba(255,255,255,0.28);
}
.map-card iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 480px;
}

.youtube-wrap {
  width: min(980px, 100%);
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}
.youtube-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.faq-box { padding: 10px 24px; }
.faq-box details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.faq-box details:last-child { border-bottom: 0; }
.faq-box summary {
  font-weight: 800;
  font-size: 20px;
  cursor: pointer;
  list-style: none;
  color: #304038;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
}
.faq-box summary::-webkit-details-marker { display: none; }
.faq-box p { margin-top: 8px; }

.pricing-grid-main,
.pricing-grid-boss {
  display: grid;
  gap: 18px;
}
.pricing-grid-main { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pricing-grid-boss { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 14px; }
.price-card {
  padding: 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-card h4 { font-size: 34px; }
.price {
  font-size: 34px;
  font-weight: 900;
  color: var(--primary-dark);
}
.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.price-card li {
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: #44554d;
}
.price-card .btn { margin-top: auto; }
.featured {
  border: 2px solid var(--green);
}
.badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: #46594f;
  color: #f4f7f3;
  border-radius: 9px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 800;
}

.cta-band {
  background: linear-gradient(135deg, #5d715c, #7f947a);
  color: #ffffff;
  text-align: center;
}
.cta-band h2 { color: #ffffff; }
.cta-band p { color: #f1f6ef; }

.embed {
  border: 2px dashed #d2dcd5;
  border-radius: 18px;
  min-height: 680px;
  overflow: hidden;
  background: #f8fbf8;
}
.embed iframe { width: 100%; height: 100%; min-height: 680px; border: 0; }
.contact-panel { padding: 24px; }
.contact-panel h3 { font-size: 30px; }
.contact-list {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}
.contact-list strong {
  display: block;
  font-size: 13px;
  color: #74837a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contact-list span,
.contact-list a {
  font-size: 21px;
  color: #36493f;
  font-weight: 700;
}

.quote-photo-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}

.photo-gallery {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.photo-gallery figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
}
.photo-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.photo-gallery figcaption {
  padding: 10px 12px;
  font-size: 13px;
  color: #5b6b63;
  font-weight: 600;
}

.footer {
  background: #2f3d35;
  color: #d8e1db;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 24px;
  padding: 72px 0 26px;
}
.footer h3 {
  margin-bottom: 10px;
  color: #edf4ee;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer p,
.footer a { color: #dce6df; }
.footer a:hover { color: #ffffff; }
.footer .brand { min-width: auto; font-size: 22px; margin-bottom: 10px; color: #ffffff; }
.footer .brand-logo { background: rgba(255,255,255,0.95); }
.copy {
  border-top: 1px solid rgba(255,255,255,0.14);
  display: block;
  text-align: center;
  padding: 16px 0 22px;
  color: #c3d1c8;
}

.service-hero {
  padding: 88px 0 70px;
  background: linear-gradient(140deg, #5a6f59, #829680);
  color: #ffffff;
}
.service-hero .pill {
  background: rgba(255, 255, 255, 0.18);
  color: #f5f8f3;
}
.service-hero h1 {
  margin-top: 12px;
  font-size: clamp(38px, 5vw, 60px);
}
.service-hero p {
  margin-top: 12px;
  max-width: 760px;
  color: #f1f6f1;
}

.page-content { padding: 74px 0; }
.side-card { padding: 22px; }
.side-card + .side-card { margin-top: 14px; }
.side-card h3 {
  margin-bottom: 8px;
  font-size: 33px;
}
.side-card p { margin-top: 8px; }

.center-cta {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .nav-wrap { min-height: 74px; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-panel {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: #f7faf7;
    border-bottom: 1px solid rgba(111, 129, 108, 0.22);
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-panel.open { display: flex; }
  .nav-list { flex-direction: column; align-items: flex-start; }
  .dropdown-menu {
    position: static;
    min-width: 100%;
    margin-top: 8px;
  }
  .nav-actions { flex-direction: column; align-items: stretch; }
  .top-strip-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 10px 0;
  }

  .grid-2,
  .standards-grid,
  .area-flex,
  .quote-grid,
  .content-grid,
  .pricing-grid-main,
  .pricing-grid-boss,
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid,
  .process-grid,
  .testimonials-grid,
  .photo-gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .hero { min-height: 78vh; }
  .hero h1 { font-size: clamp(34px, 8vw, 48px); }
  .quick-facts { grid-template-columns: 1fr; gap: 14px; }
  .fact {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 14px;
  }
  .fact:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .services-grid,
  .process-grid,
  .testimonials-grid,
  .photo-gallery { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
  .section-head h2 { font-size: clamp(32px, 8vw, 42px); }
  .section-head p,
  .service-body p,
  .process-card p,
  .t-card blockquote { font-size: 17px; }
  .service-body h3,
  .process-card h3,
  .contact-panel h3,
  .price-card h4,
  .side-card h3 { font-size: 30px; }
  .contact-list span,
  .contact-list a,
  .t-name,
  .t-role,
  .price,
  .faq-box summary,
  .footer .brand,
  .brand { font-size: 19px; }
}
