/* =========================================================================
   NELLY — ARTICLE STYLESHEET
   HowTo: Fashion Edition · Women lane · Nelly Lourenço

   NETWORK LAW: an article never loads a sibling's or another contributor's
   stylesheet. This file is Nelly's. It is loaded by every Nelly article
   under /en/contributors/nelly/. It is not loaded by JT, and JT's
   jt-fathers-day.css is not loaded here.

   Contract: Redesign/DESIGN.md.
     - "a styled dossier, not a stack of cards"
     - Women palette: deep burgundy, warm cream, muted gold, blush undertones
     - "Body copy stays readable and narrow"
     - "Every L3 page needs at least two image-led sections beyond the hero"
     - "A page needs a mix of cards, rows, image spreads, notes, tables,
        and open editorial space"
     - "Reading path: large typographic rows, not cards"

   SECTION ARCHETYPES (each major section gets its own structure):
     nl-head      the title block
     nl-band      the cinematic hero
     nl-deck      the opening line, set large
     nl-block     two filled prose columns (body)
     nl-plate     full-bleed cropped editorial plate — image only, no words
                  .duo = a two-crop image spread
     nl-spread    asymmetric split: image bleeds to the page edge, prose
                  aligned back to the shell
     nl-diag      diagnostic — standing image beside an ordered editorial list
     nl-atlas     atlas/table treatment: hairline matrix, mono index, tonal
                  alternating field
     nl-dark      dark measurement panel, full bleed
     nl-pull      pull quote across the full measure
     nl-path      the reading path — large typographic rows, never cards
   ========================================================================= */

.nl {
  --paper:      #f3ecdf;
  --paper-deep: #ece2cf;
  --blush:      #eee0d8;   /* soft blush undertone — tonal fields only */
  --ink:        #221c14;
  --ink-soft:   #574d41;
  --ink-faint:  #8a7e6d;
  --rule:       #d9cbb2;
  --rule-soft:  #e3d8c3;
  --accent:     #8a3145;   /* deep burgundy */
  --accent-deep:#5d2030;
  --gold:       #a8813f;   /* muted gold */
  --gold-deep:  #7d5e2a;
  --dark:       #1b1310;
  --dark-soft:  #d2c4ab;
  --dark-gold:  #caa15f;

  --serif:   "Newsreader", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --display: "Fraunces", "Newsreader", Georgia, serif;
  --label:   "DM Sans", "Helvetica Neue", Arial, sans-serif;

  --shell:   1240px;
  --gutter:  48px;

  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: clip;
}
.nl * { box-sizing: border-box; }
.nl ::selection { background: rgba(138,49,69,0.20); }

.nl::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.nl-shell { position: relative; z-index: 1; max-width: var(--shell); margin: 0 auto; padding: 0 var(--gutter); }

/* shared body type — narrow measure, never the full page */
.nl-prose { font-size: 19px; line-height: 1.64; color: var(--ink); text-wrap: pretty; }
.nl-prose p { margin: 0 0 1.25em; max-width: 64ch; }
.nl-prose p:last-child { margin-bottom: 0; }

.nl-2col { display: grid; grid-template-columns: 1fr 1fr; column-gap: 68px; }
.nl-2col .c { min-width: 0; }

/* =========================================================================
   TOPPER
   ========================================================================= */
.nl-topper {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; padding: 32px 0 20px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--label); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
}
.nl-crumb { display: flex; align-items: center; gap: 10px; color: var(--ink-faint); }
.nl-crumb a { color: var(--ink-soft); text-decoration: none; }
.nl-crumb a:hover { color: var(--accent); }
.nl-crumb .sep { color: var(--rule); }
.nl-crumb .here { color: var(--ink); }
.nl-stamp { color: var(--accent); font-weight: 500; }
.nl-stamp .dot { display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); margin: 0 8px 2px; }

/* =========================================================================
   HEAD
   ========================================================================= */
