/* ============================================================
   VIJISUN ENERGIE — shared stylesheet
   ------------------------------------------------------------
   Direction : premium renewable-energy engineering company.
   Palette   : deep forest green ground · warm ivory contrast ·
               natural energy green accent · gold as a hairline.
   Type      : Manrope — one modern sans-serif for the whole system.
   Rhythm    : alternating dark-forest / warm-ivory sections,
               generous whitespace, hairline borders, restrained
               shadows, subtle motion.
   ------------------------------------------------------------
   SECTION MAP
     01  Design tokens
     02  Reset & base
     03  Layout primitives (.wrap / .section / .eyebrow / heads)
     04  Accessibility
     05  Icon helper
     06  Buttons
     07  Header
     08  Footer
     09  Floating WhatsApp button
     10  Hero — scroll-driven image sequence (home)   [PRESERVED]
     11  Page hero (inner pages)
     12  About — editorial split
     13  Our Solutions — category row
     14  Why Choose Us — numbered editorial
     15  Impact — dramatic numbers + energy line
     16  Closing CTA
     17  Vision / Mission + generic cards
     18  Numbered rule list ("What we do")
     19  Media band
     20  Services — tabs / sector sub-tabs
     21  FAQ
     22  Contact
     23  Motif backgrounds
     24  404 page
     25  Services — "The Energy Network" map          [PRESERVED]
     26  Services — six core solutions                [PRESERVED]
     27  Scroll reveal + count-up
     28  Reduced motion
   ============================================================ */


/* ============================================================
   01  DESIGN TOKENS
   ============================================================ */
:root {
  --deep: #062B22;
  /* Deep Forest Green — primary dark ground     */
  --deep-2: #031C17;
  /* Darkest forest — footer / deepest ground    */
  --emerald: #0C3128;
  /* Pine — panels / cards on dark               */
  --emerald-lt: #123f33;
  /* lifted pine — hovers                        */

  --cream: #F5F0E4;
  /* Warm Ivory — primary light ground           */
  --cream-dim: #EBE4D2;
  /* Soft Cream — secondary light ground         */
  --white: #F8F7F2;
  /* near-white panels                           */

  --ink: #10211C;
  /* primary dark text                           */
  --muted: #5C6A63;
  /* secondary text on light                     */
  --on-dark: #C7D0C8;
  /* body text on dark                           */
  --on-dark-dim: #93A199;
  /* dim labels on dark                          */

  --green: #58B957;
  /* Natural Energy Green — accent / large type  */
  --green-deep: #2F7D3A;
  /* green for button fills (AA on white text)   */
  --green-ink: #35723A;
  /* green for links / small text on light       */

  --gold: #C7A34A;
  /* Muted Gold — hairlines + micro-labels only  */
  --gold-dp: #9C7C34;
  /* gold for tiny text on light                 */
  --gold-lt: #D8BE8C;
  /* light gold — hero stat numerals only        */

  --line: rgba(16, 33, 28, .12);
  /* hairline on light             */
  --line-dark: rgba(199, 163, 74, .20);
  /* hairline on dark (gold tint)  */
  --line-dark2: rgba(247, 247, 242, .10);
  /* neutral hairline on dark      */

  /* ---- TYPOGRAPHY SYSTEM — one modern sans-serif, everywhere ---- */
  --font: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 800;
  --track-tight: -0.022em;
  /* large display headings */
  --track-snug: -0.012em;
  /* sub-headings / mid text */
  --track-label: 0.1em;
  /* small uppercase labels — moderate, never wide */

  --maxw: 1240px;
  --gap: clamp(1.25rem, 3.2vw, 2.8rem);
  --radius: 4px;
  --radius-lg: 14px;
  --ease: 400ms cubic-bezier(.22, 1, .36, 1);

  --shadow-soft: 0 1px 2px rgba(6, 43, 34, .05), 0 18px 44px -18px rgba(6, 43, 34, .16);
}


/* ============================================================
   02  RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 1.0625rem;
  /* 17px — technical, readable body */
  font-weight: var(--fw-regular);
  letter-spacing: -0.003em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font);
  margin: 0 0 .5em;
  line-height: 1.1;
  font-weight: var(--fw-bold);
  letter-spacing: var(--track-tight);
  color: var(--ink);
}

h3,
h4 {
  letter-spacing: var(--track-snug);
}

p {
  margin: 0 0 1em;
  color: var(--muted);
  max-width: 66ch;
  line-height: 1.65;
}

b,
strong {
  font-weight: var(--fw-bold);
}

:where(input, select, textarea, button) {
  font: inherit;
  letter-spacing: inherit;
}

strong {
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  color: inherit;
}

::selection {
  background: var(--green);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--green-deep);
  outline-offset: 3px;
  border-radius: 2px;
}


/* ============================================================
   03  LAYOUT PRIMITIVES
   ============================================================ */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.site-main {
  display: block;
}

.section {
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  position: relative;
}

.section--tint {
  background: var(--cream-dim);
}

.section--dark {
  background: var(--deep);
  color: var(--on-dark);
}

.section--deep {
  background: var(--deep-2);
  color: var(--on-dark);
}

.section--compact {
  padding-top: clamp(0.75rem, 1.5vw, 1rem);
  padding-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.section--dark p,
.section--deep p {
  color: var(--on-dark);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--deep h1,
.section--deep h2,
.section--deep h3,
.section--deep h4 {
  color: var(--white);
}

/* eyebrow — tiny uppercase label with a hairline tick */
.eyebrow {
  font-family: var(--font);
  font-weight: var(--fw-semibold);
  font-size: .75rem;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--gold-dp);
  margin: 0 0 1.1em;
  display: flex;
  align-items: center;
  gap: .8em;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  display: inline-block;
  flex-shrink: 0;
}

.section--dark .eyebrow,
.section--deep .eyebrow {
  color: var(--gold);
}

/* centered section header */
.section-head {
  max-width: 82ch;
  margin: 0 auto clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
}

.section-head .eyebrow {
  justify-content: center;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  max-width: 40ch;
  margin: 0 auto .5rem;
}

.section-head p {
  display: inline;
  margin: 0 auto;
  color: var(--white);
  background: var(--green);
  padding: .18em .5em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 1.9;
}

.section--dark .section-head p,
.section--deep .section-head p {
  color: var(--white);
  background: none;
  padding: 0;
}

/* left-aligned header row with an optional side link */
.head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.head-row h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin: 0;
  max-width: 18ch;
}

.head-row .eyebrow {
  margin-bottom: .9em;
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--muted);
  max-width: 52ch;
}

.section--dark .lede,
.section--deep .lede {
  color: var(--on-dark);
}


/* ============================================================
   04  ACCESSIBILITY — skip link
   ============================================================ */
.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  background: var(--green-deep);
  color: var(--white);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .7em 1.4em;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 400;
  transition: transform .18s ease;
}

.skip-link:focus {
  transform: translate(-50%, 0);
}


/* ============================================================
   05  ICON HELPER
   ============================================================ */
.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  flex-shrink: 0;
  vertical-align: -0.125em;
  fill: currentColor;
}

/* every <symbol> carries its own fill/stroke, so line icons stay line icons */


/* ============================================================
   06  BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  padding: 1.05em 2em;
  font-family: var(--font);
  font-weight: var(--fw-semibold);
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
}

.btn .icon {
  width: 1.05em;
  height: 1.05em;
  transition: transform var(--ease);
}

.btn:hover .icon {
  transform: translateX(3px);
}

.btn-green {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}

.btn-green:hover {
  background: var(--green-ink);
  border-color: var(--green-ink);
}

.btn-primary {
  background: var(--cream);
  color: var(--deep);
  border-color: var(--cream);
}

.btn-primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
}

.btn-outline {
  border-color: currentColor;
  color: inherit;
}

.btn-outline:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
}

/* ghost text link with animated underline */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font);
  font-weight: var(--fw-semibold);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-ink);
  padding-bottom: .35em;
  position: relative;
}

.btn-ghost .icon {
  width: 1.1em;
  height: 1.1em;
  transition: transform var(--ease);
}

.btn-ghost::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform var(--ease);
}

.btn-ghost:hover::after {
  transform: scaleX(0);
}

.btn-ghost:hover .icon {
  transform: translateX(4px);
}

.section--dark .btn-ghost,
.section--deep .btn-ghost {
  color: var(--green);
}

/* play / video link */
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: .85em;
  font-family: var(--font);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: var(--fw-semibold);
  color: var(--white);
}

.btn-play .circ {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-dark2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}

.btn-play .circ .icon {
  width: 14px;
  height: 14px;
}

.btn-play:hover .circ {
  background: var(--green);
  border-color: var(--green);
  color: var(--deep-2);
}


/* ============================================================
   07  HEADER
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 200;
}

.navbar {
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 20px rgba(6, 43, 34, 0.18);
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
}

#site-header.is-scrolled .navbar {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(6, 43, 34, 0.26);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.5rem var(--gap);
  transition: padding var(--ease);
}

#site-header.is-scrolled .nav-inner {
  padding-top: .55rem;
  padding-bottom: .55rem;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* logo is a white-background JPEG — it sits flush on the white nav */
.brand img {
  height: 76px;
  width: auto;
  object-fit: contain;
  display: block;
  transform: scale(1.16);
  transform-origin: left center;
  transition: height var(--ease), transform var(--ease);
  opacity: 0.85;
}

#site-header.is-scrolled .brand img {
  height: 60px;
}

.brand:hover img {
  transform: scale(1.16) translateY(-1px);
}

.nav-links {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}

