/* ==========================================================================
   SAVIAA DIGITAL FASHION HOUSE - EDITORIAL ARCHITECTURE & STYLESHEET
   Creative Direction: Pentagram / Basic/Dept / Instrument Luxury Fashion Style
   ========================================================================== */

/* Editorial Header & Floating Navigation */
.house-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  mix-blend-mode: difference;
  color: #FDFBF7;
  transition: padding var(--transition-medium);
}

.house-brand {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
}

.house-menu {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.house-menu-item {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 500;
}

/* Issue Counter & Index Numbers */
.editorial-num {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--accent-gold);
  display: inline-block;
  margin-right: 0.75rem;
  font-style: italic;
}

/* Full-Screen Cover / Hero */
.cover-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem var(--space-md);
  background-color: var(--text-primary);
  color: var(--text-ivory);
  overflow: hidden;
}

.cover-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cover-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  filter: brightness(0.9);
}

.cover-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

.cover-title {
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.95;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

/* Magazine Grid & Double Spreads */
.magazine-spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  border-bottom: 1px solid var(--border-light);
}

.magazine-col {
  padding: var(--space-xl) var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.magazine-col.border-right {
  border-right: 1px solid var(--border-light);
}

/* Lookbook Spreads */
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  padding: var(--space-xl) 0;
}

.lookbook-item-large {
  grid-column: span 8;
  aspect-ratio: 4/5;
}

.lookbook-item-small {
  grid-column: span 4;
  aspect-ratio: 3/4;
  align-self: center;
}

.lookbook-caption {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Responsive Editorial Rules */
@media (max-width: 992px) {
  .house-nav {
    padding: 1.5rem 1.5rem;
  }
  
  .house-menu {
    display: none;
  }
  
  .magazine-spread {
    grid-template-columns: 1fr;
  }
  
  .magazine-col.border-right {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }
  
  .lookbook-item-large, .lookbook-item-small {
    grid-column: span 12;
  }
}
