:root{
  --ink:#1a120b;
  --ink-soft:#241811;
  --rule:rgba(67, 46, 27, 0.42);
}

/* =========================
   RESET
========================= */
*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html,
body{
  width:100%;
  height:100%;
  overflow:hidden;
  background:#000;
}

body{
  font-family:"Cormorant Garamond", serif;
}

/* =========================
   STAGE
========================= */
.about-stage{
  position:relative;
  width:100%;
  height:100vh;
  background:#000;
  overflow:hidden;
}

/* =========================
   SPREAD WRAP
========================= */
.about-spread{
  position:absolute;
  top:0;
  left:50%;
  height:100%;
  width:auto;
  transform:translateX(-50%) scaleX(1.18);
  transform-origin:top center;
}

.about-full-image{
  display:block;
  height:100%;
  width:auto;
  max-width:none;
}

.about-overlay{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

/* =========================
   PRINT STYLE
========================= */
.print-card{
  position:absolute;
  color:var(--ink);
  padding:0.35rem 0.45rem;
  background:transparent;
  border-top:1px solid var(--rule);
}

.print-card h2,
.print-card h3{
  font-family:"Cinzel", serif;
  color:var(--ink);
}

.print-card h2{
  font-size:1.65rem;
  line-height:1.08;
  margin-bottom:0.45rem;
}

.print-card h3{
  font-size:1.02rem;
  line-height:1.08;
  margin-bottom:0.28rem;
}

.print-card p{
  font-size:0.98rem;
  line-height:1.34;
  color:var(--ink-soft);
}

/* =========================
   SECTION LABEL
========================= */
.section-label{
  width:100%;
  text-align:center;
  font-family:"Cinzel", serif;
  font-size:1rem;
  font-weight:600;
  color:var(--ink);
  margin-bottom:0.35rem;
  position:relative;
}

.section-label::before,
.section-label::after{
  content:"";
  position:absolute;
  top:50%;
  width:32%;
  height:1px;
  background:var(--rule);
}

.section-label::before{
  left:0;
}

.section-label::after{
  right:0;
}

/* =========================
   CARD POSITIONS
========================= */

/* LEFT PAGE */
.lead-story{
  left:4.8%;
  top:44.6%;
  width:43.8%;
}

.why-exists{
  left:4.9%;
  top:66%;
  width:20.4%;
}

.build-intent{
  left:27.8%;
  top:66%;
  width:20.4%;
}

/* RIGHT PAGE */
.give-identity{
  left:53.4%;
  top:24%;
  width:18.8%;
}

.cross-real{
  left:74.6%;
  top:24%;
  width:18.8%;
}

.publishers-note{
  left:53.2%;
  top:44%;
  width:40.8%;
  text-align:center;
  border-bottom:1px solid var(--rule);
  padding-top:0.5rem;
  padding-bottom:0.5rem;
}

.publishers-note p{
  font-size:1.08rem;
  line-height:1.34;
  color:#20150e;
}

/* =========================
   GLOBAL NAVBAR
========================= */
.global-nav{
  position:absolute;
  top:0;
  right:0;
  width:100%;
  z-index:100;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:2rem;
  padding:0.6rem 2rem;
  background:transparent;
}

.global-nav a{
  color:#ffffff;
  text-decoration:none;
  font-family:Georgia, "Times New Roman", serif;
  font-size:0.8rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  transition:all 0.25s ease;
}

.global-nav a:hover{
  color:rgba(255, 210, 140, 0.9);
  transform:translateY(-1px);
  text-shadow:0 0 6px rgba(255, 210, 140, 0.3);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1400px){
  .about-spread{
    transform:translateX(-50%) scaleX(1.12);
  }

  .print-card h2{
    font-size:1.38rem;
  }

  .print-card h3{
    font-size:0.93rem;
  }

  .print-card p{
    font-size:0.86rem;
  }

  .publishers-note p{
    font-size:0.96rem;
  }
}

@media (max-width: 1100px){
  .about-spread{
    transform:translateX(-50%) scaleX(1.02);
  }

  .print-card h2{
    font-size:1.14rem;
  }

  .print-card h3{
    font-size:0.8rem;
  }

  .print-card p{
    font-size:0.76rem;
    line-height:1.2;
  }

  .section-label{
    font-size:0.84rem;
  }

  .publishers-note p{
    font-size:0.84rem;
  }
}

@media (max-width: 900px){
  html,
  body{
    overflow:auto;
  }

  .about-stage{
    height:auto;
    min-height:100vh;
    padding-top:72px;
  }

  .about-spread{
    position:relative;
    top:auto;
    left:auto;
    transform:none;
    width:100%;
    height:auto;
  }

  .about-full-image{
    width:100%;
    height:auto;
  }

  .about-overlay{
    position:absolute;
    inset:0;
  }

  .print-card{
    padding:0.2rem 0.25rem;
  }

  .print-card h2{
    font-size:0.96rem;
  }

  .print-card h3{
    font-size:0.7rem;
  }

  .print-card p{
    font-size:0.62rem;
    line-height:1.12;
  }

  .section-label{
    font-size:0.7rem;
  }

  .publishers-note p{
    font-size:0.68rem;
  }

  .global-nav{
    gap:1rem;
    padding:0.55rem 1rem;
  }

  .global-nav a{
    font-size:0.72rem;
  }
}