/* ==========================================================================
   SOURC — Master Stylesheet
   Premium UK energy & installation company site
   ========================================================================== */

:root {
  /* Brand */
  --green: #5CBB3F;
  --green-mid: #4CA934;
  --green-dark: #499831;
  --green-darker: #386B27;
  --green-light: #E9F7E2;
  --green-tint: #F3FBF0;

  /* Deep, brand-tinted dark — richer than flat black */
  --black: #0A0D0A;
  --forest-950: #060907;
  --forest-900: #0C130D;
  --forest-800: #131C14;

  --ink: #10130F;
  --grey-900: #1B201C;
  --grey-700: #464C46;
  --grey-500: #6C726C;
  --grey-400: #9AA098;
  --grey-300: #C6CAC4;
  --grey-200: #E4E7E1;
  --grey-100: #F1F2EE;
  --grey-50: #F9FAF7;
  --white: #FFFFFF;

  --border: #E4E7E0;
  --shadow-sm: 0 1px 2px rgba(10,13,10,0.05), 0 1px 1px rgba(10,13,10,0.04);
  --shadow-md: 0 10px 28px -6px rgba(15,20,14,0.12), 0 3px 8px -2px rgba(15,20,14,0.07);
  --shadow-lg: 0 30px 70px -12px rgba(10,15,10,0.22), 0 10px 24px -8px rgba(10,15,10,0.12);
  --shadow-xl: 0 40px 100px -18px rgba(8,12,8,0.35), 0 14px 34px -10px rgba(8,12,8,0.18);
  --shadow-green: 0 14px 32px -6px rgba(76,169,52,0.4), 0 4px 10px -2px rgba(76,169,52,0.24);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --container: 1240px;
  --font-display: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.22,.9,.32,1);
  --ease-out-expo: cubic-bezier(.16,1,.3,1);

  /* Subtle grain texture for dark surfaces (SVG feTurbulence, inlined) */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.045 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--black);
}
p { color: var(--grey-700); }
::selection { background: var(--green); color: var(--white); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 640px) { .container { padding-inline: 20px; } }

.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
@media (max-width: 900px) { .section { padding: 64px 0; } .section-tight { padding: 44px 0; } }

.section-grey { background: var(--grey-50); }
.section-black { background: var(--black); color: var(--white); }
.section-black p { color: var(--grey-300); }
.section-black h1, .section-black h2, .section-black h3 { color: var(--white); }

.grid { display: grid; gap: 28px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .g-4 { grid-template-columns: repeat(2, 1fr); } .g-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .g-4, .g-3, .g-2 { grid-template-columns: 1fr; } }

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--green-darker);
  background: var(--green-light);
  padding: 7px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.eyebrow.on-dark { background: rgba(92,187,63,0.16); color: #8FE070; }

h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); letter-spacing: -0.03em; text-wrap: balance; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.85rem); text-wrap: balance; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { max-width: 700px; margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.08rem; margin-top: 14px; }

.lede { font-size: 1.2rem; color: var(--grey-700); max-width: 620px; }