.nav-links a {
  color: var(--green-deep);
  opacity: 1;
  font-size: .9rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0;
  padding: .5rem 0;
  position: relative;
  transition: opacity var(--ease), color var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1.5px;
  background: var(--green-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.nav-links a:hover {
  color: var(--deep);
  opacity: 1;
}

.nav-links a.active {
  opacity: 1;
  color: var(--green-deep);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-has-dropdown {
  position: relative;
}

.nav-has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

.nav-dropdown__arrow {
  width: 14px;
  height: 14px;
  transition: transform var(--ease);
}

.nav-has-dropdown:hover .nav-dropdown__arrow,
.nav-has-dropdown:focus-within .nav-dropdown__arrow {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(6, 43, 34, .18);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
  z-index: 40;
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 4px);
}

.nav-dropdown li {
  list-style: none;
}

.nav-dropdown li a {
  display: block;
  padding: .6rem .75rem;
  border-radius: 9px;
  font-size: .85rem;
  font-weight: var(--fw-semibold);
  color: var(--ink);
}

.nav-dropdown li a::after {
  display: none;
}

.nav-dropdown li a:hover {
  background: var(--cream);
  color: var(--green-ink);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: .7em 1.15em;
  border-radius: var(--radius);
  border: 1px solid #305a30;
  background: #305a30;
  color: var(--white);
  font-weight: var(--fw-semibold);
  font-size: .82rem;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}

.nav-phone .icon {
  width: 15px;
  height: 15px;
  color: var(--white);
  transition: color var(--ease);
}

.nav-phone:hover {
  background: #1f3d1f;
  border-color: #1f3d1f;
  color: #FFFFFF;
}

.nav-phone:hover .icon {
  color: #FFFFFF;
}

.nav-brochure {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: .68em 1.1em;
  border-radius: var(--radius);
  border: 1px solid var(--green-deep);
  background: transparent;
  color: var(--green-deep);
  font-weight: var(--fw-semibold);
  font-size: .82rem;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}

.nav-brochure .icon {
  width: 15px;
  height: 15px;
  color: var(--green-deep);
  transition: color var(--ease);
}

.nav-brochure:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
}

.nav-brochure:hover .icon {
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: .5em .6em;
  border-radius: var(--radius);
  line-height: 0;
}

.nav-toggle .icon {
  width: 20px;
  height: 20px;
}

@media (max-width:980px) {
  .nav-inner {
    position: relative;
    gap: 1rem;
  }

  .nav-links {
    order: 3;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-top: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(6, 43, 34, .22);
    flex-direction: column;
    align-items: flex-start;
    gap: .65rem;
    padding: .5rem var(--gap) 1.2rem;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 1rem 0;
    opacity: 1;
    font-size: .95rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a.active {
    color: var(--green-ink);
  }

  .nav-has-dropdown {
    width: 100%;
  }

  .nav-has-dropdown > a {
    justify-content: space-between;
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    border: none;
    background: var(--cream);
    margin: .35rem 0 .5rem;
    padding: .3rem;
  }

  .nav-dropdown li a {
    border-bottom: none;
    padding: .55rem .6rem;
    font-size: .82rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  /* icon-only phone once the hamburger is in play — keeps the row compact */
  .nav-phone span,
  .nav-brochure span {
    display: none;
  }

  .nav-phone,
  .nav-brochure {
    padding: .65em .8em;
  }

  .brand img {
    height: 42px;
    transform: scale(1.1);
  }
}

@media (max-width:600px) {

  /* phone and brochure live in the footer + WhatsApp float on small screens */
  .nav-phone,
  .nav-brochure {
    display: none;
  }
}


/* ============================================================
   08  FOOTER
   ============================================================ */
#site-footer {
  background: #01220E;
  color: var(--on-dark-dim);
}

.footer-lead {
  padding: clamp(1.5rem, 3vw, 2rem) 0 clamp(1rem, 2vw, 1.5rem);
  border-bottom: 1px solid var(--line-dark2);
}

.footer-lead h2 {
  font-size: clamp(2rem, 5.4vw, 3.6rem);
  color: var(--white);
  margin: 0;
  font-weight: var(--fw-bold);
  letter-spacing: var(--track-tight);
  line-height: 1.05;
}

.footer-lead h2 em {
  font-style: normal;
  color: var(--green);
}

.footer-top {
  padding: clamp(0.75rem, 1.5vw, 1.1rem) 0 clamp(0.5rem, 1vw, 0.75rem);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
}

@media (max-width:900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }
}

@media (max-width:560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-top h4,
  .footer-top ul {
    text-align: center;
  }

  .footer-top ul li a::before {
    display: none;
  }
}

.footer-top h4 {
  color: var(--white);
  font-size: .74rem;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.footer-top ul li {
  margin-bottom: .5em;
  font-size: .92rem;
}

.footer-top ul li a {
  color: var(--on-dark);
  transition: color var(--ease), padding-left var(--ease);
  display: inline-block;
}

.footer-top ul li a:hover {
  color: var(--green);
  padding-left: .35em;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand img {
  height: 130px;
  width: auto;
  margin-top: 1rem;
  object-fit: contain;
}

.footer-brand p {
  color: var(--on-dark-dim);
  font-size: .9rem;
  margin: 1.3rem 0 0;
  max-width: 34ch;
}

.social-row {
  display: flex;
  gap: .6rem;
  margin-top: 1rem;
  justify-content: flex-start;
  align-self: flex-start;
}

.social-row a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-dark2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-dark);
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}

.social-row a .icon {
  width: 16px;
  height: 16px;
}

.social-row a:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--deep-2);
}

.footer-contact {
  display: grid;
  gap: .7rem;
  font-size: .9rem;
  color: var(--on-dark);
}

.footer-contact div {
  display: flex;
  gap: .8em;
  align-items: flex-start;
}

.footer-contact .icon {
  color: var(--green);
  margin-top: .15em;
  width: 16px;
  height: 16px;
}

.footer-contact a:hover {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid var(--line-dark2);
  padding: 1.1rem 0;
  font-size: .76rem;
}

@media (max-width:600px) {
  /* clear the fixed mobile-bar pill so it doesn't sit over the social
     icons or the copyright row */
  .footer-bottom {
    padding-bottom: 5.5rem;
  }
}

.footer-bottom .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .9rem;
}

.footer-bottom a {
  color: var(--on-dark-dim);
}

.footer-bottom a:hover {
  color: var(--green);
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}


/* ============================================================
   09  FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 300;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1FA855;
  color: #fff;
  box-shadow: 0 10px 28px -8px rgba(6, 43, 34, .5);
  transition: transform var(--ease), box-shadow var(--ease);
}

.wa-float .icon {
  width: 26px;
  height: 26px;
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -10px rgba(6, 43, 34, .55);
}

/* ============================================================
   09b  MOBILE QUICK-CONTACT BAR (phone-width only)
   ============================================================ */
.mobile-bar {
  display: none;
}

@media (max-width:600px) {
  .mobile-bar {
    display: flex;
    align-items: stretch;
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    z-index: 300;
    width: min(92vw, 340px);
    background: var(--deep-2);
    border-radius: 999px;
    box-shadow: 0 16px 34px -10px rgba(6, 43, 34, .55);
  }

  .mobile-bar__item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45em;
    padding: .85em .5em;
    color: var(--white);
    position: relative;
  }

  .mobile-bar__item .icon {
    width: 20px;
    height: 20px;
  }

  .mobile-bar__item--label span {
    font-family: var(--font);
    font-weight: var(--fw-semibold);
    font-size: .82rem;
    letter-spacing: .01em;
  }

  .mobile-bar__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 22%;
    bottom: 22%;
    width: 1px;
    background: rgba(248, 247, 242, .18);
  }

  .wa-float {
    display: none;
  }
}

@media (max-width:560px) {
  .wa-float {
    width: 46px;
    height: 46px;
    right: 1rem;
    bottom: 1rem;
  }

  .wa-float .icon {
    width: 23px;
    height: 23px;
  }
}


/* ============================================================
   10  HERO — scroll-driven image sequence (home)   [PRESERVED]
   ============================================================ */
.hero {
  position: relative;
  background: var(--deep);
  color: var(--cream);
}

.hero--scroll {
  height: 380vh;
  overflow: visible;
  padding: 0;
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--deep);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  background: var(--deep);
  opacity: 0;
  transition: opacity .9s ease;
}

.hero-canvas.is-primed {
  opacity: 1;
}

/* no flat overlay — the animation stays clear; only a whisper of a
   bottom fade so the stat labels keep their footing. Text legibility
   comes from the text-shadows below, not a scrim. */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, transparent 62%, rgba(3, 28, 23, .30) 100%);
}

.hero--scroll .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--gap);
  text-align: center;
  will-change: opacity, transform;
}

.hero-wordmark {
  margin: 0;
  font-family: var(--font);
  font-weight: var(--fw-bold);
  font-size: clamp(2.6rem, 8.5vw, 5.5rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--cream);
  /* soft local glow keeps the wordmark crisp on bright frames without
     darkening the animation itself */
  text-shadow: 0 2px 26px rgba(3, 20, 16, .6), 0 1px 4px rgba(3, 20, 16, .65);
}

.hero-stats {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--gap);
  pointer-events: none;
}

.hero-stat {
  position: absolute;
  text-align: center;
  opacity: 0;
  transform: translateY(34px);
  will-change: opacity, transform;
}

.hero-stat strong {
  display: block;
  font-family: var(--font);
  font-weight: var(--fw-bold);
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  line-height: 1;
  color: var(--gold-lt);
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 2px 28px rgba(3, 20, 16, .62), 0 1px 4px rgba(3, 20, 16, .7);
}

.hero-stat span {
  display: block;
  margin-top: .85rem;
  font-family: var(--font);
  font-weight: var(--fw-semibold);
  font-size: clamp(.72rem, 1.5vw, .9rem);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 2px 20px rgba(3, 20, 16, .6), 0 1px 4px rgba(3, 20, 16, .7);
}


/* ============================================================
   11  PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--deep);
  color: var(--white);
  padding: clamp(1rem, 2vw, 1.5rem) 0 clamp(0.75rem, 1.5vw, 1rem);
  position: relative;
  overflow: hidden;
}

.page-hero .wrap {
  position: relative;
  z-index: 2;
}

.page-hero .eyebrow {
  color: var(--gold);
}

.page-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.75rem);
  max-width: 20ch;
  margin: 0;
  font-weight: var(--fw-bold);
  line-height: 1.08;
  letter-spacing: var(--track-tight);
  color: var(--white);
}

.page-hero p {
  color: var(--on-dark);
  max-width: 54ch;
  margin: 1.4rem 0 0;
  font-size: 1.05rem;
}

.breadcrumb {
  font-size: .76rem;
  color: var(--on-dark-dim);
  margin-top: 1.6rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
}

.breadcrumb a {
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), color var(--ease);
}

.breadcrumb a:hover {
  border-color: var(--green);
  color: var(--green);
}

.page-hero--image {
  min-height: clamp(260px, 30vw, 380px);
  display: flex;
  align-items: flex-end;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(3, 28, 23, .55) 0%, rgba(3, 28, 23, .45) 40%, rgba(3, 28, 23, .92) 100%);
}

.page-hero--image .wrap {
  padding-bottom: clamp(1rem, 3vw, 2rem);
}


/* ============================================================
   12  ABOUT — editorial split
   ============================================================ */
