/* =====================================================
   GREENHAVEN LANDSCAPING — one-page demo
   Fictional business · Demo website designed by Volontier
   ===================================================== */

:root {
  --green:      #2F6B3F;   /* primary */
  --green-dk:   #173B24;   /* dark green */
  --green-soft: #E4EEDC;   /* soft sage tint for hovers */
  --sage:       #DDE8D5;   /* soft sage */
  --cream:      #F8F6EF;   /* background */
  --beige:      #EFE8D8;   /* light beige */
  --ink:        #1F2A24;   /* text dark */
  --muted:      #5E6B60;   /* secondary text */
  --white:      #FFFFFF;
  --star:       #E2B549;   /* testimonial stars */
  --shadow:     0 10px 30px rgba(23, 59, 36, 0.08);
  --shadow-lg:  0 24px 60px rgba(23, 59, 36, 0.15);
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --maxw:       1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--banner-h, 34px) + 78px); --banner-h: 34px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 600;
  color: var(--green-dk);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green); margin-bottom: 14px; display: inline-block;
}

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.06rem; }

/* sample / demo inline notices */
.notice {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-soft); color: var(--green);
  border: 1px dashed rgba(47, 107, 63, 0.4);
  font-size: 0.78rem; font-weight: 600;
  padding: 7px 15px; border-radius: 999px; margin-bottom: 26px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.94rem;
  padding: 14px 28px; border-radius: 12px;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s, color 0.25s, border-color 0.25s;
  min-height: 48px; line-height: 1;
}
.btn svg { transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dk); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(47,107,63,0.3); }
.btn-secondary { background: transparent; color: var(--green); border-color: var(--green); }
.btn-secondary:hover { background: var(--green-soft); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--green); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ---------- Demo banner ---------- */
.demo-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 95;
  min-height: 34px; display: grid; place-items: center;
  background: var(--green-dk); color: var(--cream);
  font-size: clamp(0.66rem, 2.7vw, 0.78rem); font-weight: 500;
  letter-spacing: 0.01em; text-align: center; padding: 6px 14px;
  line-height: 1.35;
}
.demo-banner strong { font-weight: 700; }

/* ---------- Nav ---------- */
nav {
  position: fixed; top: var(--banner-h, 34px); left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px 32px;
  background: rgba(248, 246, 239, 0.84);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: padding 0.3s var(--ease), background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
nav.scrolled { padding: 11px 32px; border-color: rgba(47,107,63,0.12); box-shadow: 0 4px 24px rgba(23,59,36,0.06); }
.brand { display: flex; align-items: center; gap: 9px; font-family: 'Poppins', sans-serif; font-size: 1.28rem; font-weight: 600; color: var(--green-dk); }
.brand .leaf {
  width: 1.25em; height: 1.25em; flex-shrink: 0;
  background-color: var(--green);
  -webkit-mask: url('leaf.svg') center / contain no-repeat;
  mask: url('leaf.svg') center / contain no-repeat;
  display: inline-block;
}
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--ink); position: relative; transition: color 0.2s; cursor: pointer; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px; background: var(--green); transition: width 0.28s var(--ease); }
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--green-dk); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(80vw, 320px);
  background: var(--cream); z-index: 99; padding: 100px 30px 32px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%); transition: transform 0.4s var(--ease);
  box-shadow: -20px 0 60px rgba(23,59,36,0.16);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: 'Poppins', sans-serif; font-size: 1.24rem; color: var(--green-dk); padding: 13px 0; border-bottom: 1px solid rgba(47,107,63,0.1); cursor: pointer; }