.text-muted { color: var(--grey-500); }
.small { font-size: 0.9rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  border: 1.5px solid transparent;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform .25s var(--ease); }
.btn-primary {
  background: linear-gradient(155deg, #6BCB4C 0%, var(--green) 45%, var(--green-mid) 100%);
  color: var(--forest-950); box-shadow: var(--shadow-green); position: relative;
}
.btn-primary:hover { background: linear-gradient(155deg, #5FC047 0%, var(--green-dark) 100%); color: var(--white); transform: translateY(-2px); box-shadow: 0 20px 40px -8px rgba(76,169,52,0.45), 0 6px 14px -4px rgba(76,169,52,0.3); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-primary:active { transform: translateY(0); }

.btn-dark { background: linear-gradient(155deg, var(--grey-900) 0%, var(--black) 100%); color: var(--white); box-shadow: 0 12px 26px -8px rgba(10,13,10,0.35); }
.btn-dark:hover { background: linear-gradient(155deg, var(--green-mid) 0%, var(--green-darker) 100%); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-outline { background: transparent; border-color: var(--grey-300); color: var(--black); }
.btn-outline:hover { border-color: var(--black); background: var(--black); color: var(--white); transform: translateY(-2px); }

.btn-outline-light { background: transparent; border-color: rgba(255,255,255,0.35); color: var(--white); }
.btn-outline-light:hover { border-color: var(--white); background: var(--white); color: var(--black); transform: translateY(-2px); }

.btn-ghost { padding: 8px 0; border-radius: 0; color: var(--black); font-weight: 600; border-bottom: 2px solid var(--green); }
.btn-ghost:hover { color: var(--green-darker); gap: 14px; }

.btn-lg { padding: 18px 34px; font-size: 1.03rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled { border-color: var(--border); box-shadow: 0 4px 24px rgba(10,10,10,0.05); }

.header-inner { display: flex; align-items: center; justify-content: space-between; height: 86px; gap: 24px; }
.logo-link { flex-shrink: 0; display: flex; align-items: center; }
.logo-link img { height: 26px; width: auto; }

.main-nav { display: flex; }
.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 16px;
  font-size: 0.95rem; font-weight: 500; color: var(--ink);
  border-radius: var(--radius-pill);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.main-nav a.nav-link:hover, .main-nav button.nav-link:hover { background: var(--grey-100); }
.nav-link.nav-current, .has-dropdown.open-current > .nav-link { color: var(--green-darker); font-weight: 700; }
.nav-link.nav-current::after, .has-dropdown.open-current > .nav-link::after {
  content: ""; display: block; width: 16px; height: 2px; background: var(--green); border-radius: 2px;
  position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%);
}
.nav-link { position: relative; }
@media (max-width: 980px) {
  .nav-link.nav-current::after, .has-dropdown.open-current > .nav-link::after { display: none; }
  .nav-link.nav-current, .has-dropdown.open-current > .nav-link { background: var(--green-tint); border-radius: 10px; }
}
.nav-link svg { width: 13px; height: 13px; transition: transform .25s var(--ease); color: var(--grey-500); }

.has-dropdown { position: relative; }
.has-dropdown:hover .nav-link svg,
.has-dropdown.open .nav-link svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0; visibility: hidden;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  z-index: 40;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px; border-radius: 10px;
  font-size: 0.92rem; font-weight: 500; color: var(--ink);
  transition: background .2s var(--ease), color .2s var(--ease), padding-left .2s var(--ease);
}
.dropdown-menu a:hover { background: var(--green-tint); color: var(--green-darker); padding-left: 16px; }
.dropdown-menu .dd-icon { width: 34px; height: 34px; border-radius: 9px; background: var(--grey-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dropdown-menu .dd-icon svg { width: 17px; height: 17px; color: var(--green-darker); }

.header-actions { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.header-contact { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.25; }
.header-contact .label { font-size: 0.72rem; color: var(--grey-500); font-weight: 500; }
.header-contact a { font-size: 0.95rem; font-weight: 700; }
.header-contact a:hover { color: var(--green-darker); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 50%;
  align-items: center; justify-content: center; background: var(--grey-100);
  flex-shrink: 0;
}
.nav-toggle span { display: block; width: 18px; height: 1.6px; background: var(--black); position: relative; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 1.6px; background: var(--black); transition: transform .3s var(--ease), top .3s var(--ease); }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle.active span { background: transparent; }
.nav-toggle.active span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 980px) {
  .main-nav { position: fixed; top: 86px; left: 0; right: 0; bottom: 0; height: calc(100vh - 86px); z-index: 490; background: var(--white); padding: 12px 20px 32px; overflow-y: auto;
    display: flex; flex-direction: column; align-items: stretch;
    transform: translateY(-12px); opacity: 0; visibility: hidden; transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s; }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 2px; width: 100%; }
  .nav-link { width: 100%; padding: 15px 6px; font-size: 1.05rem; justify-content: space-between; border-bottom: 1px solid var(--grey-100); border-radius: 0; }
  .dropdown-menu, .has-dropdown:hover .dropdown-menu, .has-dropdown.open .dropdown-menu {
    position: static; left: auto; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border: none; padding: 4px 0 8px 14px; background: transparent; width: auto; min-width: 0;
  }
  .dropdown-menu { display: none; }
  .has-dropdown:hover .dropdown-menu { display: none; }
  .has-dropdown.open .dropdown-menu { display: block; }
  .header-contact { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-primary { display: none; }
  .main-nav .mobile-cta { display: flex; margin-top: 18px; }
}
.mobile-cta { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 76px 0 100px;
  overflow: hidden;
  background: var(--white);
}
.hero-grid { display: grid; grid-template-columns: 0.95fr 1.08fr; gap: 56px; align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 44px; } }

.hero h1 { margin-bottom: 22px; }
.hero .lede { margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; padding-top: 30px; border-top: 1px solid var(--border); }
.hero-stat .num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--black); }
.hero-stat .num .ph { color: var(--grey-400); font-size: 0.95rem; font-weight: 600; }
.hero-stat .lbl { font-size: 0.85rem; color: var(--grey-500); margin-top: 2px; }

.hero-visual { position: relative; }
.hero-photo {
  position: relative;
  aspect-ratio: 1324/972;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Media placeholder (photography) ---------- */
.media-placeholder {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 18%, rgba(120,214,88,0.5), transparent 40%),
    radial-gradient(circle at 82% 78%, rgba(76,169,52,0.35), transparent 45%),
    linear-gradient(150deg, #17261a 0%, #0e1712 48%, var(--forest-950) 100%);
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: var(--ar, 4/3);
  isolation: isolate;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.media-placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--grain);
  opacity: 0.5;
  mix-blend-mode: overlay;
  z-index: 0;
}
.media-placeholder::after {
  content: "";
  position: absolute; right: -18%; bottom: -30%; width: 75%; aspect-ratio: 1;
  background: conic-gradient(from 200deg, rgba(92,187,63,0.4), transparent 55%);
  filter: blur(30px);
  z-index: 0;
}
.media-placeholder .mp-icon-wrap {
  position: relative; z-index: 1;
  width: 30%; max-width: 92px; aspect-ratio: 1;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.02) 70%, transparent 100%);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 20px 40px -10px rgba(0,0,0,0.5);
}
.media-placeholder .mp-icon { position: relative; z-index: 1; width: 46%; color: rgba(255,255,255,0.94); filter: drop-shadow(0 2px 10px rgba(0,0,0,0.35)); }
.media-placeholder .mp-icon svg { width: 100%; height: 100%; }
.media-placeholder .mp-tag {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  background: rgba(6,9,7,0.6); backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.88); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.03em;
  padding: 7px 12px; border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.14);
}
.media-placeholder .mp-tag::before { content: "◆ "; color: var(--green); }