.nl-head { padding: 74px 0 54px; text-align: center; }
.nl-kicker { font-family: var(--label); font-size: 13px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--accent); margin-bottom: 26px; }
.nl-h1 {
  font-family: var(--display); font-weight: 380; font-optical-sizing: auto;
  font-size: clamp(50px, 9vw, 138px); line-height: 0.9; letter-spacing: -0.025em;
  margin: 0 auto; max-width: 15ch; text-wrap: balance;
}
.nl-h1 .it { font-style: italic; font-weight: 340; }
.nl-sub {
  font-family: var(--display); font-style: italic; font-weight: 340;
  font-size: clamp(21px, 2.8vw, 32px); line-height: 1.24; color: var(--ink-soft);
  margin: 24px auto 0; max-width: 30ch; text-wrap: balance;
}
.nl-byline {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin: 42px auto 0; padding-top: 24px; border-top: 1px solid var(--rule);
  max-width: 560px; font-family: var(--label);
}
.nl-byline .avatar { width: 48px; height: 48px; border-radius: 50%; background-size: cover; background-position: center top; background-color: var(--paper-deep); border: 1px solid var(--rule); flex: none; }
.nl-byline .who { text-align: left; line-height: 1.4; }
.nl-byline .by { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); }
.nl-byline .name { font-size: 16px; color: var(--ink); }
.nl-byline .name a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--rule); }
.nl-byline .name a:hover { border-color: var(--accent); color: var(--accent); }
.nl-byline .meta { margin-left: auto; font-size: 12px; letter-spacing: 0.05em; color: var(--ink-faint); text-align: right; line-height: 1.6; }

/* =========================================================================
   HERO BAND + CAPTIONS
   ========================================================================= */
.nl-figure { margin: 0; }
.nl-cap {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  margin: 13px auto 0; max-width: var(--shell); padding: 0 var(--gutter);
  font-family: var(--label); font-size: 12.5px; letter-spacing: 0.04em; color: var(--ink-faint);
}
.nl-cap .accent { color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase; font-size: 11px; }

.nl-band { width: 100%; }
.nl-band .img { width: 100%; background-size: cover; background-position: center; background-color: var(--paper-deep); }
.nl-band.hero .img { aspect-ratio: 16 / 7.6; background-position: center 44%; }
.nl-band.wide .img { aspect-ratio: 16 / 8.5; }

.nl-hero-wrap { margin-top: 2px; }
.nl-band-sec { margin: 86px 0; }

/* =========================================================================
   PLATE — full-bleed cropped editorial plate. IMAGE ONLY: this archetype
   carries no words by design. Contract: "Use the garment/category image
   again as cropped editorial plates when no better image exists."
   ========================================================================= */
.nl-plate { width: 100%; margin: 96px 0; position: relative; z-index: 1; }
.nl-plate .img {
  width: 100%; aspect-ratio: 16 / 5.4;
  background-size: cover; background-position: center 50%;
  background-color: var(--paper-deep);
}
.nl-plate.tall .img { aspect-ratio: 16 / 7; }
.nl-plate.slim .img { aspect-ratio: 16 / 4.2; }

/* the image spread — two crops under one hairline gutter. The band owns the
   height; the crops divide it unevenly so the pair reads as one picture. */
.nl-plate.duo { display: grid; grid-template-columns: 1.42fr 1fr; gap: 4px; aspect-ratio: 16 / 5.8; }
.nl-plate.duo .img { min-width: 0; height: 100%; aspect-ratio: auto; }

/* inset variant — sits on the shell grid rather than the page edge */
.nl-plate.inset { max-width: var(--shell); margin-left: auto; margin-right: auto; padding: 0 var(--gutter); }

/* crop directions, so a re-used asset reads as a different picture */
.nl-crop-t  { background-position: center 12% !important; }
.nl-crop-b  { background-position: center 88% !important; }
.nl-crop-l  { background-position: 12% center !important; }
.nl-crop-r  { background-position: 88% center !important; }
.nl-crop-in { background-size: 150% auto !important; }
/* deep detail crops — used when a page has only one asset, so the second
   panel of a spread has to read as a genuinely different picture */