.about-editorial {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: stretch;
}

@media (max-width:920px) {
  .about-editorial {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
  }
}

.about-editorial__body h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  margin: 0 0 0.8rem;
  max-width: 14ch;
}

.about-editorial__body p {
  color: var(--muted);
  margin-bottom: 0.9rem;
  line-height: 1.5;
}

.section--dark .about-editorial__body p,
.section--deep .about-editorial__body p {
  color: var(--on-dark);
}

/* about.php's editorial paragraphs only (the section--video-bg--soft
   wrapper is unique to that page's version of this block) */
.section--video-bg--soft .about-editorial__body p {
  font-weight: var(--fw-bold);
}

.about-editorial__body .btn-ghost {
  margin-top: .4rem;
}

.commitment {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.section--dark .commitment,
.section--deep .commitment {
  border-color: var(--line-dark2);
}

.commitment__mark {
  font-family: var(--font);
  font-style: normal;
  font-weight: var(--fw-bold);
  font-size: 1rem;
  letter-spacing: var(--track-snug);
  color: var(--green-ink);
  line-height: 1.2;
  margin-bottom: .3rem;
}

.section--dark .commitment__mark,
.section--deep .commitment__mark {
  color: var(--green);
}

.commitment__label {
  font-size: .74rem;
  font-weight: var(--fw-medium);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--muted);
}

.section--dark .commitment__label,
.section--deep .commitment__label {
  color: var(--on-dark-dim);
}

/* image stretches to the full height of the copy column */
.about-editorial__media {
  min-height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}

.about-editorial__media>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-editorial__media>video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width:920px) {
  .about-editorial__media {
    min-height: 0;
    aspect-ratio: 16/10;
  }
}


/* ============================================================
   13  OUR SOLUTIONS — category row
   ============================================================ */
.solutions-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark2);
}

@media (max-width:900px) {
  .solutions-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .solutions-row {
    grid-template-columns: 1fr;
  }
}

.solution {
  position: relative;
  padding: 2.8rem 2rem 2.6rem;
  border-bottom: 1px solid var(--line-dark2);
  border-right: 1px solid var(--line-dark2);
  transition: background var(--ease);
}

.solutions-row .solution:nth-child(4n) {
  border-right: 0;
}

@media (max-width:900px) {
  .solutions-row .solution:nth-child(2n) {
    border-right: 0;
  }

  .solutions-row .solution:nth-child(4n) {
    border-right: 1px solid var(--line-dark2);
  }
}

@media (max-width:560px) {
  .solution {
    border-right: 0 !important;
  }
}

.solution::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  height: 2px;
  width: 0;
  background: var(--green);
  transition: width var(--ease);
}

.solution:hover {
  background: rgba(88, 185, 87, .05);
}

.solution:hover::before {
  width: 100%;
}

.solution__ic {
  width: 40px;
  height: 40px;
  color: var(--green);
  margin-bottom: 1.6rem;
}

.solution__ic .icon {
  width: 100%;
  height: 100%;
}

.solution h3 {
  font-size: 1.3rem;
  font-weight: var(--fw-bold);
  letter-spacing: var(--track-snug);
  color: var(--white);
  margin: 0 0 .7rem;
}

.solution p {
  font-size: .92rem;
  color: var(--on-dark);
  margin: 0 0 1.5rem;
  min-height: 3.4em;
  line-height: 1.6;
}

.solution .btn-ghost {
  color: var(--green);
}


/* ============================================================
   14  WHY CHOOSE US — numbered card grid
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width:940px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:620px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.7rem, 3vw, 2.2rem);
}

.why-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--green), transparent);
  transition: width .55s cubic-bezier(.22, 1, .36, 1);
}

.why-card:hover::before {
  width: 100%;
}

.section--dark .why-card,
.section--deep .why-card {
  background: var(--emerald);
  border-color: var(--line-dark);
}

.why-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}

.why-card__num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--green-ink);
  color: var(--green-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: var(--fw-bold);
  font-size: .9rem;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.section--dark .why-card__num,
.section--deep .why-card__num {
  border-color: var(--green);
  color: var(--green);
}

.why-card__ic {
  color: var(--green-ink);
  display: flex;
}

.why-card__ic .icon {
  width: 22px;
  height: 22px;
}

.section--dark .why-card__ic,
.section--deep .why-card__ic {
  color: var(--green);
}

.why-card h3 {
  font-family: var(--font);
  font-weight: var(--fw-bold);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .015em;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 1.15rem;
}

.section--dark .why-card h3,
.section--deep .why-card h3 {
  color: var(--white);
}

.why-card ul {
  display: grid;
  gap: .7rem;
}

.why-card li {
  position: relative;
  padding-left: 1.35em;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.55;
}

.section--dark .why-card li,
.section--deep .why-card li {
  color: var(--on-dark);
}

.why-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* Alternate Colors: 1, 3, 5 = Green | 2, 4, 6 = White */
.why-grid .why-card:nth-child(odd) {
  background: #093429 !important;
  border-color: rgba(88, 185, 87, .30) !important;
}

.why-grid .why-card:nth-child(odd) .why-card__num {
  border-color: var(--green) !important;
  color: var(--green) !important;
}

.why-grid .why-card:nth-child(odd) .why-card__ic {
  color: var(--green) !important;
}

.why-grid .why-card:nth-child(odd) h3 {
  color: var(--white) !important;
}

.why-grid .why-card:nth-child(odd) li {
  color: var(--on-dark) !important;
}

.why-grid .why-card:nth-child(odd) li::before {
  background: var(--green) !important;
}

.why-grid .why-card:nth-child(odd) .pill-badge {
  border-color: var(--green) !important;
  color: var(--green) !important;
}

.why-grid .why-card:nth-child(even) {
  background: #FFFFFF !important;
  border-color: var(--line) !important;
}

.why-grid .why-card:nth-child(even) .why-card__num {
  border-color: var(--green-ink) !important;
  color: var(--green-ink) !important;
}

.why-grid .why-card:nth-child(even) .why-card__ic {
  color: var(--green-ink) !important;
}

.why-grid .why-card:nth-child(even) h3 {
  color: var(--ink) !important;
}

.why-grid .why-card:nth-child(even) li {
  color: var(--muted) !important;
}

.why-grid .why-card:nth-child(even) li::before {
  background: var(--green-ink) !important;
}


/* ============================================================
   14b  SERVICE TILES — numbered, centered, "read more"
   ============================================================ */
.svc-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width:940px) {
  .svc-tiles {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:620px) {
  .svc-tiles {
    grid-template-columns: 1fr;
  }
}

.svc-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 2.8rem) clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.svc-tile:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: 0 26px 52px -22px rgba(6, 43, 34, .38);
}

.svc-tile__ic {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--deep);
  color: var(--green);
  border: 1px solid var(--green);
  box-shadow: 0 0 0 5px rgba(88, 185, 87, .12);
  margin-bottom: 1.4rem;
  transition: background var(--ease), color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.svc-tile__ic .icon {
  width: 26px;
  height: 26px;
}

.svc-tile:hover .svc-tile__ic {
  background: var(--green);
  color: var(--deep-2);
  box-shadow: 0 0 0 9px rgba(88, 185, 87, .16);
  transform: translateY(-2px);
}

.svc-tile h3 {
  font-family: var(--font);
  font-weight: var(--fw-bold);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--ink);
  margin: 0 0 .7rem;
  transition: color var(--ease);
}

.svc-tile:hover h3 {
  color: var(--green-ink);
}

.svc-tile p {
  color: var(--muted);
  font-size: .92rem;
  margin: 0 0 1.4rem;
  line-height: 1.6;
}

.svc-tile .btn-ghost {
  color: var(--green-ink);
  margin-top: auto;
}

.svc-tile:hover .btn-ghost .icon {
  transform: translateX(4px);
}


/* ============================================================
   15  IMPACT — dramatic numbers + energy line
   ============================================================ */
.impact {
  position: relative;
  overflow: hidden;
}

.impact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

@media (max-width:720px) {
  .impact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.6rem 1.5rem;
  }
}

.impact__item {
  text-align: center;
  padding: 0 .5rem;
}

.impact__item+.impact__item {
  border-left: 1px solid var(--line-dark2);
}

@media (max-width:720px) {
  .impact__item+.impact__item {
    border-left: 0;
  }
}

.impact__num {
  font-family: var(--font);
  font-weight: var(--fw-bold);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
  display: block;
}

.impact__num .u {
  color: var(--green);
  font-size: .44em;
  font-weight: var(--fw-semibold);
  letter-spacing: -.01em;
  margin-left: .12em;
}

.impact__label {
  display: block;
  margin-top: 1rem;
  font-size: .74rem;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--on-dark-dim);
}

.impact__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 180px;
  z-index: 1;
  pointer-events: none;
  opacity: .5;
}

.impact__wave path {
  fill: none;
  stroke: var(--green);
  stroke-width: 1.5;
  stroke-dasharray: 8 10;
  opacity: .6;
}

.impact__wave path:nth-child(2) {
  stroke: var(--gold);
  opacity: .3;
}


/* ============================================================
   15b  GALLERY — varied-size installation grid
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.6rem, 1.4vw, 1rem);
}

@media (max-width:820px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:560px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

.gi {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--cream-dim);
  aspect-ratio: 1/1;
}

/* feature: 2x2 area — height comes from the two stacked tiles it spans,
   so it lines up exactly with the column beside it */
.gi--feature {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

@media (max-width:820px) {
  .gi--feature {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/11;
  }
}

@media (max-width:560px) {
  .gi--feature {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }
}

.gi img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

.gi:hover img {
  transform: scale(1.06);
}

.gi::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(3, 28, 23, .72) 0%, transparent 42%);
  opacity: 0;
  transition: opacity var(--ease);
}