.mobile-menu a.active { color: var(--green); }
.mobile-menu .btn { margin-top: 22px; justify-content: center; border-bottom: none; }
.mobile-menu .btn-primary { color: var(--white); }
.menu-overlay { position: fixed; inset: 0; background: rgba(23,59,36,0.42); z-index: 98; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.menu-overlay.open { opacity: 1; pointer-events: auto; }

/* ---------- Icon system ---------- */
.hd-ic { width: 24px; height: 24px; flex-shrink: 0; color: var(--green); display: inline-block; }
.feat-ic {
  width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0;
  background: var(--green-soft); color: var(--green);
  display: grid; place-items: center;
}
.feat-ic .hd-ic { width: 30px; height: 30px; }

/* ---------- Hero ---------- */
.hero { padding: 150px 0 84px; position: relative; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(900px 460px at 78% 12%, rgba(221,232,213,0.55), transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 56px; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-soft); color: var(--green);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.03em;
  padding: 7px 15px; border-radius: 999px; margin-bottom: 24px;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.hero h1 { font-size: clamp(2.5rem, 5.2vw, 4rem); margin-bottom: 20px; }
.hero h1 .accent { color: var(--green); }
.hero-sub { font-size: 1.14rem; color: var(--muted); max-width: 470px; margin-bottom: 34px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.hero-meta div { font-size: 0.9rem; color: var(--muted); }
.hero-meta strong { display: block; font-family: 'Poppins', sans-serif; font-size: 1.05rem; color: var(--green-dk); font-weight: 600; }

.hero-visual { position: relative; }
.hero-img-main { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow-lg); }
.hero-img-float {
  position: absolute; bottom: -26px; left: -34px;
  width: 180px; aspect-ratio: 1; object-fit: cover;
  border-radius: 20px; border: 6px solid var(--cream); box-shadow: var(--shadow-lg);
}
.hero-chip {
  position: absolute; top: 24px; right: -16px;
  background: var(--white); border-radius: 16px; padding: 13px 17px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 11px;
}
.hero-chip .chip-ic { width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0; background: var(--green-soft); color: var(--green); display: grid; place-items: center; }
.hero-chip .chip-ic .hd-ic { width: 23px; height: 23px; }
.hero-chip strong { font-family: 'Poppins', sans-serif; color: var(--green-dk); font-size: 0.92rem; display: block; }
.hero-chip span { font-size: 0.74rem; color: var(--muted); }

/* ---------- Trust marquee ---------- */
.marquee { background: var(--green-dk); color: var(--cream); padding: 16px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 0; animation: scroll 30s linear infinite; }
.marquee-track span { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 1.05rem; padding: 0 26px; opacity: 0.9; }
.marquee-track .star { opacity: 0.5; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Services ---------- */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--cream); border: 1px solid rgba(47,107,63,0.08);
  border-radius: 20px; padding: 32px 28px;
  transition: transform 0.32s var(--ease), box-shadow 0.32s, border-color 0.32s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(47,107,63,0.18); }
.service-card .feat-ic { margin-bottom: 20px; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 9px; }
.service-card p { color: var(--muted); font-size: 0.97rem; }

/* photo-led service cards (services page) */
.svc-card {
  background: var(--white); border: 1px solid rgba(47,107,63,0.08);
  border-radius: 20px; overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.32s var(--ease), box-shadow 0.32s, border-color 0.32s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(47,107,63,0.18); }
.svc-card:hover .svc-img img { transform: scale(1.05); }
.svc-img { overflow: hidden; aspect-ratio: 3/2; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.svc-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { font-size: 1.3rem; margin-bottom: 9px; }
.svc-body > p { color: var(--muted); font-size: 0.97rem; }
.svc-body .feature-list { margin-top: 16px; margin-bottom: 0; }
.svc-body .feature-list li { font-size: 0.9rem; }

/* ---------- Interactive services showcase (home) ---------- */
.services-showcase { background: var(--white); }
.showcase { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 40px; align-items: stretch; }
.showcase-list { display: flex; flex-direction: column; }
.sc-item {
  display: flex; align-items: center; gap: 16px; width: 100%;
  background: transparent; border: none; border-bottom: 1px solid rgba(47,107,63,0.12);
  cursor: pointer; text-align: left; font-family: inherit;
  padding: 22px 18px; border-radius: 14px;
  transition: background 0.25s var(--ease);
}
.sc-item:last-child { border-bottom: none; }
.sc-num { font-family: 'Poppins', sans-serif; font-size: 0.8rem; font-weight: 600; color: var(--green); opacity: 0.55; width: 26px; flex-shrink: 0; transition: opacity 0.2s; }
.sc-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.sc-text strong { font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 600; color: var(--green-dk); transition: color 0.2s; }
.sc-text span { font-size: 0.88rem; color: var(--muted); }
.sc-arrow { color: var(--green); opacity: 0; transform: translateX(-8px); transition: opacity 0.25s var(--ease), transform 0.25s var(--ease); }
.sc-item:hover { background: var(--green-soft); }
.sc-item.active { background: var(--green-soft); }
.sc-item.active .sc-num { opacity: 1; }
.sc-item.active .sc-arrow { opacity: 1; transform: none; }
.showcase-visual { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); min-height: 480px; }
.showcase-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s var(--ease); }
.showcase-visual img.swapping { opacity: 0; }
.sc-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 28px; background: linear-gradient(to top, rgba(23,59,36,0.88), rgba(23,59,36,0.15) 70%, transparent); color: var(--cream); }
.sc-caption h3 { color: var(--cream); font-size: 1.55rem; margin-bottom: 7px; }
.sc-caption p { color: rgba(248,246,239,0.92); font-size: 0.98rem; max-width: 460px; }

