:root {
  --bg: #eef2ed;
  --surface: #ffffff;
  --surface-2: #f6f8f3;
  --text: #1d2a23;
  --muted: #617167;
  --line: rgba(29, 42, 35, 0.1);
  --primary: #1f7a52;
  --primary-dark: #15563a;
  --accent: #d5e7d6;
  --shadow: 0 24px 60px rgba(28, 44, 35, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f2f5f0 0%, #eef2ed 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.page-bg {
  position: fixed; inset: 0; pointer-events: none;
  background:
   radial-gradient(circle at 10% 20%, rgba(168, 205, 175, 0.28), transparent 28%),
   radial-gradient(circle at 90% 10%, rgba(170, 192, 155, 0.18), transparent 24%),
   radial-gradient(circle at 50% 100%, rgba(196, 217, 197, 0.15), transparent 30%);
  z-index: -2;
}
.floating-leaves span {
  position: fixed; width: 16px; height: 16px; background: linear-gradient(135deg, #79ab77, #bfd9b3);
  border-radius: 16px 0 16px 0; opacity: .18; z-index: -1; filter: blur(0.4px);
  animation: drift linear infinite;
}
.floating-leaves span:nth-child(1){left:8%; top:-5%; animation-duration: 22s;}
.floating-leaves span:nth-child(2){left:22%; top:-9%; animation-duration: 25s; width:12px;height:12px;}
.floating-leaves span:nth-child(3){left:46%; top:-6%; animation-duration: 20s;}
.floating-leaves span:nth-child(4){left:63%; top:-8%; animation-duration: 27s; width:18px;height:18px;}
.floating-leaves span:nth-child(5){left:84%; top:-7%; animation-duration: 18s;}
.floating-leaves span:nth-child(6){left:92%; top:-12%; animation-duration: 24s; width:13px;height:13px;}
@keyframes drift { from { transform: translateY(0) rotate(0); } to { transform: translateY(110vh) rotate(240deg); } }

.site-header {
  position: sticky; top: 0; z-index: 50; backdrop-filter: blur(16px);
  background: rgba(246, 248, 243, 0.82); border-bottom: 1px solid rgba(29, 42, 35, 0.05);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 86px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 64px; height: 64px; object-fit: contain; border-radius: 50%; background: #fff; box-shadow: 0 10px 24px rgba(0,0,0,0.08); }
.brand strong { display: block; font-size: 1.05rem; }
.brand span { display: block; color: var(--muted); font-size: .82rem; }
.main-nav { display: flex; gap: 28px; font-weight: 600; color: #425046; }
.main-nav a { position: relative; }
.main-nav a::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 100%; height: 2px; background: var(--primary); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.main-nav a:hover::after { transform: scaleX(1); }
.mobile-toggle { display: none; border: 0; background: transparent; font-size: 1.6rem; }

.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 14px 22px; font-weight: 700; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; border: 1px solid transparent; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, #228657, #1a6b45); color: #fff; box-shadow: 0 18px 34px rgba(31, 122, 82, 0.24); }
.btn-primary:hover { box-shadow: 0 24px 40px rgba(31, 122, 82, 0.3); }
.btn-secondary, .btn-ghost { background: rgba(255,255,255,0.75); color: var(--text); border-color: rgba(29,42,35,.12); }
.btn-light { background: #fff; color: var(--primary-dark); }
.btn-small { padding: 12px 18px; }
.btn-full { width: 100%; }
.text-link, .pill { color: var(--primary); font-weight: 700; }
.pill { padding: 10px 16px; border-radius: 999px; border: 1px solid rgba(31,122,82,.16); background: rgba(31,122,82,.07); }

.hero { padding: 56px 0 42px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 42px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--primary); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; }
.eyebrow.light { color: #d7f0df; }
.hero h1, .section-head h2, .feature-copy h2, .cta-band h2, .contact-copy h2 {
  font-family: 'Cormorant Garamond', serif; line-height: .94; letter-spacing: -.03em;
}
.hero h1 { font-size: clamp(3.2rem, 7vw, 5.8rem); margin: 18px 0 18px; max-width: 11ch; }
.hero-copy p { font-size: 1.08rem; line-height: 1.8; color: var(--muted); max-width: 62ch; }
.hero-actions { display: flex; gap: 14px; margin: 30px 0 32px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.hero-stats div { padding: 18px; border-radius: var(--radius-sm); background: rgba(255,255,255,.64); border: 1px solid rgba(29,42,35,.06); }
.hero-stats strong { display: block; font-size: 1.3rem; }
.hero-stats span { color: var(--muted); font-size: .92rem; }
.hero-visual { position: relative; min-height: 640px; }
.hero-card { border-radius: 32px; overflow: hidden; background: var(--surface); box-shadow: var(--shadow); border: 1px solid rgba(29,42,35,.05); }
.hero-main-image { height: 640px; }
.hero-main-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-float { position: absolute; }
.review-card { left: -50px; bottom: 58px; padding: 22px; max-width: 250px; background: rgba(18,33,25,.93); color: #fff; }
.review-card p { margin: 0 0 10px; font-size: 1.02rem; line-height: 1.55; }
.review-card span { color: rgba(255,255,255,.7); font-size: .84rem; }
.mini-gallery { right: -26px; top: 46px; width: 230px; padding: 12px; display: grid; gap: 12px; background: rgba(255,255,255,.94); }
.mini-gallery img { border-radius: 20px; height: 128px; object-fit: cover; }

.trust-strip { padding-bottom: 12px; }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px;
  background: rgba(255,255,255,.7); border: 1px solid rgba(29,42,35,.05);
  border-radius: 26px; padding: 22px; box-shadow: 0 16px 30px rgba(0,0,0,.04);
}
.label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 8px; }

.section { padding: 92px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 34px; }
.section-head.narrow { justify-content: start; }
.section-head h2, .feature-copy h2, .cta-band h2, .contact-copy h2 { font-size: clamp(2.4rem, 5vw, 4rem); margin: 12px 0 0; max-width: 12ch; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.service-card {
  padding: 28px; border-radius: 24px; background: rgba(255,255,255,.82);
  border: 1px solid rgba(29,42,35,.06); box-shadow: 0 16px 38px rgba(25,39,30,.05);
}
.service-card .icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; background: #ecf5ee; font-size: 1.4rem; margin-bottom: 18px; }
.service-card h3 { margin: 0 0 10px; font-size: 1.2rem; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.75; }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; }
.feature-image { border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); }
.feature-image img { width: 100%; height: 620px; object-fit: cover; }
.feature-copy p { color: var(--muted); line-height: 1.85; font-size: 1.05rem; }
.check-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 34px; color: #344138; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: -1px; width: 24px; height: 24px; border-radius: 50%; background: #e4f1e6; color: var(--primary); display: grid; place-items: center; font-weight: 800; }

.compare-box { background: rgba(255,255,255,.78); padding: 18px; border-radius: 30px; box-shadow: var(--shadow); }
.compare-inner { position: relative; aspect-ratio: 16/9; overflow: hidden; border-radius: 22px; }
.compare-image { width: 100%; height: 100%; object-fit: cover; }
.compare-overlay { position: absolute; inset: 0; width: 54%; overflow: hidden; border-right: 2px solid rgba(255,255,255,.95); }
.compare-slider { position: absolute; inset: 0; width: 100%; opacity: 0; cursor: ew-resize; }
.compare-handle { position: absolute; top: 0; bottom: 0; left: 54%; width: 4px; background: rgba(255,255,255,.95); }
.compare-handle::before {
  content: '↔'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%; background: #fff; display: grid; place-items: center; color: var(--primary); box-shadow: 0 10px 28px rgba(0,0,0,.18); font-size: 1.15rem;
}

.masonry-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.masonry-item { grid-column: span 4; border-radius: 24px; overflow: hidden; background: #fff; box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.masonry-item img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.masonry-item.tall { grid-column: span 5; grid-row: span 2; }
.masonry-item.wide { grid-column: span 7; }

.timeline { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.step { padding: 26px; border-radius: 24px; background: rgba(255,255,255,.82); border: 1px solid rgba(29,42,35,.06); }
.step span { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: #e3f0e6; color: var(--primary); font-weight: 800; margin-bottom: 16px; }
.step p { color: var(--muted); line-height: 1.75; margin: 0; }

.reviews { overflow: hidden; }
.review-score { text-align: right; }
.review-score strong { display: block; font-size: 2.2rem; }
.review-score span { color: var(--muted); }
.review-track { display: flex; gap: 18px; width: max-content; animation: marquee 28s linear infinite; }
.review-track:hover { animation-play-state: paused; }
.review-panel {
  width: 340px; padding: 28px; border-radius: 28px; background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(242,248,241,.95));
  border: 1px solid rgba(29,42,35,.06); box-shadow: var(--shadow);
}
.review-panel p { color: #334137; line-height: 1.85; }
.review-panel h3 { margin: 22px 0 6px; }
.review-panel span { color: var(--muted); font-size: .92rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 9px)); } }

.cta-band-inner {
  background: linear-gradient(135deg, #174a34, #1f7a52); color: #fff; border-radius: 34px; padding: 42px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; box-shadow: 0 26px 46px rgba(19, 65, 44, 0.28);
}
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.faq-list { display: grid; gap: 14px; }
details { background: rgba(255,255,255,.82); border-radius: 20px; border: 1px solid rgba(29,42,35,.06); padding: 0 22px; }
summary { list-style: none; cursor: pointer; padding: 20px 0; font-weight: 700; }
summary::-webkit-details-marker { display: none; }
details p { margin: 0 0 20px; color: var(--muted); line-height: 1.8; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; }
.contact-copy p { color: var(--muted); line-height: 1.8; max-width: 56ch; }
.contact-cards { display: grid; gap: 14px; margin-top: 24px; }
.contact-card { padding: 22px; border-radius: 22px; background: rgba(255,255,255,.78); border: 1px solid rgba(29,42,35,.06); display: block; }
.contact-card strong { display: block; margin-bottom: 8px; }
.contact-card span { color: var(--muted); }
.enquiry-form { padding: 26px; border-radius: 28px; background: rgba(255,255,255,.86); box-shadow: var(--shadow); border: 1px solid rgba(29,42,35,.06); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; margin-bottom: 14px; }
label span { display: block; font-weight: 700; margin-bottom: 8px; }
input, textarea {
  width: 100%; border: 1px solid rgba(29,42,35,.12); background: #fbfcfa; border-radius: 14px; padding: 15px 16px; font: inherit; color: var(--text);
}
textarea { resize: vertical; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: .92rem; }

.site-footer { background: #173727; color: rgba(255,255,255,.78); padding: 30px 0; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .8fr 1fr .8fr; gap: 20px; align-items: start; }
.footer-grid h3 { color: #fff; font-size: 1rem; margin-top: 0; }
.footer-grid a, .footer-grid p { display: block; margin: 8px 0; }
.footer-brand strong { color: #fff; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (max-width: 1100px) {
  .hero-grid, .split-grid, .contact-grid, .cta-band-inner { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; }
  .hero-main-image { height: 540px; }
  .review-card { left: 20px; bottom: 20px; }
  .mini-gallery { right: 18px; top: 18px; }
  .trust-grid, .service-grid, .timeline, .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .masonry-item, .masonry-item.tall, .masonry-item.wide { grid-column: span 6; grid-row: auto; }
}
@media (max-width: 820px) {
  .main-nav, .btn-nav { display: none; }
  .mobile-toggle { display: block; }
  .nav-wrap.open .main-nav {
    display: flex; position: absolute; top: 86px; left: 16px; right: 16px; background: rgba(255,255,255,.97); border-radius: 20px; padding: 18px; flex-direction: column; box-shadow: var(--shadow);
  }
  .hero { padding-top: 30px; }
  .hero h1 { max-width: 100%; }
  .hero-stats, .trust-grid, .service-grid, .timeline, .field-row, .footer-grid { grid-template-columns: 1fr; }
  .masonry-item, .masonry-item.tall, .masonry-item.wide { grid-column: span 12; }
  .section { padding: 72px 0; }
  .section-head { flex-direction: column; align-items: start; }
  .hero-main-image { height: 460px; }
  .review-card { position: static; margin-top: 14px; max-width: none; }
  .mini-gallery { position: static; width: 100%; margin-top: 14px; grid-template-columns: 1fr 1fr; }
}

.services-visual{margin:30px 0 10px;border-radius:14px;overflow:hidden}
.services-visual img{width:100%;display:block}
