:root {
      --ink: #1c1b1b;
      --muted: #404a3a;
      --paper: #fcf8f8;
      --soft: #f6f3f2;
      --white: #ffffff;
      --primary: #266d00;
      --primary-2: #6ac043;
      --night: #12182e;
      --deep: #0a0e1a;
      --radius: 8px;
    }

    * {
      box-sizing: border-box;
    }

    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;
    }

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

    .nav {
      position: fixed;
      z-index: 50;
      top: 0;
      left: 0;
      width: 100%;
      background: transparent !important;
      box-shadow: none !important;
      backdrop-filter: none !important;
    }

    main {
      padding-top: 0 !important;
    }

    .nav-inner {
      width: min(100% - 48px, 1200px);
      min-height: 88px;
      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);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 13px 24px;
      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 {
      color: var(--white);
      background: var(--primary-2);
    }

    .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);
      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;
    }

    .intro {
      padding: 160px 0 44px;
      text-align: center;
    }

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

    h1 {
      margin: 0 0 18px;
      font-size: clamp(2.8rem, 8vw, 5.5rem);
      line-height: 1.02;
      letter-spacing: -0.055em;
    }

    .intro p {
      max-width: 720px;
      margin: 0 auto;
      color: var(--muted);
      font-size: 1.08rem;
    }

    .gallery {
      padding: 28px 0 96px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 260px;
      gap: 18px;
    }

    .item {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      background: var(--soft);
    }

    .item img {
      transition: transform 700ms ease;
    }

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

    .item::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.42), transparent 55%);
      opacity: 0;
      transition: opacity 240ms ease;
    }

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

    .wide {
      grid-column: span 2;
    }

    .tall {
      grid-row: span 2;
    }

    .big {
      grid-column: span 2;
      grid-row: span 2;
    }

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

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr repeat(3, 1fr);
      gap: 54px;
    }

    .footer h4,
    .footer h5 {
      margin-bottom: 18px;
      color: var(--white);
    }

    .footer p,
    .footer a {
      color: #cbd5e1;
    }

    .footer ul {
      display: grid;
      gap: 12px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer a {
      transition: color 220ms ease, transform 220ms ease;
    }

    .footer a:hover {
      color: var(--primary-2);
      transform: translateX(4px);
    }

    .socials {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }

    .socials a {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border: 1px solid #334155;
      border-radius: 50%;
      color: var(--white);
      font-weight: 900;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      margin-top: 68px;
      padding-top: 28px;
      border-top: 1px solid #1e293b;
    }

    .footer-bottom p {
      margin: 0;
      color: #94a3b8;
      font-size: 0.88rem;
    }

    @media (max-width: 980px) {
      .container {
        width: min(100% - 32px, 1200px);
      }

      .nav-inner {
        width: min(100% - 32px, 1200px);
        min-height: 74px;
      }

      .nav-links,
      .nav-cta {
        display: none;
      }

      .mobile-menu {
        display: block;
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 620px) {
      .logo img {
        height: 42px;
      }

      .intro {
        padding: 126px 0 30px;
        text-align: left;
      }

      .gallery-grid {
        display: block;
      }

      .item {
        height: 290px;
        margin-bottom: 16px;
      }

      .item.big,
      .item.wide,
      .item.tall {
        height: 330px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        align-items: stretch;
        flex-direction: column;
      }
    }