/* ---------- "Why" — image + numbered reasons (home) ---------- */
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-visual img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.why-content h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); margin-bottom: 30px; }
.why-points { display: flex; flex-direction: column; gap: 24px; }
.why-point { display: flex; gap: 18px; align-items: flex-start; }
.why-point .wp-num { font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--green); background: var(--white); width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; flex-shrink: 0; box-shadow: var(--shadow); }
.why-point h3 { font-size: 1.18rem; margin-bottom: 5px; }
.why-point p { color: var(--muted); font-size: 0.95rem; }

/* ---------- About ---------- */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 58px; align-items: center; }
.about-text h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); margin-bottom: 20px; }
.about-text > p { color: var(--muted); margin-bottom: 26px; font-size: 1.06rem; }
.trust-list { display: flex; flex-direction: column; gap: 16px; }
.trust-item { display: flex; gap: 14px; align-items: center; }
.trust-item .tick { width: 30px; height: 30px; border-radius: 50%; background: var(--green); color: var(--white); display: grid; place-items: center; flex-shrink: 0; }
.trust-item .tick svg { width: 16px; height: 16px; }
.trust-item span { font-weight: 500; color: var(--ink); }
.about-visual { position: relative; }
.about-img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.about-stat {
  position: absolute; bottom: -22px; right: -18px;
  background: var(--white); border-radius: 18px; padding: 18px 22px; box-shadow: var(--shadow-lg); text-align: center;
}
.about-stat strong { font-family: 'Poppins', sans-serif; font-size: 1.7rem; color: var(--green); display: block; line-height: 1; }
.about-stat span { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.02em; }

/* ---------- Gallery ---------- */
.gallery { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 16px; grid-auto-flow: dense; }
.gallery-grid figure { overflow: hidden; border-radius: 18px; margin: 0; position: relative; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.07); }
.gallery-grid figcaption {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(23,59,36,0.78); color: var(--cream);
  font-size: 0.74rem; font-weight: 600; padding: 5px 11px; border-radius: 999px;
  opacity: 0; transform: translateY(6px); transition: opacity 0.3s, transform 0.3s;
}
.gallery-grid figure:hover figcaption { opacity: 1; transform: none; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ---------- Why choose us ---------- */
.why { background: var(--sage); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card { background: var(--white); border-radius: 20px; padding: 30px 26px; box-shadow: var(--shadow); transition: transform 0.3s var(--ease); }
.why-card:hover { transform: translateY(-5px); }
.why-card .feat-ic { margin-bottom: 18px; }
.why-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 0.94rem; }

/* ---------- Pricing ---------- */
.pricing { background: var(--cream); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: var(--white); border: 1px solid rgba(47,107,63,0.1);
  border-radius: 24px; padding: 36px 30px; display: flex; flex-direction: column;
  transition: transform 0.32s var(--ease), box-shadow 0.32s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured { background: var(--green-dk); border-color: var(--green-dk); box-shadow: var(--shadow-lg); }
.price-card.featured h3, .price-card.featured .price, .price-card.featured .price-best { color: var(--cream); }
.price-card.featured p, .price-card.featured .price-from { color: rgba(248,246,239,0.7); }
.price-card.featured .feature-list li { color: rgba(248,246,239,0.88); }
.price-card.featured .feature-list svg { color: var(--sage); }
.price-tag { display: inline-flex; align-self: flex-start; background: var(--green); color: var(--white); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; margin-bottom: 18px; }
.price-card.featured .price-tag { background: var(--sage); color: var(--green-dk); }
.price-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.price-from { font-size: 0.82rem; color: var(--muted); }
.price { font-family: 'Poppins', sans-serif; font-size: 2.4rem; font-weight: 600; color: var(--green-dk); line-height: 1; margin: 4px 0 22px; }
.price span { font-family: 'Inter'; font-size: 0.95rem; font-weight: 500; color: var(--muted); }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; color: var(--ink); }
.feature-list svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.price-best { font-size: 0.86rem; color: var(--muted); margin-bottom: 22px; font-style: italic; }
.price-card .btn { margin-top: auto; justify-content: center; }
.price-card.featured .btn-secondary { color: var(--cream); border-color: rgba(248,246,239,0.4); }
.price-card.featured .btn-secondary:hover { background: rgba(248,246,239,0.1); }

/* ---------- Testimonials ---------- */
.reviews { background: var(--green-dk); color: var(--cream); }
.reviews .eyebrow { color: var(--sage); }
.reviews .section-head h2 { color: var(--cream); }
.reviews .notice { background: rgba(248,246,239,0.08); color: var(--sage); border-color: rgba(221,232,213,0.3); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(248,246,239,0.12); border-radius: 22px; padding: 30px 28px; transition: transform 0.3s var(--ease), background 0.3s; }
.review-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.1); }
.stars { color: var(--star); letter-spacing: 2px; margin-bottom: 16px; font-size: 1rem; }
.review-card p { font-size: 1.06rem; line-height: 1.55; color: var(--cream); margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--sage); color: var(--green-dk); display: grid; place-items: center; font-weight: 700; font-family: 'Poppins', sans-serif; }
.reviewer span { font-weight: 600; font-size: 0.92rem; }
.reviewer small { display: block; color: rgba(248,246,239,0.6); font-size: 0.78rem; font-weight: 400; }

