/* ─────────────────────────────────────────────────────────────
   Purple — a journal for modern women
   Design tokens & shared styles
   ───────────────────────────────────────────────────────────── */

:root {
  /* Palette */
  --paper:    #FAF7F3;
  --paper-2:  #F1EBE6;
  --paper-3:  #E8DFE0;
  --ink:      #1B0F1A;
  --ink-soft: #46333F;
  --muted:    #7C6874;
  --line:     rgba(27, 15, 26, 0.12);

  --plum:      #4B2354;
  --plum-deep: #2E1435;
  --violet:    #7B4A82;
  --violet-soft: #A78FB0;
  --gold:      #B7955A;

  /* Fonts */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  /* Shadows */
  --shadow-1: 0 10px 30px rgba(27, 15, 26, 0.10);
  --shadow-2: 0 20px 60px rgba(27, 15, 26, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}

/* ── Layout helpers ─────────────────────────────────────── */
.p-container         { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.p-container--narrow { max-width: 760px;  margin: 0 auto; padding: 0 24px; }

.p-section         { padding: 88px 0; }
.p-section--tight  { padding: 56px 0; }
.p-section--flush  { padding-top: 0; }
.p-section--dark   {
  background: var(--plum-deep);
  color: var(--paper);
}

/* ── Typography ────────────────────────────────────────── */
.p-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--plum);
}
.p-eyebrow-line {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--plum);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.p-eyebrow-line::after {
  content: "";
  height: 1px;
  background: var(--line);
  flex: 1;
}

.p-display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 6.5vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 24px;
}
.p-display em { font-style: italic; color: var(--plum); font-weight: 400; }

.p-lede {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.42;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 32px;
}

/* ── Masthead (bespoke to Purple — not a top nav bar) ───── */
.p-mast {
  position: relative;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 22px 24px 22px;
  text-align: center;
  z-index: 40;
}
.p-mast__ribbon {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}
.p-mast__ribbon-left  { text-align: left; }
.p-mast__ribbon-right { text-align: right; color: var(--plum); font-weight: 600; }
.p-mast__ornament {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.p-mast__word {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0;
}
.p-mast__word em { font-style: italic; font-weight: 500; }
.p-mast__word .stop { color: var(--gold); font-style: normal; }

.p-mast__tag {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.p-mast__rule {
  display: block;
  width: min(240px, 50%);
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin: 20px auto 16px;
}

.p-mast__index {
  max-width: 1200px;
  margin: 0 auto;
}
.p-mast__index ol {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 44px;
  list-style: none;
  padding: 0; margin: 0;
}
.p-mast__index a {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  padding: 6px 0 4px;
  border-bottom: 1px solid transparent;
  transition: color 200ms ease, border-color 200ms ease;
}
.p-mast__index a .roman {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--plum);
  letter-spacing: 0;
}
.p-mast__index a:hover,
.p-mast__index a[aria-current="page"] {
  color: var(--plum);
  border-color: var(--plum);
}

.p-mast__open {
  display: none;
  align-items: center;
  gap: 10px;
  margin: 4px auto 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 11px 20px;
  cursor: pointer;
  border-radius: 2px;
}
.p-mast__open .bars {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}
.p-mast__open .bars i {
  display: block;
  width: 16px; height: 1px;
  background: var(--ink);
}

@media (max-width: 720px) {
  .p-mast { padding: 16px 20px 18px; }
  .p-mast__ribbon {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-bottom: 12px;
    margin-bottom: 14px;
    font-size: 0.58rem;
    letter-spacing: 0.22em;
  }
  .p-mast__ornament { display: none; }
  .p-mast__word { font-size: 2.2rem; }
  .p-mast__tag { font-size: 0.86rem; }
  .p-mast__rule { margin: 14px auto 12px; width: 60%; }
  .p-mast__index { display: none; }
  .p-mast__open { display: inline-flex; }
}

/* ── Full-screen index overlay (mobile) ─────────────────── */
.p-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--paper);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms;
  overflow-y: auto;
}
.p-overlay[data-open="true"] {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.p-overlay__inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 88px 28px 56px;
  position: relative;
}
.p-overlay__close {
  position: absolute;
  top: 20px; right: 20px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 200ms, color 200ms;
}
.p-overlay__close:hover { border-color: var(--plum); color: var(--plum); }
.p-overlay__eyebrow {
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 20px;
}
.p-overlay__word {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 32px;
  line-height: 1;
}
.p-overlay__word em { font-style: italic; }
.p-overlay__word .stop { color: var(--gold); }
.p-overlay__list {
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px solid var(--line);
}
.p-overlay__list li { border-bottom: 1px solid var(--line); }
.p-overlay__list a {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: baseline;
  gap: 4px 16px;
  padding: 22px 4px;
  color: var(--ink);
  transition: color 200ms ease;
}
.p-overlay__list a:hover { color: var(--plum); }
.p-overlay__list .roman {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--plum);
  font-size: 1.1rem;
}
.p-overlay__list .name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.15;
}
.p-overlay__list .name em { font-style: italic; }
.p-overlay__list .dek {
  grid-column: 2;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 4px;
}
.p-overlay__foot {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.p-overlay__foot .gold { color: var(--gold); font-weight: 600; }

body.p-lock { overflow: hidden; }

/* ── Hero — editorial split (media + typography) ─────────── */
.p-hero {
  position: relative;
  background: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.p-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 82vh;
}
.p-hero__text {
  position: relative;
  z-index: 2;
  padding: 88px 28px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--paper);
  min-height: 82vh;
}
.p-hero__mast {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--violet-soft);
  margin-bottom: 18px;
}
.p-hero__no { color: var(--paper); font-weight: 700; letter-spacing: 0.32em; }
.p-hero__season { color: var(--gold); }
.p-hero__sep {
  flex: 0 0 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.75;
}
.p-hero__eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--violet-soft);
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.p-hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 7.4vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 0 0 26px;
  max-width: 20ch;
}
.p-hero__title em {
  font-style: italic;
  color: var(--violet-soft);
  font-weight: 400;
}
.p-hero__lede {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.45;
  color: rgba(250, 247, 243, 0.88);
  max-width: 46ch;
  margin: 0 0 32px;
}
.p-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
}
.p-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--paper);
  color: var(--ink);
  padding: 15px 26px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}