.media-placeholder.scene .mp-scene {
  position: absolute; z-index: 1;
  top: 9%; left: 9%; right: 9%; height: 60%;
  display: flex; align-items: center; justify-content: center;
}
.media-placeholder.scene .mp-scene svg { width: 100%; height: 100%; }

.media-placeholder.photo::before, .media-placeholder.photo::after { display: none; }
.media-placeholder.photo img {
  position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.media-placeholder.photo .mp-credit {
  position: absolute; right: 10px; bottom: 10px; z-index: 2;
  background: rgba(6,9,7,0.55); backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.8); font-size: 0.64rem; font-weight: 500;
  letter-spacing: 0.01em; text-decoration: none;
  padding: 4px 10px; border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.12);
}
.media-placeholder.photo .mp-credit:hover { color: #fff; }

/* ---------- Postcode quick-quote ---------- */
.postcode-form {
  display: flex; gap: 10px; max-width: 480px;
  background: var(--white); border: 1.5px solid var(--grey-200); border-radius: var(--radius-pill);
  padding: 6px; box-shadow: var(--shadow-md);
}
.postcode-form input {
  flex: 1; border: none; background: transparent; padding: 12px 8px 12px 16px;
  font-size: 0.98rem; font-weight: 500; min-width: 0;
}
.postcode-form input:focus { outline: none; }
.postcode-form input::placeholder { color: var(--grey-400); }
.postcode-form button { flex-shrink: 0; }
@media (max-width: 480px) {
  .postcode-form { flex-direction: column; border-radius: var(--radius-md); padding: 8px; }
  .postcode-form input { padding: 10px 10px; text-align: left; }
  .postcode-form button { width: 100%; }
}
.postcode-hint { display: flex; align-items: center; gap: 7px; font-size: 0.83rem; color: var(--grey-500); margin-top: 12px; }
.postcode-hint svg { width: 14px; height: 14px; color: var(--green-darker); flex-shrink: 0; }

/* ---------- Statement band ---------- */
.statement-band {
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(165deg, var(--forest-900) 0%, var(--black) 100%);
  padding: 96px 0;
  text-align: center;
}
.statement-band::before { content: ""; position: absolute; inset: 0; background-image: var(--grain); opacity: 0.4; mix-blend-mode: overlay; }
.statement-band::after {
  content: ""; position: absolute; top: -20%; left: 50%; transform: translateX(-50%); width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(92,187,63,0.22), transparent 65%); filter: blur(20px);
}
.statement-band .container { position: relative; z-index: 1; }
.statement-band p.statement {
  font-family: var(--font-display); color: var(--white);
  font-size: clamp(1.7rem, 3.6vw, 3rem); font-weight: 600; letter-spacing: -0.025em; line-height: 1.22;
  max-width: 900px; margin-inline: auto; text-wrap: balance;
}
.statement-band p.statement em { font-style: normal; color: var(--green); }
.statement-band p.statement-sub {
  font-family: var(--font-body); color: var(--grey-300);
  font-size: clamp(1rem, 1.3vw, 1.15rem); font-weight: 400; line-height: 1.6;
  max-width: 620px; margin: 22px auto 0;
}
.statement-band .eyebrow.on-dark { margin-bottom: 28px; }