.gi:hover::after {
  opacity: 1;
}

.gi__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.4rem 1.3rem 1.1rem;
  color: var(--white);
  font-family: var(--font);
  font-weight: var(--fw-semibold);
  font-size: .72rem;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--ease), transform var(--ease);
}

.gi__cap span {
  display: block;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--on-dark);
  margin-top: .3em;
  font-size: .66rem;
}

.gi:hover .gi__cap {
  opacity: 1;
  transform: none;
}

.gallery-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.4rem;
  padding-top: 2rem;
}

.gallery-cta .btn {
  font-size: 0.95rem;
}


/* ============================================================
   16  CLOSING CTA
   ============================================================ */
.closing-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.closing-cta__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.closing-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.closing-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(3, 28, 23, .78), rgba(3, 28, 23, .92));
}

.closing-cta .wrap {
  position: relative;
  z-index: 2;
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
  padding-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
  text-align: center;
}

.closing-cta h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: var(--fw-bold);
  letter-spacing: var(--track-tight);
  color: var(--white);
  margin: 0 auto .9rem;
  max-width: 18ch;
  line-height: 1.1;
}

.closing-cta p {
  color: var(--on-dark);
  margin: 0 auto 2.4rem;
  max-width: 48ch;
}

.closing-cta .btn-green {
  background: var(--green);
  border-color: var(--green);
  color: var(--deep-2);
}

.closing-cta .btn-green:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--deep-2);
}

/* ---------- Project gallery lightbox ---------- */
.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 12, 9, .88);
  backdrop-filter: blur(4px);
}

.lightbox__box {
  position: relative;
  z-index: 1;
  width: min(92vw, 1080px);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox__figure {
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.lightbox__figure img {
  max-width: 100%;
  max-height: 74vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .4);
}

.lightbox__figure figcaption {
  color: var(--on-dark);
  font-size: .85rem;
  text-align: center;
  max-width: 64ch;
}

.lightbox__close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(248, 247, 242, .1);
  border: 1px solid rgba(248, 247, 242, .25);
  color: var(--white);
  cursor: pointer;
  transition: background var(--ease);
}

.lightbox__close:hover {
  background: rgba(248, 247, 242, .22);
}

.lightbox__close svg {
  width: 18px;
  height: 18px;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(248, 247, 242, .1);
  border: 1px solid rgba(248, 247, 242, .25);
  color: var(--white);
  cursor: pointer;
  transition: background var(--ease);
}

.lightbox__nav:hover {
  background: rgba(248, 247, 242, .22);
}

.lightbox__nav svg {
  width: 20px;
  height: 20px;
}

.lightbox__nav--prev {
  left: -1rem;
}

.lightbox__nav--next {
  right: -1rem;
}

.lightbox__count {
  margin-top: .75rem;
  color: var(--on-dark-dim);
  font-size: .8rem;
  letter-spacing: .04em;
}

@media (max-width:760px) {
  .lightbox__box {
    width: 94vw;
  }

  .lightbox__nav {
    width: 38px;
    height: 38px;
  }

  .lightbox__nav--prev {
    left: -.25rem;
  }

  .lightbox__nav--next {
    right: -.25rem;
  }

  .lightbox__close {
    top: -2.75rem;
    right: -.25rem;
  }
}


/* ============================================================
   17  VISION / MISSION + generic cards
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.4rem, 3vw, 2rem);
}

@media (max-width:760px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  transition: border-color var(--ease), transform var(--ease);
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--green);
}

.card h3 {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: var(--fw-bold);
  letter-spacing: var(--track-snug);
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.section--dark .card,
.section--deep .card {
  background: var(--emerald);
  border-color: var(--line-dark);
}

.section--dark .card h3,
.section--deep .card h3 {
  color: var(--white);
}

.section--dark .card p,
.section--deep .card p {
  color: var(--on-dark);
}

.card__ic {
  width: 34px;
  height: 34px;
  color: var(--green-ink);
  margin-bottom: 1.4rem;
}

.card__ic .icon {
  width: 100%;
  height: 100%;
}

.section--dark .card__ic,
.section--deep .card__ic {
  color: var(--green);
}


/* ============================================================
   18  NUMBERED RULE LIST ("What we do")
   ============================================================ */
.rule-list {
  border-top: 1px solid var(--line);
}

.section--dark .rule-list,
.section--deep .rule-list {
  border-color: var(--line-dark2);
}

.rule-list__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.section--dark .rule-list__item,
.section--deep .rule-list__item {
  border-color: var(--line-dark2);
}

@media (max-width:640px) {
  .rule-list__item {
    grid-template-columns: 1fr;
    gap: .5rem;
  }
}

.rule-list__num {
  font-family: var(--font);
  font-weight: var(--fw-bold);
  font-size: .85rem;
  letter-spacing: var(--track-label);
  color: var(--green-ink);
  font-variant-numeric: tabular-nums;
}

.section--dark .rule-list__num,
.section--deep .rule-list__num {
  color: var(--green);
}

.rule-list__item h3 {
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  letter-spacing: var(--track-snug);
  margin: 0 0 .4rem;
}

.rule-list__item p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.6;
}


/* ============================================================
   19  MEDIA BAND
   ============================================================ */
.media-band {
  width: 100%;
  height: clamp(280px, 44vw, 520px);
}

.media-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ============================================================
   20  SERVICES — tabs / sector sub-tabs
   ============================================================ */
.sub-tab-row {
  display: flex;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}

.sub-tab-btn {
  background: none;
  border: 1px solid var(--line);
  padding: .7em 1.3em;
  font-family: var(--font);
  font-size: .76rem;
  font-weight: var(--fw-semibold);
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  color: var(--muted);
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}

.sub-tab-btn.active,
.sub-tab-btn:hover {
  background: var(--deep);
  border-color: var(--deep);
  color: var(--white);
}

.sub-panel {
  display: none;
}

.sub-panel.active {
  display: block;
}

.sub-panel .card h5 {
  font-family: var(--font);
  font-weight: var(--fw-semibold);
  font-size: .72rem;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--gold-dp);
  margin: 1.6rem 0 .8rem;
}

.sub-panel .card ul {
  display: grid;
  gap: .5rem;
}

.sub-panel .card li {
  position: relative;
  padding-left: 1.3em;
  font-size: .92rem;
  color: var(--muted);
}

.sub-panel .card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 6px;
  height: 1px;
  background: var(--green);
}

.sector-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: stretch;
}

@media (max-width:820px) {
  .sector-card {
    grid-template-columns: 1fr;
  }
}

.sector-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sector-card__content .btn {
  align-self: flex-start;
  margin-top: .5rem;
}

.sector-card__media {
  position: relative;
  width: 100%;
  min-height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px -8px rgba(6, 43, 34, 0.15);
  background: var(--deep-2);
}

@media (max-width:820px) {
  .sector-card__media {
    aspect-ratio: 16 / 8;
    max-height: 200px;
  }
}

.sector-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  transform-origin: center center;
}

/* ---------- Project gallery — inline sector photo grid ---------- */
.sector-gallery__head {
  max-width: 70ch;
  margin: 0 0 1.5rem;
}

.sector-gallery__head h3 {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: var(--fw-bold);
  letter-spacing: var(--track-snug);
  margin: 0 0 .5rem;
}

.sector-gallery__head p {
  color: var(--muted);
  margin: 0;
}

.sector-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 240px));
  gap: 1rem;
}

.sector-gallery__item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--deep-2);
  cursor: pointer;
  transition: transform var(--ease), border-color var(--ease);
}

.sector-gallery__item:hover {
  transform: translateY(-3px);
  border-color: var(--green);
}

.sector-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--ease);
}

.sector-gallery__item:hover img {
  transform: scale(1.06);
}


/* ============================================================
   21  FAQ
   ============================================================ */
.faq-list {
  border-top: 1px solid var(--line);
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.8rem 0;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--track-snug);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  color: var(--ink);
  transition: color var(--ease);
}

.faq-q:hover {
  color: var(--green-ink);
}

.faq-q .plus {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: .35em;
  transition: transform var(--ease);
  color: var(--green-ink);
}

.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1.5px;
  background: currentColor;
  transform: translateY(-50%);
}

.faq-q .plus::after {
  transform: translateY(-50%) rotate(90deg);
  transition: opacity var(--ease);
}

.faq-item.open .faq-q .plus {
  transform: rotate(180deg);
}

.faq-item.open .faq-q .plus::after {
  opacity: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}

.faq-a p {
  padding: 0 0 1.8rem;
  margin: 0;
  max-width: 74ch;
  color: var(--muted);
}


/* ============================================================
   22  CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: stretch;
}

.contact-grid>div:first-child {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.contact-grid>div:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-deep) 55%, var(--gold) 100%);
}

.contact-grid>div:first-child .eyebrow {
  color: var(--green-ink);
}

.contact-grid>div:first-child h2 {
  color: var(--ink);
  margin: 0;
}

@media (min-width:901px) {
  .apply-grid {
    grid-template-columns: 1.35fr 0.85fr;
  }
}

@media (max-width:900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-grid>div:first-child {
    margin-bottom: 1rem;
  }
}

.contact-info-list {
  display: grid;
  gap: 0;
}

.contact-info-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left var(--ease);
}

.contact-info-list li:first-child {
  padding-top: 0;
}

.contact-info-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.contact-info-list li:hover {
  padding-left: .4rem;
}

.contact-info-list .ic {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(150deg, var(--cream) 0%, var(--cream-dim) 100%);
  color: var(--green-deep);
  box-shadow: var(--shadow-soft);
  transition: background var(--ease), color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.contact-info-list .ic .icon {
  width: 19px;
  height: 19px;
}

.contact-info-list li:hover .ic {
  background: linear-gradient(150deg, var(--green) 0%, var(--green-deep) 100%);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 12px 26px -10px rgba(47, 125, 58, .5);
}

.contact-info-list strong {
  display: block;
  font-family: var(--font);
  font-weight: var(--fw-semibold);
  font-size: .74rem;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--green-ink);
  margin-bottom: .45em;
}

.contact-info-list span {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
}

.contact-info-list a {
  font-weight: var(--fw-semibold);
  transition: color var(--ease);
}

.contact-info-list a:hover {
  color: var(--green-deep);
}

form.enquiry {
  display: grid;
  gap: 1.2rem;
}

.enquiry .row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

@media (max-width:520px) {
  .enquiry .row2 {
    grid-template-columns: 1fr;
  }
}

.enquiry label {
  font-size: .72rem;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  display: block;
  margin-bottom: .6em;
  color: var(--gold);
}

.enquiry input,
.enquiry select,
.enquiry textarea {
  width: 100%;
  padding: 1em 1.1em;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: var(--font);
  font-weight: var(--fw-regular);
  font-size: 1rem;
  letter-spacing: -.003em;
  color: var(--ink);
  border-radius: var(--radius);
  transition: border-color var(--ease), background var(--ease);
}

.enquiry select option {
  color: var(--ink);
}

.enquiry input::placeholder,
.enquiry textarea::placeholder {
  color: var(--muted);
}

.enquiry input:focus,
.enquiry select:focus,
.enquiry textarea:focus {
  border-color: var(--green);
  outline: none;
  background: var(--cream);
}

.enquiry textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  font-size: .9rem;
  color: var(--green);
  margin: 0;
}

.map-box {
  margin-top: 2.6rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  aspect-ratio: 16/7;
  background: var(--emerald);
  overflow: hidden;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.map-box svg {
  width: 100%;
  height: 100%;
  display: block;
}


/* ============================================================
   23  MOTIF BACKGROUNDS
   ============================================================ */
