:root {
      --amf-primary: #02529c;
      --amf-primary-hover: #0f75bc;
      --amf-dark: #060a14;
      --amf-bg: #f8fafc;
    }

    body {
      background-color: var(--amf-bg);
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      color: #334155;
    }

    /* Minimal Modern Hero Header */
    .gallery-hero {
      background: linear-gradient(135deg, var(--amf-dark) 0%, #0b1329 100%);
      color: #ffffff;
      padding: 220px 0 80px 0;
      position: relative;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .gallery-hero::before {
      content: '';
      position: absolute;
      top: -50%;
      left: 50%;
      transform: translateX(-50%);
      width: 80%;
      height: 200%;
      background: radial-gradient(circle, rgba(2, 82, 156, 0.25) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 2.5rem;
      letter-spacing: -0.02em;
    }

    .hero-lead {
      color: #94a3b8;
      font-size: 1.05rem;
      max-width: 620px;
      margin: 0 auto;
    }

    /* Responsive Asymmetric Gallery Grid */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      grid-auto-rows: 280px;
      gap: 24px;
    }

    @media (min-width: 992px) {
      .gallery-grid {
        grid-template-columns: repeat(12, 1fr);
      }
      /* Featured Sizing Span Logic for 10 Items */
      .gallery-item:nth-child(1) { grid-column: span 8; grid-row: span 2; } /* Large Anchor */
      .gallery-item:nth-child(2) { grid-column: span 4; grid-row: span 1; }
      .gallery-item:nth-child(3) { grid-column: span 4; grid-row: span 1; }
      .gallery-item:nth-child(4) { grid-column: span 4; grid-row: span 1; }
      .gallery-item:nth-child(5) { grid-column: span 4; grid-row: span 1; }
      .gallery-item:nth-child(6) { grid-column: span 4; grid-row: span 1; }
      .gallery-item:nth-child(7) { grid-column: span 6; grid-row: span 1; }
      .gallery-item:nth-child(8) { grid-column: span 6; grid-row: span 1; }
      .gallery-item:nth-child(9) { grid-column: span 4; grid-row: span 1; }
      .gallery-item:nth-child(10){ grid-column: span 8; grid-row: span 1; }
    }

    /* Individual Card Layout */
    .gallery-item {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      background-color: #0f172a;
      box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05);
      border: 1px solid #e2e8f0;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
    }

    .gallery-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 35px -10px rgba(2, 82, 156, 0.2);
      border-color: rgba(2, 82, 156, 0.3);
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    /* Ambient Text Caption Overlay */
    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(6, 10, 20, 0.85) 0%, rgba(6, 10, 20, 0.1) 60%, transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 24px;
      opacity: 0.9;
      transition: opacity 0.3s ease;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      color: #ffffff;
      font-size: 1.1rem;
      margin: 0;
      transform: translateY(0);
      transition: transform 0.3s ease;
    }

    .gallery-tag {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #38bdf8;
      font-weight: 600;
      margin-bottom: 4px;
    }

    /* Social Banner Footer */
    .social-banner {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 20px;
      padding: 35px;
      text-align: center;
      margin-top: 60px;
    }

    .btn-social {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #f1f5f9;
      color: #0f172a;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      margin: 0 6px;
      text-decoration: none;
    }

    .btn-social:hover {
      background: var(--amf-primary);
      color: #ffffff;
      transform: translateY(-3px);
    }