.p-hero__cta:hover {
  background: var(--plum);
  color: var(--paper);
  transform: translateY(-1px);
}
.p-hero__cta svg { width: 16px; height: 16px; }
.p-hero__quiet {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--violet-soft);
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(167, 143, 176, 0.4);
  transition: color 220ms ease, border-color 220ms ease;
}
.p-hero__quiet:hover { color: var(--paper); border-bottom-color: var(--paper); }

.p-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  overflow: hidden;
}
.p-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}
.p-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 8, 18, 0.28) 0%, rgba(15, 8, 18, 0.55) 55%, rgba(30, 14, 40, 0.88) 100%),
    linear-gradient(90deg, rgba(30, 14, 40, 0.55) 0%, rgba(30, 14, 40, 0.12) 55%, rgba(30, 14, 40, 0) 100%);
  pointer-events: none;
}
.p-hero__caption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 247, 243, 0.72);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 60ch;
  text-align: right;
}
.p-hero__cap-mark { color: var(--gold); font-size: 0.82rem; }

@media (min-width: 960px) {
  .p-hero__grid {
    grid-template-columns: minmax(440px, 46%) 1fr;
    min-height: min(88vh, 820px);
  }
  .p-hero__text {
    background: var(--paper);
    color: var(--ink);
    padding: 96px 56px 88px;
    min-height: auto;
    justify-content: center;
  }
  .p-hero__mast { color: var(--muted); }
  .p-hero__no { color: var(--plum); font-weight: 600; }
  .p-hero__season { color: var(--plum); font-weight: 600; }
  .p-hero__sep { background: var(--gold); opacity: 0.7; }
  .p-hero__eyebrow { color: var(--plum); font-style: italic; }
  .p-hero__title { color: var(--ink); }
  .p-hero__title em { color: var(--plum); }
  .p-hero__lede { color: var(--ink-soft); }
  .p-hero__cta {
    background: var(--plum);
    color: var(--paper);
  }
  .p-hero__cta:hover { background: var(--plum-deep); }
  .p-hero__quiet {
    color: var(--plum);
    border-bottom-color: rgba(75, 35, 84, 0.35);
  }
  .p-hero__quiet:hover { color: var(--plum-deep); border-bottom-color: var(--plum-deep); }
  .p-hero__media { position: relative; inset: auto; height: 100%; }
  .p-hero__media::after {
    background:
      linear-gradient(90deg, rgba(30, 14, 40, 0.28) 0%, rgba(30, 14, 40, 0.05) 22%, rgba(30, 14, 40, 0) 55%),
      linear-gradient(180deg, rgba(15, 8, 18, 0.08) 0%, rgba(15, 8, 18, 0) 40%, rgba(15, 8, 18, 0.28) 100%);
  }
  .p-hero__caption { right: 24px; bottom: 22px; }
}
@media (min-width: 1280px) {
  .p-hero__text { padding: 112px 88px 104px; }
}