.grid-motif {
  background-image: radial-gradient(circle at 12% 12%, rgba(88, 185, 87, .06), transparent 42%);
}

.grid-motif--dark {
  background-image: radial-gradient(circle at 84% 10%, rgba(88, 185, 87, .08), transparent 46%);
}


/* ============================================================
   24  404 PAGE
   ============================================================ */
.error-page {
  min-height: 64vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.error-page .wrap {
  margin-inline: auto;
}

.error-page .code {
  font-family: var(--font);
  font-weight: var(--fw-black);
  font-size: clamp(4.5rem, 15vw, 9rem);
  letter-spacing: -.04em;
  color: var(--green-ink);
  line-height: 1;
}

.error-page h1 {
  margin-top: .15em;
}

.error-page p {
  margin: 0 auto;
}

.error-page .btn {
  margin-top: 1.8rem;
}


/* ============================================================
   25  SERVICES — "THE ENERGY NETWORK" map   [PRESERVED — palette refreshed]
   ============================================================ */
.network-section {
  /* ivory breathing room between the hero and this dark section */
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  background: var(--deep);
  color: var(--white);
  background-image:
    linear-gradient(rgba(199, 163, 74, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 163, 74, .045) 1px, transparent 1px),
    radial-gradient(circle at 82% 8%, rgba(88, 185, 87, .07), transparent 45%);
  background-size: 46px 46px, 46px 46px, 100% 100%;
}

.network-section .section-head h2 {
  color: var(--white);
}

.network-section .section-head p {
  color: var(--on-dark);
  background: none;
  padding: 0;
}

.energy-map {
  position: relative;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 3vw, 2rem);
  background: linear-gradient(180deg, rgba(12, 49, 40, .4), rgba(3, 28, 23, .4));
}

.energy-map__tag {
  position: absolute;
  font-family: var(--font);
  font-weight: var(--fw-semibold);
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
}

.energy-map__tag--tl {
  top: .7rem;
  left: .9rem;
}

.energy-map__tag--tr {
  top: .7rem;
  right: .9rem;
}

.energy-map__tag--bl {
  bottom: .7rem;
  left: .9rem;
  color: var(--gold);
}

.energy-map__tag--br {
  bottom: .7rem;
  right: .9rem;
}

@media (max-width:900px) {
  .energy-map__tag--br {
    display: none;
  }
}

@media (max-width:820px) {
  .energy-map__tag {
    display: none;
  }
}

.energy-map__svg {
  width: 100%;
  height: auto;
  display: block;
  margin: .6rem 0;
  overflow: visible;
}

@media (max-width:820px) {
  .energy-map__svg {
    display: none;
  }

  .energy-map {
    padding: 1.4rem 1.2rem;
  }
}

.energy-map__hint {
  text-align: center;
  color: var(--on-dark-dim);
  font-size: .82rem;
  margin: .6rem 0 0;
}

.emap-bone {
  stroke: rgba(199, 163, 74, .45);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  transition: stroke-dashoffset 1s cubic-bezier(.4, 0, .2, 1);
}

.emap-stem {
  stroke: rgba(199, 163, 74, .35);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
  transition: stroke-dashoffset .55s ease .5s, stroke .2s ease;
}

.energy-map.is-live .emap-bone {
  stroke-dashoffset: 0;
}

.energy-map.is-live .emap-stem {
  stroke-dashoffset: 0;
}

.emap-node:hover .emap-stem,
.emap-node:focus-visible .emap-stem {
  stroke: var(--green);
}

.emap-pulse {
  stroke: var(--green);
  stroke-width: 2;
  fill: none;
  opacity: 0;
  stroke-dasharray: 5 250;
  stroke-linecap: round;
}

.energy-map.is-live .emap-pulse {
  opacity: .55;
  animation: emap-flow 2.4s linear infinite;
}

@keyframes emap-flow {
  to {
    stroke-dashoffset: -255;
  }
}

.emap-core__halo {
  fill: none;
  stroke: var(--green);
  stroke-width: 1;
  opacity: 0;
}

.energy-map.is-live .emap-core__halo {
  opacity: .5;
  animation: emap-halo 3s ease-in-out infinite;
}

@keyframes emap-halo {

  0%,
  100% {
    opacity: .15;
    r: 22;
  }

  50% {
    opacity: .5;
    r: 28;
  }
}

.emap-core__disc {
  fill: var(--green);
}

.emap-core__rays line {
  stroke: var(--gold);
  stroke-width: 2;
}

.emap-node {
  cursor: pointer;
  opacity: 0;
}

.energy-map.is-live .emap-node {
  opacity: 1;
  transition: opacity .5s ease .55s;
}

.emap-node__hit {
  fill: transparent;
}

.emap-node__dot {
  fill: var(--green);
  r: 5;
  transition: r .2s ease, fill .2s ease, filter .2s ease;
}

.emap-node__label {
  fill: var(--on-dark);
  font-family: var(--font);
  font-weight: var(--fw-medium);
  font-size: 15px;
  transition: fill .2s ease;
}

.emap-node:hover .emap-node__dot,
.emap-node:focus-visible .emap-node__dot {
  r: 8;
  filter: drop-shadow(0 0 5px var(--green));
}

.emap-node:hover .emap-node__label,
.emap-node:focus-visible .emap-node__label {
  fill: var(--white);
}

.emap-node:focus {
  outline: none;
}

.energy-stack {
  display: none;
}

@media (max-width:820px) {
  .energy-stack {
    display: grid;
    gap: 1.6rem;
    margin: .4rem 0 0;
  }
}

.energy-stack__col {
  position: relative;
  padding-left: 1.4rem;
}

.energy-stack__col::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 1.4rem;
  bottom: .6rem;
  width: 1px;
  background: rgba(199, 163, 74, .3);
}

.energy-stack__head {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: var(--green);
  font-family: var(--font);
  font-weight: var(--fw-bold);
  letter-spacing: var(--track-snug);
  font-size: 1.05rem;
  padding: .2rem 0 .8rem;
  margin-left: -1.4rem;
}

.energy-stack__head span {
  display: inline-block;
  width: 1.4rem;
  color: var(--gold);
  font-size: .8rem;
  font-weight: var(--fw-semibold);
}

.energy-stack__node {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: var(--on-dark);
  font-family: var(--font);
  font-size: .95rem;
  padding: .65rem 0 .65rem .2rem;
  border-bottom: 1px solid var(--line-dark2);
}

.energy-stack__node::before {
  content: "";
  position: absolute;
  left: -1.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.energy-stack__node:hover,
.energy-stack__node:focus-visible {
  color: var(--white);
}


/* ============================================================
   26  SERVICES — six core solutions   [PRESERVED — polish]
   ============================================================ */
.svc__lead {
  color: var(--muted);
}

.svc__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 1.6rem;
  margin: 0.6rem 0;
}

@media (max-width:640px) {
  .svc__cols {
    grid-template-columns: 1fr;
  }
}

.svc__body h4 {
  font-family: var(--font);
  font-weight: var(--fw-semibold);
  font-size: .72rem;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--gold-dp);
  margin: .4em 0 .3em;
}

.svc__body ul {
  counter-reset: benefit-step;
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: .55em;
}

.svc__body ul li {
  position: relative;
  padding-left: 2.1em;
  font-size: .92rem;
  color: var(--muted);
}

.svc__body ul li::before {
  counter-increment: benefit-step;
  content: counter(benefit-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font);
  font-weight: var(--fw-bold);
  font-size: .75rem;
  color: var(--green-ink);
  font-variant-numeric: tabular-nums;
}

.svc__body ol {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: .55em;
}

.svc__body ol li {
  position: relative;
  padding-left: 2.1em;
  font-size: .92rem;
  color: var(--muted);
}

.svc__body ol li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font);
  font-weight: var(--fw-bold);
  font-size: .75rem;
  color: var(--green-ink);
  font-variant-numeric: tabular-nums;
}

.svc__body>h4+p {
  color: var(--muted);
  font-size: .92rem;
}

.svc__body .btn-ghost {
  margin-top: 1.6rem;
}

.svc-index .section-head {
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.svc-full {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 2.2rem);
  align-items: stretch;
  padding: clamp(0.4rem, 1vw, 0.75rem) 0;
  border-top: 1px solid var(--line);
}

.svc-full:last-child {
  border-bottom: 1px solid var(--line);
}

.svc-full:nth-of-type(even) .svc-full__media {
  order: 2;
}

@media (max-width:860px) {
  .svc-full {
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
  }

  .svc-full:nth-of-type(even) .svc-full__media {
    order: 0;
  }
}

.svc-full__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream);
  min-height: 0;
}

.svc-full__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width:860px) {
  .svc-full__media {
    aspect-ratio: 16/9;
    max-height: 220px;
    min-height: 0;
  }
}