/* ---------- Contact ---------- */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 54px; align-items: start; }
.contact-aside h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); margin-bottom: 16px; }
.contact-aside > p { color: var(--muted); font-size: 1.05rem; margin-bottom: 26px; }
.ca-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; font-size: 0.98rem; }
.ca-detail .hd-ic { width: 22px; height: 22px; }
.demo-note { margin-top: 24px; font-size: 0.86rem; color: var(--muted); background: var(--green-soft); border: 1px dashed rgba(47,107,63,0.3); border-radius: 12px; padding: 13px 16px; line-height: 1.5; }
.demo-note strong { color: var(--green-dk); }

form { background: var(--white); border-radius: 26px; padding: 38px 34px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--green-dk); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: 'Inter', sans-serif; font-size: 0.97rem;
  padding: 13px 15px; border: 1.5px solid var(--beige); border-radius: 12px;
  background: var(--cream); color: var(--ink); transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(47,107,63,0.13); background: var(--white);
}
.field textarea { resize: vertical; min-height: 118px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { text-align: center; font-size: 0.78rem; color: var(--muted); margin-top: 14px; }
.form-success { display: none; text-align: center; padding: 34px 20px; background: var(--green-soft); border-radius: 16px; }
.form-success.show { display: block; animation: fadeUp 0.5s var(--ease); }
.form-success .fs-ic { width: 56px; height: 56px; border-radius: 50%; background: var(--green); color: var(--white); display: grid; place-items: center; margin: 0 auto 14px; }
.form-success .fs-ic svg { width: 30px; height: 30px; }
.form-success h3 { font-size: 1.35rem; margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 0.96rem; max-width: 380px; margin: 0 auto; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--green); color: var(--cream); text-align: center; }
.cta-band h2 { color: var(--cream); font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 14px; }
.cta-band p { color: rgba(248,246,239,0.88); font-size: 1.08rem; max-width: 540px; margin: 0 auto 28px; }
.cta-band .btn-light { background: var(--cream); color: var(--green); }

/* ---------- Footer ---------- */
footer { background: var(--green-dk); color: rgba(248,246,239,0.75); padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(248,246,239,0.12); }
.footer-brand .brand { color: var(--cream); margin-bottom: 16px; }
.footer-brand .brand .leaf { background-color: var(--sage); }
.footer-brand p { font-size: 0.95rem; max-width: 280px; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage); margin-bottom: 18px; font-weight: 700; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li { font-size: 0.92rem; transition: color 0.2s; cursor: pointer; }
.footer-col a:hover { color: var(--cream); }
.footer-disclaimer { font-size: 0.82rem; color: rgba(248,246,239,0.6); line-height: 1.6; padding: 26px 0; border-bottom: 1px solid rgba(248,246,239,0.12); }
.footer-disclaimer strong { color: var(--sage); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 24px; font-size: 0.82rem; flex-wrap: wrap; }
.demo-credit { display: inline-flex; align-items: center; gap: 8px; background: rgba(248,246,239,0.07); padding: 6px 14px; border-radius: 999px; font-size: 0.78rem; }
.demo-credit a { color: var(--sage); font-weight: 600; }

