/* ==========================================================================
   YARA MUR — EDITORIAL LAYOUT
   Grid Systems, Negative Space, and Structural Spreads
   ========================================================================== */

/* Main Container */
.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4rem;
}

.container-wide {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Background 1px Architectural Grid Lines */
.bg-grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}

.bg-grid-overlay > div {
  border-right: 1px solid var(--border-color);
  height: 100%;
}

.bg-grid-overlay > div:first-child {
  border-left: 1px solid var(--border-color);
}

/* Structural Sections */
section {
  position: relative;
  z-index: 1;
  padding: 8rem 0;
}

/* Section Header Typography */
.section-header {
  margin-bottom: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2rem;
}

.section-tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-number {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--text-muted);
}

/* Asymmetrical Magazine Editorial Spreads */
.editorial-spread {
  margin-bottom: 10rem;
}

.spread-header {
  margin-bottom: 3rem;
}

.spread-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--text-primary);
  font-style: italic;
}

.spread-subtitle {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
}

.spread-grid-asymmetric {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: center;
}

.spread-grid-asymmetric.reverse {
  grid-template-columns: 1fr 1.6fr;
}

.spread-grid-trio {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Negative Space Helpers */
.spacer-sm { height: 3rem; }
.spacer-md { height: 6rem; }
.spacer-lg { height: 10rem; }
