    /* LOGO */
    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-svg-wrap {
      display: flex;
      align-items: center;
    }

    .brand-name {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 1.15rem;
      line-height: 1.1;
      color: #1a2e4a;
    }

    .brand-name span {
      color: #e85d04;
    }

    .brand-tagline {
      font-size: .65rem;
      color: #6b7280;
      font-weight: 600;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    /* GALLERY */
    #works-gallery {
      padding: 80px 0;
      background: #f8fafc;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    @media(max-width:992px) {
      .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media(max-width:600px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .gallery-item {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      aspect-ratio: 1/1;
      background: #e5e7eb;
      cursor: pointer;
      box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
      transition: transform .25s, box-shadow .25s;
    }

    .gallery-item:first-child {
      grid-column: span 2;
      grid-row: span 2;
      aspect-ratio: unset;
    }

    .gallery-item:hover {
      transform: scale(1.03);
      box-shadow: 0 8px 32px rgba(232, 93, 4, .18);
    }

    .gallery-item img,
    .gallery-item video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s;
    }

    .gallery-item:hover img,
    .gallery-item:hover video {
      transform: scale(1.06);
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10, 15, 30, .7) 0%, transparent 60%);
      opacity: 0;
      transition: opacity .3s;
      display: flex;
      align-items: flex-end;
      padding: 14px;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-overlay-text {
      color: #fff;
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: .85rem;
    }

    .gallery-video-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(232, 93, 4, .9);
      color: #fff;
      border-radius: 20px;
      padding: 2px 10px;
      font-size: .72rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .gallery-photo-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #e0f2fe, #f0fdf4);
      color: #6b7280;
      font-size: .8rem;
      gap: 8px;
    }

    .gallery-photo-placeholder i {
      font-size: 2rem;
      color: #3b82f6;
      opacity: .5;
    }

    .btn-view-gallery {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, #e85d04, #f97316);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: .75rem 2rem;
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: .95rem;
      cursor: pointer;
      box-shadow: 0 4px 18px rgba(232, 93, 4, .35);
      transition: transform .2s, box-shadow .2s;
      text-decoration: none;
    }

    .btn-view-gallery:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(232, 93, 4, .45);
      color: #fff;
    }

    /* Brand responsive */
    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: nowrap;
    }

    .navbar-brand .brand-name {
      font-size: 1.1rem;
      font-weight: 900;
      line-height: 1.1;
      white-space: nowrap;
    }

    .navbar-brand .brand-tagline {
      font-size: .7rem;
      color: #6b7280;
      line-height: 1.2;
    }


    /* Mobile */
    @media (max-width:576px) {

      .navbar-brand {
        gap: 8px;
        max-width: 85%;
      }

      .logo-svg-wrap svg {
        width: 40px;
        height: 40px;
      }

      .navbar-brand .brand-name {
        font-size: 1.1rem;
      }

      .navbar-brand .brand-tagline {
        font-size: .55rem;
      }
    }


    /* Extra small screens */
    @media (max-width:380px) {

      .logo-svg-wrap svg {
        width: 34px;
        height: 34px;
      }

      .navbar-brand .brand-name {
        font-size: 1rem;
      }

      .navbar-brand .brand-tagline {
        font-size: .48rem;
      }

    }