/* ---------- Trust strip ---------- */
.trust-strip { padding: 30px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-strip .trust-inner { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.trust-strip .trust-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-500); flex-shrink: 0; }
.trust-badges { display: flex; gap: 14px; flex-wrap: wrap; flex: 1; }
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: var(--radius-pill);
  background: var(--grey-50); border: 1px dashed var(--grey-300);
  font-size: 0.82rem; font-weight: 600; color: var(--grey-500);
}
.trust-badge svg { width: 15px; height: 15px; color: var(--grey-400); }

.area-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.area-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: var(--radius-pill);
  background: var(--white); border: 1.5px solid var(--grey-200);
  font-size: 0.86rem; font-weight: 600; color: var(--ink);
}
.area-chip svg { width: 13px; height: 13px; color: var(--green-darker); flex-shrink: 0; }
.area-chip.more { background: var(--grey-50); color: var(--grey-500); border-style: dashed; }

/* ---------- Service cards ---------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex; flex-direction: column; height: 100%;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.service-card .sc-icon {
  width: 56px; height: 56px; border-radius: 15px;
  background: var(--black); display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; transition: background .3s var(--ease), transform .3s var(--ease);
}
.service-card .sc-icon svg { width: 26px; height: 26px; color: var(--green); }
.service-card:hover .sc-icon { background: var(--green); transform: rotate(-6deg) scale(1.05); }
.service-card:hover .sc-icon svg { color: var(--black); }
.service-card h3 { margin-bottom: 10px; }
.service-card p { flex: 1; margin-bottom: 22px; }
.service-card .sc-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.92rem; }
.service-card .sc-link svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.service-card:hover .sc-link svg { transform: translateX(4px); }

/* ---------- Feature list (why choose) ---------- */
.feature-card { padding: 30px 0; border-top: 1px solid var(--border); display: flex; gap: 20px; }
.feature-card .f-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--green-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-card .f-icon svg { width: 22px; height: 22px; color: var(--green-darker); }
.feature-card h4 { margin-bottom: 6px; }
.feature-card p { font-size: 0.95rem; }

.why-media { position: relative; }

/* ---------- Process / steps ---------- */
.process-wrap { position: relative; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; }
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-steps { grid-template-columns: 1fr; } }
.process-step { position: relative; padding-top: 8px; }
.process-step .ps-num {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  color: var(--green-darker); background: var(--green-light);
  width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.93rem; }
/* ---------- Projects ---------- */
.project-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: var(--white); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.project-card .media-placeholder { border-radius: 0; --ar: 4/3; }
.project-card .pc-body { padding: 22px 24px 26px; }
.project-card .pc-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green-darker); background: var(--green-light); padding: 5px 11px; border-radius: var(--radius-pill); margin-bottom: 12px; }
.project-card h4 { margin-bottom: 6px; }
.project-card .pc-loc { font-size: 0.85rem; color: var(--grey-500); display: flex; align-items: center; gap: 6px; }
.project-card .pc-loc svg { width: 13px; height: 13px; }

