
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:       #0B1E45;
      --navy-dark:  #07152E;
      --navy-deep:  #050E20;
      --green:      #8AC640;
      --green-dim:  #6FA62C;
      --white:      #FFFFFF;
      --muted:      rgba(255,255,255,0.55);
      --border:     rgba(255,255,255,0.08);
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--navy-dark);
      color: var(--white);
      font-family: 'Barlow', sans-serif;
      overflow-x: hidden;
    }

    /* ─────────────────────────── NAVBAR ─────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 100px;
      background-color: #FFFFFF;
      border-bottom: 1px solid rgba(11,30,69,0.10);
      box-shadow: 0 3px 18px rgba(0,0,0,0.07);
      overflow: visible;
      transition: opacity 0.3s;
    }

    /* Type logo SVG — paths, transparent bg, no filters needed */
    .nav-type-logo {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      height: 78%;
      width: auto;
      pointer-events: none;
      z-index: 2;
    }

    /* Animated watermark monogram — bolt flashes first, settles as light blue watermark */
    .nav-watermark {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      height: 130%;
      width: auto;
      mix-blend-mode: screen;
      opacity: 0;
      pointer-events: none;
      z-index: 1;
      animation: navBoltReveal 2.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
    }

    @keyframes navBoltReveal {
      /* 1. Bolt diagonal flash */
      0%   {
        opacity: 0;
        filter: invert(1) sepia(1) hue-rotate(185deg) saturate(6) brightness(8);
        clip-path: polygon(28% 0%, 52% 0%, 72% 100%, 48% 100%);
      }
      8%   {
        opacity: 0.95;
        filter: invert(1) sepia(1) hue-rotate(185deg) saturate(6) brightness(10);
        clip-path: polygon(28% 0%, 52% 0%, 72% 100%, 48% 100%);
      }
      /* 2. Bolt dims */
      18%  {
        opacity: 0.5;
        filter: invert(1) sepia(1) hue-rotate(185deg) saturate(6) brightness(5);
        clip-path: polygon(28% 0%, 52% 0%, 72% 100%, 48% 100%);
      }
      /* 3. Full logo expands from bolt */
      30%  {
        opacity: 0.8;
        filter: invert(1) sepia(1) hue-rotate(185deg) saturate(6) brightness(4);
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
      }
      /* 4. Settle as vivid light blue watermark */
      100% {
        opacity: 0.08;
        filter: invert(1) sepia(1) hue-rotate(185deg) saturate(6) brightness(2.5);
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
      }
    }

    /* Clickable logo area sits over the left banner — no visible elements needed */
    .nav-logo {
      display: flex;
      align-items: center;
      height: 100%;
      text-decoration: none;
      flex-shrink: 0;
      position: relative;
      z-index: 2;
    }
    .nav-wordmark {
      height: 58px;
      width: auto;
      display: block;
    }
    /* metallic G3 monogram in the header */
    .nav-mono {
      height: 74px;
      width: auto;
      display: block;
      margin-right: 14px;
      animation: monoBoltReveal 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
    }
    @keyframes monoBoltReveal {
      0%   { opacity: 0; clip-path: polygon(28% 0%, 52% 0%, 72% 100%, 48% 100%); filter: brightness(2.4) drop-shadow(0 0 9px rgba(138,198,64,0.85)); }
      9%   { opacity: 1; clip-path: polygon(28% 0%, 52% 0%, 72% 100%, 48% 100%); filter: brightness(2.7) drop-shadow(0 0 12px rgba(138,198,64,0.95)); }
      30%  { opacity: 1; clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); filter: brightness(1.5); }
      100% { opacity: 1; clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); filter: none; }
    }

    .nav-logo-icon,
    .nav-logo-text {
      display: none;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      color: #0B1E45;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--green-dim); }

    .btn-nav {
      border: 1.5px solid var(--green-dim);
      color: #0B1E45;
      background: transparent;
      padding: 9px 22px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      cursor: pointer;
      text-decoration: none;
      letter-spacing: 1px;
      transition: background 0.2s, color 0.2s;
      white-space: nowrap;
    }

    .btn-nav:hover {
      background: var(--green-dim);
      color: #FFFFFF;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: all 0.3s;
    }

    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ─────────────────────────── MOBILE MENU ─────────────────────────── */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 100px; left: 0; right: 0;
      background: #FFFFFF;
      padding: 24px 32px 32px;
      z-index: 199;
      border-bottom: 1px solid rgba(11,30,69,0.10);
      box-shadow: 0 12px 24px rgba(0,0,0,0.10);
      flex-direction: column;
      gap: 4px;
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      color: #0B1E45;
      text-decoration: none;
      font-size: 18px;
      font-weight: 700;
      padding: 14px 0;
      border-bottom: 1px solid rgba(11,30,69,0.08);
      transition: color 0.2s;
    }

    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu a:hover { color: var(--green); }

    .mobile-menu .btn-primary-full {
      margin-top: 16px;
      background: var(--green);
      color: var(--navy-dark);
      text-align: center;
      padding: 14px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 700;
      border-bottom: none;
    }

    .mobile-menu .btn-primary-full:hover { background: var(--green-dim); color: var(--navy-dark); }

    /* ─────────────────────────── HERO ─────────────────────────── */
    #hero {
      position: relative;
      height: 130vh;                 /* shorter = video scrubs much faster per scroll */
      background: linear-gradient(135deg, #07152E 0%, #0B1E45 60%, #0D2455 100%);
    }
    .hero-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      padding: 148px 48px 80px;
    }

    /* full-bleed hero background video — oversized so scroll/mouse parallax has headroom */
    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      min-width: 100%; min-height: 100%;
      object-fit: cover;
      z-index: 0;
      will-change: transform;
      transform-origin: center center;
      pointer-events: none;
    }
    /* dark overlay keeps the headline readable; green lines still glow through */
    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
        linear-gradient(180deg, transparent 46%, rgba(5,14,32,0.55) 74%, rgba(5,14,32,0.92) 100%),
        radial-gradient(900px 600px at 30% 30%, rgba(138,198,64,0.10), transparent 60%),
        linear-gradient(120deg, rgba(5,14,32,0.86) 0%, rgba(7,21,46,0.62) 45%, rgba(7,21,46,0.42) 100%);
      will-change: opacity;
    }

    /* logo-build clip — scrubs with scroll, screen-blended so it glows over the skyline */
    .hero-logo-video {
      position: absolute;
      right: 1%;
      top: 47%;
      transform: translateY(-50%);
      height: 82%;
      max-width: 56%;
      object-fit: contain;
      z-index: 2;
      mix-blend-mode: screen;
      pointer-events: none;
    }

    .hero-scroll-cue {
      position: absolute;
      bottom: 28px; left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      font-size: 12px; font-weight: 700;
      letter-spacing: 3px; color: var(--green);
      opacity: 0.85;
      animation: cueBob 1.8s ease-in-out infinite;
      pointer-events: none;
    }
    @keyframes cueBob { 0%,100%{ transform: translateX(-50%) translateY(0); opacity:.85 } 50%{ transform: translateX(-50%) translateY(6px); opacity:.45 } }

    .hero-watermark {
      position: absolute;
      right: -4%;
      top: 50%;
      transform: translateY(-50%);
      width: 60%;
      max-width: 820px;
      opacity: 0.06;
      pointer-events: none;
      user-select: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 680px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--green);
      margin-bottom: 20px;
    }

    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 2px;
      background: var(--green);
    }

    .hero-headline {
      margin: 0 0 18px;
      line-height: 0;
    }
    /* exact Geom Graphic headline, outlined to vector — crisp at any size */
    .hero-headline img {
      display: block;
      width: clamp(300px, 44vw, 600px);
      max-width: 100%;
      height: auto;
      filter: drop-shadow(0 2px 18px rgba(0,0,0,0.55));
    }

    .hero-accent {
      width: 100px;
      height: 4px;
      background: var(--green);
      border-radius: 2px;
      margin-bottom: 28px;
    }

    .hero-services {
      font-size: 17px;
      font-weight: 600;
      color: var(--green);
      margin-bottom: 6px;
      text-shadow: 0 1px 10px rgba(0,0,0,0.85);
    }

    .hero-location {
      font-size: 15px;
      color: rgba(255,255,255,0.78);
      margin-bottom: 26px;
      text-shadow: 0 1px 10px rgba(0,0,0,0.9);
    }

    .hero-phone-wrap {
      margin-bottom: 32px;
    }

    .hero-phone-label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .hero-phone {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: clamp(32px, 4.2vw, 44px);
      color: var(--green);
      text-decoration: none;
      letter-spacing: 0.5px;
      text-shadow: 0 0 18px rgba(138,198,64,0.25);
      transition: text-shadow 0.2s, transform 0.15s;
      line-height: 1;
    }

    .hero-phone:hover {
      text-shadow: 0 0 28px rgba(138,198,64,0.55);
      transform: translateY(-1px);
    }

    .hero-phone svg {
      width: clamp(24px, 3vw, 30px);
      height: clamp(24px, 3vw, 30px);
      stroke: var(--green);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }

    .hero-buttons {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 44px;
    }

    .btn-primary {
      background: var(--green);
      color: var(--navy-dark);
      border: none;
      padding: 15px 34px;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      letter-spacing: 0.3px;
      transition: background 0.2s, transform 0.15s;
      display: inline-block;
    }

    .btn-primary:hover {
      background: var(--green-dim);
      transform: translateY(-1px);
    }

    .btn-ghost {
      background: transparent;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.35);
      padding: 15px 34px;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      letter-spacing: 0.3px;
      transition: border-color 0.2s;
      display: inline-block;
    }

    .btn-ghost:hover { border-color: rgba(255,255,255,0.75); }

    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: rgba(255,255,255,0.82);
      text-shadow: 0 1px 8px rgba(0,0,0,0.9);
    }

    .trust-dot {
      width: 6px;
      height: 6px;
      background: var(--green);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* ─────────────────────────── SCROLL STATS ─────────────────────────── */
    .scroll-stats-row {
      position: absolute;
      bottom: 9%;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 60px;
      z-index: 10;
      white-space: nowrap;
    }

    .scroll-stat {
      text-align: center;
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1),
                  transform 0.6s cubic-bezier(0.4,0,0.2,1);
    }

    .scroll-stat.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .scroll-stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: clamp(38px, 4vw, 56px);
      color: var(--green);
      line-height: 1;
      text-shadow: 0 2px 14px rgba(0,0,0,0.9), 0 0 22px rgba(138,198,64,0.4);
    }

    .scroll-stat-label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: rgba(255,255,255,0.92);
      margin-top: 6px;
      text-shadow: 0 1px 8px rgba(0,0,0,0.95);
    }

    /* ─────────────────────────── SHARED ─────────────────────────── */
    .container {
      max-width: 1160px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 3.5px;
      color: var(--green);
      margin-bottom: 10px;
    }

    .section-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: clamp(38px, 5vw, 58px);
      text-transform: uppercase;
      line-height: 1;
      margin-bottom: 16px;
    }

    .section-body {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.75;
      max-width: 540px;
      margin-bottom: 56px;
    }

    /* ─────────────────────────── VIDEO SCROLL ─────────────────────────── */
    #video-section {
      position: relative;
      height: 230vh;
      background: var(--navy-dark);
    }

    .video-sticky {
      position: sticky;
      top: 100px;
      height: calc(100vh - 100px);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: var(--navy-dark);
    }

    #bgVideo {
      width: 80%;
      max-width: 1000px;
      height: auto;
      max-height: 72vh;
      object-fit: contain;
      display: block;
      position: relative;
      z-index: 1;
      /* Black pixels in the video become transparent — logo floats on the navy bg */
      mix-blend-mode: screen;
      clip-path: inset(0 1px 0 0);
    }

    .video-fade-top {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 28%;
      background: linear-gradient(to bottom, var(--navy-dark) 0%, transparent 100%);
      z-index: 5;
      pointer-events: none;
    }

    .video-fade-bottom {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 28%;
      background: linear-gradient(to top, var(--navy-dark) 0%, transparent 100%);
      z-index: 5;
      pointer-events: none;
    }

    /* ─────────────────────────── SERVICES ─────────────────────────── */
    #services {
      padding: 100px 48px;
      background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      grid-auto-rows: 1fr;
    }

    .service-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 40px 32px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s, transform 0.3s;
    }

    .service-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--green);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
    }

    .service-card:hover {
      border-color: rgba(138,198,64,0.25);
      transform: translateY(-5px);
    }

    .service-card:hover::after { transform: scaleX(1); }

    .service-icon {
      width: 54px;
      height: 54px;
      background: rgba(138,198,64,0.08);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
    }

    .service-icon svg {
      width: 26px;
      height: 26px;
      stroke: var(--green);
      fill: none;
      stroke-width: 1.75;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .service-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 26px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 14px;
    }

    .service-desc {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.75;
      margin-bottom: 28px;
    }

    .service-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .service-list li {
      font-size: 14px;
      color: rgba(255,255,255,0.7);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .service-list li::before {
      content: '';
      width: 5px;
      height: 5px;
      background: var(--green);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* ─────────────────────────── PROJECTS ─────────────────────────── */
    #projects {
      padding: 100px 48px;
      background: var(--navy);
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .project-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      border-radius: 12px;
      transition: border-color 0.3s, transform 0.3s;
      overflow: hidden;
    }

    .project-card:hover {
      border-color: rgba(138,198,64,0.25);
      transform: translateY(-4px);
    }

    .project-card--info {
      display: flex;
      flex-direction: column;
      padding: 28px 28px 0;
    }

    .project-tag {
      display: inline-block;
      background: rgba(138,198,64,0.1);
      border: 1px solid rgba(138,198,64,0.2);
      color: var(--green);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 14px;
      align-self: flex-start;
    }

    .project-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 22px;
      text-transform: uppercase;
      margin-bottom: 10px;
      letter-spacing: 0.3px;
    }

    .project-desc {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 20px;
      flex: 1;
    }

    .project-photo-placeholder {
      background: rgba(255,255,255,0.03);
      border-top: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 28px;
      color: rgba(255,255,255,0.15);
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .project-photo-placeholder svg {
      width: 28px;
      height: 28px;
      stroke: rgba(255,255,255,0.12);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .project-card svg {
      width: 32px;
      height: 32px;
      stroke: rgba(255,255,255,0.15);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ─────────────────────────── ABOUT ─────────────────────────── */
    #about {
      padding: 100px 48px;
      background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-img-wrap {
      position: relative;
      display: flex;
      justify-content: center;
    }

    .about-logo-img {
      width: 100%;
      max-width: 400px;
      border-radius: 20px;
      display: block;
      mix-blend-mode: screen;
    }

    .about-badge {
      position: absolute;
      bottom: -16px;
      right: 0;
      background: var(--green);
      color: var(--navy-dark);
      padding: 16px 22px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 8px 32px rgba(138,198,64,0.3);
    }

    .badge-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 32px;
      line-height: 1;
    }

    .badge-label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-top: 2px;
    }

    .about-text p {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .skill-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 32px;
    }

    .skill-tag {
      background: rgba(138,198,64,0.07);
      border: 1px solid rgba(138,198,64,0.2);
      color: var(--green);
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.3px;
    }

    /* ─────────────────────────── TRUST POINTS ─────────────────────────── */
    .trust-points {
      display: flex;
      flex-direction: column;
      gap: 18px;
      margin-top: 32px;
    }

    .trust-point {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .trust-point-icon {
      width: 40px;
      height: 40px;
      background: rgba(138,198,64,0.08);
      border: 1px solid rgba(138,198,64,0.18);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--green);
    }

    .trust-point-icon svg { width: 18px; height: 18px; }

    .trust-point-title {
      font-weight: 700;
      font-size: 15px;
      margin-bottom: 2px;
    }

    .trust-point-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.5;
    }

    /* ─────────────────────────── CONTACT ─────────────────────────── */
    #contact {
      padding: 100px 48px;
      background: var(--navy-dark);
      position: relative;
      overflow: hidden;
    }

    #contact::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(138,198,64,0.04) 0%, transparent 70%);
      pointer-events: none;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px;
      align-items: start;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 4px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .contact-icon {
      width: 46px;
      height: 46px;
      background: rgba(138,198,64,0.07);
      border: 1px solid rgba(138,198,64,0.15);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--green);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .ci-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--muted);
      margin-bottom: 3px;
    }

    .ci-value {
      font-size: 16px;
      font-weight: 600;
    }

    .ci-value a {
      color: var(--white);
      text-decoration: none;
      transition: color 0.2s;
    }

    .ci-value a:hover { color: var(--green); }

    /* Form */
    form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .form-group label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--muted);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px;
      padding: 13px 16px;
      color: var(--white);
      font-size: 15px;
      font-family: 'Barlow', sans-serif;
      transition: border-color 0.2s, background 0.2s;
      outline: none;
      width: 100%;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: rgba(138,198,64,0.5);
      background: rgba(255,255,255,0.06);
    }

    .form-group select { cursor: pointer; }
    .form-group select option { background: var(--navy-dark); color: var(--white); }

    .form-group textarea { resize: vertical; min-height: 120px; }

    .btn-submit {
      background: var(--green);
      color: var(--navy-dark);
      border: none;
      padding: 16px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      width: 100%;
      letter-spacing: 0.3px;
      transition: background 0.2s, transform 0.15s;
      margin-top: 4px;
    }

    .btn-submit:hover {
      background: var(--green-dim);
      transform: translateY(-1px);
    }

    /* ─────────────── WHITE CONTACT SECTION ─────────────── */
    #contact { background: #F4F6F9; }
    #contact::before { background: radial-gradient(circle, rgba(138,198,64,0.10) 0%, transparent 70%); }
    #contact .section-title { color: var(--navy); }
    #contact .section-label { color: var(--green-dim); }
    #contact .section-body { color: #44506a; }
    #contact .ci-label { color: #6b7689; }
    #contact .ci-value,
    #contact .ci-value a { color: var(--navy); }
    #contact .ci-value a:hover { color: var(--green-dim); }
    #contact .contact-icon {
      background: rgba(138,198,64,0.12);
      border-color: rgba(138,198,64,0.35);
    }
    #contact .form-group label { color: #6b7689; }
    #contact .form-group input,
    #contact .form-group select,
    #contact .form-group textarea {
      background: #FFFFFF;
      border: 1px solid #d8dee8;
      color: var(--navy);
    }
    #contact .form-group input::placeholder,
    #contact .form-group textarea::placeholder { color: #9aa6b6; }
    #contact .form-group input:focus,
    #contact .form-group select:focus,
    #contact .form-group textarea:focus {
      border-color: var(--green-dim);
      background: #FFFFFF;
      box-shadow: 0 0 0 3px rgba(138,198,64,0.14);
    }
    #contact .form-group select option { background: #FFFFFF; color: var(--navy); }

    /* ─────────────────────────── FOOTER ─────────────────────────── */
    footer {
      background: var(--navy-deep);
      border-top: 1px solid var(--border);
      padding: 48px;
      position: relative;
      animation: footerPulse 4s ease-in-out infinite;
    }

    @keyframes footerPulse {
      0%, 100% { box-shadow: inset 0 1px 0 rgba(138,198,64,0.1), 0 -2px 40px rgba(138,198,64,0.03); }
      50%       { box-shadow: inset 0 1px 0 rgba(138,198,64,0.35), 0 -2px 60px rgba(138,198,64,0.12); }
    }

    .footer-top {
      max-width: 1160px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 32px;
      padding-bottom: 36px;
      border-bottom: 1px solid var(--border);
    }

    .footer-brand {
      display: flex;
      align-items: center;
      justify-content: flex-start;
    }

    .footer-brand img {
      width: min(420px, 88vw);
      height: auto;
      display: block;
      opacity: 0;
      animation:
        footerSettle 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards,
        footerGlow 3s ease-in-out 1.4s infinite;
    }

    @keyframes footerSettle {
      0%   { opacity: 0; transform: translateY(28px) scale(0.94); filter: brightness(0.4); }
      55%  { opacity: 1; transform: translateY(-5px) scale(1.03); filter: brightness(1.3) drop-shadow(0 0 32px rgba(138,198,64,0.8)); }
      75%  { transform: translateY(2px) scale(0.99); filter: brightness(1.05) drop-shadow(0 0 16px rgba(138,198,64,0.4)); }
      100% { opacity: 1; transform: translateY(0) scale(1); filter: brightness(1) drop-shadow(0 0 8px rgba(138,198,64,0.25)); }
    }

    @keyframes footerGlow {
      0%, 100% { filter: drop-shadow(0 0 6px rgba(138,198,64,0.2)); }
      50%       { filter: drop-shadow(0 0 22px rgba(138,198,64,0.55)); }
    }

    .footer-brand-text { }

    .footer-brand-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 17px;
      line-height: 1;
    }

    .footer-brand-motto {
      font-size: 11px;
      color: var(--muted);
      margin-top: 3px;
      letter-spacing: 0.3px;
    }

    .footer-links {
      display: flex;
      gap: 32px;
      list-style: none;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--white); }

    .footer-bottom {
      max-width: 1160px;
      margin: 0 auto;
      padding-top: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-copy {
      color: rgba(255,255,255,0.3);
      font-size: 13px;
    }

    .footer-license {
      color: rgba(255,255,255,0.3);
      font-size: 13px;
    }
    .footer-gc-link {
      color: inherit;
      opacity: 0.6;
      text-decoration: none;
      transition: opacity 0.2s;
    }
    .footer-gc-link:hover { opacity: 1; }

    /* ─────────────────────────── TOAST ─────────────────────────── */
    .toast {
      position: fixed;
      bottom: 32px;
      right: 32px;
      background: var(--green);
      color: var(--navy-dark);
      padding: 14px 24px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 15px;
      z-index: 999;
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.3s, transform 0.3s;
      pointer-events: none;
    }

    .toast.show { opacity: 1; transform: translateY(0); }

    /* ─────────────────────────── RESPONSIVE ─────────────────────────── */
    @media (max-width: 900px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .projects-grid { grid-template-columns: 1fr; }
      .about-grid,
      .contact-grid { grid-template-columns: 1fr; gap: 48px; }
      .about-img-wrap { justify-content: flex-start; }
      .about-badge { right: auto; left: 300px; }
    }

    /* Mobile layout — also forced on landscape phones (short height) so it never
       falls back to the cramped desktop view when you rotate sideways. */
    @media (max-width: 768px), (orientation: landscape) and (max-height: 600px) and (max-width: 1024px) {
      /* Navbar — slimmer on mobile */
      nav { padding: 0 20px; height: 70px; }
      .nav-links { display: none; }
      .hamburger {
        display: flex !important;
        position: relative;
        z-index: 30;
        margin-left: auto;
        padding: 8px 4px;
      }
      .hamburger span { background: #0B1E45; width: 28px; height: 3px; }
      .nav-logo { width: auto; flex-shrink: 1; min-width: 0; }
      .nav-wordmark { flex-shrink: 1; min-width: 0; }
      .nav-mono { height: 42px; margin-right: 8px; }
      .nav-wordmark { height: 32px; }

      /* Mobile menu — aligned to slimmer navbar */
      .mobile-menu { top: 70px; }

      /* Hero: unpin on phones (no scrub), stack cleanly, drop the building-logo */
      #hero { height: auto; }
      .hero-sticky {
        position: relative; top: auto; height: auto; min-height: 100vh;
        display: block; padding: 92px 20px 52px; overflow: hidden;
      }
      .hero-content { max-width: 100%; }
      .hero-logo-video, .hero-scroll-cue { display: none; }
      .hero-headline img { width: min(84vw, 360px); }
      .hero-services { font-size: 15px; }
      .hero-location { font-size: 13px; }

      .scroll-stats-row.hero-stats {
        position: static; transform: none; left: auto; bottom: auto;
        margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr;
        gap: 22px 14px; white-space: normal;
      }
      .scroll-stat { opacity: 1 !important; transform: none !important; min-width: 0; }
      .scroll-stat-num { font-size: 30px; }
      .scroll-stat-label { font-size: 10px; letter-spacing: 1px; }

      #services, #projects, #about, #contact { padding: 64px 20px; }

      .services-grid { grid-template-columns: 1fr; }
      .projects-grid { grid-template-columns: 1fr; }

      .about-grid,
      .contact-grid { grid-template-columns: 1fr; gap: 36px; }

      .about-img-wrap { justify-content: center; }
      .about-badge { left: auto; right: 12px; transform: none; }

      .form-row { grid-template-columns: 1fr; }

      /* Bigger touch targets for inputs */
      input, select, textarea {
        font-size: 16px !important; /* prevents iOS zoom */
        min-height: 48px;
      }

      footer { padding: 36px 20px; }
      .footer-top { flex-direction: column; align-items: flex-start; gap: 24px; }
      .footer-bottom { flex-direction: column; gap: 8px; }
    }

    @media (max-width: 480px), (orientation: landscape) and (max-height: 500px) and (max-width: 900px) {
      .projects-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .hero-headline img { width: min(88vw, 320px); }
      .hero-buttons { flex-direction: column; }
      .btn-primary, .btn-ghost { width: 100%; text-align: center; box-sizing: border-box; }
      .about-badge { position: static; transform: none; margin-top: 16px; display: inline-block; }
      .nav-wordmark { height: 28px; }
      .nav-mono { height: 38px; }
      .scroll-stat-num { font-size: 26px; }
    }
    /* ───────── scroll-reveal + micro-interactions ───────── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
    }
    .reveal.in-view { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
    }
    /* richer card + button hovers */
    .service-card:hover { box-shadow: 0 20px 46px rgba(0,0,0,0.4); }
    .btn-primary, .btn-ghost { transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s, color 0.2s; }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(138,198,64,0.45); }
    .btn-ghost:hover { transform: translateY(-3px); }
    /* subtle pulse on the green nav CTA */
    @keyframes ctaPulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(138,198,64,0.0);} 50%{ box-shadow: 0 0 0 4px rgba(138,198,64,0.18);} }
    .btn-nav:hover { animation: ctaPulse 1.2s ease-in-out infinite; }
    /* ───────── extra animations ───────── */
    /* scroll progress bar */
    #scroll-progress {
      position: fixed; top: 0; left: 0;
      height: 3px; width: 0;
      background: var(--green);
      z-index: 300;
      box-shadow: 0 0 10px rgba(138,198,64,0.7);
      transition: width 0.1s linear;
    }
    /* nav link underline slide-in */
    .nav-links a:not(.btn-nav) { position: relative; }
    .nav-links a:not(.btn-nav)::after {
      content: ''; position: absolute; left: 0; bottom: -6px;
      height: 2px; width: 100%;
      background: var(--green-dim);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.28s cubic-bezier(0.22,1,0.36,1);
    }
    .nav-links a:not(.btn-nav):hover::after { transform: scaleX(1); }
    /* button shine sweep on hover */
    .btn-primary, .btn-submit, .btn-nav, .btn-ghost { position: relative; overflow: hidden; }
    .btn-primary::before, .btn-submit::before, .btn-nav::before {
      content: ''; position: absolute; top: 0; left: -130%;
      width: 60%; height: 100%;
      background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
      transform: skewX(-18deg);
      transition: left 0.6s ease;
      pointer-events: none;
    }
    .btn-primary:hover::before, .btn-submit:hover::before, .btn-nav:hover::before { left: 150%; }
    /* service icon pops + glows when its card is hovered */
    .service-icon { transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), background 0.3s, box-shadow 0.3s; }
    .service-card:hover .service-icon {
      transform: translateY(-2px) scale(1.08);
      background: rgba(138,198,64,0.18);
      box-shadow: 0 8px 22px rgba(138,198,64,0.28);
    }
    .service-icon svg { transition: transform 0.3s ease; }
    .service-card:hover .service-icon svg { transform: scale(1.06); }
    /* project card green glow + tag lift on hover */
    .project-card { transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; }
    .project-card:hover { box-shadow: 0 18px 42px rgba(0,0,0,0.4), 0 0 0 1px rgba(138,198,64,0.18); }
    .project-tag { transition: transform 0.3s ease, background 0.3s; }
    .project-card:hover .project-tag { transform: translateY(-2px); background: rgba(138,198,64,0.18); }
    @media (prefers-reduced-motion: reduce) {
      #scroll-progress { display: none; }
    }
  