/* ---------- Interior page hero ---------- */
.page-hero {
  padding: calc(var(--banner-h, 34px) + 116px) 0 64px;
  text-align: center;
  background: linear-gradient(170deg, var(--sage) 0%, var(--cream) 100%);
  position: relative;
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 14px; }
.page-hero h1 .accent { color: var(--green); }
.page-hero p { color: var(--muted); font-size: 1.1rem; max-width: 580px; margin: 0 auto; }
.crumbs { font-size: 0.82rem; color: var(--muted); margin-bottom: 16px; }
.crumbs a { color: var(--green); font-weight: 600; }
.crumbs span { margin: 0 8px; opacity: 0.5; }

/* ---------- Process / steps ---------- */
.steps { background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step-card { text-align: center; padding: 16px; }
.step-num { width: 54px; height: 54px; border-radius: 50%; background: var(--green-soft); color: var(--green); font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 600; display: grid; place-items: center; margin: 0 auto 18px; }
.step-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step-card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid rgba(47,107,63,0.1); border-radius: 14px; padding: 2px 22px; transition: border-color 0.2s; }
.faq-item[open] { border-color: rgba(47,107,63,0.25); }
.faq-item summary { cursor: pointer; list-style: none; padding: 18px 0; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.02rem; color: var(--green-dk); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--green); transition: transform 0.3s var(--ease); line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); font-size: 0.97rem; padding: 0 0 18px; }

/* ---------- Home services preview "see all" link ---------- */
.services-more { text-align: center; margin-top: 44px; }

/* service includes list (services page) */
.service-card .feature-list { margin-top: 16px; margin-bottom: 0; }
.service-card .feature-list li { font-size: 0.9rem; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--green); color: var(--white); font-size: 1.2rem;
  box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none;
  transform: translateY(10px); transition: opacity 0.3s, transform 0.3s, background 0.3s;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--green-dk); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links, .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; max-width: 440px; }
  .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .g-wide { grid-column: span 2; }
  .about-stat { right: 12px; }
  .showcase { grid-template-columns: 1fr; gap: 22px; }
  .showcase-visual { order: -1; min-height: 360px; }
  .why-layout { grid-template-columns: 1fr; gap: 36px; }
  .why-visual { max-width: 460px; }
  .why-visual img { aspect-ratio: 16/10; }
}
@media (max-width: 760px) {
  section { padding: 62px 0; }
  .services-grid, .why-grid, .reviews-grid, .steps-grid { grid-template-columns: 1fr; }
  .showcase-visual { min-height: 300px; }
  .sc-item { padding: 17px 14px; }
  .sc-text strong { font-size: 1.1rem; }
  .sc-caption { padding: 22px 20px; }
  .why-point .wp-num { width: 42px; height: 42px; }
  .page-hero { padding-top: calc(var(--banner-h, 34px) + 92px); }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .page-hero p { font-size: 1.02rem; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  nav { padding: 13px 20px; }
  nav.scrolled { padding: 11px 20px; }
  .wrap { padding: 0 20px; }

  .hero { padding: 120px 0 44px; }
  .hero-grid { gap: 26px; }
  .hero-visual { max-width: 100%; }
  .hero h1 { font-size: clamp(2rem, 8.5vw, 2.9rem); margin-bottom: 14px; }
  .hero-sub { font-size: 1.02rem; margin-bottom: 24px; max-width: 100%; }
  .hero-btns .btn { flex: 1 1 auto; justify-content: center; }
  .hero-meta { gap: 14px 22px; margin-top: 24px; }
  .hero-img-main { aspect-ratio: 4 / 3.4; }
  .hero-img-float { width: 110px; left: -8px; bottom: -14px; border-width: 5px; }
  .hero-chip { top: 14px; right: 8px; padding: 9px 12px; }
  .hero-chip .chip-ic { width: 36px; height: 36px; }
  .hero-chip strong { font-size: 0.86rem; }

  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: clamp(1.65rem, 6.5vw, 2.3rem); }
  .about-text h2, .contact-aside h2 { font-size: clamp(1.6rem, 6vw, 2.3rem); }
  .about-stat { bottom: -18px; padding: 14px 18px; }
}
@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .g-wide, .g-tall { grid-column: span 1; grid-row: span 1; }
  .hero-meta strong { font-size: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