.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
.filter-btn { padding: 10px 20px; border-radius: var(--radius-pill); border: 1.5px solid var(--border); font-weight: 600; font-size: 0.88rem; transition: all .25s var(--ease); }
.filter-btn:hover { border-color: var(--black); }
.filter-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }

/* ---------- Reviews ---------- */
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; height: 100%; display: flex; flex-direction: column; }
.review-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.review-stars svg { width: 16px; height: 16px; color: var(--green); }
.review-card p.quote { color: var(--ink); font-size: 1rem; flex: 1; margin-bottom: 20px; }
.review-who { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--grey-100); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: var(--grey-400); font-size: 0.85rem; flex-shrink: 0; }
.review-who .name { font-weight: 700; font-size: 0.92rem; }
.review-who .meta { font-size: 0.8rem; color: var(--grey-500); }
.review-placeholder-note { text-align: center; margin-top: 36px; }

/* ---------- Accreditations ---------- */
.accred-strip { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.accred-badge {
  width: 130px; height: 92px; border-radius: var(--radius-md);
  border: 1.5px dashed var(--grey-300); background: var(--grey-50);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: var(--grey-400); text-align: center; padding: 10px;
}
.accred-badge svg { width: 24px; height: 24px; }
.accred-badge span { font-size: 0.68rem; font-weight: 600; line-height: 1.3; color: var(--grey-500); }

.qual-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.qual-badge {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; min-width: 220px;
  border-radius: var(--radius-md); border: 1.5px solid var(--grey-200); background: var(--white);
  box-shadow: var(--shadow-sm);
}
.qb-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--green-light); color: var(--green-darker);
  display: flex; align-items: center; justify-content: center;
}
.qb-icon svg { width: 22px; height: 22px; }
.qb-logo { flex-shrink: 0; max-width: 92px; max-height: 60px; object-fit: contain; }
.qb-text { display: flex; flex-direction: column; }
.qb-name { font-weight: 700; font-size: 0.95rem; color: var(--ink); }
.qb-sub { font-size: 0.78rem; color: var(--grey-500); margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--black);
}
.faq-q .plus { width: 30px; height: 30px; border-radius: 50%; background: var(--grey-100); flex-shrink: 0; position: relative; transition: background .25s var(--ease), transform .3s var(--ease); }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--black); top: 50%; left: 50%; transition: transform .3s var(--ease), background .25s var(--ease); }
.faq-q .plus::before { width: 11px; height: 1.6px; transform: translate(-50%, -50%); }
.faq-q .plus::after { width: 1.6px; height: 11px; transform: translate(-50%, -50%); }
.faq-item.open .faq-q .plus { background: var(--green); transform: rotate(180deg); }
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after { background: var(--black); }
.faq-item.open .faq-q .plus::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 4px 26px; max-width: 760px; }
.faq-a-inner p { font-size: 0.98rem; }
.faq-cat-title { margin: 56px 0 6px; }
.faq-cat-title:first-child { margin-top: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--forest-900) 0%, var(--black) 65%, var(--forest-950) 100%);
  border-radius: var(--radius-xl);
  padding: 76px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  box-shadow: var(--shadow-xl), inset 0 0 0 1px rgba(255,255,255,0.05);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(120,214,88,0.32), transparent 50%),
              radial-gradient(circle at 8% 95%, rgba(76,169,52,0.22), transparent 45%);
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background-image: var(--grain); opacity: 0.5; mix-blend-mode: overlay;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); max-width: 480px; margin-bottom: 12px; }
.cta-band p { color: var(--grey-300); max-width: 460px; }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 900px) { .cta-band { padding: 46px 28px; } }