.nl-crop-zl  { background-size: 235% auto !important; background-position: 10% 46% !important; }
.nl-crop-zr  { background-size: 235% auto !important; background-position: 90% 46% !important; }
.nl-crop-zbr { background-size: 235% auto !important; background-position: 88% 92% !important; }

/* =========================================================================
   DECK
   ========================================================================= */
.nl-deck { padding: 78px 0 14px; }
.nl-deck p {
  font-family: var(--display); font-weight: 360; font-optical-sizing: auto;
  font-size: clamp(30px, 4.4vw, 56px); line-height: 1.04; letter-spacing: -0.02em;
  margin: 0; color: var(--ink); max-width: 20ch; text-wrap: balance;
}

/* =========================================================================
   BODY BLOCKS
   ========================================================================= */
.nl-block { padding: 26px 0; }
.nl-block.first { padding-top: 30px; }
.nl-block.lead .c:first-child > p:first-child::first-letter {
  font-family: var(--display); font-weight: 440; float: left;
  font-size: 4.4em; line-height: 0.74; padding: 8px 12px 0 0; color: var(--accent-deep);
}
.nl-beat {
  font-family: var(--display); font-style: italic; font-size: clamp(22px, 2.2vw, 27px);
  line-height: 1.32; color: var(--accent-deep); margin: 0.2em 0 0.7em !important;
}

/* open editorial space — a body block that is deliberately given room */
.nl-block.air { padding: 68px 0; }

/* =========================================================================
   ROW — the legacy square image + text plate (kept for compatibility)
   ========================================================================= */