/* ── Section head ────────────────────────────────────────── */
.p-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.p-head__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0;
}
.p-head__title em { font-style: italic; color: var(--plum); font-weight: 400; }
.p-head__aside {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}

/* ── Feature (big card) ─────────────────────────────────── */
.p-feature {
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .p-feature { grid-template-columns: 1.15fr 1fr; gap: 64px; }
}
.p-feature__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
  background: var(--paper-2);
}
.p-feature__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}
.p-feature__media:hover img { transform: scale(1.03); }
.p-feature__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 16px;
}
.p-feature__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.p-feature__dek {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 24px;
  max-width: 48ch;
}
.p-feature__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--plum);
  border-bottom: 1px solid var(--plum);
  padding-bottom: 4px;
}
.p-feature__link:hover { color: var(--plum-deep); border-color: var(--plum-deep); }

/* ── Grid + cards ────────────────────────────────────────── */
.p-grid { display: grid; gap: 40px; }
.p-grid--2 { grid-template-columns: 1fr; }
.p-grid--3 { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .p-grid--2 { grid-template-columns: repeat(2, 1fr); gap: 48px; }
}
@media (min-width: 980px) {
  .p-grid--3 { grid-template-columns: repeat(3, 1fr); gap: 48px; }
}

.p-card {
  display: block;
  color: var(--ink);
}
.p-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--paper-2);
}
.p-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}
.p-card:hover .p-card__media img { transform: scale(1.04); }
.p-card__meta {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.p-card__cat { color: var(--plum); }
.p-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.55rem;
  line-height: 1.14;
  letter-spacing: -0.008em;
  color: var(--ink);
  margin: 0 0 10px;
}
.p-card:hover .p-card__title { color: var(--plum); }
.p-card__dek {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
  max-width: 42ch;
}

/* ── Pull-quote break ────────────────────────────────────── */
.p-quote {
  background: var(--plum-deep);
  color: var(--paper);
  padding: 96px 24px;
  text-align: center;
}
.p-quote__mark {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 5rem;
  color: var(--violet-soft);
  line-height: 0.8;
  margin-bottom: 20px;
}
.p-quote__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.28;
  max-width: 22ch;
  margin: 0 auto 18px;
}
.p-quote__cite {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--violet-soft);
}

/* ── Newsletter ──────────────────────────────────────────── */
.p-newsletter {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  padding: 8px 0;
}
.p-newsletter__eyebrow { color: var(--plum); margin-bottom: 14px; }
.p-newsletter__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  margin: 0 0 12px;
}
.p-newsletter__dek {
  color: var(--ink-soft);
  margin: 0 0 24px;
  font-size: 1.02rem;
}
.p-newsletter__form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.p-newsletter__input {
  min-width: 260px;
  flex: 1 1 260px;
  max-width: 380px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  outline: none;
  transition: border-color 200ms ease;
}
.p-newsletter__input:focus { border-color: var(--plum); }
.p-newsletter__btn {
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--plum);
  color: var(--paper);
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: background 220ms ease, transform 220ms ease;
}
.p-newsletter__btn:hover { background: var(--plum-deep); transform: translateY(-1px); }
.p-newsletter__note {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 16px 0 0;
}
.p-newsletter__ok {
  color: var(--plum);
  margin-top: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
}

