

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{--gold:#c9a84c;--gold2:#e8d5a3;--dark:#0a0a0a;--dark2:#111;--dark3:#1a1a1a;--dark4:#222;--text:#e8e4df;--muted:#888;--border:#2a2a2a}
body{font-family:'Georgia',serif;background:var(--dark);color:var(--text);overflow-x:hidden}
a{text-decoration:none;color:inherit}
@media (max-width: 768px){

  .gallery-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .gitem:nth-child(1){
    grid-column: span 2;
    height: 300px;
  }

  .gitem:nth-child(2),
  .gitem:nth-child(3),
  .gitem:nth-child(4),
  .gitem:nth-child(5),
  .gitem:nth-child(6){
    height: 180px;
  }
}


@media (max-width: 768px){

  .gallery-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gitem{
    height: auto !important;
    aspect-ratio: 4 / 3;
  }

  .gitem img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .gitem:nth-child(1),
  .gitem:nth-child(6){
    grid-column: span 2;
  }
}