:root {
      --green-deep: #1a2e1e;
      --green-mid: #2c4a32;
      --green-accent: #3d6644;
      --gold: #c9a84c;
      --gold-light: #e2c47a;
      --cream: #faf7f2;
      --warm-white: #f3efe8;
      --charcoal: #181818;
      --grey-soft: #5a5a5a;
      --grey-line: #ddd8ce;
      --font-head: 'Poppins', sans-serif;
      --font-body: 'Inter', sans-serif;
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      background: var(--cream);
      color: var(--charcoal);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      cursor: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    /* ── CURSOR ── */
    #cursor {
      position: fixed;
      width: 12px;
      height: 12px;
      background: var(--gold);
      border-radius: 50%;
      pointer-events: none;
      z-index: 99999;
      transform: translate(-50%, -50%);
      transition: width .3s var(--ease-out), height .3s var(--ease-out), background .3s;
    }

    #cursor-ring {
      position: fixed;
      width: 40px;
      height: 40px;
      border: 1.5px solid rgba(201, 168, 76, .5);
      border-radius: 50%;
      pointer-events: none;
      z-index: 99998;
      transform: translate(-50%, -50%);
      transition: width .4s var(--ease-out), height .4s var(--ease-out), border-color .3s;
    }

    body:has(a:hover) #cursor {
      width: 8px;
      height: 8px;
      background: var(--gold-light);
    }

    body:has(a:hover) #cursor-ring {
      width: 56px;
      height: 56px;
      border-color: var(--gold);
    }

    /* ── LOADER ── */
    #loader {
      position: fixed;
      inset: 0;
      z-index: 99999;
      background: var(--green-deep);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 28px;
      transition: opacity .8s ease;
    }

    .loader-logo-img {
      width: 200px;
      opacity: 0;
      filter: brightness(0) invert(1);
      animation: lFadeUp .9s var(--ease-out) .2s forwards;
    }

    .loader-bar-wrap {
      width: 180px;
      height: 2px;
      background: rgba(255, 255, 255, .1);
      border-radius: 2px;
      overflow: hidden;
      opacity: 0;
      animation: lFadeUp .6s var(--ease-out) .5s forwards;
    }

    .loader-bar {
      height: 100%;
      width: 0;
      background: var(--gold);
      animation: lBar 1.5s var(--ease-out) .6s forwards;
    }

    .loader-sub {
      font-family: var(--font-body);
      font-size: 10px;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0;
      animation: lFadeUp .6s var(--ease-out) .7s forwards;
    }

    @keyframes lFadeUp {
      from {
        opacity: 0;
        transform: translateY(16px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    @keyframes lBar {
      to {
        width: 100%
      }
    }

    /* ── CINEMATIC PAGE OPEN ── */
    /* Page starts invisible — JS adds .page-ready class after loader dismisses */
    body.page-opening {
      overflow: hidden;
    }

    /* The reveal curtain — two panels that slide apart */
    #curtain-top,
    #curtain-bot {
      position: fixed;
      left: 0;
      right: 0;
      z-index: 99990;
      background: var(--green-deep);
      transition: transform 1.1s cubic-bezier(0.76, 0, 0.24, 1);
      pointer-events: none;
    }

    #curtain-top {
      top: 0;
      height: 50vh;
      transform: translateY(0);
    }

    #curtain-bot {
      bottom: 0;
      height: 50vh;
      transform: translateY(0);
    }

    body.page-ready #curtain-top {
      transform: translateY(-100%);
    }

    body.page-ready #curtain-bot {
      transform: translateY(100%);
    }

    /* Clip reveal on hero right panel — wipes in from left */
    .hero-right {
      clip-path: inset(0 100% 0 0);
      transition: clip-path 1.2s cubic-bezier(0.76, 0, 0.24, 1) .1s;
    }

    body.page-ready .hero-right {
      clip-path: inset(0 0% 0 0);
    }

    /* Nav slides down into view */
    #nav {
      transform: translateY(-100%);
      transition: transform .8s cubic-bezier(0.76, 0, 0.24, 1) .6s,
        background .5s var(--ease-out),
        box-shadow .5s var(--ease-out),
        padding .4s var(--ease-out);
    }

    body.page-ready #nav {
      transform: translateY(0);
    }

    /* ── RICH SECTION ANIMATIONS ── */
    .about-badge {
      animation: badgeBreathe 4s ease-in-out infinite;
    }

    @keyframes badgeBreathe {

      0%,
      100% {
        transform: translateY(0);
        box-shadow: 0 8px 32px rgba(26, 46, 30, .3)
      }

      50% {
        transform: translateY(-8px);
        box-shadow: 0 20px 48px rgba(26, 46, 30, .45)
      }
    }

    .about-images:hover .about-badge {
      animation-play-state: paused;
    }

    .svc-img {
      clip-path: inset(100% 0 0 0);
      transition: clip-path .9s var(--ease-out);
    }

    .svc-card.rv.in .svc-img {
      clip-path: inset(0% 0 0 0);
    }

    .svc-card.rv.in.d1 .svc-img {
      transition-delay: .1s;
    }

    .svc-card.rv.in.d2 .svc-img {
      transition-delay: .2s;
    }

    .svc-card.rv.in.d3 .svc-img {
      transition-delay: .3s;
    }

    .svc-card.rv.in.d4 .svc-img {
      transition-delay: .4s;
    }

    .g-item {
      clip-path: inset(0 0 100% 0);
      transition: clip-path 1s var(--ease-out);
    }

    .gallery-masonry.rv-s.in .g-item {
      clip-path: inset(0 0 0% 0);
    }

    .gallery-masonry.rv-s.in .g-item:nth-child(1) {
      transition-delay: .04s
    }

    .gallery-masonry.rv-s.in .g-item:nth-child(2) {
      transition-delay: .10s
    }

    .gallery-masonry.rv-s.in .g-item:nth-child(3) {
      transition-delay: .16s
    }

    .gallery-masonry.rv-s.in .g-item:nth-child(4) {
      transition-delay: .22s
    }

    .gallery-masonry.rv-s.in .g-item:nth-child(5) {
      transition-delay: .28s
    }

    .gallery-masonry.rv-s.in .g-item:nth-child(6) {
      transition-delay: .34s
    }

    .gallery-masonry.rv-s.in .g-item:nth-child(7) {
      transition-delay: .40s
    }

    .gallery-masonry.rv-s.in .g-item:nth-child(8) {
      transition-delay: .46s
    }

    .gallery-masonry.rv-s.in .g-item:nth-child(9) {
      transition-delay: .52s
    }

    .stat-cell {
      position: relative;
      overflow: hidden;
    }

    .stat-cell::after {
      content: '';
      position: absolute;
      top: 20%;
      bottom: 20%;
      right: 0;
      width: 1px;
      background: var(--grey-line);
      transform: scaleY(0);
      transform-origin: top;
      transition: transform .6s var(--ease-out);
    }

    .stat-cell:last-child::after {
      display: none;
    }

    .stat-cell.rv.in::after {
      transform: scaleY(1);
    }

    .hero-stats {
      transform: translateY(100%);
      transition: transform .9s cubic-bezier(0.76, 0, 0.24, 1) 1.3s;
    }

    body.page-ready .hero-stats {
      transform: translateY(0);
    }

    .cdetail {
      transform: translateX(-24px);
      opacity: 0;
      transition: transform .6s var(--ease-out), opacity .6s ease;
    }

    .cdetail.rv-revealed {
      transform: none;
      opacity: 1;
    }

    .map-info.rv-l.in {}

    .map-info::before {
      content: '';
      position: absolute;
      left: 56px;
      top: 72px;
      bottom: 72px;
      width: 2px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      transform: scaleY(0);
      transform-origin: top;
      transition: transform 1.2s var(--ease-out) .4s;
    }

    /* .map-info.rv-l.in::before { transform:scaleY(1); } */

    .footer-logo img {
      transition: filter .5s ease, transform .4s var(--ease-spring);
    }

    .footer-logo img:hover {
      filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(201, 168, 76, .6));
      transform: scale(1.04);
    }

    #sticky-cta.show .sticky-pill {
      animation: pillSpring .5s var(--ease-spring);
    }

    @keyframes pillSpring {
      from {
        transform: scale(.7) translateY(10px)
      }

      to {
        transform: none
      }
    }

    .container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .tag::before {
      content: '';
      display: inline-block;
      width: 32px;
      height: 2px;
      background: var(--gold);
      flex-shrink: 0;
    }

    /* ── SCROLL REVEALS ── */
    .rv {
      opacity: 0;
      transform: translateY(44px);
      transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
    }

    .rv.in {
      opacity: 1;
      transform: none;
    }

    .rv-l {
      opacity: 0;
      transform: translateX(-52px);
      transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
    }

    .rv-l.in {
      opacity: 1;
      transform: none;
    }

    .rv-s {
      opacity: 0;
      transform: scale(.93);
      transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
    }

    .rv-s.in {
      opacity: 1;
      transform: scale(1);
    }

    .d1 {
      transition-delay: .1s
    }

    .d2 {
      transition-delay: .2s
    }

    .d3 {
      transition-delay: .3s
    }

    .d4 {
      transition-delay: .4s
    }

    /* ── NAV ── */
    #nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      transition: all .5s var(--ease-out);
    }

    #nav.scrolled {
      background: rgba(26, 46, 30, .96);
      backdrop-filter: blur(20px);
      box-shadow: 0 1px 0 rgba(201, 168, 76, .18);
    }

    .nav-inner {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      max-width: 1360px;
      margin: 0 auto;
      padding: 26px 40px;
      transition: padding .4s var(--ease-out);
    }

    #nav.scrolled .nav-inner {
      padding: 14px 40px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
    }

    .nav-logo img {
      height: 58px;
      width: auto;
      display: block;
      filter: brightness(0) invert(1);
      transition: transform .5s var(--ease-spring), filter .4s ease, opacity .3s;
      transform-origin: left center;
    }

    .nav-logo:hover img {
      transform: scale(1.06);
      filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(201, 168, 76, .5));
      opacity: .92;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: nowrap;
      justify-content: center;
      min-width: 0;
    }

    .nav-links a {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .11em;
      text-transform: uppercase;

      color: #fff;
      /* main text color */

      transition: color .25s;
      position: relative;
      overflow: hidden;
      display: block;
    }

    .nav-links a .li {
      display: block;
      transition: transform .35s var(--ease-out);
      text-shadow:
        1px 0 0 #000,
        -1px 0 0 #000,
        0 1px 0 #000,
        0 -1px 0 #000;
    }

    .nav-links a::after {
      content: attr(data-text);
      position: absolute;
      top: 100%;
      left: 0;
      color: var(--gold);
      transition: transform .35s var(--ease-out);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .11em;
      text-transform: uppercase;
    }

    .nav-links a:hover .li {
      transform: translateY(-100%);
    }

    .nav-links a:hover::after {
      transform: translateY(-100%);
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    .nav-more {
      position: relative;
    }

    .nav-more-trigger {
      cursor: pointer;
    }

    .nav-submenu {
      position: absolute;
      top: 100%;
      left: 0;
      right: auto;
      min-width: 210px;
      padding: 12px;
      background: rgba(26, 46, 30, .98);
      border: 1px solid rgba(201, 168, 76, .22);
      border-radius: 8px;
      box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
      backdrop-filter: blur(16px);
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all .28s var(--ease-out);
    }

    .nav-more:hover .nav-submenu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .nav-submenu a {
      padding: 10px 12px;
      border-radius: 5px;
      white-space: nowrap;
    }

    .nav-submenu a:hover {
      background: rgba(201, 168, 76, .1);
    }

    .nav-logo img,
    .footer-logo img {
      object-fit: contain;
      max-width: none;
    }

    .nav-cta {
      background: var(--gold);
      color: var(--green-deep) !important;
      font-family: var(--font-head) !important;
      font-size: 12px !important;
      font-weight: 700 !important;
      letter-spacing: .06em !important;
      padding: 12px 24px;
      border-radius: 3px;
      transition: all .3s var(--ease-out) !important;
      position: relative;
      overflow: hidden;
    }

    .nav-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gold-light);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s var(--ease-out);
    }

    .nav-cta:hover::before {
      transform: scaleX(1);
    }

    .nav-cta span {
      position: relative;
      z-index: 1;
    }

    .nav-cta:hover {
      transform: translateY(-2px);
    }

    /* Nav cert badges */
    .nav-certs {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: 6px;
      padding-left: 10px;
      border-left: 1px solid rgba(255, 255, 255, .14);
      flex-shrink: 0;
    }

    .nav-cert-badge {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4px;
      box-sizing: border-box;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
      transition: transform .3s var(--ease-spring), box-shadow .3s ease;
      flex-shrink: 0;
    }

    .nav-cert-badge img {
      width: 150%;
      height: 150%;
      object-fit: contain;
      display: block;
    }

    .nav-cert-badge:hover {
      transform: translateY(-2px) scale(1.1);
      box-shadow: 0 6px 18px rgba(201, 168, 76, .5);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger span {
      width: 26px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all .4s var(--ease-out);
      display: block;
    }

    .hamburger.open span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .hamburger.open span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* ── MOBILE MENU ── */
    /* Fixed: closed mobile menu was overflowing into the desktop view.
   Hidden state now fully disables visibility/pointer events, and desktop keeps it off. */
    #mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 999;
      background: var(--green-deep);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 30px;
      padding: 110px 24px 48px;
      transform: translateY(-110%);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      overflow: hidden;
      transition:
        transform .6s var(--ease-out),
        opacity .3s ease,
        visibility 0s linear .6s;
    }

    #mobile-menu.open {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      overflow-y: auto;
      transition:
        transform .6s var(--ease-out),
        opacity .3s ease;
    }

    #mobile-menu a {
      font-family: var(--font-head);
      font-size: 34px;
      font-weight: 700;
      color: #fff;
      transition: color .25s;
      letter-spacing: -.01em;
      line-height: 1.1;
    }

    #mobile-menu a:hover {
      color: var(--gold-light);
    }

    @media(min-width:769px) {
      #mobile-menu {
        display: none !important;
      }
    }

    /* ═══════════════════════════════════════════
   HERO — Split-screen: type left / image right
   ═══════════════════════════════════════════ */
    #hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
      background: var(--green-deep);
    }

    /* ── LEFT PANEL ── */
    .hero-left {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 0 64px 0 80px;
      background: var(--green-deep);
      overflow: hidden;
    }

    /* Subtle diagonal line texture on left panel */
    .hero-left::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(-55deg,
          transparent,
          transparent 40px,
          rgba(201, 168, 76, .022) 40px,
          rgba(201, 168, 76, .022) 41px);
      pointer-events: none;
    }

    /* Gold vertical accent bar */
    .hero-left::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom,
          transparent 0%,
          rgba(201, 168, 76, .35) 25%,
          rgba(201, 168, 76, .35) 75%,
          transparent 100%);
    }

    /* Middle content block — centred vertically between nav and stats */
    .hero-left-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 100px 0 40px;
      /* top: clear fixed nav (90px) + breathing room */
    }

    .hero-headline {
      font-family: var(--font-head);
      font-size: clamp(52px, 5.5vw, 80px);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -.02em;
      color: #fff;
      margin-bottom: 32px;
      overflow: visible;
    }

    .hero-headline .line {
      display: block;
      overflow: hidden;
      padding-bottom: .08em;
      margin-bottom: -.08em;
    }

    .hero-headline .line-inner {
      display: block;
      opacity: 0;
      transform: translateY(105%);
      animation: hLineUp 1s var(--ease-out) both;
    }

    .hero-headline .line:nth-child(1) .line-inner {
      animation-delay: .45s;
    }

    .hero-headline .line:nth-child(2) .line-inner {
      animation-delay: .6s;
    }

    .hero-headline .line:nth-child(3) .line-inner {
      animation-delay: .75s;
    }

    .gold-word {
      color: var(--gold);
    }

    .hero-sub {
      font-size: 15px;
      line-height: 1.8;
      color: rgba(255, 255, 255, .55);
      font-weight: 400;
      max-width: 100%;
      margin-bottom: 48px;
      opacity: 0;
      animation: hFadeUp 1s var(--ease-out) .9s forwards;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      opacity: 0;
      animation: hFadeUp 1s var(--ease-out) 1.05s forwards;
    }

    /* Stats row — natural bottom of left panel */
    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid rgba(255, 255, 255, .07);
      flex-shrink: 0;
      opacity: 0;
      animation: hFadeUp .8s var(--ease-out) 1.3s forwards;
    }

    .hero-stat-item {
      padding: 22px 24px;
      border-right: 1px solid rgba(255, 255, 255, .07);
      transition: background .3s;
    }

    .hero-stat-item:last-child {
      border-right: none;
    }

    .hero-stat-item:hover {
      background: rgba(255, 255, 255, .03);
    }

    .hsi-num {
      font-family: var(--font-head);
      font-size: 28px;
      font-weight: 800;
      color: var(--gold);
      line-height: 1;
      letter-spacing: -.01em;
    }

    .hsi-label {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .35);
      margin-top: 4px;
    }

    /* ── RIGHT PANEL — image slideshow ── */
    .hero-right {
      position: relative;
      overflow: hidden;
    }

    /* Each slide */
    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.4s ease, transform 8s ease-out;
      transform: scale(1.08);
      will-change: opacity, transform;
    }

    .hero-slide.active {
      opacity: 1;
      transform: scale(1.0);
      z-index: 1;
    }

    .hero-slide.leaving {
      opacity: 0;
      transform: scale(1.04);
      z-index: 0;
      transition: opacity 1.4s ease, transform 1.4s ease;
    }

    /* Overlay on image panel */
    .hero-right-overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      background:
        linear-gradient(to bottom, rgba(26, 46, 30, .5) 0%, transparent 20%),
        linear-gradient(to right, rgba(26, 46, 30, .5) 0%, rgba(26, 46, 30, .05) 35%, transparent 100%),
        linear-gradient(to top, rgba(26, 46, 30, .4) 0%, transparent 25%);
    }

    /* Slide counter */
    .hero-counter {
      position: absolute;
      bottom: 40px;
      right: 40px;
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 12px;
      opacity: 0;
      animation: hFadeIn 1s ease 1.6s forwards;
    }

    .hero-counter-nums {
      font-family: var(--font-head);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      color: rgba(255, 255, 255, .5);
    }

    .hero-counter-nums span {
      color: #fff;
    }

    .hero-counter-track {
      width: 80px;
      height: 2px;
      background: rgba(255, 255, 255, .15);
      border-radius: 2px;
      overflow: hidden;
    }

    .hero-counter-fill {
      height: 100%;
      background: var(--gold);
      border-radius: 2px;
      width: 0%;
      transition: width 6s linear;
    }

    /* Project label on image — bottom-left, away from nav */
    .hero-img-label {
      position: absolute;
      bottom: 80px;
      left: 36px;
      z-index: 3;
      opacity: 0;
      animation: hFadeIn 1s ease 1.4s forwards;
    }

    .hil-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(26, 46, 30, .7);
      border: 1px solid rgba(201, 168, 76, .3);
      border-radius: 100px;
      padding: 6px 16px;
      backdrop-filter: blur(12px);
    }

    .hil-dot {
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
      animation: dotPulse 2s ease-in-out infinite;
    }

    @keyframes dotPulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .4;
        transform: scale(.8)
      }
    }

    .hil-text {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .8);
    }

    /* Slide dots nav — right edge, vertically centred */
    .hero-dots {
      position: absolute;
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3;
      display: flex;
      flex-direction: column;
      gap: 8px;
      opacity: 0;
      animation: hFadeIn 1s ease 1.5s forwards;
    }

    .hero-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .25);
      border: none;
      cursor: pointer;
      transition: all .35s var(--ease-out);
      padding: 0;
    }

    .hero-dot.active {
      background: var(--gold);
      height: 22px;
      border-radius: 3px;
      width: 6px;
    }

    /* Scroll hint — sits above stats bar on the left */
    .hero-scroll-hint {
      position: absolute;
      bottom: 70px;
      left: 80px;
      z-index: 3;
      display: flex;
      align-items: center;
      gap: 12px;
      opacity: 0;
      animation: hFadeIn 1s ease 1.7s forwards;
    }

    .hero-scroll-line {
      width: 1px;
      height: 44px;
      background: linear-gradient(to bottom, rgba(201, 168, 76, .7), transparent);
      animation: scrollPulse 2.4s ease-in-out infinite;
    }

    @keyframes scrollPulse {

      0%,
      100% {
        opacity: .7
      }

      50% {
        opacity: .15
      }
    }

    .hero-scroll-text {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .3);
    }

    /* KEYFRAMES */
    @keyframes hFadeUp {
      from {
        opacity: 0;
        transform: translateY(30px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    @keyframes hLineUp {
      from {
        opacity: 0;
        transform: translateY(105%)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    @keyframes hFadeIn {
      from {
        opacity: 0
      }

      to {
        opacity: 1
      }
    }

    /* BUTTONS (kept from global) */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--gold);
      color: var(--green-deep);
      font-family: var(--font-head);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .05em;
      text-transform: uppercase;
      padding: 17px 34px;
      border-radius: 3px;
      border: 2px solid var(--gold);
      position: relative;
      overflow: hidden;
      transition: all .4s var(--ease-out);
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--green-deep);
      transform: translateX(-101%);
      transition: transform .4s var(--ease-out);
    }

    .btn-primary span,
    .btn-primary svg {
      position: relative;
      z-index: 1;
    }

    .btn-primary:hover::before {
      transform: none;
    }

    .btn-primary:hover {
      color: var(--gold);
      border-color: var(--gold);
      transform: translateY(-3px);
      box-shadow: 0 16px 40px rgba(201, 168, 76, .35);
    }

    .btn-primary svg {
      transition: transform .3s;
    }

    .btn-primary:hover svg {
      transform: translateX(5px);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, .75);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: .06em;
      padding-bottom: 3px;
      border-bottom: 1px solid rgba(255, 255, 255, .2);
      transition: all .25s;
    }

    .btn-ghost:hover {
      color: var(--gold-light);
      border-color: var(--gold-light);
    }

    .btn-call {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-family: var(--font-head);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .04em;
      padding: 15px 26px;
      border: 1.5px solid rgba(255, 255, 255, .22);
      border-radius: 3px;
      background: rgba(255, 255, 255, .06);
      backdrop-filter: blur(8px);
      transition: all .35s var(--ease-out);
      position: relative;
      overflow: hidden;
    }

    .btn-call::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, .08);
      transform: translateX(-101%);
      transition: transform .35s var(--ease-out);
    }

    .btn-call:hover::before {
      transform: none;
    }

    .btn-call:hover {
      border-color: rgba(255, 255, 255, .5);
      transform: translateY(-2px);
    }

    .btn-call svg {
      flex-shrink: 0;
      opacity: .8;
    }

    /* ── TRUST TICKER ── */
    #trust-bar {
      background: var(--green-mid);
      border-top: 1px solid rgba(201, 168, 76, .12);
      border-bottom: 1px solid rgba(201, 168, 76, .12);
      overflow: hidden;
    }

    .trust-ticker {
      display: flex;
      animation: ticker 30s linear infinite;
      white-space: nowrap;
    }

    .trust-ticker:hover {
      animation-play-state: paused;
    }

    .ticker-set {
      display: flex;
      flex-shrink: 0;
    }

    .ticker-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 20px 48px;
      border-right: 1px solid rgba(255, 255, 255, .06);
      white-space: nowrap;
    }

    .ticker-icon {
      color: var(--gold);
      flex-shrink: 0;
    }

    .ticker-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .85);
    }

    @keyframes ticker {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    /* ── ABOUT ── */
    #about {
      padding: 160px 0;
      background: var(--cream);
      position: relative;
      overflow: hidden;
    }

    .about-watermark {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: clamp(360px, 50vw, 680px);
      height: auto;
      opacity: .07;
      pointer-events: none;
      user-select: none;
      color: var(--green-mid);
    }

    .about-watermark svg {
      width: 70%;
      height: auto;
      display: block;
      position: relative;
      left: 30%;
      top: -40px;
      filter: brightness(0.5);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 96px;
      align-items: center;
    }

    .about-images {
      position: relative;
      height: 580px;
    }

    .about-img-main {
      position: absolute;
      top: 0;
      left: 0;
      width: 74%;
      height: 86%;
      object-fit: cover;
      border-radius: 4px;
      box-shadow: 0 40px 100px rgba(26, 46, 30, .25);
      transition: transform .6s var(--ease-out);
    }

    .about-images:hover .about-img-main {
      transform: scale(1.02);
    }

    .about-img-accent {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 50%;
      height: 50%;
      object-fit: cover;
      border-radius: 4px;
      border: 6px solid var(--cream);
      box-shadow: 0 20px 60px rgba(26, 46, 30, .2);
      transition: transform .6s var(--ease-out) .1s;
    }

    .about-images:hover .about-img-accent {
      transform: scale(1.03);
    }

    .about-badge {
      position: absolute;
      top: 32px;
      right: 8%;
      background: var(--green-deep);
      border: 1px solid rgba(201, 168, 76, .3);
      border-radius: 6px;
      padding: 22px 26px;
      text-align: center;
      z-index: 3;
      transition: transform .4s var(--ease-spring);
    }

    .about-images:hover .about-badge {
      transform: translateY(-6px);
    }

    .about-badge .num {
      font-family: var(--font-head);
      font-size: 40px;
      font-weight: 800;
      color: var(--gold);
      line-height: 1;
      letter-spacing: -.01em;
    }

    .about-badge .lbl {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .55);
      margin-top: 6px;
    }

    .section-head {
      font-family: var(--font-head);
      font-size: clamp(32px, 3.4vw, 50px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -.01em;
      color: var(--green-deep);
      margin-bottom: 16px;
    }

    .section-head .accent {
      color: var(--green-accent);
    }

    .about-body {
      font-size: 15px;
      line-height: 1.8;
      color: var(--grey-soft);
      font-weight: 400;
      margin-bottom: 18px;
      max-width: 520px;
    }

    .about-quote {
      margin: 36px 0;
      padding: 28px 32px;
      background: var(--warm-white);
      border-left: 4px solid var(--gold);
      border-radius: 0 6px 6px 0;
      position: relative;
      overflow: hidden;
    }

    .about-quote::before {
      content: '"';
      position: absolute;
      top: -10px;
      left: 12px;
      font-family: var(--font-head);
      font-size: 100px;
      font-weight: 800;
      color: rgba(201, 168, 76, .08);
      line-height: 1;
    }

    .about-quote .q-label {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .about-quote .q-text {
      font-size: 13px;
      color: var(--green-deep);
      font-weight: 400;
      line-height: 1.6;
      letter-spacing: .01em;
    }

    .about-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-head);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--green-deep);
      border-bottom: 2px solid var(--green-deep);
      padding-bottom: 4px;
      transition: all .3s;
    }

    .about-link:hover {
      color: var(--gold);
      border-color: var(--gold);
      gap: 16px;
    }

    .about-link svg {
      transition: transform .3s;
    }

    .about-link:hover svg {
      transform: translateX(4px);
    }

    /* ── SERVICES ── */
    #services {
      padding: 120px 0;
      background: var(--green-deep);
      position: relative;
      overflow: hidden;
    }

    .svc-grid-bg {
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, .015) 0, rgba(255, 255, 255, .015) 1px, transparent 1px, transparent 120px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .015) 0, rgba(255, 255, 255, .015) 1px, transparent 1px, transparent 120px);
    }

    .services-hd {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 80px;
      gap: 40px;
    }

    .services-hd .section-head {
      color: #fff;
      margin-bottom: 0;
      max-width: 420px;
    }

    .services-hd .section-head .accent {
      color: var(--gold-light);
    }

    .services-desc {
      max-width: 600px;
      font-size: 14px;
      line-height: 1.75;
      color: rgba(255, 255, 255, .5);
      font-weight: 400;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 3px;
    }

    .svc-card {
      background: rgba(255, 255, 255, .03);
      border: 1px solid rgba(255, 255, 255, .06);
      overflow: hidden;
      position: relative;
      transition: border-color .4s;
      cursor: pointer;
    }

    .svc-card:hover {
      border-color: rgba(201, 168, 76, .35);
    }

    .svc-img {
      width: 100%;
      height: 200px;
      overflow: hidden;
      position: relative;
    }

    .svc-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .7s var(--ease-out), filter .5s;
      filter: brightness(.75) saturate(.8);
    }

    .svc-card:hover .svc-img img {
      transform: scale(1.08);
      filter: brightness(.9) saturate(1);
    }

    .svc-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26, 46, 30, .8), transparent 60%);
    }

    .svc-body {
      padding: 28px 26px 32px;
    }

    .svc-name {
      font-family: var(--font-head);
      font-size: 19px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 14px;
      letter-spacing: -.005em;
      line-height: 1.25;
    }

    .svc-desc {
      font-size: 13px;
      line-height: 1.7;
      color: rgba(255, 255, 255, .5);
      font-weight: 400;
      margin-bottom: 22px;
    }

    .svc-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--gold);
      transition: gap .3s;
    }

    .svc-card:hover .svc-cta {
      gap: 14px;
      color: var(--gold-light);
    }

    .svc-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .5s var(--ease-out);
    }

    .svc-card:hover .svc-bar {
      transform: scaleX(1);
    }

    /* ── SERVICE POP-UP MODAL ── */
    #svc-modal {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(10, 18, 12, .85);
      backdrop-filter: blur(14px);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 30px;
      animation: svcFadeIn .3s ease;
    }

    #svc-modal.active {
      display: flex;
    }

    @keyframes svcFadeIn {
      from {
        opacity: 0
      }

      to {
        opacity: 1
      }
    }

    .svc-modal-box {
      background: var(--cream);
      border-radius: 8px;
      max-width: 880px;
      width: 100%;
      max-height: 90vh;
      overflow: hidden;
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      box-shadow: 0 40px 100px rgba(0, 0, 0, .6);
      animation: svcPopIn .5s var(--ease-spring);
    }

    @keyframes svcPopIn {
      from {
        opacity: 0;
        transform: scale(.92) translateY(20px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    .svc-modal-img {
      background-size: cover;
      background-position: center;
      min-height: 420px;
      position: relative;
    }

    .svc-modal-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, transparent 40%, rgba(26, 46, 30, .35));
    }

    .svc-modal-content {
      padding: 50px 46px;
      overflow-y: auto;
      max-height: 90vh;
      display: flex;
      flex-direction: column;
    }

    .svc-modal-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .svc-modal-tag::before {
      content: '';
      width: 28px;
      height: 2px;
      background: var(--gold);
    }

    .svc-modal-title {
      font-family: var(--font-head);
      font-size: 30px;
      font-weight: 800;
      color: var(--green-deep);
      line-height: 1.15;
      letter-spacing: -.01em;
      margin-bottom: 22px;
    }

    .svc-modal-body {
      font-size: 14px;
      line-height: 1.75;
      color: var(--grey-soft);
      margin-bottom: 16px;
    }

    .svc-modal-body strong {
      color: var(--green-deep);
      font-weight: 700;
    }

    .svc-modal-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 10px 0 20px;
    }

    .svc-modal-list li {
      font-size: 13px;
      line-height: 1.6;
      color: var(--grey-soft);
      padding-left: 22px;
      position: relative;
    }

    .svc-modal-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 8px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 3px rgba(201, 168, 76, .18);
    }

    .svc-modal-list li strong {
      color: var(--green-deep);
      font-weight: 700;
    }

    .svc-modal-cta {
      margin-top: auto;
      padding-top: 24px;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .svc-modal-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--green-deep);
      color: #fff;
      font-family: var(--font-head);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 14px 26px;
      border-radius: 3px;
      transition: all .3s var(--ease-out);
    }

    .svc-modal-btn:hover {
      background: var(--gold);
      color: var(--green-deep);
      transform: translateY(-2px);
    }

    #svc-modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 5;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .95);
      color: var(--green-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border: none;
      transition: all .25s var(--ease-out);
      box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
    }

    #svc-modal-close:hover {
      background: var(--gold);
      transform: rotate(90deg);
    }

    @media(max-width:800px) {
      .svc-modal-box {
        grid-template-columns: 1fr;
        max-height: 92vh;
      }

      .svc-modal-img {
        min-height: 220px;
      }

      .svc-modal-content {
        padding: 32px 26px;
      }

      .svc-modal-title {
        font-size: 24px;
      }
    }

    .veg-banner {
      margin-top: 3px;
      background: rgba(201, 168, 76, .07);
      border: 1px solid rgba(201, 168, 76, .18);
      border-radius: 4px;
      padding: 40px 44px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      position: relative;
      overflow: hidden;
      transition: background .4s;
    }

    .veg-banner:hover {
      background: rgba(201, 168, 76, .1);
    }

    .veg-title {
      font-family: var(--font-head);
      font-size: 24px;
      font-weight: 700;
      color: #fff;
      letter-spacing: -.005em;
      margin-top: 8px;
    }

    .veg-sub {
      font-size: 13px;
      color: rgba(255, 255, 255, .45);
      margin-top: 6px;
      max-width: 480px;
    }

    .veg-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px 24px;
      max-width: 620px;
      margin-top: 14px;
      color: rgba(255, 255, 255, .58);
      font-size: 13px;
      line-height: 1.55;
    }

    .veg-list li {
      position: relative;
      padding-left: 18px;
    }

    .veg-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: .58em;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 3px rgba(201, 168, 76, .14);
    }

    /* ── STATS ── */
    #stats {
      padding: 80px 0;
      background: var(--warm-white);
      border-top: 1px solid var(--grey-line);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .stat-cell {
      padding: 48px 40px;
      border-right: 1px solid var(--grey-line);
      text-align: center;
      transition: background .3s;
    }

    .stat-cell:last-child {
      border-right: none;
    }

    .stat-cell:hover {
      background: #fff;
    }

    .count-num {
      font-family: var(--font-head);
      font-size: 60px;
      font-weight: 800;
      color: var(--green-deep);
      letter-spacing: -.01em;
      line-height: 1;
    }

    .count-suffix {
      color: var(--gold);
    }

    .count-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--grey-soft);
      margin-top: 10px;
    }

    #grounds-reliability {
      padding: 140px 0;
      background: var(--green-deep);
      position: relative;
      overflow: hidden;
    }

    #grounds-reliability::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, .015) 0, rgba(255, 255, 255, .015) 1px, transparent 1px, transparent 120px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .015) 0, rgba(255, 255, 255, .015) 1px, transparent 1px, transparent 120px);
      pointer-events: none;
    }

    #grounds-reliability::after {
      content: '';
      position: absolute;
      bottom: -150px;
      left: -150px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(61, 102, 68, .1), transparent 70%);
      pointer-events: none;
    }

    .gr-container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 48px;
      position: relative;
      z-index: 1;
    }

    .gr-header {
      text-align: center;
      margin-bottom: 80px;
    }

    .gr-header .tag {
      justify-content: center;
    }

    .gr-header .section-head {
      color: #fff;
      margin-bottom: 18px;
    }

    .gr-header .gr-sub {
      font-size: 15px;
      line-height: 1.8;
      color: rgba(255, 255, 255, .5);
      font-weight: 400;
      max-width: 620px;
      margin: 0 auto;
    }

    .gr-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .gr-card {
      background: rgba(255, 255, 255, .03);
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: 8px;
      padding: 40px 30px 35px;
      position: relative;
      overflow: hidden;
      transition: all .5s var(--ease-out);
      opacity: 0;
      transform: translateY(40px);
    }

    .gr-card.in {
      opacity: 1;
      transform: none;
    }

    .gr-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
      background-size: 200%;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .6s var(--ease-out);
    }

    .gr-card:hover::before {
      transform: scaleX(1);
    }

    .gr-card:hover {
      border-color: rgba(201, 168, 76, .25);
      background: rgba(255, 255, 255, .05);
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
    }

    .gr-icon {
      width: 52px;
      height: 52px;
      background: rgba(201, 168, 76, .1);
      border: 1.5px solid rgba(201, 168, 76, .25);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      margin-bottom: 24px;
      transition: all .4s var(--ease-spring);
    }

    .gr-card:hover .gr-icon {
      background: var(--gold);
      color: var(--green-deep);
      transform: scale(1.1) rotate(-5deg);
      box-shadow: 0 8px 24px rgba(201, 168, 76, .35);
    }

    .gr-title {
      font-family: var(--font-head);
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      letter-spacing: -.005em;
      margin-bottom: 14px;
      line-height: 1.3;
    }

    .gr-body {
      font-size: 13.5px;
      line-height: 1.75;
      color: rgba(255, 255, 255, .45);
      font-weight: 400;
    }

    .gr-divider {
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .2), transparent);
      margin: 60px 0;
      position: relative;
    }

    .gr-divider::after {
      content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 8px;
      height: 8px;
      background: var(--gold);
      border-radius: 50%;
      box-shadow: 0 0 0 6px var(--green-deep), 0 0 0 7px rgba(201, 168, 76, .3);
    }

    .gr-bottom-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .gr-card-accent {
      background: linear-gradient(135deg, rgba(201, 168, 76, .08), rgba(255, 255, 255, .02));
      border-color: rgba(201, 168, 76, .15);
    }

    .gr-card-accent:hover {
      border-color: rgba(201, 168, 76, .35);
      background: linear-gradient(135deg, rgba(201, 168, 76, .12), rgba(255, 255, 255, .04));
    }

    /* Mobile */
    @media(max-width: 1024px) {
      .gr-grid {
        grid-template-columns: 1fr 1fr;
      }

      .gr-bottom-row {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width: 768px) {
      #grounds-reliability {
        padding: 80px 0;
      }

      .gr-container {
        padding: 0 24px;
      }

      .gr-header {
        margin-bottom: 48px;
      }

      .gr-grid {
        grid-template-columns: 1fr;
      }

      .gr-bottom-row {
        grid-template-columns: 1fr;
      }

      .gr-card {
        padding: 32px 24px 28px;
      }

      .gr-title {
        font-size: 18px;
      }

      .gr-divider {
        margin: 40px 0;
      }
    }


    #simple-steps {
      padding: 80px 0 72px;
      background: #f8f7f4;
      position: relative;
      overflow: hidden;
    }

    #simple-steps::before {
      content: 'Terra Verde';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: 'Georgia', 'Times New Roman', serif;
      font-size: clamp(80px, 12vw, 180px);
      font-weight: 400;
      font-style: italic;
      color: rgba(44, 74, 50, 0.06);
      white-space: nowrap;
      pointer-events: none;
      user-select: none;
      z-index: 0;
    }

    .ss-container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 48px;
      position: relative;
      z-index: 1;
    }

    .ss-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .ss-title {
      font-family: var(--font-head);
      font-size: clamp(28px, 3.5vw, 42px);
      font-weight: 700;
      color: #1a2e1e;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }

    .ss-subtitle {
      font-size: 15px;
      line-height: 1.7;
      color: #5a5a5a;
      max-width: 720px;
      margin: 0 auto;
      font-weight: 400;
    }

    .ss-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin-bottom: 48px;
    }

    .ss-step {
      text-align: center;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }

    .ss-step.in {
      opacity: 1;
      transform: none;
    }

    .ss-step-num {
      width: 44px;
      height: 44px;
      background: #d2a74b;
      color: #fff;
      font-family: var(--font-head);
      font-size: 18px;
      font-weight: 700;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .ss-step-title {
      font-family: var(--font-head);
      font-size: 17px;
      font-weight: 700;
      color: #1a2e1e;
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .ss-step-body {
      font-size: 13.5px;
      line-height: 1.7;
      color: #5a5a5a;
      max-width: 280px;
      margin: 0 auto;
    }

    .ss-cta {
      text-align: center;
    }

    .ss-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #d2a74b;
      color: #1a2e1e;
      font-family: var(--font-head);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.02em;
      padding: 16px 36px;
      border-radius: 100px;
      border: none;
      cursor: pointer;
      transition: all 0.35s var(--ease-out);
      text-decoration: none;
    }

    .ss-btn:hover {
      background: #8fa028;
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(164, 184, 48, 0.35);
    }

    /* Tablet */
    @media(max-width: 900px) {
      .ss-steps {
        grid-template-columns: 1fr;
        gap: 36px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
      }

      .ss-step-body {
        max-width: 400px;
      }
    }

    /* Mobile */
    @media(max-width: 768px) {
      #simple-steps {
        padding: 80px 0 70px;
      }

      .ss-container {
        padding: 0 24px;
      }

      .ss-header {
        margin-bottom: 44px;
      }

      .ss-title {
        font-size: 26px;
      }

      .ss-step-num {
        width: 40px;
        height: 40px;
        font-size: 16px;
      }

      .ss-step-title {
        font-size: 16px;
      }

      .ss-btn {
        padding: 14px 28px;
        font-size: 13px;
      }
    }

    #grounds-standards {
      padding: 140px 0;
      background: var(--green-deep);
      position: relative;
      overflow: hidden;
    }

    #grounds-standards::before {
      content: '';
      position: absolute;
      top: -300px;
      right: -200px;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201, 168, 76, .05), transparent 70%);
      pointer-events: none;
    }

    #grounds-standards::after {
      content: '';
      position: absolute;
      bottom: -250px;
      left: -200px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(61, 102, 68, .12), transparent 70%);
      pointer-events: none;
    }

    .gs-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 48px;
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .gs-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
    }

    .gs-tag::before {
      content: '';
      display: inline-block;
      width: 32px;
      height: 2px;
      background: var(--gold);
    }

    .gs-tag::after {
      content: '';
      display: inline-block;
      width: 32px;
      height: 2px;
      background: var(--gold);
    }

    .gs-title {
      font-family: var(--font-head);
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -.02em;
      color: #fff;
      margin-bottom: 28px;
    }

    .gs-title .accent {
      color: var(--gold);
    }

    .gs-body {
      font-size: 16px;
      line-height: 1.85;
      color: rgba(255, 255, 255, .55);
      font-weight: 400;
      max-width: 680px;
      margin: 0 auto 44px;
    }

    .gs-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--gold);
      color: var(--green-deep);
      font-family: var(--font-head);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .05em;
      text-transform: uppercase;
      padding: 18px 40px;
      border-radius: 3px;
      border: 2px solid var(--gold);
      text-decoration: none;
      position: relative;
      overflow: hidden;
      transition: all .4s var(--ease-out);
    }

    .gs-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--green-deep);
      transform: translateX(-101%);
      transition: transform .4s var(--ease-out);
    }

    .gs-btn span,
    .gs-btn svg {
      position: relative;
      z-index: 1;
      transition: color .3s;
    }

    .gs-btn:hover::before {
      transform: none;
    }

    .gs-btn:hover {
      color: var(--gold);
      transform: translateY(-3px);
      box-shadow: 0 16px 40px rgba(201, 168, 76, .35);
    }

    .gs-btn svg {
      transition: transform .3s;
    }

    .gs-btn:hover svg {
      transform: translateX(5px);
    }

    /* Decorative line accent */
    .gs-line {
      width: 60px;
      height: 3px;
      background: var(--gold);
      margin: 0 auto 36px;
      border-radius: 2px;
      opacity: .6;
    }

    /* Mobile */
    @media(max-width: 768px) {
      #grounds-standards {
        padding: 90px 0 80px;
      }

      .gs-container {
        padding: 0 24px;
      }

      .gs-title {
        font-size: 28px;
      }

      .gs-body {
        font-size: 15px;
        margin-bottom: 36px;
      }

      .gs-btn {
        padding: 16px 32px;
        font-size: 13px;
      }

      .gs-tag::before,
      .gs-tag::after {
        width: 20px;
      }
    }

    #careers {
      padding: 80px 0;
      background: #122f1f;
      position: relative;
      overflow: hidden;
      border-top: 1px solid #525252;
    }

    #careers::before {
      content: '';
      position: absolute;
      top: -150px;
      right: -100px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 255, 255, .06), transparent 70%);
      pointer-events: none;
    }

    .cr-container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 48px;
      position: relative;
      z-index: 1;
    }

    .cr-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .cr-image-wrap {
      position: relative;
    }

    .cr-frame {
      position: absolute;
      top: -20px;
      left: -20px;
      width: 80%;
      height: 70%;
      background: rgba(255, 255, 255, .15);
      border-radius: 4px;
      z-index: 0;
    }

    .cr-image {
      position: relative;
      z-index: 1;
      width: 100%;
      border-radius: 0 60px 0 0;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
    }

    .cr-image img {
      width: 100%;
      height: 340px;
      object-fit: cover;
      display: block;
    }

    .cr-content {
      color: #fff;
    }

    .cr-tag {
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .6);
      margin-bottom: 12px;
    }

    .cr-title {
      font-family: var(--font-head);
      font-size: clamp(26px, 3vw, 36px);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -.01em;
      margin-bottom: 20px;
    }

    .cr-body {
      font-size: 14.5px;
      line-height: 1.75;
      color: rgba(255, 255, 255, .75);
      font-weight: 400;
      margin-bottom: 28px;
      max-width: 480px;
    }

    .cr-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: #fff;
      font-family: var(--font-head);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .04em;
      padding: 12px 28px;
      border-radius: 100px;
      border: 1.5px solid rgba(255, 255, 255, .5);
      cursor: pointer;
      transition: all .35s var(--ease-out);
      text-decoration: none;
    }

    .cr-btn:hover {
      background: rgba(255, 255, 255, .12);
      border-color: #fff;
      transform: translateY(-2px);
    }

    /* CAREERS MODAL */
    #careers-modal {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(10, 18, 12, .88);
      backdrop-filter: blur(14px);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      animation: crFadeIn .3s ease;
    }

    #careers-modal.active {
      display: flex;
    }

    @keyframes crFadeIn {
      from {
        opacity: 0
      }

      to {
        opacity: 1
      }
    }

    .cr-modal-box {
      background: var(--cream);
      border-radius: 10px;
      max-width: 520px;
      width: 100%;
      max-height: 92vh;
      overflow-y: auto;
      position: relative;
      box-shadow: 0 40px 100px rgba(0, 0, 0, .5);
      animation: crPopIn .5s var(--ease-spring);
    }

    @keyframes crPopIn {
      from {
        opacity: 0;
        transform: scale(.92) translateY(20px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    .cr-modal-header {
      padding: 36px 36px 0;
    }

    .cr-modal-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .cr-modal-tag::before {
      content: '';
      width: 28px;
      height: 2px;
      background: var(--gold);
    }

    .cr-modal-title {
      font-family: var(--font-head);
      font-size: 26px;
      font-weight: 800;
      color: var(--green-deep);
      line-height: 1.15;
      margin-bottom: 6px;
    }

    .cr-modal-sub {
      font-size: 13px;
      color: var(--grey-soft);
      margin-bottom: 28px;
    }

    .cr-modal-body {
      padding: 0 36px 36px;
    }

    .cr-field {
      margin-bottom: 18px;
    }

    .cr-field label {
      display: block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--grey-soft);
      margin-bottom: 8px;
    }

    .cr-field input,
    .cr-field textarea {
      width: 100%;
      background: #fff;
      border: 1.5px solid var(--grey-line);
      border-radius: 6px;
      padding: 14px 16px;
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--charcoal);
      outline: none;
      transition: border-color .3s, box-shadow .3s;
    }

    .cr-field input:focus,
    .cr-field textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201, 168, 76, .12);
    }

    .cr-field input::placeholder,
    .cr-field textarea::placeholder {
      color: #aaa;
    }

    .cr-field textarea {
      resize: vertical;
      min-height: 80px;
    }

    .cr-file-wrap {
      position: relative;
    }

    .cr-file-input {
      position: absolute;
      inset: 0;
      opacity: 0;
      cursor: pointer;
      z-index: 2;
    }

    .cr-file-box {
      border: 2px dashed var(--grey-line);
      border-radius: 6px;
      padding: 24px;
      text-align: center;
      transition: border-color .3s, background .3s;
      cursor: pointer;
    }

    .cr-file-box:hover {
      border-color: var(--gold);
      background: rgba(201, 168, 76, .04);
    }

    .cr-file-box.has-file {
      border-color: var(--green-accent);
      background: rgba(61, 102, 68, .06);
    }

    .cr-file-icon {
      color: var(--gold);
      margin-bottom: 8px;
    }

    .cr-file-text {
      font-size: 13px;
      color: var(--grey-soft);
    }

    .cr-file-name {
      font-size: 13px;
      color: var(--green-deep);
      font-weight: 600;
      margin-top: 4px;
    }

    .cr-submit {
      width: 100%;
      background: var(--green-deep);
      color: #fff;
      font-family: var(--font-head);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 16px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: all .35s var(--ease-out);
      margin-top: 8px;
    }

    .cr-submit:hover {
      background: var(--gold);
      color: var(--green-deep);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(201, 168, 76, .3);
    }

    #cr-modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(26, 46, 30, .08);
      color: var(--green-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border: none;
      transition: all .25s var(--ease-out);
    }

    #cr-modal-close:hover {
      background: var(--gold);
      transform: rotate(90deg);
    }

    .cr-success {
      display: none;
      text-align: center;
      padding: 48px 36px;
    }

    .cr-success-check {
      width: 64px;
      height: 64px;
      background: rgba(201, 168, 76, .12);
      border: 2px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: var(--gold);
      animation: crSuccessPop .5s var(--ease-spring);
    }

    @keyframes crSuccessPop {
      from {
        transform: scale(0)
      }

      to {
        transform: scale(1)
      }
    }

    .cr-success-title {
      font-family: var(--font-head);
      font-size: 22px;
      font-weight: 800;
      color: var(--green-deep);
      margin-bottom: 8px;
    }

    .cr-success-sub {
      font-size: 13px;
      color: var(--grey-soft);
    }

    /* Mobile */
    @media(max-width: 900px) {
      .cr-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .cr-image img {
        height: 280px;
      }

      .cr-frame {
        width: 70%;
        height: 60%;
      }
    }

    @media(max-width: 768px) {
      #careers {
        padding: 70px 0 60px;
      }

      .cr-container {
        padding: 0 24px;
      }

      .cr-image img {
        height: 240px;
        border-radius: 0 40px 0 0;
      }

      .cr-title {
        font-size: 24px;
      }

      .cr-body {
        font-size: 14px;
      }

      .cr-modal-box {
        max-height: 95vh;
      }

      .cr-modal-header,
      .cr-modal-body {
        padding-left: 24px;
        padding-right: 24px;
      }

      .cr-modal-header {
        padding-top: 28px;
      }

      .cr-modal-title {
        font-size: 22px;
      }
    }

    /* ── GALLERY ── */
    #gallery {
      padding: 110px 0;
      background: var(--cream);
    }

    .gallery-hd {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: flex-end;
      margin-bottom: 64px;
    }

    .gallery-side {
      font-size: 14px;
      line-height: 1.8;
      color: var(--grey-soft);
      font-weight: 400;
      max-width: 440px;
    }

    .gallery-side p+p {
      margin-top: 14px;
    }

    .gallery-masonry {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: repeat(6, 190px);
      gap: 6px;
    }

    .g-item {
      position: relative;
      overflow: hidden;
      border-radius: 3px;
      cursor: none;
    }

    .g-item:nth-child(1) {
      grid-column: 1/6;
      grid-row: 1/4
    }

    .g-item:nth-child(2) {
      grid-column: 6/9;
      grid-row: 1/2
    }

    .g-item:nth-child(3) {
      grid-column: 9/13;
      grid-row: 1/2
    }

    .g-item:nth-child(4) {
      grid-column: 6/10;
      grid-row: 2/4
    }

    .g-item:nth-child(5) {
      grid-column: 10/13;
      grid-row: 2/4
    }

    .g-item:nth-child(6) {
      grid-column: 1/6;
      grid-row: 4/7
    }

    .g-item:nth-child(7) {
      grid-column: 6/9;
      grid-row: 4/5
    }

    .g-item:nth-child(8) {
      grid-column: 9/13;
      grid-row: 4/5
    }

    .g-item:nth-child(9) {
      grid-column: 6/13;
      grid-row: 5/7
    }

    .g-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .8s var(--ease-out), filter .5s;
      filter: brightness(.85);
    }

    .g-item:not(.g-flip):hover img {
      transform: scale(1.07);
      filter: brightness(1);
    }

    .g-flip {
      perspective: 1100px;
    }

    .g-flip-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transform-style: preserve-3d;
      transition: transform .75s var(--ease-out);
    }

    .g-flip:hover .g-flip-inner,
    .g-flip:focus-within .g-flip-inner {
      transform: rotateY(180deg);
    }

    .g-face {
      position: absolute;
      inset: 0;
      backface-visibility: hidden;
      overflow: hidden;
    }

    .g-face--back {
      transform: rotateY(180deg);
    }

    .g-flip:hover .g-face img,
    .g-flip:focus-within .g-face img {
      filter: brightness(1);
    }

    .g-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26, 46, 30, .8) 0%, transparent 55%);
      opacity: 0;
      transition: opacity .4s;
      display: flex;
      align-items: flex-end;
      padding: 24px;
    }

    .g-item:hover .g-overlay,
    .g-item:focus-within .g-overlay {
      opacity: 1;
    }

    .g-flip .g-face--front .g-overlay {
      opacity: 1;
    }

    .g-label {
      display: inline-flex;
      align-items: center;
      padding: 5px 12px;
      border: 1px solid rgba(226, 196, 122, .65);
      border-radius: 100px;
      background: rgba(26, 46, 30, .58);
      box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
      backdrop-filter: blur(10px);
      font-family: Georgia, 'Times New Roman', serif;
      font-size: 14px;
      font-style: italic;
      font-weight: 700;
      color: var(--gold-light);
      letter-spacing: .04em;
      transform: translateY(10px);
      transition: transform .4s var(--ease-out), background .3s ease, border-color .3s ease;
    }

    .g-item:hover .g-label,
    .g-item:focus-within .g-label {
      transform: none;
    }

    .g-flip .g-face--front .g-label {
      transform: none;
    }

    .g-zoom {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      opacity: 0;
      transform: scale(.7);
      transition: opacity .35s, transform .4s var(--ease-spring);
    }

    .g-item:hover .g-zoom,
    .g-item:focus-within .g-zoom {
      opacity: 1;
      transform: scale(1);
    }

    /* ── LIGHTBOX ── */
    #lightbox {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(0, 0, 0, .93);
      display: none;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(12px);
    }

    #lightbox.active {
      display: flex;
    }

    #lightbox img {
      max-width: 88vw;
      max-height: 88vh;
      object-fit: contain;
      border-radius: 3px;
      animation: lbIn .4s var(--ease-out);
    }

    @keyframes lbIn {
      from {
        opacity: 0;
        transform: scale(.92)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    #lb-close {
      position: absolute;
      top: 28px;
      right: 28px;
      width: 48px;
      height: 48px;
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      cursor: none;
      transition: border-color .25s, background .25s;
    }

    #lb-close:hover {
      border-color: var(--gold);
      background: rgba(201, 168, 76, .1);
    }

    /* ── CLIENTS ── */
    #clients {
      padding: 72px 0;
      background: var(--cream);
      border-top: 1px solid var(--grey-line);
    }

    .clients-hd {
      text-align: center;
      margin-bottom: 56px;
    }

    .clients-hd .section-head {
      font-size: clamp(30px, 3.2vw, 48px);
    }

    .clients-sub {
      font-size: 14px;
      color: var(--grey-soft);
      margin-top: 12px;
    }

    .logos-row {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      align-items: center;
      border: 1px solid var(--grey-line);
      border-radius: 6px;
      overflow: hidden;
      background: #fff;
    }

    .logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 36px 24px;
      border-right: 1px solid var(--grey-line);
      background: #fff;
      filter: grayscale(1) contrast(1.1);
      opacity: .85;
      transition: all .4s var(--ease-spring);
      height: 120px;
    }

    .logo-item:last-child {
      border-right: none;
    }

    .logo-item:hover {
      filter: grayscale(0) contrast(1);
      opacity: 1;
      background: var(--warm-white);
      transform: scale(1.03);
    }

    .logo-item img {
      max-width: 160px;
      max-height: 100px;
      width: auto;
      height: auto;
      object-fit: contain;
      display: block;
    }

    @media(max-width:900px) {
      .logos-row {
        grid-template-columns: repeat(3, 1fr);
      }

      .logo-item:nth-child(3n) {
        border-right: none;
      }

      .logo-item {
        border-bottom: 1px solid var(--grey-line);
      }

      .logo-item:nth-last-child(-n+3) {
        border-bottom: none;
      }
    }

    @media(max-width:520px) {
      .logos-row {
        grid-template-columns: repeat(2, 1fr);
      }

      .logo-item {
        border-right: 1px solid var(--grey-line) !important;
        border-bottom: 1px solid var(--grey-line);
      }

      .logo-item:nth-child(2n) {
        border-right: none !important;
      }
    }

    .accreds {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-top: 52px;
      flex-wrap: wrap;
    }

    .accred-card {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 18px 24px;
      background: #fff;
      border: 1px solid var(--grey-line);
      border-radius: 6px;
      box-shadow: 0 2px 16px rgba(0, 0, 0, .04);
      transition: all .35s var(--ease-out);
    }

    .accred-card:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(201, 168, 76, .14);
    }

    .accred-icon {
      width: 36px;
      height: 36px;
      background: var(--green-deep);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      flex-shrink: 0;
    }

    .accred-title {
      font-family: var(--font-head);
      font-size: 13px;
      font-weight: 700;
      color: var(--green-deep);
    }

    .accred-desc {
      font-size: 11px;
      color: var(--grey-soft);
      margin-top: 2px;
    }

    /* ── Clients Carousel ── */
    #clients {
      padding: 72px 0;
      overflow: visible;
    }

    #clients .clients-hd {
      text-align: center;
      margin-bottom: 48px;
    }

    #clients .clients-sub {
      font-size: 15px;
      color: #6b7280;
      margin-top: 8px;
    }

    .carousel-wrapper {
      overflow: hidden;
      width: 100%;
      /* fade edges */
      mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    }

    .carousel-track {
      display: flex;
      align-items: center;
      width: max-content;
    }

    .carousel-track:hover {
      animation-play-state: paused;
    }

    @keyframes clients-scroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    .logo-card {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 172px;
      height: 116px;
      margin: 0 14px;
      background: #ffffff;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      padding: 8px 12px;
      flex-shrink: 0;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
      box-sizing: border-box;
    }

    .logo-card:hover {
      border-color: #d1d5db;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .logo-card img {
      width: 136px;
      height: 76px;
      object-fit: contain;
      transition: filter 0.25s ease;
    }

    /* .logo-card:hover img {
  filter: grayscale(0%) opacity(1);
} */

    /* Mobile tap = color reveal (mirrors desktop hover) */
    @media (max-width: 640px) {
      .logo-card.touched img {
        filter: grayscale(0%) opacity(1);
      }

      .logo-card.touched {
        border-color: #d1d5db;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      }
    }

    /* Mobile — slightly smaller cards */
    @media (max-width: 640px) {
      .logo-card {
        width: 130px;
        height: 68px;
        margin: 0 10px;
      }

      .logo-card img {
        max-height: 38px;
      }

      .logo-card:hover img {
        filter: grayscale(0%) opacity(2);
      }

    }

    /* ── TESTIMONIALS ── */
    #testimonials {
      padding: 96px 0;
      background: var(--warm-white);
      position: relative;
      overflow: hidden;
      border-top: 1px solid var(--grey-line);
    }

    #testimonials::before {
      content: '\201C';
      position: absolute;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      font-family: var(--font-head);
      font-size: 300px;
      font-weight: 800;
      color: rgba(44, 74, 50, .04);
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }

    .testimonials-hd {
      text-align: center;
      margin-bottom: 72px;
      position: relative;
      z-index: 1;
    }

    .testimonials-hd .tag {
      justify-content: center;
    }

    .testimonials-hd .section-head {
      margin-bottom: 14px;
    }

    .testimonials-sub {
      font-size: 14px;
      color: var(--grey-soft);
      max-width: 540px;
      margin: 0 auto;
    }

    .testimonial-slider {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
      z-index: 1;
    }

    .testimonial-track {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      background: #fff;
      box-shadow: 0 30px 80px rgba(26, 46, 30, .12);
      border: 1px solid var(--grey-line);
    }

    .testimonial-card {
      padding: 60px 64px 56px;
      position: relative;
      display: none;
      animation: testFade .5s var(--ease-out);
    }

    .testimonial-card.active {
      display: block;
    }

    @keyframes testFade {
      from {
        opacity: 0;
        transform: translateY(16px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    .testimonial-quote-mark {
      position: absolute;
      top: 24px;
      left: 36px;
      font-family: var(--font-head);
      font-size: 120px;
      font-weight: 800;
      color: rgba(201, 168, 76, .18);
      line-height: .8;
      pointer-events: none;
    }

    .testimonial-rating {
      display: flex;
      gap: 4px;
      margin-bottom: 18px;
      position: relative;
      z-index: 1;
    }

    .testimonial-rating svg {
      color: var(--gold);
    }

    .testimonial-text {
      font-size: 16px;
      line-height: 1.8;
      color: var(--charcoal);
      font-weight: 400;
      margin-bottom: 30px;
      font-style: italic;
      position: relative;
      z-index: 1;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 16px;
      padding-top: 24px;
      border-top: 1px solid var(--grey-line);
    }

    .testimonial-avatar {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: var(--green-deep);
      color: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-size: 18px;
      font-weight: 800;
      flex-shrink: 0;
    }

    .testimonial-name {
      font-family: var(--font-head);
      font-size: 15px;
      font-weight: 700;
      color: var(--green-deep);
      letter-spacing: -.005em;
    }

    .testimonial-role {
      font-size: 12px;
      color: var(--grey-soft);
      margin-top: 3px;
    }

    .testimonial-nav {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 18px;
      margin-top: 36px;
    }

    .testimonial-arrow {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: transparent;
      border: 1.5px solid var(--grey-line);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green-deep);
      cursor: pointer;
      transition: all .3s var(--ease-out);
    }

    .testimonial-arrow:hover {
      background: var(--green-deep);
      color: #fff;
      border-color: var(--green-deep);
      transform: scale(1.05);
    }

    .testimonial-dots {
      display: flex;
      gap: 10px;
    }

    .testimonial-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--grey-line);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: all .3s var(--ease-out);
    }

    .testimonial-dot.active {
      background: var(--gold);
      width: 28px;
      border-radius: 5px;
    }

    @media(max-width:768px) {
      #testimonials {
        padding: 90px 0;
      }

      .testimonial-card {
        padding: 44px 28px 40px;
      }

      .testimonial-quote-mark {
        font-size: 80px;
        top: 12px;
        left: 20px;
      }

      .testimonial-text {
        font-size: 15px;
      }
    }

    /* ── CERTIFICATIONS ── */
    #certifications {
      padding: 80px 0;
      background: var(--cream);
      border-top: 1px solid var(--grey-line);
    }

    .cert-hd {
      text-align: center;
      margin-bottom: 56px;
    }

    .cert-hd .tag {
      justify-content: center;
    }

    .cert-hd .section-head {
      margin-bottom: 10px;
    }

    .cert-hd .cert-sub {
      font-size: 14px;
      color: var(--grey-soft);
    }

    .cert-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 1040px;
      margin: 0 auto;
    }

    .cert-item {
      background: #fff;
      border: 1px solid var(--grey-line);
      border-radius: 8px;
      padding: 34px 24px 28px;
      text-align: center;
      transition: all .35s var(--ease-out);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      position: relative;
      overflow: hidden;
    }

    .cert-item::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(201, 168, 76, .06), transparent 60%);
      opacity: 0;
      transition: opacity .4s;
    }

    .cert-item:hover {
      border-color: var(--gold);
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(201, 168, 76, .18);
    }

    .cert-item:hover::before {
      opacity: 1;
    }

    .cert-logo {
      width: 110px;
      height: 110px;
      border-radius: 50%;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      flex-shrink: 0;
      padding: 8px;
      /* box-shadow:0 8px 24px rgba(26,46,30,.12); */
      transition: transform .4s var(--ease-spring);
    }

    .cert-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .cert-item:hover .cert-logo {
      transform: scale(1.05);
    }

    .cert-logo-placeholder {
      background: var(--green-deep);
      color: var(--gold);
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 13px;
      letter-spacing: .06em;
      line-height: 1.1;
      text-align: center;
    }

    .cert-logo-placeholder::before {
      content: '';
      position: absolute;
      inset: -5px;
      border-radius: 50%;
      border: 1.5px dashed rgba(201, 168, 76, .4);
      transition: transform .8s linear;
    }

    .cert-item:hover .cert-logo-placeholder::before {
      transform: rotate(180deg);
    }

    .cert-title {
      font-family: var(--font-head);
      font-size: 14px;
      font-weight: 800;
      color: var(--green-deep);
      letter-spacing: -.005em;
      position: relative;
      z-index: 1;
      margin-top: 4px;
    }

    .cert-desc {
      font-size: 11px;
      line-height: 1.5;
      color: var(--grey-soft);
      position: relative;
      z-index: 1;
    }

    @media(max-width:900px) {
      .cert-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(max-width:480px) {
      .cert-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ── CONTACT ── */
    #contact {
      padding: 110px 0;
      background: var(--green-deep);
      position: relative;
      overflow: hidden;
    }

    .contact-glow-1 {
      position: absolute;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201, 168, 76, .07), transparent 70%);
      top: -200px;
      right: -100px;
      pointer-events: none;
    }

    .contact-glow-2 {
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(61, 102, 68, .15), transparent 70%);
      bottom: -100px;
      left: -100px;
      pointer-events: none;
      animation: glowPulse 6s ease-in-out infinite;
    }

    @keyframes glowPulse {

      0%,
      100% {
        transform: scale(1)
      }

      50% {
        transform: scale(1.15)
      }
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 96px;
      align-items: start;
    }

    .contact-hd {
      color: #fff;
    }

    .contact-hd .accent {
      color: var(--gold-light);
    }

    .contact-intro {
      font-size: 15px;
      line-height: 1.8;
      color: #fff;
      font-weight: 400;
      margin: 24px 0 44px;
      max-width: 420px;
    }

    .contact-details {
      background: var(--green-deep);
      border-top: 1px solid rgba(255, 255, 255, .07);
      border-bottom: 1px solid rgba(255, 255, 255, .07);
      padding: 0;
    }

    .cd-list {
      max-width: 1240px;
      margin: 0 auto;
    }

    .cd-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px 0;
      position: relative;
    }

    .cd-item:not(:last-child)::after {
      content: '';
      position: absolute;

      bottom: 0;
      width: 1px;
      background: rgba(255, 255, 255, .08);
    }

    .cd-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(201, 168, 76, .1);
      border: 1.5px solid rgba(201, 168, 76, .25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      flex-shrink: 0;
      margin-top: 2px;
      transition: all .35s var(--ease-spring);
    }

    .cd-item:hover .cd-icon {
      background: var(--gold);
      color: var(--green-deep);
      transform: scale(1.1);
      box-shadow: 0 6px 18px rgba(201, 168, 76, .3);
    }

    .cd-info {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .cd-label {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .cd-value {
      font-size: 15px;
      font-weight: 500;
      color: #fff;
      line-height: 1.5;
      transition: color .25s;
    }

    .cd-value a {
      color: #fff;
      text-decoration: none;
      transition: color .25s;
    }

    .cd-value a:hover {
      color: var(--gold-light);
    }

    /* Mobile */
    @media(max-width: 768px) {
      .cd-list {
        grid-template-columns: 1fr;
        padding: 0 24px;
      }

      .cd-item {
        padding: 20px 0;
      }

      .cd-item:not(:last-child)::after {
        right: auto;
        left: 0;
        top: auto;
        bottom: auto;
        width: 100%;
        height: 1px;
      }

      .cd-icon {
        width: 36px;
        height: 36px;
      }

      .cd-icon svg {
        width: 16px;
        height: 16px;
      }

      .cd-value {
        font-size: 14px;
      }
    }

    .cdetail {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      padding: 22px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
      transition: padding-left .3s;
    }

    .cdetail:first-child {
      border-top: 1px solid rgba(255, 255, 255, .07);
    }

    .cdetail:hover {
      padding-left: 6px;
    }

    .cdetail-icon {
      width: 38px;
      height: 38px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      margin-top: 2px;
      background: rgba(201, 168, 76, .08);
      border-radius: 50%;
      transition: background .3s;
    }

    .cdetail:hover .cdetail-icon {
      background: rgba(201, 168, 76, .15);
    }

    .cdetail-label {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .3);
      margin-bottom: 5px;
    }

    .cdetail-value {
      font-size: 15px;
      color: #fff;
      font-weight: 500;
    }

    .cdetail-value a {
      transition: color .25s;
    }

    .cdetail-value a:hover {
      color: var(--gold-light);
    }

    .socials {
      display: flex;
      gap: 14px;
      margin-top: 36px;
      align-items: left;
      flex-direction: column;
    }

    .socials .soc-icon-in {
      display: flex;
      gap: 10px;
    }

    .socials-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-right: 6px;
    }

    .soc-btn {
      width: 52px;
      height: 52px;
      border: 2px solid var(--gold);
      background: rgba(201, 168, 76, .15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-size: 18px;
      font-weight: 800;
      color: var(--gold);
      transition: all .35s var(--ease-spring);
      box-shadow: 0 6px 18px rgba(201, 168, 76, .35);
    }

    .soc-btn svg {
      width: 22px;
      height: 22px;
    }

    .soc-btn:hover {
      background: var(--green-deep);
      color: var(--gold);
      border-color: var(--gold-light);
      transform: translateY(-5px) scale(1.1);
      box-shadow: 0 12px 30px rgba(201, 168, 76, .55);
    }

    /* Footer socials variation */
    #footer .soc-btn {
      width: 44px;
      height: 44px;
      background: rgba(201, 168, 76, .15);
      color: var(--gold);
      border-color: var(--gold);
      font-size: 16px;
      box-shadow: 0 4px 12px rgba(201, 168, 76, .2);
    }

    #footer .soc-btn svg {
      width: 18px;
      height: 18px;
    }

    #footer .soc-btn:hover {
      background: var(--gold);
      color: var(--green-deep);
    }

    .form-wrap {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .09);
      border-radius: 8px;
      padding: 52px;
      position: relative;
      overflow: hidden;
    }

    .form-wrap::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
      background-size: 200%;
      animation: shimmer 3s linear infinite;
    }

    @keyframes shimmer {
      from {
        background-position: 200%
      }

      to {
        background-position: -200%
      }
    }

    .form-title {
      font-family: var(--font-head);
      font-size: 24px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -.005em;
      margin-bottom: 6px;
    }

    .form-subtitle {
      font-size: 13px;
      color: rgba(255, 255, 255, .4);
      margin-bottom: 36px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-field {
      margin-bottom: 16px;
    }

    .form-field label {
      display: block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .35);
      margin-bottom: 8px;
    }

    .form-field input,
    .form-field textarea,
    .form-field select {
      width: 100%;
      background: rgba(255, 255, 255, .05);
      border: 1.5px solid rgba(255, 255, 255, .1);
      border-radius: 4px;
      padding: 15px 18px;
      font-family: var(--font-body);
      font-size: 14px;
      color: #fff;
      font-weight: 400;
      outline: none;
      transition: border-color .3s, background .3s, box-shadow .3s;
      -webkit-appearance: none;
    }

    .form-field input::placeholder,
    .form-field textarea::placeholder {
      color: rgba(255, 255, 255, .2);
    }

    .form-field input:focus,
    .form-field textarea:focus,
    .form-field select:focus {
      border-color: var(--gold);
      background: rgba(255, 255, 255, .07);
      box-shadow: 0 0 0 3px rgba(201, 168, 76, .12);
    }

    .form-field select option {
      background: var(--green-deep);
      color: #fff;
    }

    .form-field textarea {
      resize: vertical;
      min-height: 120px;
    }

    .form-btn {
      width: 100%;
      margin-top: 8px;
      background: var(--gold);
      border: none;
      border-radius: 4px;
      padding: 18px 36px;
      font-family: var(--font-head);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--green-deep);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      position: relative;
      overflow: hidden;
      transition: all .4s var(--ease-out);
    }

    .form-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gold-light);
      transform: translateX(-101%);
      transition: transform .4s var(--ease-out);
    }

    .form-btn:hover::before {
      transform: none;
    }

    .form-btn span,
    .form-btn svg {
      position: relative;
      z-index: 1;
    }

    .form-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 48px rgba(201, 168, 76, .4);
    }

    .form-success {
      display: none;
      text-align: center;
      padding: 40px 20px;
    }

    .success-check {
      width: 64px;
      height: 64px;
      background: rgba(201, 168, 76, .12);
      border: 2px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: var(--gold);
      animation: successPop .5s var(--ease-spring);
    }

    @keyframes successPop {
      from {
        transform: scale(0)
      }

      to {
        transform: scale(1)
      }
    }

    .success-title {
      font-family: var(--font-head);
      font-size: 26px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -.005em;
      margin-bottom: 8px;
    }

    .success-sub {
      font-size: 13px;
      color: rgba(255, 255, 255, .4);
    }

    /* ── FOOTER ── */
    #footer {
      background: #0f1a11;
      border-top: 1px solid rgba(201, 168, 76, .15);
      padding: 80px 0 40px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
      gap: 64px;
      margin-bottom: 64px;
    }

    .footer-logo img {
      height: 58px;
      width: auto;
      filter: brightness(0) invert(1);
      margin-bottom: 18px;
    }

    .fb-sub {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
    }

    .fb-desc {
      font-size: 13px;
      line-height: 1.75;
      color: rgba(255, 255, 255, .3);
      max-width: 240px;
    }

    .ft-col-title {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .ft-col ul {
      display: flex;
      flex-direction: column;
      gap: 11px;
    }

    .ft-col ul li a {
      font-size: 13px;
      color: rgba(255, 255, 255, .35);
      font-weight: 400;
      transition: color .25s, padding-left .3s;
      display: block;
    }

    .ft-col ul li a:hover {
      color: rgba(255, 255, 255, .8);
      padding-left: 6px;
    }

    .ft-hours-row {
      display: flex;
      justify-content: space-between;
      padding: 9px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .05);
    }

    .ft-hours-row:first-child {
      border-top: 1px solid rgba(255, 255, 255, .05);
    }

    .ft-day {
      font-size: 12px;
      color: rgba(255, 255, 255, .35);
    }

    .ft-time {
      font-family: var(--font-head);
      font-size: 12px;
      font-weight: 600;
      color: rgba(255, 255, 255, .7);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .06);
      padding-top: 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-legal {
      font-size: 11px;
      color: rgba(255, 255, 255, .2);
      line-height: 1.6;
    }

    .footer-links {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }

    .footer-links a,
    .footer-links span {
      font-size: 11px;
      color: rgba(255, 255, 255, .25);
      transition: color .25s;
    }

    .footer-links a:hover {
      color: var(--gold);
    }

    /* ── STICKY CTA ── */
    #sticky-cta {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 500;
      transform: translateY(80px);
      opacity: 0;
      transition: all .6s var(--ease-out);
    }

    #sticky-cta.show {
      transform: none;
      opacity: 1;
    }

    .sticky-pill {
      display: flex;
      align-items: center;
      gap: 12px;
      background: var(--gold);
      color: var(--green-deep);
      font-family: var(--font-head);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 15px 28px;
      border-radius: 100px;
      box-shadow: 0 10px 40px rgba(201, 168, 76, .45);
      transition: all .35s var(--ease-spring);
    }

    .sticky-pill:hover {
      transform: translateY(-4px) scale(1.03);
      box-shadow: 0 18px 50px rgba(201, 168, 76, .55);
    }

    .sticky-dot {
      width: 8px;
      height: 8px;
      background: var(--green-deep);
      border-radius: 50%;
      animation: pulse 2.2s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        transform: scale(1)
      }

      50% {
        transform: scale(1.5);
        opacity: .6
      }
    }

    /* ── MICRO-ANIMATIONS ── */
    /* Hover lift on cards */
    .accred-card {
      transition: all .35s var(--ease-out);
    }

    .logo-item {
      transition: filter .5s, background .3s, transform .4s var(--ease-spring);
    }

    /* Section tag line-draw on scroll-in */
    .tag {
      position: relative;
      overflow: hidden;
    }

    .tag.in::before {
      animation: tagLine .6s var(--ease-out) forwards;
    }

    @keyframes tagLine {
      from {
        transform: scaleX(0);
        transform-origin: left
      }

      to {
        transform: scaleX(1)
      }
    }

    /* Service card shimmer on hover */
    .svc-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, .04) 50%, transparent 60%);
      transform: translateX(-100%);
      transition: transform .6s ease;
    }

    .svc-card:hover::after {
      transform: translateX(100%);
    }

    /* Accred card icon spin on hover */
    .accred-icon {
      transition: transform .4s var(--ease-spring), background .3s;
    }

    .accred-card:hover .accred-icon {
      transform: rotate(-10deg) scale(1.1);
      background: var(--green-accent);
    }

    /* Nav link active dot */
    .nav-links a {
      position: relative;
    }

    /* About image subtle depth shift */
    .about-img-main,
    .about-img-accent {
      transition: transform .7s var(--ease-out), box-shadow .7s;
    }

    .about-images:hover .about-img-main {
      transform: scale(1.025) translateY(-4px);
      box-shadow: 0 52px 120px rgba(26, 46, 30, .32);
    }

    .about-images:hover .about-img-accent {
      transform: scale(1.035) translateY(4px);
    }

    /* Ticker item hover highlight */
    .ticker-item {
      transition: background .3s;
    }

    .ticker-item:hover {
      background: rgba(201, 168, 76, .06);
    }

    /* CTA sticky pulse ring */
    .sticky-pill {
      position: relative;
    }

    .sticky-pill::after {
      content: '';
      position: absolute;
      inset: -6px;
      border-radius: 100px;
      border: 2px solid rgba(201, 168, 76, .3);
      animation: stickyRing 2.8s ease-in-out infinite;
      pointer-events: none;
    }

    @keyframes stickyRing {

      0%,
      100% {
        opacity: 0;
        transform: scale(.92)
      }

      50% {
        opacity: 1;
        transform: scale(1.04)
      }
    }

    /* Stat cell number highlight on hover */
    .stat-cell:hover .count-num {
      color: var(--green-accent);
      transition: color .3s;
    }

    /* Form field focus label animate */
    .form-field label {
      transition: color .25s, letter-spacing .25s;
    }

    .form-field input:focus~label,
    .form-field textarea:focus~label {
      color: var(--gold);
      letter-spacing: .2em;
    }

    /* Contact detail row arrow on hover */
    .cdetail::after {
      content: '→';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      opacity: 0;
      color: var(--gold);
      font-size: 14px;
      transition: opacity .3s, right .3s;
    }

    .cdetail {
      position: relative;
    }

    .cdetail:hover::after {
      opacity: 1;
      right: 4px;
    }

    /* Google map section */
    #map-section {
      padding: 0;
      background: var(--green-deep);
      position: relative;
      overflow: hidden;
    }

    .map-wrapper {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      min-height: 480px;
    }

    .map-info {
      background: var(--green-deep);
      padding: 72px 56px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      z-index: 1;
    }

    .map-info::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, .3) 30%, rgba(201, 168, 76, .3) 70%, transparent);
    }

    .map-tag {
      margin-bottom: 16px;
    }

    .map-head {
      font-family: var(--font-head);
      font-size: clamp(28px, 3vw, 42px);
      font-weight: 800;
      color: #fff;
      letter-spacing: -.01em;
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .map-head span {
      color: var(--gold);
    }

    .map-detail-row {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    .map-detail-row:first-of-type {
      border-top: 1px solid rgba(255, 255, 255, .06);
      margin-top: 20px;
    }

    .map-detail-icon {
      width: 36px;
      height: 36px;
      background: rgba(201, 168, 76, .1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      flex-shrink: 0;
    }

    .map-detail-label {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .3);
      margin-bottom: 4px;
    }

    .map-detail-value {
      font-size: 14px;
      color: #fff;
      font-weight: 400;
      line-height: 1.5;
    }

    .map-detail-value a {
      color: #fff;
      transition: color .25s;
    }

    .map-detail-value a:hover {
      color: var(--gold-light);
    }

    .map-cta-row {
      margin-top: 32px;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .map-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold);
      color: var(--green-deep);
      font-family: var(--font-head);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 13px 22px;
      border-radius: 3px;
      transition: all .3s var(--ease-out);
      border: 1.5px solid var(--gold);
    }

    .map-btn:hover {
      background: transparent;
      color: var(--gold);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(201, 168, 76, .25);
    }

    .map-btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: rgba(255, 255, 255, .7);
      font-family: var(--font-head);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 13px 22px;
      border-radius: 3px;
      border: 1.5px solid rgba(255, 255, 255, .15);
      transition: all .3s var(--ease-out);
    }

    .map-btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-2px);
    }

    .map-embed {
      position: relative;
      overflow: hidden;
    }

    .map-embed iframe {
      width: 100%;
      height: 100%;
      min-height: 480px;
      border: 0;
      display: block;
      filter: saturate(0.7) contrast(1.05);
      transition: filter .4s;
    }

    .map-embed:hover iframe {
      filter: saturate(1) contrast(1);
    }

    .map-embed-overlay {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(to right, var(--green-deep) 0%, transparent 8%),
        linear-gradient(to bottom, rgba(26, 46, 30, .3) 0%, transparent 20%);
    }

    @media(max-width:1024px) {
      .map-wrapper {
        grid-template-columns: 1fr;
      }

      .map-embed iframe {
        min-height: 360px;
      }

      .map-info::after {
        display: none;
      }
    }

    @media(max-width:768px) {
      .map-info {
        padding: 48px 24px;
      }
    }

    @media(max-width:1280px) {
      .nav-certs {
        display: none;
      }
    }

    @media(max-width:1024px) {
      #hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto 50vh;
      }

      .hero-left {
        padding: 0 40px;
      }

      .hero-left-content {
        padding: 100px 0 32px;
      }

      .hero-scroll-hint {
        display: none;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 64px;
      }

      .about-images {
        height: 440px;
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .services-hd {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
      }

      .contact-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .stat-cell {
        border-bottom: 1px solid var(--grey-line);
      }
    }

    @media(max-width:768px) {
      body {
        cursor: auto;
      }

      #cursor,
      #cursor-ring {
        display: none;
      }

      #hero {
        grid-template-rows: auto 42vh;
      }

      .hero-left {
        padding: 0 24px;
      }

      .hero-left-content {
        padding: 96px 0 28px;
      }

      .hero-headline {
        font-size: 42px;
      }

      .hero-stats {
        grid-template-columns: repeat(3, 1fr);
      }

      .hsi-num {
        font-size: 22px;
      }

      .hsi-label {
        font-size: 8px;
        letter-spacing: .1em;
      }

      .container {
        padding: 0 24px;
      }

      .nav-links {
        display: none;
      }

      .nav-certs {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .nav-inner {
        display: flex;
        justify-content: space-between;
        padding: 20px 24px;
      }

      .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
      }

      .hero-dots {
        right: 12px;
        gap: 6px;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .gallery-hd {
        grid-template-columns: 1fr;
      }

      .gallery-masonry {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }

      .g-item {
        grid-column: auto !important;
        grid-row: auto !important;
        height: 200px;
      }

      .form-wrap {
        padding: 28px 24px;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      #about,
      #services,
      #gallery,
      #clients,
      #contact,
      #stats {
        padding: 80px 0;
      }

      .accreds {
        flex-direction: column;
        align-items: stretch;
      }

      #sticky-cta {
        bottom: 20px;
        right: 20px;
      }

      .veg-list {
        grid-template-columns: 1fr;
      }
    }