.svc-full__main {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.svc-full__no {
  font-family: var(--font);
  font-weight: var(--fw-bold);
  font-size: .75rem;
  color: var(--green-ink);
  letter-spacing: var(--track-label);
  font-variant-numeric: tabular-nums;
  margin-bottom: .2rem;
}

.svc-full__main h3.svc__name {
  font-family: var(--font);
  font-weight: var(--fw-bold);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  letter-spacing: var(--track-tight);
  margin: 0 0 .4rem;
}

.svc-full .svc__body {
  max-width: 62ch;
}

.svc-full .svc__lead {
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: .92rem;
  line-height: 1.5;
}

.svc-full.is-flash {
  animation: svc-flash 1.6s ease;
}

@keyframes svc-flash {

  0%,
  100% {
    background: transparent;
  }

  22% {
    background: rgba(88, 185, 87, .10);
  }
}


/* ============================================================
   26b  PROJECTS PAGE — credentials row, project collages, work grid
   ============================================================ */
.cred-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid var(--line);
  padding-top: clamp(1.4rem, 3vw, 2rem);
}

@media (max-width:760px) {
  .cred-row {
    grid-template-columns: 1fr 1fr;
  }
}

.cred {
  display: block;
  text-decoration: none;
  transition: transform var(--ease);
}

.cred:hover {
  transform: translateY(-3px);
}

.cred strong {
  display: block;
  font-weight: var(--fw-bold);
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: var(--track-snug);
  margin-bottom: .3rem;
  transition: color var(--ease);
}

.cred:hover strong {
  color: var(--green-ink);
}

.cred span {
  font-size: .88rem;
  color: var(--muted);
}

.project {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.8rem);
  align-items: center;
  padding: clamp(1.5rem, 2.5vw, 2.4rem) 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 110px; /* clears the sticky header when jumped to via #anchor */
}

.project:last-of-type {
  border-bottom: 1px solid var(--line);
}

/* even rows flip the image to the right — the column *sizing* has to flip
   with it (not just visual order), or the image lands in the narrow track
   and renders noticeably smaller than on odd rows */
.project:nth-of-type(even) {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
}

.project:nth-of-type(even) .pcollage {
  order: 2;
}

@media (max-width:860px) {
  .project {
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
  }

  .project:nth-of-type(even) {
    grid-template-columns: 1fr;
  }

  .project:nth-of-type(even) .pcollage {
    order: 0;
  }
}

.pcollage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream-dim);
}

.pcollage img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
  transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

.pcollage img:first-child {
  grid-column: 1 / span 2;
  max-height: 560px;
  aspect-ratio: 1.6 / 1;
}

.project:hover .pcollage img {
  transform: scale(1.04);
}

/* Single-image collage variant (Apollo, Commercial Complex) */
.pcollage--single {
  grid-template-columns: 1fr;
}

.pcollage--single img {
  max-height: 640px;
  aspect-ratio: 16 / 10;
  grid-column: 1;
}

.project__body .eyebrow {
  margin-bottom: .4em;
}

.project__body h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: var(--fw-bold);
  letter-spacing: var(--track-tight);
  margin: 0 0 .4rem;
}

.project__body p {
  color: var(--muted);
  margin: 0;
  font-size: .92rem;
  line-height: 1.5;
}

.section--tint .project__body p {
  color: var(--muted);
}

.project__meta {
  display: grid;
  gap: .35rem;
  margin-top: .6rem;
  padding-top: .5rem;
  border-top: 1px solid var(--line);
}

.project__meta li {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: .8rem;
  align-items: baseline;
}

.project__meta li span {
  font-size: .68rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--track-label);
  color: var(--gold-dp);
}

.project__meta li em {
  font-style: normal;
  font-size: .88rem;
  color: var(--ink);
}

.project__cta {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: .8rem;
  flex-wrap: wrap;
}

@media (max-width:460px) {
  .project__meta li {
    grid-template-columns: 1fr;
    gap: .15rem;
  }
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.8rem, 1.5vw, 1.2rem);
}

@media (max-width:640px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}

.work-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  aspect-ratio: 16 / 5.5;
}

.work-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

.work-tile:hover img {
  transform: scale(1.05);
}

.work-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 2rem 1.4rem 1.1rem;
  color: var(--white);
  background: linear-gradient(0deg, rgba(3, 28, 23, .9) 0%, transparent 100%);
}

.work-tile figcaption strong {
  display: block;
  font-weight: var(--fw-bold);
  font-size: 1.05rem;
  letter-spacing: var(--track-snug);
  margin-bottom: .25rem;
}

.work-tile figcaption span {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: var(--track-label);
  color: var(--on-dark);
}


/* ============================================================
   27  SCROLL REVEAL + COUNT-UP
   Progressive enhancement: content is visible without JS.
   .has-reveal is added to <html> by main.js.
   ============================================================ */
.has-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
}

.has-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}


/* ============================================================
   29  RICH HOVERS — a distinct motion signature per section
   ============================================================ */
@keyframes rh-spin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes rh-arrow-loop {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  42% {
    transform: translateX(10px);
    opacity: 0;
  }

  58% {
    transform: translateX(-10px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes rh-pop {

  0%,
  100% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.25);
  }
}

[data-tilt],
[data-magnetic] {
  --rx: 0deg;
  --ry: 0deg;
  --px: 0px;
  --py: 0px;
  --mx: 50%;
  --my: 50%;
}

/* ---- 1 · WHY CHOOSE US — cursor-driven 3D tilt + glare + coin-flip badge ---- */
.why-grid {
  perspective: 1500px;
}

.why-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1), box-shadow .6s ease, border-color .4s ease;
}

.why-card.is-tilting {
  transition: transform .12s linear, box-shadow .3s ease, border-color .3s ease;
}

.why-card:hover,
.why-card.is-tilting {
  box-shadow: 0 36px 74px -28px rgba(6, 43, 34, .42);
  border-color: var(--green);
  transform: translateY(-6px);
}

.why-card.is-tilting {
  transform: rotateX(var(--rx)) rotateY(var(--ry)) translateY(-6px);
}

.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 4;
  pointer-events: none;
  background: radial-gradient(260px circle at var(--mx) var(--my), rgba(88, 185, 87, .20), transparent 60%);
  opacity: 0;
  transition: opacity .45s ease;
}

.why-card:hover::after,
.why-card.is-tilting::after {
  opacity: 1;
}

.why-card__num {
  transition: transform .7s cubic-bezier(.6, 0, .2, 1), border-color .4s, color .4s, background .4s;
}

.why-card:hover .why-card__num,
.why-card.is-tilting .why-card__num {
  transform: rotateY(360deg);
  background: var(--green);
  border-color: var(--green);
  color: var(--deep-2);
}

/* the alternating odd/even card variants pin the badge's resting
   color with !important — without an equally-specific override here,
   the number stays green-on-green (invisible) once the badge fills
   green on hover */
.why-grid .why-card:nth-child(odd):hover .why-card__num,
.why-grid .why-card:nth-child(odd).is-tilting .why-card__num,
.why-grid .why-card:nth-child(even):hover .why-card__num,
.why-grid .why-card:nth-child(even).is-tilting .why-card__num {
  color: var(--deep-2) !important;
}

.why-card__ic {
  transition: transform .55s cubic-bezier(.34, 1.56, .64, 1), color .4s;
}

.why-card:hover .why-card__ic,
.why-card.is-tilting .why-card__ic {
  transform: scale(1.28) rotate(-10deg);
  color: var(--green);
}

.why-card h3,
.why-card ul {
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

.why-card.is-tilting h3 {
  transform: translateZ(30px);
}

.why-card.is-tilting ul {
  transform: translateZ(16px);
}

/* ---- 2 · SIX CORE SOLUTIONS — magnetic pull + orbiting ring + badge morph ---- */
.svc-tiles {
  perspective: 1000px;
}

.svc-tile {
  transition: transform .5s cubic-bezier(.34, 1.4, .6, 1), box-shadow .5s ease, border-color .4s ease;
  will-change: transform;
}

.svc-tile.is-mag {
  transition: transform .18s ease-out, box-shadow .4s ease, border-color .4s ease;
}

.svc-tile:hover,
.svc-tile.is-mag {
  transform: translate(var(--px), calc(var(--py) - 8px));
  box-shadow: 0 30px 60px -24px rgba(6, 43, 34, .4);
  border-color: var(--green);
}

.svc-tile__ic {
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.svc-tile__ic::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  z-index: -1;
  background: conic-gradient(from 0deg, transparent 0deg, var(--green) 90deg, transparent 200deg, var(--green) 300deg, transparent 360deg);
  opacity: 0;
  transition: opacity .4s ease;
}

.svc-tile:hover .svc-tile__ic,
.svc-tile.is-mag .svc-tile__ic {
  background: var(--green);
  color: var(--deep-2);
  box-shadow: none;
  transform: translateY(-3px) scale(1.06);
}

.svc-tile:hover .svc-tile__ic::after,
.svc-tile.is-mag .svc-tile__ic::after {
  opacity: .85;
  animation: rh-spin 2.6s linear infinite;
}

.svc-tile:hover .svc-tile__ic .icon {
  animation: rh-pop .5s ease;
}

.svc-tile .btn-ghost .icon {
  transition: transform .4s ease;
}

.svc-tile:hover .btn-ghost .icon {
  animation: rh-arrow-loop .55s ease .05s;
}

/* ---- 3 · GALLERY — cinematic zoom + diagonal light sweep + inset frame ---- */
.gi {
  isolation: isolate;
}

.gi::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .28), transparent);
  transform: skewX(-18deg);
  transition: left .8s cubic-bezier(.22, 1, .36, 1);
}

.gi:hover::before {
  left: 130%;
}

.gi__frame {
  position: absolute;
  inset: 12px;
  z-index: 2;
  pointer-events: none;
  border-radius: calc(var(--radius-lg) - 4px);
  border: 1px solid rgba(245, 240, 228, .6);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .5s ease, transform .5s cubic-bezier(.22, 1, .36, 1);
}

.gi:hover .gi__frame {
  opacity: 1;
  transform: scale(1);
}

.gi:hover img {
  transform: scale(1.09);
}

.gi__cap {
  transition: opacity .45s ease, transform .5s cubic-bezier(.22, 1, .36, 1);
}

