/* =========================================================
   Sweetwater Pro Services (SPS)
   Shared stylesheet for all pages
   Palette: deep black, crisp white, natural green (#4a7c2f)
   ========================================================= */

:root {
  --green: #4a7c2f;
  --green-dark: #3a6324;
  --green-darker: #2c4c1b;
  --green-light: #6aa343;
  --green-tint: #eef4ea;
  --green-tint-2: #e2ecda;
  --black: #121512;
  --ink: #1c211b;
  --white: #ffffff;
  --off-white: #f7f9f5;
  --gray: #5a615a;
  --gray-light: #8a918a;
  --border: #e6e9e3;
  --shadow-sm: 0 2px 10px rgba(18, 21, 18, 0.06);
  --shadow-md: 0 10px 30px rgba(18, 21, 18, 0.08);
  --shadow-lg: 0 24px 60px rgba(18, 21, 18, 0.14);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1200px;
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
  font-weight: 800;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: var(--gray); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-tint);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
section { padding: clamp(64px, 9vw, 120px) 0; }
.section-head { max-width: 660px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 16px; font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 100px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(74, 124, 47, 0.32);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(74, 124, 47, 0.4); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--green); color: var(--green-dark); transform: translateY(-2px); }
.btn-ghost-light {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.18); border-color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 18px 34px; font-size: 1.06rem; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 50px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink);
  padding: 9px 14px;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green-dark); background: var(--green-tint); }

/* Dropdown */
.nav-item { position: relative; }
.nav-item > a .caret { width: 12px; height: 12px; margin-left: 2px; transition: transform 0.25s var(--ease); vertical-align: middle; }
.nav-item:hover > a .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 248px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 0.95rem;
}
.dropdown a .ic { width: 34px; height: 34px; border-radius: 9px; background: var(--green-tint); color: var(--green-dark); display: grid; place-items: center; flex-shrink: 0; transition: background 0.2s, color 0.2s; }
.dropdown a .ic svg { width: 18px; height: 18px; }
.dropdown a:hover .ic { background: var(--green); color: #fff; }
.dropdown a small { display: block; font-weight: 500; font-size: 0.8rem; color: var(--gray); }
.dropdown a span { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 600; }
.dropdown .dd-divider { height: 1px; background: var(--border); margin: 8px 4px; }

/* Mobile submenu label */
.mobile-menu .mm-label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-light); font-weight: 700; padding: 18px 6px 6px; border: none; }
.mobile-menu .mm-sub { padding-left: 18px; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green);
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 0.96rem;
  box-shadow: 0 6px 18px rgba(74, 124, 47, 0.3);
  transition: transform 0.25s var(--ease), background 0.25s;
}
.nav-call:hover { background: var(--green-dark); transform: translateY(-2px); }
.nav-call svg { width: 17px; height: 17px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  border-radius: 10px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--black);
  border-radius: 3px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
  margin: 0 auto;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 14px 28px 28px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  z-index: 999;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 15px 6px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { width: 100%; margin-top: 18px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(40px, 7vw, 90px));
  padding-bottom: clamp(60px, 8vw, 110px);
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(74,124,47,0.16), transparent 60%),
    radial-gradient(800px 480px at 8% 110%, rgba(74,124,47,0.10), transparent 60%),
    var(--off-white);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--green); }
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--gray);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; }
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
.hero-trust svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }
.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.4;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  left: 22px; bottom: 22px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-badge .stat-number { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 1.7rem; color: var(--green-dark); line-height: 1; }
.hero-badge small { display: block; font-size: 0.82rem; color: var(--gray); }

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 4px; width: 0;
  background: var(--green);
  transition: width 0.35s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--green-tint-2); }
