/* =========================================================
   EDITORIAL EXTRAS — density layer.
   Marquee, hero watermark, section dividers, pull-quote, ribbon.
   Adds Vogue/Saint-Laurent magazine richness without needing photos.
   ========================================================= */

/* ---------- Top marquee strip (above header) ---------- */
.ed-marquee {
  position: relative;
  width: 100%;
  background: var(--ds-ink, #1a1614);
  color: var(--ds-bone, #f4f0e8);
  overflow: hidden;
  border-bottom: 1px solid rgba(244,240,232,0.10);
  z-index: 350;
}
.ed-marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: edMarqueeRoll 38s linear infinite;
  will-change: transform;
}
.ed-marquee-track > span {
  flex: 0 0 auto;
  padding: 11px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ed-marquee-track > span::after {
  content: "✦";
  margin-left: 28px;
  color: var(--ds-oxblood, #8d2f2a);
}
@keyframes edMarqueeRoll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .ed-marquee-track { animation: none; }
}

/* Push fixed header below marquee */
.header { top: 41px !important; }
@media (max-width: 600px) {
  .ed-marquee-track > span { padding: 9px 18px; font-size: 0.6rem; letter-spacing: 0.32em; }
  .header { top: 35px !important; }
}


/* Top-left & top-right Vogue-style labels */
.hero-stamps {
  position: absolute;
  top: clamp(80px, 12vh, 130px);
  left: 0; right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 60px);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ds-ink-muted, #4a4641);
  pointer-events: none;
}
.hero-stamp-l,
.hero-stamp-r { display: inline-block; }
.hero-stamp-l::before {
  content: "✦ ";
  color: var(--ds-oxblood, #8d2f2a);
}
.hero-stamp-r::after {
  content: " ✦";
  color: var(--ds-oxblood, #8d2f2a);
}
@media (max-width: 600px) {
  .hero-stamps { font-size: 0.55rem; letter-spacing: 0.28em; padding: 0 16px; }
}

/* ---------- Section dividers (big roman numerals) ---------- */
.ed-divider {
  position: relative;
  padding: clamp(40px, 6vh, 80px) 0;
  text-align: center;
  background: var(--ds-bone, #f4f0e8);
}
.ed-divider--warm { background: var(--ds-bone-warm, #fafaf6); }
.ed-divider-num {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  color: var(--ds-ink, #1a1614);
  letter-spacing: -0.005em;
}
.ed-divider-label {
  display: block;
  margin-top: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ds-oxblood, #8d2f2a);
  font-weight: 500;
}
.ed-divider-rule {
  display: block;
  width: 64px;
  height: 1px;
  background: var(--ds-ink, #1a1614);
  margin: 18px auto 0;
}

/* ---------- Pull-quote section ---------- */
.ed-quote {
  position: relative;
  padding: clamp(80px, 12vh, 140px) 24px;
  background: var(--ds-ink, #1a1614);
  color: var(--ds-bone, #f4f0e8);
  text-align: center;
  overflow: hidden;
}
.ed-quote::before {
  content: "“";
  position: absolute;
  top: clamp(-30px, -3vw, -10px);
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(14rem, 28vw, 24rem);
  line-height: 1;
  color: rgba(244,240,232,0.05);
  pointer-events: none;
}
.ed-quote-eyebrow {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(244,240,232,0.55);
  font-weight: 500;
  margin-bottom: 22px;
}
.ed-quote-text {
  position: relative;
  margin: 0 auto;
  max-width: 1100px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 3rem);
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ds-bone, #f4f0e8);
}
.ed-quote-text em {
  font-weight: 500;
  color: var(--ds-bone, #f4f0e8);
  background: linear-gradient(90deg, transparent 0%, rgba(184,153,104,0.25) 50%, transparent 100%);
  padding: 0 0.2em;
}
.ed-quote-attr {
  position: relative;
  margin-top: 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(244,240,232,0.65);
}
.ed-quote-attr::before {
  content: "—";
  margin-right: 10px;
  color: var(--ds-oxblood, #8d2f2a);
}

/* ---------- Footer extras ---------- */
.footer {
  position: relative;
  padding: clamp(60px, 8vh, 100px) clamp(20px, 4vw, 64px) clamp(40px, 5vh, 60px) !important;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}
.footer::before {
  content: "Karina Zakharash";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(6rem, 14vw, 14rem);
  line-height: 1;
  color: rgba(244,240,232,0.04);
  white-space: nowrap;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
}
.footer > * { position: relative; z-index: 1; }
.footer-logo { font-size: 1.1rem !important; }
.footer-copy { justify-self: center; text-align: center; }
.footer-badge { justify-self: end; text-align: right; }
@media (max-width: 700px) {
  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-copy,
  .footer-badge { justify-self: center; text-align: center; }
}

/* ---------- Manifesto strip — italic phrase(s) between sections ---------- */
.ed-manifesto {
  background: var(--ds-bone, #f4f0e8);
  padding: clamp(48px, 7vh, 88px) clamp(20px, 4vw, 64px);
  border-top: 1px solid rgba(26,22,20,0.10);
  border-bottom: 1px solid rgba(26,22,20,0.10);
}
.ed-manifesto--ink {
  background: var(--ds-ink, #1a1614);
  border-top-color: rgba(244,240,232,0.12);
  border-bottom-color: rgba(244,240,232,0.12);
}
.ed-manifesto--ink .ed-manifesto-line { color: var(--ds-bone, #f4f0e8); }

/* Solo variant — single italic line, explicit flanking hairlines via
   <span class="ed-manifesto-rule"></span>. Mirrors .gallery-footer pattern. */
.ed-manifesto--solo {
  padding: clamp(56px, 9vh, 110px) clamp(20px, 4vw, 64px);
  background: transparent;
  border: none;
}
.ed-manifesto--solo .ed-manifesto-inner {
  flex-wrap: nowrap;
  gap: clamp(14px, 2vw, 28px);
  max-width: 920px;
}
.ed-manifesto--solo .ed-manifesto-rule {
  flex: 0 1 clamp(40px, 8vw, 96px);
  height: 1px;
  background: rgba(26,22,20,0.22);
}
.ed-manifesto--solo .ed-manifesto-line {
  flex: 0 0 auto;
  max-width: min(560px, 70vw);
  padding: 0;
  font-size: clamp(1.05rem, 1.55vw, 1.4rem);
  font-weight: 300;
  color: rgba(26,22,20,0.78);
  white-space: nowrap;
}
.ed-manifesto--solo.ed-manifesto--ink .ed-manifesto-line {
  color: rgba(244,240,232,0.82);
}
.ed-manifesto--solo.ed-manifesto--ink .ed-manifesto-rule {
  background: rgba(244,240,232,0.28);
}

@media (max-width: 600px) {
  .ed-manifesto--solo { padding: 40px 20px; }
  .ed-manifesto--solo .ed-manifesto-line {
    font-size: 1rem;
    white-space: normal;
  }
  .ed-manifesto--solo .ed-manifesto-rule { flex-basis: 28px; }
}
.ed-manifesto-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3.6vw, 56px);
  flex-wrap: wrap;
  text-align: center;
}
.ed-manifesto-line {
  font-family: var(--ds-font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.4;
  color: var(--ds-ink, #1a1614);
  letter-spacing: -0.005em;
  max-width: 320px;
}
.ed-manifesto-sep {
  font-family: var(--ds-font-serif);
  font-size: 1.4rem;
  color: var(--ds-oxblood, #8d2f2a);
  line-height: 1;
  user-select: none;
  flex: 0 0 auto;
}
@media (max-width: 760px) {
  .ed-manifesto-inner {
    flex-direction: column;
    gap: 18px;
  }
  .ed-manifesto-sep { font-size: 1.1rem; }
  .ed-manifesto-line { max-width: none; }
}
