/* =============================================
   WONDER CHROME STUDIO — FASHION EDITORIALS
   ============================================= */

/* Editorial hero with horizontal text treatment */
.editorial-hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--black);
}

.editorial-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    #0a0806 0%,
    #1a1512 45%,
    #120f0c 100%
  );
}

.editorial-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.editorial-hero__left {}

.editorial-hero__magazine-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-cinematic) 0.2s forwards;
}

.editorial-hero__title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-cinematic) 0.4s forwards;
}

.editorial-hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.editorial-hero__sub {
  color: var(--ivory-dim);
  font-size: 0.9375rem;
  line-height: 1.85;
  max-width: 400px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-cinematic) 0.6s forwards;
}

.editorial-hero__actions {
  opacity: 0;
  animation: fadeUp 1s var(--ease-cinematic) 0.8s forwards;
}

.editorial-hero__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.6rem;
  height: 580px;
  opacity: 0;
  animation: fadeIn 1.2s var(--ease-cinematic) 0.8s forwards;
}

.editorial-hero__right .img-placeholder:nth-child(1) {
  grid-column: 1 / 3;
  background: linear-gradient(160deg, #232019 0%, #13110e 100%);
  height: 100%;
}

.editorial-hero__right .img-placeholder:nth-child(2) {
  background: linear-gradient(160deg, #1e1c18 0%, #0f0e0b 100%);
  height: 100%;
}

.editorial-hero__right .img-placeholder:nth-child(3) {
  background: linear-gradient(160deg, #1c1a16 0%, #0e0c0a 100%);
  height: 100%;
}

/* ── Magazine Section ───────────────────────── */
.magazine-section {
  padding: var(--spacing-xl) 0;
  background: var(--charcoal);
  position: relative;
}

.magazine-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.magazine-section__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-style: italic;
  color: var(--ivory);
  line-height: 1.4;
  margin-bottom: 2rem;
}

.magazine-section__text {
  margin-bottom: 1.25rem;
}

.magazine-section__text + .magazine-section__text {
  margin-top: 0.25rem;
}

/* ── Editorial Categories ───────────────────── */
.editorial-cats {
  padding: var(--spacing-xl) 0;
  background: var(--black);
}

.editorial-cats__header {
  text-align: center;
  margin-bottom: 4rem;
}

.editorial-cats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
}

.editorial-cat-card {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.editorial-cat-card .img-placeholder {
  aspect-ratio: 3 / 4;
  background: var(--charcoal);
  transition: transform 0.7s var(--ease-luxury);
}

.editorial-cat-card:hover .img-placeholder {
  transform: scale(1.05);
}

.editorial-cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 55%);
}

.editorial-cat-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2rem;
  text-align: center;
}

.editorial-cat-card__label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.editorial-cat-card__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--ivory);
  font-weight: 400;
}

/* ── Styling & Direction ────────────────────── */
.styling-section {
  padding: var(--spacing-xl) 0;
  background: var(--espresso);
}

.styling-section__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.styling-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.styling-detail {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.styling-detail:last-child {
  border-bottom: none;
}

.styling-detail__dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.65rem;
}

.styling-detail__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ivory);
  margin-bottom: 0.25rem;
}

.styling-detail__text {
  font-size: 0.8125rem;
  color: var(--ivory-dim);
  line-height: 1.75;
}

/* ── Editorial Experience ───────────────────── */
.editorial-exp {
  padding: var(--spacing-xl) 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.editorial-exp__wide-img {
  width: 100%;
  background: linear-gradient(160deg, #2a2218 0%, #141210 100%);
  aspect-ratio: 21 / 7;
  margin-bottom: 5rem;
  position: relative;
}

.editorial-exp__wide-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,6,4,0.7) 0%,
    transparent 40%,
    transparent 60%,
    rgba(8,6,4,0.7) 100%
  );
}

.editorial-exp__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.editorial-exp-col__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--ivory);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.editorial-exp-col__text {
  font-size: 0.8125rem;
  color: var(--ivory-dim);
  line-height: 1.8;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