/* ── Article (long-form) ─────────────────────────────────── */
.p-article {
  padding: 60px 0 100px;
}
.p-article__lead {
  max-width: 760px;
  margin: 0 auto 44px;
}
.p-article__cat {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--plum);
  display: inline-block;
  margin-bottom: 22px;
}
.p-article__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 22px;
}
.p-article__dek {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.44;
  color: var(--ink-soft);
  margin: 0 0 26px;
}
.p-article__byline {
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.p-article__byline strong { color: var(--plum); font-weight: 600; }
.p-article__byline .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--muted);
  display: inline-block;
}
.p-article__hero {
  margin: 40px auto 60px;
  max-width: 1000px;
}
.p-article__hero img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.p-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 32px;
}
.p-back:hover { color: var(--plum); }

.p-prose {
  max-width: 640px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--ink);
  font-weight: 400;
}
.p-prose p { margin: 0 0 26px; }
.p-prose p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-weight: 500;
  float: left;
  font-size: 4.4rem;
  line-height: 0.85;
  margin: 8px 12px 0 0;
  color: var(--plum);
}
.p-prose h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 1.15;
  color: var(--ink);
  margin: 48px 0 18px;
}
.p-prose h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  margin: 32px 0 14px;
}
.p-prose blockquote {
  border-left: 3px solid var(--plum);
  margin: 32px 0;
  padding: 10px 0 10px 26px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--plum);
}
.p-prose ul, .p-prose ol {
  margin: 20px 0 26px;
  padding-left: 24px;
}
.p-prose li { margin-bottom: 10px; }
.p-prose em { color: var(--plum); }
.p-prose strong { color: var(--ink); font-weight: 600; }
.p-prose hr { margin: 40px 0; }

.p-article__foot {
  max-width: 640px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.p-article__foot a { color: var(--plum); border-bottom: 1px solid var(--plum); padding-bottom: 2px; }

/* ── Footer ──────────────────────────────────────────────── */
.p-foot {
  background: var(--plum-deep);
  color: rgba(250, 247, 243, 0.86);
  padding: 72px 24px 36px;
  margin-top: 40px;
}
.p-foot__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 780px) {
  .p-foot__inner { grid-template-columns: 1.5fr 1fr 1fr; }
}
.p-foot__brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--paper);
  margin: 0 0 10px;
}
.p-foot__brand em { font-style: italic; color: var(--violet-soft); font-weight: 400; }
.p-foot__brand .dot { color: var(--violet-soft); }
.p-foot__tag { max-width: 42ch; margin: 0 0 14px; font-size: 0.98rem; line-height: 1.5; }
.p-foot__partner { max-width: 42ch; font-size: 0.9rem; line-height: 1.5; color: rgba(250,247,243,0.66); }
.p-foot__partner a { color: var(--violet-soft); border-bottom: 1px solid rgba(167, 143, 176, 0.4); }
.p-foot__head {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--violet-soft);
  margin: 0 0 16px;
  font-weight: 600;
}
.p-foot__links { list-style: none; padding: 0; margin: 0; }
.p-foot__links li { margin-bottom: 10px; }
.p-foot__links a { color: rgba(250, 247, 243, 0.86); font-size: 0.94rem; border-bottom: 1px solid transparent; padding-bottom: 2px; }
.p-foot__links a:hover { color: var(--violet-soft); border-color: var(--violet-soft); }
.p-foot__legal {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(250, 247, 243, 0.10);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 247, 243, 0.44);
}

/* ── Reveal ─────────────────────────────────────────────── */
.p-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms ease, transform 800ms ease;
}
.p-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ── Focus ─────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--plum);
  outline-offset: 3px;
  border-radius: 2px;
}