.nl-row { padding: 60px 0; align-items: center; column-gap: 68px; }
.nl-row .im .ph { width: 100%; aspect-ratio: 1 / 1; background-size: cover; background-position: center; background-color: var(--paper-deep); }
.nl-row .im .rcap { font-family: var(--label); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-top: 12px; }
.nl-row.rev .im { order: 2; }
.nl-row .tx .kick { font-family: var(--label); font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.nl-row .tx p { font-size: 20px; line-height: 1.62; }
.nl-row .tx .hl { font-family: var(--display); font-style: italic; color: var(--accent-deep); }
.nl-row.lead .tx > p:first-child::first-letter {
  font-family: var(--display); font-weight: 440; float: left;
  font-size: 4em; line-height: 0.74; padding: 8px 12px 0 0; color: var(--accent-deep);
}

/* =========================================================================
   SPREAD — asymmetry with intent. The image runs off the page edge; the
   prose column is pulled back onto the shell grid.
   ========================================================================= */
.nl-spread {
  display: grid; grid-template-columns: 1.06fr 0.94fr; align-items: center;
  margin: 100px 0; position: relative; z-index: 1;
}
.nl-spread .im .ph {
  width: 100%; aspect-ratio: 1 / 1;
  background-size: cover; background-position: center; background-color: var(--paper-deep);
}
.nl-spread .im .rcap {
  font-family: var(--label); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-top: 12px; padding-left: max(var(--gutter), calc((100vw - var(--shell)) / 2 + var(--gutter)));
}
.nl-spread .tx {
  padding-left: 76px;
  padding-right: max(var(--gutter), calc((100vw - var(--shell)) / 2 + var(--gutter)));
}
.nl-spread.rev { grid-template-columns: 0.94fr 1.06fr; }
.nl-spread.rev .im { order: 2; }
.nl-spread.rev .im .rcap { padding-left: 0; padding-right: max(var(--gutter), calc((100vw - var(--shell)) / 2 + var(--gutter))); text-align: right; }
.nl-spread.rev .tx {
  padding-right: 76px;
  padding-left: max(var(--gutter), calc((100vw - var(--shell)) / 2 + var(--gutter)));
}
.nl-spread .tx p { font-size: 19.5px; line-height: 1.64; margin: 0 0 1.2em; }
.nl-spread .tx p:last-child { margin-bottom: 0; }
.nl-spread .tx .nl-prin-eyebrow { margin-top: 0; }

/* =========================================================================
   DIAGNOSTIC — a standing image beside an ordered editorial list.
   Contract: "Diagnostic/check section: image and ordered editorial list."
   ========================================================================= */
.nl-diag { display: grid; grid-template-columns: 372px 1fr; column-gap: 76px; align-items: start; padding: 24px 0 44px; }
.nl-diag.rev { grid-template-columns: 1fr 372px; }
.nl-diag.rev .im { order: 2; }
.nl-diag .im { position: sticky; top: 34px; }
.nl-diag .im .ph { width: 100%; aspect-ratio: 4 / 5; background-size: cover; background-position: center; background-color: var(--paper-deep); }
.nl-diag .im .rcap { font-family: var(--label); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-top: 12px; }
.nl-diag .li { min-width: 0; }
.nl-diag .li .nl-prin { grid-template-columns: 72px 1fr; gap: 22px; padding: 28px 0; }
.nl-diag .li .nl-prin .pn { font-size: clamp(30px, 3vw, 42px); }
.nl-diag .li .nl-prin-eyebrow { margin-top: 0; }

/* =========================================================================
   ATLAS — the table treatment. A hairline matrix with a mono index and an
   alternating tonal field. No boxes, no cards.
   ========================================================================= */
.nl-atlas { padding: 20px 0 40px; }
.nl-atlas .nl-prin-list { border-top: 2px solid var(--ink); }
.nl-atlas .nl-prin {
  grid-template-columns: 88px minmax(0, 0.92fr) minmax(0, 1.5fr);
  gap: 0 34px; padding: 20px 26px 20px 0; border-bottom: 1px solid var(--rule-soft);
  align-items: baseline;
}
.nl-atlas .nl-prin:nth-child(even) { background: var(--blush); }
.nl-atlas .nl-prin .pn {
  font-family: var(--label); font-style: normal; font-weight: 500;
  font-size: 12px; letter-spacing: 0.2em; color: var(--gold-deep);
  padding-left: 22px; line-height: 1.9;
}
.nl-atlas .nl-prin .pc { display: contents; }
.nl-atlas .nl-prin .pc .ph {
  font-family: var(--display); font-weight: 400; font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.16; margin: 0; color: var(--ink);
}
.nl-atlas .nl-prin .pc .pb { font-size: 17px; line-height: 1.58; color: var(--ink-soft); margin: 0; max-width: 68ch; }
.nl-atlas .nl-prin:last-child { border-bottom: 1px solid var(--rule-soft); }

/* =========================================================================
   PULL QUOTE
   ========================================================================= */
.nl-pull { padding: 74px 0; text-align: center; }
.nl-pull blockquote {
  font-family: var(--display); font-weight: 360; font-size: clamp(32px, 5.2vw, 68px);
  line-height: 1.06; letter-spacing: -0.02em; color: var(--ink); margin: 0 auto;
  max-width: 17ch; text-wrap: balance;
}
.nl-pull blockquote .it { font-style: italic; color: var(--accent-deep); }
.nl-pull.line { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 86px 0; }

/* =========================================================================
   DARK MEASUREMENT PANEL
   ========================================================================= */
.nl-dark { background: var(--dark); color: var(--paper); padding: 104px 0; margin: 92px 0; position: relative; z-index: 1; }
.nl-dark .inner { max-width: var(--shell); margin: 0 auto; padding: 0 var(--gutter); }
.nl-dark .eyebrow { font-family: var(--label); font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--dark-gold); margin-bottom: 36px; }
.nl-dark .nl-2col p { font-size: 19px; line-height: 1.66; color: var(--dark-soft); margin: 0; max-width: 62ch; }
.nl-dark .nl-2col .c p + p { margin-top: 1.1em; }
.nl-dark .punch {
  font-family: var(--display); font-style: italic; font-weight: 350;
  font-size: clamp(32px, 5vw, 62px); line-height: 1.06; letter-spacing: -0.015em;
  color: #f6efe2; margin: 60px 0 0; max-width: 20ch; text-wrap: balance;
}
/* a plate can sit inside the dark panel as a measurement strip */
.nl-dark .nl-plate { margin: 0 0 56px; }