/* ---------- Footer ---------- */
.site-footer { position: relative; background: linear-gradient(175deg, var(--forest-900) 0%, var(--black) 45%); color: var(--grey-300); padding-top: 76px; isolation: isolate; }
.site-footer::before { content: ""; position: absolute; inset: 0; background-image: var(--grain); opacity: 0.35; mix-blend-mode: overlay; z-index: 0; pointer-events: none; }
.site-footer > .container { position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 980px) { .footer-top { grid-template-columns: 1fr 1fr; row-gap: 40px; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand img { height: 24px; margin-bottom: 18px; }
.footer-brand p { max-width: 280px; font-size: 0.92rem; margin-bottom: 22px; color: var(--grey-400); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.16); display: flex; align-items: center; justify-content: center; transition: all .25s var(--ease); }
.footer-social a:hover { background: var(--green); border-color: var(--green); }
.footer-social a svg { width: 16px; height: 16px; color: var(--white); }
.footer-col h5 { color: var(--white); font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.92rem; color: var(--grey-400); transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--green); }
.footer-col .contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--grey-400); }
.footer-col .contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--green); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 26px 0; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; color: var(--grey-500); }
.footer-bottom .legal-links { display: flex; gap: 20px; }
.footer-bottom a:hover { color: var(--green); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 56px 0 70px; border-bottom: 1px solid var(--border); }
.page-hero .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--grey-500); margin-bottom: 22px; }
.page-hero .breadcrumb a:hover { color: var(--green-darker); }
.page-hero h1 { max-width: 760px; }
.page-hero .lede { margin-top: 18px; }

.service-hero { padding: 60px 0 0; }
.service-hero-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 50px; align-items: center; padding-bottom: 70px; }
@media (max-width: 980px) { .service-hero-grid { grid-template-columns: 1fr; } }
.service-hero .media-placeholder { --ar: 5/4; }

/* ---------- Benefit grid (service pages) ---------- */
.benefit-card { padding: 28px; border-radius: var(--radius-lg); background: var(--grey-50); border: 1px solid var(--border); height: 100%; }
.benefit-card .b-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.benefit-card .b-icon svg { width: 21px; height: 21px; color: var(--green-darker); }

/* ---------- Two column content block ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split.reverse .split-media { order: 2; }
.check-list { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.98rem; color: var(--ink); font-weight: 500; }
.check-list li svg { width: 20px; height: 20px; color: var(--green-darker); flex-shrink: 0; margin-top: 1px; }

/* ---------- Stat row ---------- */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-row.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 420px; margin-inline: auto; }
@media (max-width: 760px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat-item .stat-num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; }
.stat-item .stat-num .ph-tag { font-size: 1rem; color: var(--grey-400); font-weight: 600; display: block; }
.stat-item .stat-lbl { font-size: 0.88rem; color: var(--grey-500); margin-top: 6px; }

/* ---------- Placeholder note chip ---------- */
.ph-note {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.02em;
  color: #A8730B; background: #FEF3DD; border: 1px solid #F5DFA8;
  padding: 5px 11px; border-radius: var(--radius-pill);
}
.ph-note svg { width: 12px; height: 12px; }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-card .media-placeholder { --ar: 1/1; border-radius: var(--radius-lg); margin-bottom: 18px; }
.team-card h4 { margin-bottom: 2px; }
.team-card .role { color: var(--green-darker); font-size: 0.88rem; font-weight: 600; }

/* ---------- Value cards (about) ---------- */
.value-card { padding: 32px 0; border-top: 1px solid var(--border); }

/* ---------- Coverage map block ---------- */
.map-block {
  border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--grey-50);
  aspect-ratio: 16/8; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.map-block svg { width: 46%; color: var(--grey-300); }
.map-block .map-pin { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(92,187,63,0.22); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.field label .req { color: var(--green-darker); }
.field input, .field select, .field textarea {
  padding: 14px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--border);
  background: var(--white); font-size: 0.96rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(92,187,63,0.14); }
