:root {
      --ink: #1c1b1b;
      --muted: #404a3a;
      --line: #c0cab5;
      --paper: #fcf8f8;
      --soft: #f6f3f2;
      --soft-2: #f0edec;
      --white: #ffffff;
      --primary: #266d00;
      --primary-2: #6ac043;
      --night: #12182e;
      --deep: #0a0e1a;
      --radius: 8px;
      --shadow: 0 24px 58px rgba(0, 0, 0, 0.18);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: Manrope, Inter, Segoe UI, Arial, sans-serif;
      line-height: 1.6;
    }

    img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

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

    button {
      border: 0;
      cursor: pointer;
      font: inherit;
    }

    .container {
      width: min(100% - 48px, 1200px);
      margin: 0 auto;
    }

    .nav {
      position: fixed;
      z-index: 50;
      inset: 0 0 auto;
      background: transparent !important;
      box-shadow: none !important;
      backdrop-filter: none !important;
    }

    .nav-inner {
      width: min(100% - 48px, 1200px);
      min-height: 80px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      flex: 0 0 auto;
    }

    .logo img {
      width: auto;
      height: 46px;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 38px;
    }

    .nav-links a {
      color: var(--white);
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      transition: color 220ms ease;
    }

    .nav-links a:hover,
    .nav-links .active {
      color: var(--primary-2);
    }

    .nav-links .active {
      border-bottom: 2px solid var(--primary-2);
      padding-bottom: 4px;
    }

    .mobile-menu {
      display: none;
      position: relative;
    }

    .mobile-menu summary {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: var(--radius);
      color: var(--white);
      cursor: pointer;
      list-style: none;
      position: relative;
      z-index: 90;
    }

    .mobile-menu summary::-webkit-details-marker {
      display: none;
    }

    .menu-lines,
    .menu-lines::before,
    .menu-lines::after {
      display: block;
      width: 20px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
    }

    .menu-lines {
      position: relative;
    }

    .menu-lines::before,
    .menu-lines::after {
      content: "";
      position: absolute;
      left: 0;
    }

    .menu-lines::before {
      top: -7px;
    }

    .menu-lines::after {
      top: 7px;
    }

    .mobile-panel {
      position: fixed;
      top: 0;
      right: 0;
      z-index: 80;
      width: min(84vw, 340px);
      height: 100vh;
      display: grid;
      align-content: start;
      gap: 8px;
      padding: 88px 18px 24px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 0;
      background: rgba(18, 24, 46, 0.98);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    }

    .mobile-menu[open]::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: 70;
      background: rgba(0, 0, 0, 0.42);
      backdrop-filter: blur(3px);
    }

    .mobile-panel a {
      color: var(--white);
      padding: 10px 12px;
      border-radius: var(--radius);
      font-weight: 800;
    }

    .mobile-panel a:hover,
    .mobile-panel .active {
      color: var(--primary-2);
      background: rgba(255, 255, 255, 0.06);
    }

    .mobile-panel .mobile-cta {
      margin-top: 6px;
      color: var(--white);
      background: var(--primary-2);
      text-align: center;
    }

    .nav-cta {
      color: var(--white);
    }

    .btn {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 13px 26px;
      border-radius: var(--radius);
      font-weight: 900;
      transition: transform 220ms ease, background 220ms ease, color 220ms ease;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: var(--primary-2);
      color: var(--white);
      box-shadow: 0 14px 28px rgba(106, 192, 67, 0.18);
    }

    main {
      padding-top: 0 !important;
    }

    .hero {
      position: relative;
      min-height: 870px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      overflow: hidden;
      isolation: isolate;
      padding: 120px 0 70px;
      color: var(--white);
    }

    .hero-media {
      position: absolute;
      inset: 0;
      z-index: -1;
    }

    .hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.9) 100%) !important;
      z-index: 1;
    }

    .eyebrow {
      display: block;
      margin-bottom: 16px;
      color: var(--primary-2);
      font-size: 0.82rem;
      font-weight: 900;
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }

    .hero h1 {
      margin: 0 0 34px;
      font-size: clamp(2.5rem, 8vw, 5.5rem);
      line-height: 1.04;
      letter-spacing: -0.055em;
    }

    .filters {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 42px;
    }

    .filter {
      min-height: 46px;
      padding: 10px 28px;
      border-radius: 999px;
      color: var(--white);
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.2);
      font-weight: 800;
      backdrop-filter: blur(12px);
      transition: transform 220ms ease, background 220ms ease;
    }

    .filter:hover {
      transform: translateY(-2px);
      background: rgba(255, 255, 255, 0.2);
    }

    .filter.active {
      background: var(--primary-2);
      border-color: var(--primary-2);
      box-shadow: 0 14px 28px rgba(106, 192, 67, 0.3);
    }

    section {
      padding: 70px 0;
    }

    /* Mobile First: 1 column */
    .project-grid {
      display: block !important;
    }

    .project-grid .project {
      width: 100% !important;
      display: block !important;
      margin-bottom: 40px !important;
    }

    @media (min-width: 768px) {
      .project-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 36px !important;
      }
      .project-grid .project {
        margin-bottom: 0 !important;
      }
    }

    @media (min-width: 1024px) {
      .project-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 48px !important;
      }
    }

    .project {
      min-width: 0;
      display: block;
    }

    .project-media {
      position: relative;
      aspect-ratio: 4 / 5;
      margin-bottom: 22px;
      overflow: hidden;
      border-radius: var(--radius);
      background: var(--soft-2);
    }

    .project-media.wide {
      aspect-ratio: 16 / 9;
    }

    .project.wide-card {
      grid-column: span 1;
    }

    .project-media img {
      transition: transform 700ms ease;
    }

    .project:hover .project-media img {
      transform: scale(1.08);
    }

    .badge {
      position: absolute;
      top: 22px;
      left: 22px;
      padding: 6px 14px;
      border-radius: 999px;
      color: var(--white);
      background: rgba(18, 24, 46, 0.82);
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      backdrop-filter: blur(10px);
    }

    .badge.ongoing {
      color: #004b0f;
      background: #6ebe6a;
    }

    .location {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 6px;
      color: var(--primary);
      font-size: 0.9rem;
      font-weight: 900;
    }

    .pin {
      width: 12px;
      height: 12px;
      border: 3px solid var(--primary);
      border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg);
      flex: 0 0 auto;
    }

    .project h3 {
      margin: 0 0 8px;
      font-size: 1.55rem;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    .project-specs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 0 0 12px;
    }

    .project-specs span {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 6px 10px;
      border: 1px solid rgba(192, 202, 181, 0.55);
      border-radius: var(--radius);
      color: var(--primary);
      background: rgba(106, 192, 67, 0.1);
      font-size: 0.78rem;
      font-weight: 900;
      line-height: 1;
      white-space: nowrap;
    }

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

    .cta {
      padding-top: 40px;
    }

    .cta-box {
      position: relative;
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      align-items: center;
      overflow: hidden;
      border-radius: 8px;
      background: var(--night);
      padding: 64px;
      isolation: isolate;
    }

    .cta-box::before,
    .cta-box::after {
      content: "";
      position: absolute;
      z-index: -1;
      width: 380px;
      height: 380px;
      border-radius: 50%;
      background: rgba(106, 192, 67, 0.1);
      filter: blur(70px);
    }

    .cta-box h2 {
      margin: 0 0 20px;
      color: var(--white);
      font-size: clamp(2.3rem, 5vw, 3.45rem);
      line-height: 1.1;
      letter-spacing: -0.045em;
    }

    .cta-box p {
      max-width: 620px;
      margin: 0 0 30px;
      color: #cbd5e1;
      font-size: 1.08rem;
    }

    .cta-actions {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.22);
      box-shadow: none;
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .contact-card {
      display: grid;
      gap: 18px;
      padding: 28px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(14px);
    }

    .footer {
      background: var(--deep);
      color: var(--white);
      padding: 86px 0 42px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
    }

    @media (min-width: 768px) {
      .cta-box, .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .project.wide-card {
        grid-column: span 2;
      }
      .footer-grid {
        grid-template-columns: 1.3fr repeat(3, 1fr);
      }
    }

    @media (max-width: 640px) {
      .hero {
        min-height: 500px;
        padding-top: 100px;
      }
      .logo img {
        height: 36px;
      }
    }