/* =========================================================================
   CLOSER
   ========================================================================= */
.nl-closer { width: 100%; position: relative; margin-top: 92px; z-index: 1; }
.nl-closer .img { width: 100%; aspect-ratio: 16 / 7.4; background-size: cover; background-position: center 34%; background-color: var(--dark); }
.nl-closer .veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,14,12,0.86) 0%, rgba(23,14,12,0.52) 48%, rgba(23,14,12,0.12) 100%); display: flex; align-items: center; }
.nl-closer .veil .inner { max-width: var(--shell); margin: 0 auto; padding: 0 var(--gutter); width: 100%; }
.nl-closer .final {
  font-family: var(--display); font-weight: 360; font-size: clamp(36px, 6.2vw, 84px);
  line-height: 0.98; letter-spacing: -0.025em; color: #f7f1e5; margin: 0; max-width: 13ch; text-wrap: balance;
}

/* =========================================================================
   SIGNOFF
   ========================================================================= */
.nl-sign { display: flex; align-items: center; gap: 18px; margin: 74px 0 0; padding-top: 38px; border-top: 1px solid var(--rule); }
.nl-sign .avatar { width: 62px; height: 62px; border-radius: 50%; background-size: cover; background-position: center top; background-color: var(--paper-deep); border: 1px solid var(--rule); flex: none; }
.nl-sign .txt { font-family: var(--label); line-height: 1.5; }
.nl-sign .txt .n { font-family: var(--display); font-size: 22px; font-style: italic; color: var(--ink); }
.nl-sign .txt .r { font-size: 12.5px; color: var(--ink-faint); letter-spacing: 0.05em; }

/* =========================================================================
   READING PATH — large typographic rows. Contract: "Reading path: large
   typographic rows, not cards." Never a repeated equal card grid.
   ========================================================================= */
.nl-related { padding: 74px 0 108px; }
.nl-related .ey { font-family: var(--label); font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }

.nl-path { display: block; }
.nl-path .nl-card {
  display: grid; grid-template-columns: 132px minmax(0, 1fr) 44px;
  column-gap: 40px; align-items: center;
  padding: 32px 0; border-top: 1px solid var(--rule);
  text-decoration: none; color: inherit;
  transition: background 0.35s ease, padding 0.35s ease;
}
.nl-path .nl-card:last-child { border-bottom: 1px solid var(--rule); }
.nl-path .nl-card .ci { width: 132px; aspect-ratio: 4 / 5; background-size: cover; background-position: center; background-color: var(--paper-deep); filter: saturate(0.92); transition: filter 0.35s ease; }
.nl-path .nl-card .tw { min-width: 0; }
.nl-path .nl-card .ck { font-family: var(--label); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-deep); }
.nl-path .nl-card .ct {
  font-family: var(--display); font-weight: 380; font-size: clamp(26px, 3.1vw, 42px);
  line-height: 1.02; letter-spacing: -0.02em; margin: 10px 0 0; color: var(--ink);
  text-wrap: balance; transition: color 0.3s ease;
}
.nl-path .nl-card .cd { font-family: var(--serif); font-size: 16.5px; line-height: 1.55; color: var(--ink-soft); margin: 12px 0 0; max-width: 56ch; }
.nl-path .nl-card .go { justify-self: end; font-family: var(--label); font-size: 22px; color: var(--rule); transition: color 0.3s ease, transform 0.3s ease; }
.nl-path .nl-card .go::after { content: "\2192"; }
.nl-path .nl-card:hover { background: var(--blush); }
.nl-path .nl-card:hover .ct { color: var(--accent); }
.nl-path .nl-card:hover .ci { filter: saturate(1.06); }
.nl-path .nl-card:hover .go { color: var(--accent); transform: translateX(6px); }