.service-card:hover::after { width: 100%; }
.service-icon {
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--green-tint);
  color: var(--green-dark);
  margin-bottom: 20px;
  transition: background 0.3s, color 0.3s;
}
.service-card:hover .service-icon { background: var(--green); color: #fff; }
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: 0.98rem; margin-bottom: 18px; flex-grow: 1; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-dark);
}
.service-link svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ---------- Why choose us ---------- */
.why { background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}
.why-points { display: grid; gap: 18px; }
.why-point {
  display: flex;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.why-point:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.why-point .ic {
  flex-shrink: 0;
  width: 50px; height: 50px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--green-tint);
  color: var(--green-dark);
}
.why-point .ic svg { width: 24px; height: 24px; }
.why-point h3 { font-size: 1.12rem; margin-bottom: 4px; }
.why-point p { font-size: 0.95rem; }
.why-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 3.4;
}
.why-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Stats strip ---------- */
.stats {
  background: var(--black);
  color: var(--white);
  padding: clamp(48px, 6vw, 72px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.stat-block .stat-number {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  color: var(--green-light);
  line-height: 1;
}
.stat-block .stat-suffix { color: var(--green-light); }
.stat-block p { color: rgba(255,255,255,0.72); margin-top: 8px; font-size: 0.96rem; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,21,18,0.55), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery-item .cap {
  position: absolute;
  left: 18px; bottom: 14px;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  z-index: 2;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover .cap { transform: translateY(0); opacity: 1; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ---------- Contact / Quote ---------- */
.contact { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}
.contact-info h2 { margin-bottom: 18px; }
.contact-info > p { margin-bottom: 30px; font-size: 1.06rem; }
.call-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--black);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  margin-bottom: 24px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.call-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.call-card .ic {
  flex-shrink: 0;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green);
  display: grid; place-items: center;
}
.call-card .ic svg { width: 28px; height: 28px; color: #fff; }
.call-card small { display: block; color: rgba(255,255,255,0.66); font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
.call-card .num { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: clamp(1.5rem, 3vw, 2rem); color: #fff; line-height: 1.1; }
.contact-list { display: grid; gap: 14px; }
.contact-list li { display: flex; align-items: center; gap: 13px; font-weight: 500; color: var(--ink); }
.contact-list svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; }

.quote-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 38px);
  box-shadow: var(--shadow-md);
}
.quote-form h3 { font-size: 1.4rem; margin-bottom: 6px; }
.quote-form .form-sub { font-size: 0.96rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: 11px;
  background: var(--off-white);
  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);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(74,124,47,0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.quote-form .btn { width: 100%; margin-top: 6px; }
.form-note { font-size: 0.84rem; color: var(--gray-light); text-align: center; margin-top: 14px; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: var(--green-tint);
  border: 1px solid var(--green-tint-2);
  color: var(--green-darker);
  border-radius: 12px;
  padding: 16px 18px;
  font-weight: 600;
  margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--green); }

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.74);
  padding: clamp(56px, 7vw, 80px) 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo-chip {
  display: inline-flex;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 20px;
}
.footer-brand .logo-chip img { height: 56px; width: auto; }
.footer-brand p { color: rgba(255,255,255,0.62); max-width: 320px; margin-bottom: 22px; }
.footer-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
}
.footer-call svg { width: 22px; height: 22px; color: var(--green-light); }
.footer-col h4 {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: rgba(255,255,255,0.72); font-size: 0.97rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--green-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .tag { color: rgba(255,255,255,0.5); }
.footer-credit { font-size: 0.72rem; color: rgba(255,255,255,0.3); margin-top: 12px; }
.footer-credit a { color: inherit; text-decoration: underline; }
.footer-credit a:hover { color: rgba(255,255,255,0.6); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 10, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  z-index: 2000;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1.6rem;
  display: grid; place-items: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   Standalone service page styles
   ========================================================= */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(46px, 7vw, 96px));
  padding-bottom: clamp(56px, 8vw, 104px);
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(18,21,18,0.86) 0%, rgba(28,46,18,0.78) 55%, rgba(74,124,47,0.62) 100%);
  z-index: 1;
}
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { background: rgba(255,255,255,0.14); color: #fff; }
.page-hero .eyebrow::before { background: var(--green-light); }
.page-hero h1 { color: #fff; max-width: 880px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: clamp(1.05rem, 1.7vw, 1.25rem); max-width: 620px; margin: 20px 0 30px; }
.page-hero .hero-actions { margin-bottom: 0; }
.breadcrumb { display: flex; gap: 8px; font-size: 0.86rem; color: rgba(255,255,255,0.7); margin-bottom: 22px; font-weight: 500; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.45); }

/* Content split */
.content-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
.content-split.reverse .text-col { order: 2; }
.prose h2 { margin-bottom: 18px; }
.prose p { font-size: 1.06rem; margin-bottom: 18px; }
.prose .btn { margin-top: 10px; }
.media-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.6;
}
.media-col img { width: 100%; height: 100%; object-fit: cover; }

/* Includes / feature list */
.include-list { display: grid; gap: 14px; margin: 8px 0 28px; }
.include-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 1.02rem;
  color: var(--ink);
}
.include-list .check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-dark);
  display: grid; place-items: center;
  margin-top: 2px;
}
.include-list .check svg { width: 15px; height: 15px; }

/* Feature cards row */
.feature-cards { background: var(--off-white); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature-card .ic {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--green-tint);
  color: var(--green-dark);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.feature-card .ic svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.14rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.97rem; }

/* CTA band */
.cta-band {
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(74,124,47,0.4), transparent 60%),
    var(--black);
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto 30px; font-size: 1.08rem; }
.cta-band .hero-actions { justify-content: center; }
.cta-band .btn-outline { color: #fff; border-color: rgba(255,255,255,0.4); }
.cta-band .btn-outline:hover { border-color: #fff; color: #fff; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  padding: 24px 4px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--black);
}
.faq-q .pm {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-dark);
  display: grid; place-items: center;
  font-size: 1.3rem;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.faq-item.open .pm { transform: rotate(45deg); background: var(--green); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a p { padding: 0 4px 24px; font-size: 1.02rem; }

/* Mini service nav (on sub-pages) */
.related { background: var(--off-white); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--green-tint-2); }
.related-card .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--green-tint); color: var(--green-dark); display: grid; place-items: center; flex-shrink: 0; }
.related-card .ic svg { width: 22px; height: 22px; }
.related-card span { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; color: var(--black); font-size: 1rem; }
.related-card small { display: block; color: var(--gray); font-weight: 500; font-size: 0.85rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .nav-call span.full { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 16/11; max-height: 420px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { aspect-ratio: 16/10; order: -1; }
  .feature-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .content-split { grid-template-columns: 1fr; }
  .content-split.reverse .text-col { order: 0; }
  .media-col { aspect-ratio: 16/11; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .nav-cta .nav-call { padding: 11px 16px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .stats-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
}