.gi__cap span {
  transition: opacity .45s ease .08s, transform .5s cubic-bezier(.22, 1, .36, 1) .08s;
  opacity: 0;
  transform: translateY(8px);
}

.gi:hover .gi__cap span {
  opacity: 1;
  transform: none;
}

/* ---- 4 · VISION / MISSION cards — corner brackets draw + icon float ---- */
.two-col .card {
  position: relative;
  overflow: hidden;
  transition: transform .5s cubic-bezier(.22, 1, .36, 1), border-color .4s, box-shadow .5s,
    background-color .4s ease, color .4s ease;
}

.two-col .card::before,
.two-col .card::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
  border: 2px solid var(--green);
  opacity: 0;
  transition: opacity .4s ease, inset .5s cubic-bezier(.22, 1, .36, 1);
}

.two-col .card::before {
  top: 14px;
  left: 14px;
  border-right: 0;
  border-bottom: 0;
}

.two-col .card::after {
  bottom: 14px;
  right: 14px;
  border-left: 0;
  border-top: 0;
}

.two-col .card:hover {
  transform: translateY(-4px);
}

.two-col .card:hover::before {
  opacity: 1;
  top: 10px;
  left: 10px;
}

.two-col .card:hover::after {
  opacity: 1;
  bottom: 10px;
  right: 10px;
}

.card__ic {
  transition: transform .55s cubic-bezier(.34, 1.56, .64, 1), color .4s;
}

.two-col .card:hover .card__ic {
  transform: translateY(-6px) scale(1.12);
}

/* Vision & Mission: Alternating background colors (1 = White, 2 = Green) */
.vm-grid .card:nth-child(odd) {
  background: #FFFFFF !important;
  border: 1px solid var(--line) !important;
}

.vm-grid .card:nth-child(odd) h3 {
  color: var(--ink) !important;
}

.vm-grid .card:nth-child(odd) p {
  color: var(--muted) !important;
}

.vm-grid .card:nth-child(odd) .card__ic {
  color: var(--green-ink) !important;
}

.vm-grid .card:nth-child(even) {
  background: #093429 !important;
  border: 1px solid rgba(88, 185, 87, .30) !important;
}

.vm-grid .card:nth-child(even) h3 {
  color: var(--white) !important;
}

.vm-grid .card:nth-child(even) p {
  color: var(--on-dark) !important;
}

.vm-grid .card:nth-child(even) .card__ic {
  color: var(--green) !important;
}

/* Simple hover effect for Vision & Mission cards */
.vm-grid .card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.vm-grid .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px -12px rgba(6, 43, 34, 0.25);
  border-color: var(--green) !important;
}

/* ---- 5 · OUR SOLUTIONS row — bg wash rises + icon lifts ---- */
.solution {
  overflow: hidden;
}

.solution::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(88, 185, 87, .10), transparent);
  transition: height .5s cubic-bezier(.22, 1, .36, 1);
}

.solution:hover::after {
  height: 100%;
}

.solution>* {
  position: relative;
  z-index: 1;
}

.solution__ic {
  transition: transform .5s cubic-bezier(.34, 1.56, .64, 1);
}

.solution:hover .solution__ic {
  transform: translateY(-5px) scale(1.1);
}

.solution:hover h3 {
  color: var(--green);
  transition: color .35s;
}

/* ---- 6 · BUTTONS — fill sweeps up + arrow loops ---- */
.btn {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateY(101%);
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

.btn-green::before {
  background: var(--green-ink);
}

.btn-primary::before {
  background: var(--green-deep);
}

.btn:hover::before {
  transform: translateY(0);
}

.btn-primary:hover {
  color: var(--white);
}

.btn:hover .icon {
  animation: rh-arrow-loop .6s ease;
}

/* ---- 7 · GHOST LINKS — underline wipes L→R, arrow travels ---- */
.btn-ghost::after {
  left: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
}

.btn-ghost:hover::after {
  transform: scaleX(1);
}

.btn-ghost {
  transition: letter-spacing .4s ease;
}

.btn-ghost:hover {
  letter-spacing: .12em;
}

.btn-ghost:hover .icon {
  animation: rh-arrow-loop .55s ease;
}

/* ---- 8 · NAV LINKS — text lifts + brightens, underline grows from centre ---- */
.nav-links a::after {
  transform-origin: center;
}

.nav-links a>span {
  display: inline-block;
  transition: transform .4s cubic-bezier(.34, 1.4, .6, 1), color .3s ease, letter-spacing .4s ease;
}

.nav-links a:hover>span {
  transform: translateY(-3px);
  color: var(--green);
  letter-spacing: .06em;
}

@media (max-width:980px) {
  .nav-links a:hover>span {
    transform: translateX(4px);
  }
}

/* ---- 9 · FAQ — accent bar grows, question travels, plus pulses ---- */
.faq-item {
  position: relative;
  transition: padding-left .4s cubic-bezier(.22, 1, .36, 1);
}

.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14%;
  bottom: 14%;
  width: 2px;
  background: var(--green);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

.faq-item:hover {
  padding-left: 14px;
}

.faq-item:hover::before {
  transform: scaleY(1);
}

.faq-q {
  transition: color var(--ease);
}

.faq-q .plus {
  transition: transform var(--ease);
}

.faq-item:hover .faq-q .plus:not(.faq-item.open .faq-q .plus) {
  transform: scale(1.25);
}

/* ---- 10 · FOOTER LINKS — arrow draws in ---- */
.footer-top ul li a {
  position: relative;
  padding-left: 0 !important;
}

.footer-top ul li a::before {
  content: "\2192";
  position: absolute;
  left: -1.1em;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .35s ease, transform .35s cubic-bezier(.22, 1, .36, 1);
}

.footer-top ul li a:hover {
  padding-left: 1.2em !important;
  color: var(--green);
}

.footer-top ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
  left: .1em;
}

/* ---- 11 · SOCIAL ICONS — spin + fill ---- */
.social-row a {
  overflow: hidden;
}

.social-row a .icon {
  transition: transform .5s cubic-bezier(.34, 1.56, .64, 1);
  position: relative;
  z-index: 1;
}

.social-row a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green);
  border-radius: 50%;
  transform: scale(0);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}

.social-row a:hover::before {
  transform: scale(1);
}

.social-row a:hover .icon {
  transform: rotate(360deg);
}

.social-row a:hover {
  border-color: var(--green);
  color: var(--deep-2);
}

/* ---- 12 · CONTACT INFO — icon spins + fills, text nudges ---- */
.contact-info-list li {
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}

.contact-info-list li:hover {
  transform: translateX(6px);
}

.contact-info-list .ic {
  transition: background .4s, color .4s, transform .55s cubic-bezier(.34, 1.56, .64, 1);
}

.contact-info-list li:hover .ic {
  background: var(--green);
  color: var(--deep-2);
  border-color: var(--green);
  transform: rotate(360deg);
}

/* ---- 13 · SECTOR SUB-TABS — fill rises from bottom ---- */
.sub-tab-btn {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.sub-tab-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--deep);
  transform: translateY(101%);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}

.sub-tab-btn:hover::before,
.sub-tab-btn.active::before {
  transform: translateY(0);
}

/* ---- 14 · SERVICES detail — image zooms, ghost link glides ---- */
.svc-full__media {
  overflow: hidden;
}

.svc-full__media img {
  transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

.svc-full:hover .svc-full__media img {
  transform: scale(1.06);
}

/* ============================================================
   28  OUR PROCESS — rotating engineering dial
   A large circular interface, mostly off-screen to the right,
   synced to a scroll-scrubbed turbine frame sequence on the left.
   ============================================================ */
.pdial-intro .section-head h2 em {
  font-style: normal;
  color: var(--green-ink);
}

.pdial-stage { position: relative; height: 300vh; }

.pdial-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: #05100e;
}

.pdial-pin canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transition: opacity .9s ease;
}

.pdial-pin canvas.is-primed { opacity: 1; }

.pdial-pin::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,12,10,.15) 0%, rgba(3,12,10,0) 32%, rgba(3,12,10,.25) 100%);
  pointer-events: none;
  z-index: 1;
}

.dial__scrim {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: clamp(360px, 38vw, 560px);
  background: linear-gradient(90deg, rgba(4,15,12,0) 0%, rgba(4,15,12,.55) 42%, rgba(4,15,12,.72) 100%);
  pointer-events: none;
}

.dial-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.dial {
  position: relative;
  width: clamp(760px, 82vw, 1240px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translateX(58%);
  background: radial-gradient(circle at 27% 44%, #17392f 0%, #0a231c 52%, #041210 100%);
  box-shadow: -70px 0 170px -60px rgba(0,0,0,.6);
}

.dial__clip {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
}

.dial__rings { position: absolute; inset: 0; }
.dial__rings svg { width: 100%; height: 100%; overflow: visible; }

.dial__ticks {
  animation: dial-spin 140s linear infinite;
  transform-origin: 50px 50px;
}

@keyframes dial-spin {
  to { transform: rotate(360deg); }
}

.dial__markers { position: absolute; inset: 0; }

.marker {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 168px;
  margin-left: -84px;
  margin-top: -14px;
  display: flex;
  align-items: baseline;
  gap: .55rem;
  will-change: transform, opacity;
}

.marker__num {
  font-size: .92rem;
  font-weight: 700;
  color: #dfe6e1;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.marker__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .045em;
  text-transform: uppercase;
  color: #9fb0a8;
  line-height: 1.25;
}

.dial__content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(320px, 28vw, 440px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(1.5rem, 4vw, 3.5rem) 0 clamp(1.6rem, 3.4vw, 2.4rem);
  pointer-events: auto;
}

.hero-step {
  position: relative;
  min-height: clamp(180px, 24vh, 230px);
}

.hero-step__glow {
  position: absolute;
  left: -40px;
  top: -30px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(88,185,87,.20) 0%, rgba(88,185,87,0) 68%);
  pointer-events: none;
}

.hero-step__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px);
  will-change: opacity, transform;
}

.hero-step__row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .55rem;
}

.hero-step__num {
  font-size: clamp(2.2rem, 3.6vw, 2.9rem);
  font-weight: 800;
  color: #6fbf5a;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero-step__ic {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(88, 185, 87, .12);
  border: 1px solid rgba(88, 185, 87, .38);
  color: #6fbf5a;
}