/* =========================================================================
   PRINCIPLES / ORDERED EDITORIAL LISTS
   ========================================================================= */
.nl-principles { padding: 40px 0 24px; }
.nl-prin-intro {
  font-family: var(--display); font-style: italic; font-weight: 360;
  font-size: clamp(22px, 2.6vw, 30px); line-height: 1.34; color: var(--ink);
  max-width: 30ch; margin: 0 0 44px;
}
.nl-prin-eyebrow {
  font-family: var(--label); font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 14px; padding-bottom: 18px; border-bottom: 2px solid var(--ink);
}
.nl-prin-list { list-style: none; margin: 0; padding: 0; }
.nl-prin {
  display: grid; grid-template-columns: 96px 1fr; gap: 28px; align-items: start;
  padding: 34px 0; border-bottom: 1px solid var(--rule);
}
.nl-prin:last-child { border-bottom: none; }
.nl-prin .pn {
  font-family: var(--display); font-style: italic; font-weight: 340;
  font-size: clamp(38px, 4vw, 56px); line-height: 0.9; color: var(--accent);
}
.nl-prin .pc .ph {
  font-family: var(--display); font-weight: 400; font-size: clamp(22px, 2.6vw, 31px);
  line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 12px; color: var(--ink); text-wrap: balance;
}
.nl-prin .pc .pb { font-family: var(--serif); font-size: 18.5px; line-height: 1.62; color: var(--ink-soft); margin: 0; max-width: 62ch; }

/* --- the look, pinned & shoppable (getmylook embed) --- */
.nl-look { padding: 64px 0 10px; text-align: center; }
.nl-look-eyebrow {
  font-family: var(--label); font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 14px;
}
.nl-look-lead { font-size: 17px; color: var(--ink); max-width: 52ch; margin: 0 auto 26px; }
.nl-look-embed { width: min(440px, 100%); aspect-ratio: 4/5; border: 0; border-radius: 12px; box-shadow: 0 14px 40px rgba(40,28,12,.14); }
.nl-look-link {
  display: inline-block; margin-top: 16px; font-family: var(--label); font-size: 13px;
  letter-spacing: 0.08em; color: var(--accent-deep); text-decoration: none; border-bottom: 1px solid var(--rule);
}
.nl-look-link:hover { color: var(--accent); }

/* =========================================================================
   QUESTIONS block
   ========================================================================= */
.nl-questions { padding: 16px 0 8px; }
.nl-questions .nl-q-lead { max-width: 60ch; margin: 0 auto 40px; text-align: center; font-size: 19px; line-height: 1.62; color: var(--ink); }
.nl-q-list { list-style: none; margin: 0 auto; padding: 0; max-width: 820px; }
.nl-q-list li {
  font-family: var(--display); font-weight: 380; font-style: italic;
  font-size: clamp(24px, 3.4vw, 40px); line-height: 1.18; letter-spacing: -0.015em;
  color: var(--ink); padding: 22px 0; border-top: 1px solid var(--rule); text-wrap: balance;
}
.nl-q-list li:first-child { border-top: none; }
.nl-q-list li::before { content: "\2014 "; color: var(--accent); }

/* =========================================================================
   AFFILIATE / SHOP NOTE — a note, not a card
   ========================================================================= */
.nl-affil { margin: 82px 0 0; padding: 34px 0 0; border-top: 2px solid var(--ink); }
.nl-affil .ak { font-family: var(--label); font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin: 0 0 16px; }
.nl-affil .ab { font-family: var(--serif); font-size: 18.5px; line-height: 1.62; color: var(--ink-soft); margin: 0; max-width: 62ch; }
.nl-affil .al { display: inline-block; margin-top: 20px; font-family: var(--label); font-size: 13px; letter-spacing: 0.08em; color: var(--accent-deep); text-decoration: none; border-bottom: 1px solid var(--rule); }
.nl-affil .al:hover { color: var(--accent); border-color: var(--accent); }
.nl-affil .ad { font-family: var(--label); font-size: 11.5px; line-height: 1.6; color: var(--ink-faint); margin: 18px 0 0; max-width: 62ch; }