/* LIGHTBOX */
.g-lightbox{
  position:fixed;
  inset:0;
  background:rgba(0, 0, 0, 0.555);
  z-index:999999;
  display:none;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.g-lightbox.active{
  display:flex;
}

.g-lightbox-slider{
  display:flex;
  width:100%;
  height:100%;
  transition:transform .4s ease;
}

.g-lightbox-slide{
  min-width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px;
}

.g-lightbox-slide img{
  width:100%;
  height:70vh;
  object-fit:contain;
  border-radius:12px;
}
.single-wrap{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}
.compare-wrap{
  width:100%;
  display:flex;
  gap:20px;
  justify-content:center;
  align-items:center;
}

.compare-box{
  width:45%;
}
.g-close,
.g-prev,
.g-next{
  position:absolute;
  border:none;
  background:rgba(255,255,255,.15);
  color:#fff;
  cursor:pointer;
  z-index:10;
  backdrop-filter:blur(10px);
}

.g-close{
  top:20px;
  right:20px;
  width:50px;
  height:50px;
  border-radius:50%;
  font-size:28px;
}

.g-prev,
.g-next{
  top:50%;
  transform:translateY(-50%);
  width:55px;
  height:55px;
  border-radius:50%;
  font-size:26px;
}

.g-prev{
  left:20px;
}

.g-next{
  right:20px;
}

@media(max-width:768px){

  .g-lightbox-slide{
    padding:20px;
  }

  .g-prev,
  .g-next{
    width:45px;
    height:45px;
    font-size:20px;
  }

}
.compare-wrap{
  display:flex;
  gap:20px;
  width:100%;
  justify-content:center;
  align-items:center;
}
.compare-box{
  width:45%;
  position:relative;
  overflow:hidden;
  border-radius:14px;
}

.compare-box img{
  width:100%;
  height:70vh;
  object-fit:cover;
  display:block;
  border-radius:14px;
}

/* NEW LABEL STYLE (BOTTOM OVER IMAGE) */
.compare-label{
  position:absolute;
  bottom:12px;
  left:50%;
  transform:translateX(-50%);

  padding:6px 14px;
  border-radius:999px;

  background:rgba(0,0,0,.45);
  backdrop-filter:blur(8px);

  color:#fff;
  font-size:13px;
  font-weight:600;
  letter-spacing:.5px;
  text-transform:uppercase;
}
@media(max-width:768px){

  .compare-wrap{
    flex-direction:column;
  }

  .compare-box{
    width:100%;
  }

}
.g-lightbox *{
  cursor: inherit;
}