.hero-step__ic svg { width: 17px; height: 17px; }

.hero-step__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(245, 240, 228, .48);
  margin-bottom: .3rem;
}

.hero-step__title {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: .01em;
  color: #f5f0e4;
  margin-bottom: .55rem;
}

.hero-step__desc {
  font-size: clamp(.86rem, 1.1vw, .95rem);
  line-height: 1.6;
  color: rgba(245, 240, 228, .62);
  max-width: 30ch;
  margin-bottom: .85rem;
}

.hero-step__rule {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #6fbf5a, #c7a34a);
}

.pdial-nav {
  position: absolute;
  left: clamp(1.4rem, 4vw, 3.4rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* a translucent dark backdrop so the dots/numbers stay legible
     regardless of how bright the video is behind them at any given
     scroll position — they can't rely on the footage alone */
  padding: .9rem 1.1rem .9rem .8rem;
  border-radius: 999px;
  background: rgba(4, 12, 10, .45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, .4);
}

.pdial-nav__row {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .38rem 0;
}

.pdial-nav__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(245, 240, 228, .65);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.pdial-nav__dot.is-active {
  background: #6fbf5a;
  border-color: #6fbf5a;
  box-shadow: 0 0 10px rgba(111, 191, 90, .75);
}

.pdial-nav__num {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: rgba(245, 240, 228, .75);
  text-shadow: 0 1px 4px rgba(0, 0, 0, .6);
  transition: color .35s ease;
}

.pdial-nav__row.is-active .pdial-nav__num { color: #6fbf5a; }

.pdial-nav__line {
  position: absolute;
  /* offset by the nav's own left padding + top/bottom padding, so the
     line still threads through the centre of each dot */
  left: calc(.8rem + 3px);
  top: .9rem;
  bottom: .9rem;
  width: 1px;
  background: rgba(245, 240, 228, .25);
  z-index: -1;
}

.pdial-head {
  position: absolute;
  left: clamp(1.4rem, 4vw, 3.4rem);
  top: clamp(1.4rem, 4vh, 3rem);
  z-index: 3;
}

.pdial-head__kicker {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #6fbf5a;
  margin-bottom: .5rem;
}

.pdial-head__title {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 700;
  color: #f5f0e4;
  line-height: 1.2;
}

.pdial-head__title em {
  font-style: normal;
  color: #6fbf5a;
}

.pdial-cue {
  position: absolute;
  left: clamp(1.4rem, 4vw, 3.4rem);
  bottom: clamp(1.4rem, 4vh, 2.6rem);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(245, 240, 228, .78);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: opacity .5s ease;
}

.pdial-cue__mouse {
  width: 20px;
  height: 32px;
  border: 1.5px solid rgba(245, 240, 228, .55);
  border-radius: 12px;
  position: relative;
}

.pdial-cue__mouse::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 6px;
  background: #6fbf5a;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: pdial-cue-blink 1.6s ease infinite;
}

@keyframes pdial-cue-blink {
  0% { transform: translate(-50%, 0); opacity: 1; }
  70% { transform: translate(-50%, 10px); opacity: 0; }
  100% { transform: translate(-50%, 10px); opacity: 0; }
}

@media (max-width: 900px) {
  .dial { width: clamp(480px, 148vw, 760px); transform: translateX(63%); }
  .dial__content { padding: 0 28% 0 6%; }
  .marker { width: 130px; margin-left: -65px; }
  .marker__label { font-size: .64rem; }
  .pdial-nav { display: none; }
  .pdial-head__title { font-size: 1.25rem; }
}

/* ---- Phone: dial stays as a decorative right-edge arc only ---- */
@media (max-width: 560px) {
  /* Shrink dial and push it further off-screen so it's just a partial arc */
  .dial {
    width: 340px;
    transform: translateX(72%);
  }

  /* Content takes the full left portion of the screen */
  .dial__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    padding: 0 6rem 0 1.4rem;
    justify-content: center;
    pointer-events: auto;
  }

  /* Narrow the right-side scrim so text stays readable */
  .dial__scrim {
    width: 45%;
  }

  /* Ensure the overlay gradient doesn't hide text */
  .pdial-pin::after {
    background: linear-gradient(90deg,
      rgba(3,12,10,.6) 0%,
      rgba(3,12,10,.25) 55%,
      rgba(3,12,10,.05) 100%);
  }

  /* Make step text bigger on small screens */
  .hero-step__num   { font-size: 2rem; }
  .hero-step__title { font-size: 1.1rem; }
  .hero-step__desc  { font-size: .85rem; max-width: none; }

  /* Hide head title on very small phones - keeps layout clean */
  .pdial-head__title { font-size: 1rem; }
  .pdial-head { top: 1.2rem; left: 1.4rem; }

  /* Scroll cue */
  .pdial-cue { left: 1.4rem; bottom: 1.2rem; }
}


/* ============================================================
   29  REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .has-reveal [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .emap-bone,
  .emap-stem {
    stroke-dashoffset: 0 !important;
  }

  .emap-pulse,
  .energy-map.is-live .emap-core__halo {
    animation: none;
    opacity: .3;
  }

  .emap-node {
    opacity: 1 !important;
  }

  .impact__wave path {
    stroke-dasharray: none;
  }

  .why-card:hover,
  .svc-tile:hover {
    transform: translateY(-3px) !important;
  }

  .gi::before,
  .svc-tile__ic::after {
    display: none;
  }
}

/* ============================================================
   29  BROCHURE PAGE & PDF EMBED STYLES
   ============================================================ */
.brochure-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--emerald);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.brochure-actions__info h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin: 0 0 0.4rem;
}

.brochure-actions__info p {
  color: var(--on-dark-dim);
  font-size: 0.92rem;
  margin: 0;
}

.brochure-actions__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.brochure-embed-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.brochure-embed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--cream-dim);
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: var(--fw-semibold);
  color: var(--ink);
}

.brochure-embed-header span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brochure-iframe-container {
  position: relative;
  width: 100%;
  height: 850px;
  background: #525659;
}

.brochure-iframe-container iframe,
.brochure-iframe-container object {
  width: 100%;
  height: 100%;
  border: none;
}

.brochure-fallback {
  padding: 3rem 2rem;
  text-align: center;
  background: var(--cream);
  color: var(--ink);
}

.brochure-fallback p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .brochure-iframe-container {
    height: 550px;
  }
  .brochure-actions {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
  }
  .brochure-actions__btns {
    width: 100%;
  }
  .brochure-actions__btns .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   30  INLINE-STYLE CLEANUP — component classes extracted from
   one-off style="" attributes across the page files
   ============================================================ */

/* ---- background-video section (about.php, index.php) ---- */
.section--video-bg {
  position: relative;
  overflow: hidden;
}

.section--video-bg>video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .8;
  pointer-events: none;
}

.section--video-bg--soft>video {
  opacity: .25;
}

.section--video-bg>.wrap {
  position: relative;
  z-index: 1;
}

/* ---- job / role card — used on career.php and apply.php ---- */
.pill-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--green-ink);
  color: var(--green-ink);
  border-radius: 4px;
  padding: .3em .8em;
  font-size: .75rem;
  font-weight: var(--fw-semibold);
  font-family: var(--font);
}

.pill-row {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: .4rem;
}

.check-list {
  display: grid;
  gap: .6rem;
}

.check-list li {
  display: flex;
  gap: .55rem;
  align-items: start;
}

.check-list .icon {
  width: 16px;
  height: 16px;
  color: var(--green-ink);
  flex-shrink: 0;
  margin-top: 2px;
}

.jd-subtitle {
  color: var(--muted);
  margin: -.4rem 0 .2rem;
}

.jd-h3 {
  margin-top: 1.4rem;
  font-size: 1.05rem;
}

.jd-h3--tight {
  margin-top: .4rem;
}

.jd-list {
  font-size: .95rem;
  color: var(--ink);
  margin: .8rem 0 1.4rem;
}

.jd-list--tight {
  margin-bottom: .4rem;
}

.label-icon {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-right: .35em;
}

.why-grid--jobs {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 1.5rem;
}

.job-card__title {
  font-size: 1.3rem;
  margin-bottom: .4rem;
}

.job-card__subtitle {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.job-card__list {
  font-size: .9rem;
  color: var(--ink);
  margin-bottom: 1.6rem;
}

.job-card__actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.job-card__actions .btn-green {
  padding: .75em 1.4rem;
}

.job-card__actions .btn-outline {
  padding: .75em 1rem;
}

/* ---- application / enquiry form ---- */
form.enquiry button[type="submit"] {
  justify-self: center;
}

.form-followup {
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.form-followup h3 {
  font-size: .95rem;
}

.form-followup p {
  font-size: .9rem;
  color: var(--muted);
}

/* ---- contact page map embed ---- */
.map-box iframe {
  border: 0;
}

/* ---- FAQ item open on page load (JS drives the rest) ---- */
.faq-item.open .faq-a {
  max-height: 600px;
}

/* ---- closing CTA with two buttons (projects.php) ---- */
.closing-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.closing-cta .btn-outline {
  color: var(--white);
  border-color: var(--white);
}

/* ---- Vision/Mission card stagger (about.php) ---- */
.vm-grid .card:nth-child(2) {
  transition-delay: .18s;
}

/* ---- legal document body (privacy-policy.php) ---- */
.legal-doc {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
  line-height: 1.75;
}

.legal-doc .meta {
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.legal-doc h2 {
  font-size: 1.5rem;
  margin-top: 2.25rem;
  margin-bottom: .75rem;
  color: var(--ink);
}

.legal-doc h2:first-of-type {
  margin-top: 2rem;
}

.legal-doc p+p {
  margin-top: .75rem;
}

.legal-doc ul {
  margin: .5rem 0 1.5rem 1.25rem;
  list-style: disc;
  color: var(--ink);
}

.legal-doc li {
  margin-bottom: .5rem;
}

.legal-doc__contact {
  margin-top: .75rem;
  font-weight: 600;
  color: var(--ink);
}

.legal-doc__link {
  color: var(--green-deep);
  text-decoration: underline;
}

/* ---- footer legal-links dim credit line ---- */
.legal-links__credit {
  color: var(--on-dark-dim);
}

