


.container {
    display: flex;
    flex-direction: column;
    
    justify-content: center;
    
    align-items: center;
   
    
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    
    box-sizing: border-box; 
   }
   
   
   
   .logo {
    
    width: 100%;
    text-align: center; 
    
    margin-top: inherit;
    
    margin-bottom: -1rem; 
   }
   
   
   .measurements {
    font-family: var(--font-body); 
    font-size: clamp(0.96rem, 2.4vw, 1.08rem); 
    color: #ccc; 
    text-align: center;
    margin-top: 0;
    
    margin-bottom: var(--spacing-xxl); 
    padding: 0 var(--spacing-sm); 
    line-height: 1.4;
 

   }
   
   
   .launching-soon {
    font-family: var(--font-body); 
    font-size: clamp(1.8rem, 5vw, 2.8rem); 
    color: var(--text-color);
    text-align: center;
    margin-top: 0;
    
    margin-bottom: var(--spacing-xl); 
   }
   
   .nav {
    margin-top: 0;
    margin-bottom: 0;
   }
   
/* Gallery — applies to every screen size */
.archive-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;

  width: min(1200px, calc(100% - 3rem));
  margin-bottom: var(--spacing-xxl);
  align-items: start;
}

.archive-item {
  width: 100%;
  margin: 0;
}

.archive-item img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.archive-title {
  font-family: var(--font-body);
font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: normal;
  letter-spacing: 0.05em;
  color: var(--text-color);
  text-align: center;


}

/* Tablet */
@media (max-width: 1100px) {
  .container {
    width: 100%;
    padding: 2rem 1rem;
    overflow-x: hidden;
  }

  .logo {
    width: 100%;
    margin: 0;
    line-height: 1;
  }

  .logo-short {
    font-size: clamp(3.5rem, 14vw, 7rem);
  }

  .archive-title {
    font-size: clamp(1.8rem, 6vw, 3rem);
    margin: 2rem 0 1rem;
  }

  .measurements {
    width: min(100%, 45rem);
    padding: 0 1rem;
    margin-bottom: 3rem;
    font-size: clamp(0.75rem, 1.8vw, 1rem);
    line-height: 1.5;
  }

  .archive-gallery {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .container {
    padding: 1.5rem 0.75rem;
  }

  .logo-short {
    font-size: clamp(3rem, 20vw, 5rem);
  }

  .archive-title {
    font-size: clamp(1.5rem, 8vw, 2.25rem);
    letter-spacing: 0.12em;
    margin: 1.5rem 0 0.75rem;
  }

  .measurements {
    font-size: 0.68rem;
    line-height: 1.5;
    padding: 0 0.5rem;
    margin-bottom: 2rem;
  }

  .archive-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .nav {
    margin-top: 1.5rem;
  }
}

/* Clickable gallery photos */
.archive-item img {
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
  transition:
    filter 200ms ease,
    transform 200ms ease;
}

.archive-item img:hover {
  filter: brightness(65%);
}

.archive-item img:focus-visible {
  filter: brightness(65%);
  outline: 2px solid white;
  outline-offset: 3px;
}

/* Full-screen photo overlay */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 2rem;
  background: rgba(0, 0, 0, 0.9);
  cursor: zoom-out;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  cursor: default;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  z-index: 10000;

  padding: 0;
  border: 0;
  background: transparent;
  color: white;

  font-size: 3rem;
  font-family: Arial, sans-serif;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  opacity: 0.65;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .lightbox {
    padding: 1rem;
  }

  .lightbox-image {
    max-width: 95vw;
    max-height: 85vh;
  }
}
   