.service-pick { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media (max-width: 640px) { .service-pick { grid-template-columns: repeat(2, 1fr); } }
.service-pick label {
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
  padding: 16px 8px; border-radius: var(--radius-md); border: 1.5px solid var(--border); cursor: pointer;
  transition: all .2s var(--ease); font-size: 0.85rem; font-weight: 600;
}
.service-pick input { position: absolute; opacity: 0; pointer-events: none; }
.service-pick svg { width: 22px; height: 22px; color: var(--grey-500); transition: color .2s var(--ease); }
.service-pick input:checked + span, .service-pick label:has(input:checked) { border-color: var(--green); background: var(--green-tint); }
.service-pick label:has(input:checked) svg { color: var(--green-darker); }

.form-panel { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
@media (max-width: 640px) { .form-panel { padding: 26px; } }
.form-success { display: none; text-align: center; padding: 50px 20px; }
.form-success.show { display: block; }
.form-success .fs-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }
.form-success .fs-icon svg { width: 30px; height: 30px; color: var(--green-darker); }

.contact-card { background: var(--grey-50); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.contact-row { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid var(--border); }
.contact-row:first-of-type { border-top: none; padding-top: 0; }
.contact-row .cr-icon { width: 42px; height: 42px; border-radius: 11px; background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-row .cr-icon svg { width: 19px; height: 19px; color: var(--green-darker); }
.contact-row .cr-label { font-size: 0.8rem; color: var(--grey-500); margin-bottom: 3px; }
.contact-row .cr-value { font-weight: 700; }
.contact-row a.cr-value:hover { color: var(--green-darker); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > * { transition-delay: calc(var(--i, 0) * 90ms); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Misc pages (privacy/terms) ---------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 44px; margin-bottom: 14px; font-size: 1.4rem; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--grey-700); margin-bottom: 14px; }
.prose ul { list-style: disc; padding-left: 22px; }
.prose ul li { list-style: disc; }

/* ---------- Service card with embedded photo (homepage split style) ---------- */
.service-card-photo {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column; height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.service-card-photo:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.service-card-photo .scp-media { --ar: 16/10; border-radius: 0; }
.service-card-photo .scp-body { padding: 26px 26px 28px; }
.service-card-photo .scp-icon { width: 46px; height: 46px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.service-card-photo .scp-icon svg { width: 22px; height: 22px; color: var(--black); }
.service-card-photo h3 { margin-bottom: 8px; font-size: 1.2rem; }
.service-card-photo p { font-size: 0.93rem; margin-bottom: 18px; }
.service-card-photo .sc-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 0.88rem; }
.service-card-photo .sc-link svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.service-card-photo:hover .sc-link svg { transform: translateX(4px); }

/* ---------- Why-choose icon band (horizontal, top-icon) ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.why-item { padding: 30px 26px; }
.why-item .wi-icon { width: 48px; height: 48px; border-radius: 12px; border: 1.5px solid var(--green); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.why-item .wi-icon svg { width: 23px; height: 23px; color: var(--green-darker); }
.why-item h4 { margin-bottom: 8px; font-size: 1.02rem; }
.why-item p { font-size: 0.91rem; }

/* ---------- Compact CTA bar (visual reference style) ---------- */
.cta-bar {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--forest-900), var(--black)); border-radius: var(--radius-lg);
  padding: 30px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,0.05);
}
.cta-bar::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 90% 120%, rgba(92,187,63,0.32), transparent 60%); }
.cta-bar::after { content: ""; position: absolute; inset: 0; background-image: var(--grain); opacity: 0.4; mix-blend-mode: overlay; }
.cta-bar > * { position: relative; z-index: 1; }
.cta-bar-left { display: flex; align-items: center; gap: 18px; }
.cta-bar-icon { width: 52px; height: 52px; border-radius: 13px; background: rgba(92,187,63,0.14); border: 1px solid rgba(92,187,63,0.35); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cta-bar-icon svg { width: 24px; height: 24px; color: var(--green); }
.cta-bar h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 3px; }
.cta-bar p { color: var(--grey-400); font-size: 0.9rem; }
.cta-bar-right { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.cta-bar-phone { display: flex; align-items: center; gap: 12px; padding-right: 22px; border-right: 1px solid rgba(255,255,255,0.14); }
@media (max-width: 760px) { .cta-bar-phone { display: none; } }
.cta-bar-phone .cbp-icon { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.cta-bar-phone .cbp-icon svg { width: 17px; height: 17px; color: var(--white); }
.cta-bar-phone .cbp-label { font-size: 0.72rem; color: var(--grey-400); }
.cta-bar-phone .cbp-num { font-weight: 700; color: var(--white); font-size: 1rem; }

/* ---------- Back to top ---------- */
.back-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 400;
  width: 48px; height: 48px; border-radius: 50%; background: var(--black); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s var(--ease);
  box-shadow: var(--shadow-lg);
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--green); color: var(--black); }
.back-top svg { width: 18px; height: 18px; }