/* inline cross-links */
.nl-xlink { color: var(--accent-deep); text-decoration: none; border-bottom: 1px solid var(--rule); }
.nl-xlink:hover { color: var(--accent); border-color: var(--accent); }

/* a field note — the intro's aside voice */
.nl-note { font-family: var(--serif); font-size: 18.5px; line-height: 1.62; color: var(--ink-soft); margin: 0 0 40px; max-width: 72ch; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1080px) {
  .nl-diag { grid-template-columns: 300px 1fr; column-gap: 48px; }
  .nl-atlas .nl-prin { grid-template-columns: 74px minmax(0, 0.95fr) minmax(0, 1.25fr); gap: 0 24px; }
}

@media (max-width: 860px) {
  .nl-shell, .nl-cap, .nl-dark .inner, .nl-closer .veil .inner, .nl-plate.inset { padding-left: 24px; padding-right: 24px; }
  .nl-2col { grid-template-columns: 1fr; row-gap: 1.25em; }
  .nl-prose p { max-width: none; }
  .nl-block.lead .c:first-child > p:first-child::first-letter { font-size: 3.8em; }
  .nl-row { grid-template-columns: 1fr; row-gap: 26px; }
  .nl-row.rev .im, .nl-row .im { order: -1; }
  .nl-band.hero .img, .nl-band.wide .img { aspect-ratio: 4 / 5; }

  .nl-plate { margin: 56px 0; }
  .nl-plate .img, .nl-plate.tall .img, .nl-plate.slim .img { aspect-ratio: 16 / 9; }
  .nl-plate.duo { grid-template-columns: 1fr; gap: 4px; aspect-ratio: auto; }
  .nl-plate.duo .img { aspect-ratio: 16 / 10; height: auto; }

  .nl-spread, .nl-spread.rev { grid-template-columns: 1fr; row-gap: 30px; margin: 60px 0; }
  .nl-spread .im, .nl-spread.rev .im { order: -1; }
  .nl-spread .tx, .nl-spread.rev .tx { padding-left: 24px; padding-right: 24px; }
  .nl-spread .im .rcap, .nl-spread.rev .im .rcap { padding-left: 24px; padding-right: 24px; text-align: left; }

  .nl-diag, .nl-diag.rev { grid-template-columns: 1fr; row-gap: 30px; padding-bottom: 24px; }
  .nl-diag.rev .im { order: -1; }
  .nl-diag .im { position: static; }
  .nl-diag .im .ph { aspect-ratio: 16 / 10; }
  .nl-diag .li .nl-prin { grid-template-columns: 1fr; gap: 8px; }

  .nl-atlas .nl-prin { grid-template-columns: 1fr; gap: 8px; padding: 22px 18px; }
  .nl-atlas .nl-prin .pn { padding-left: 0; line-height: 1.4; }
  .nl-atlas .nl-prin .pc { display: block; }

  .nl-path .nl-card { grid-template-columns: 96px minmax(0, 1fr); column-gap: 24px; padding: 26px 0; }
  .nl-path .nl-card .ci { width: 96px; }
  .nl-path .nl-card .go { display: none; }

  .nl-prin { grid-template-columns: 1fr; gap: 8px; padding: 26px 0; }
  .nl-prin .pn { font-size: 34px; }
}

@media (max-width: 560px) {
  .nl-shell { padding: 0 20px; }
  .nl-byline { flex-wrap: wrap; }
  .nl-byline .meta { margin-left: 0; text-align: left; width: 100%; }
  .nl-closer .veil { background: linear-gradient(180deg, rgba(23,14,12,0.45) 0%, rgba(23,14,12,0.86) 100%); }
  .nl-path .nl-card { grid-template-columns: 1fr; row-gap: 16px; }
  .nl-path .nl-card .ci { width: 100%; aspect-ratio: 16 / 9; }
}
