
/* === PORTED closing/contact form bundle === */
.closing {
  background: var(--ink); color: var(--cream);
  padding: var(--xl) 0 var(--lg);
  position: relative; overflow: hidden;
}
.closing::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 70% at 80% 30%, rgba(225,31,38,0.12) 0%, transparent 60%);
}
.closing-bull {
  position: absolute; right: -8%; top: 10%;
  width: 56%; max-width: 760px;
  max-height: 80%;
  opacity: 0.24; pointer-events: none;
  filter: brightness(1.5) contrast(1.05) saturate(0.9) drop-shadow(0 18px 36px rgba(0,0,0,0.5));
}
.closing-bull img {
  width: 100%; height: 100%; object-fit: contain; object-position: right top;
  clip-path: inset(0 0 38% 0);
}
.closing-inner { position: relative; z-index: 2; }
.closing-display {
  font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 700;
  font-size: clamp(44px, 6.2vw, 104px); line-height: 0.9;
  letter-spacing: -0.04em;
}
.closing-display .line { display: block; }
.closing-display .gold {
  background: var(--gold-metal);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.closing-row {
  margin-top: clamp(18px, 2.2vw, 36px);
  padding-top: 24px;
  border-top: 1px solid var(--cream-20);
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 4vw, 64px); align-items: center;
}
.closing-pitch { display: flex; flex-direction: column; gap: 22px; }
.closing-blurb {
  font-size: clamp(17px, 1.3vw, 21px); line-height: 1.35; color: var(--cream-60);
  max-width: 540px;
}
.closing-blurb strong { color: var(--cream); font-weight: 600; }
.closing-promise { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.closing-promise li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-forma-djr-text), "DJR Text"; font-size: 13px; letter-spacing: 0.04em;
  color: var(--cream);
}
.closing-promise li::before {
  content: ""; width: 18px; height: 2px; background: var(--miami);
  flex-shrink: 0;
}

/* === Contact form === */
.contact-form {
  background: rgba(244,231,210,0.04);
  border: 1px solid rgba(244,231,210,0.18);
  padding: clamp(20px, 2vw, 30px);
  display: flex; flex-direction: column; gap: 11px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  position: relative;
}
.contact-form::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg,
    var(--miami) 0%,
    var(--gold-base) 25%,
    var(--pink) 50%,
    var(--red) 75%,
    var(--miami) 100%);
  background-size: 200% 100%;
  animation: cfRainbow 5s linear infinite, cfPulse 2.6s ease-in-out infinite;
}
@keyframes cfRainbow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes cfPulse {
  0%, 100% { opacity: 0.55; height: 2px; }
  50% { opacity: 1; height: 3px; }
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-label {
  font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream-60);
}
.cf-label em { color: var(--miami-light); font-style: normal; margin-left: 2px; }
.cf-field input,
.cf-field select,
.cf-field textarea {
  font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 500; font-size: 14px;
  padding: 10px 14px;
  background: rgba(11,9,7,0.55);
  color: var(--cream);
  border: 1px solid rgba(244,231,210,0.18);
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
  width: 100%; box-sizing: border-box;
  cursor: none;
}
.cf-field textarea { resize: vertical; min-height: 96px; line-height: 1.45; }
.cf-field input::placeholder, .cf-field textarea::placeholder { color: rgba(244,231,210,0.35); }
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus {
  border-color: var(--miami);
  background: rgba(11,9,7,0.7);
  box-shadow: 0 0 0 3px rgba(0,183,212,0.18);
}
.cf-field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--cream-60) 50%), linear-gradient(135deg, var(--cream-60) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 36px; }
.cf-consent {
  display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start;
  font-family: var(--font-forma-djr-text), "DJR Text"; font-size: 12px; line-height: 1.4;
  color: var(--cream-60);
  cursor: none;
}
.cf-consent em { font-style: italic; color: var(--cream); }
.cf-consent input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px;
  background: rgba(11,9,7,0.55);
  border: 1.5px solid var(--cream-40);
  display: grid; place-items: center;
  cursor: none;
  margin: 2px 0 0;
  transition: border-color .2s ease, background .2s ease;
}
.cf-consent input[type="checkbox"]:checked {
  background: var(--miami);
  border-color: var(--miami);
}
.cf-consent input[type="checkbox"]:checked::after {
  content: ""; width: 10px; height: 6px;
  border-left: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg) translate(1px, -1px);
}
.cf-submit {
  margin-top: 8px;
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  padding: 16px 22px;
  font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 13px;
  letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--miami); color: var(--ink);
  border: 2px solid var(--miami);
  cursor: none;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.cf-submit svg { width: 16px; height: 9px; }
.cf-submit:hover {
  background: var(--red); border-color: var(--red); color: var(--cream);
  transform: translateY(-1px);
}
.cf-fine {
  margin: 0; padding-top: 4px;
  font-family: var(--font-forma-djr-text), "DJR Text"; font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cream-40); text-align: center;
}
@media (max-width: 900px) {
  .closing-row { grid-template-columns: 1fr; }
  .cf-row { grid-template-columns: 1fr; }
}


/* === BATCH2 lane number + grey bar === */
/* Lane num top-glyph clipping fix */
.lane-num { padding-top: 0.12em !important; overflow: visible !important; }
.lane-inner { overflow: visible !important; }
/* Homepage hero -> nav grey bar divider */
.hero-topbar { height: 44px; background: #1A1817; border-bottom: 1px solid rgba(191,191,191,0.22); display: block; width: 100%; }




  

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
  body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-forma-djr-text), "DJR Text", -apple-system, system-ui, sans-serif;
    overflow-x: hidden;
    cursor: none;
  }
  @media (hover: none), (max-width: 900px) { body { cursor: auto; } }
  img { display: block; max-width: 100%; height: auto; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; }

  /* Newsprint texture — horizontal rules + warmth */
  body::before {
    content: "";
    position: fixed; inset: 0;
    background:
      repeating-linear-gradient(180deg, transparent 0 32px, rgba(60,40,15,0.025) 32px 33px),
      radial-gradient(circle at 30% 20%, rgba(180,140,60,0.06) 0%, transparent 55%);
    pointer-events: none; z-index: 0; opacity: 0.55;
  }

  .container { width: min(1380px, 94vw); margin: 0 auto; position: relative; z-index: 2; }

  /* ============= CURSOR ============= */
  .cursor-bullseye {
    position: fixed; left: 0; top: 0; width: 0; height: 0;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
  }
  .cursor-bullseye .bull-ring {
    position: absolute; left: 50%; top: 50%;
    width: 28px; height: 28px;
    border: 1.5px solid var(--red); border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .25s, height .25s, border-color .25s;
  }
  .cursor-bullseye .bull-ring.r2 { width: 16px; height: 16px; }
  .cursor-bullseye .bull-ring.r3 { width: 6px; height: 6px; background: var(--red); }
  .cursor-bullseye.is-hover .bull-ring.r1 { width: 56px; height: 56px; }
  .cursor-bullseye.is-hover .bull-ring.r2 { width: 36px; height: 36px; }
  .cursor-bullseye.is-hover .bull-ring.r3 { background: var(--gold-base); border-color: var(--gold-base); }
  @media (hover: none), (max-width: 900px) { .cursor-bullseye { display: none; } }

  /* ============= MASTHEAD ============= */
  .masthead {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px clamp(28px, 4vw, 64px);
    background: var(--ink); color: var(--cream);
    border-bottom: 1px solid rgba(244,231,210,0.08);
  }
  .masthead::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--miami) 30%, var(--pink) 70%, transparent);
    opacity: 0.5;
  }
  .mast-mark img { height: 56px; transition: transform .3s; }
  .mast-mark:hover img { transform: rotate(-3deg); }
  .mast-nav { display: flex; align-items: center; gap: 36px; }
  .mast-link {
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 12px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--cream); position: relative; transition: color .25s;
  }
  .mast-link::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px;
    background: linear-gradient(90deg, var(--miami), var(--pink)); transition: right .3s;
  }
  .mast-link:hover, .mast-link.is-current { color: var(--miami-light); }
  .mast-link:hover::after, .mast-link.is-current::after { right: 0; }
  .btn-blue {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 14px 22px;
    background: var(--miami); color: var(--ink);
    border: 2px solid var(--miami);
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 11px;
    letter-spacing: 0.2em; text-transform: uppercase;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: background .25s, color .25s, border-color .25s, transform .2s, box-shadow .25s;
  }
  .btn-blue:hover {
    background: var(--red); border-color: var(--red); color: var(--cream);
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(225,31,38,0.36);
  }
  .btn-blue svg { width: 14px; height: 8px; }

  /* ============= NAMEPLATE (newspaper banner) ============= */
  .nr-nameplate {
    margin-top: 92px;
    padding: 28px 0 22px;
    border-bottom: 4px double var(--ink);
    background: var(--paper);
    position: relative;
    z-index: 3;
  }
  .nr-nameplate-top {
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 18px; flex-wrap: wrap;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 18px;
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 10.5px;
    letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--ink-60);
  }
  .nr-nameplate-top strong { color: var(--ink); }
  .nr-nameplate-top .vol { color: var(--red); }

  .nr-title {
    text-align: center;
    font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 900;
    font-size: clamp(60px, 9vw, 180px);
    line-height: 0.88; letter-spacing: -0.04em;
    color: var(--ink); margin: 0;
  }
  .nr-title em { font-style: italic; font-weight: 700; color: var(--ink-60); }
  .nr-title .accent-red { color: var(--red); }

  .nr-subtitle {
    text-align: center;
    margin-top: 14px;
    font-family: var(--font-forma-djr-display), "DJR Display"; font-style: italic; font-weight: 700;
    font-size: clamp(16px, 1.5vw, 22px);
    color: var(--ink-60);
    letter-spacing: -0.005em;
  }

  /* ============= BREAKING BAR (live ticker) ============= */
  .nr-breaking {
    background: var(--red); color: var(--cream);
    padding: 10px 0;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    overflow: hidden;
    position: relative;
  }
  .nr-breaking-inner {
    display: flex; gap: 36px;
    align-items: center;
    white-space: nowrap;
    animation: wire 50s linear infinite;
    will-change: transform;
  }
  @keyframes wire { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .nr-breaking-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 4px 12px;
    background: var(--ink); color: var(--cream);
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 10px;
    letter-spacing: 0.32em; text-transform: uppercase;
    flex-shrink: 0;
  }
  .nr-breaking-tag .dot {
    width: 6px; height: 6px; background: var(--cream); border-radius: 50%;
    animation: pulse 1.2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.5); }
  }
  .nr-breaking-cell {
    flex-shrink: 0;
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 12.5px;
    letter-spacing: 0.16em; text-transform: uppercase;
  }
  .nr-breaking-cell strong { color: var(--gold-bright); }
  .nr-breaking-cell.sep { opacity: 0.5; }

  /* ============= LEAD STORY (front page banner) ============= */
  .nr-lead {
    padding: 50px 0 60px;
    border-bottom: 3px double var(--ink);
  }
  .nr-lead-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(36px, 4vw, 64px);
    align-items: start;
  }
  .nr-lead-art {
    position: relative;
    aspect-ratio: 16 / 11;
    background:
      linear-gradient(135deg, #1a1410 0%, var(--ink) 100%);
    overflow: hidden;
    border: 1px solid var(--ink);
    box-shadow: 0 30px 60px rgba(11,9,7,0.18);
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  }
  .nr-lead-art::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 30% 20%, rgba(212,162,58,0.22) 0%, transparent 55%),
      radial-gradient(ellipse at 70% 80%, rgba(225,31,38,0.18) 0%, transparent 55%);
  }
  .nr-lead-art .credit {
    position: absolute; bottom: 14px; left: 16px;
    padding: 4px 10px;
    background: rgba(244,231,210,0.92);
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 9px;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--ink);
  }
  .nr-lead-art .editorial {
    position: absolute; top: 20px; left: 22px;
    color: var(--cream);
    font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 900;
    font-size: clamp(36px, 4vw, 64px);
    line-height: 1; letter-spacing: -0.025em;
    max-width: 80%;
  }
  .nr-lead-art .editorial em { font-style: italic; color: var(--gold-bright); }
  .nr-lead-art .editorial .accent-red { color: var(--red); }

  .nr-lead-text { padding-top: 6px; }
  .nr-lead-eyebrow {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 10.5px;
    letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--red); margin-bottom: 14px;
  }
  .nr-lead-eyebrow .pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 4px 10px;
    background: var(--red); color: var(--cream);
  }
  .nr-lead-eyebrow .pill::before {
    content: ""; width: 6px; height: 6px; background: var(--cream); border-radius: 50%;
    animation: pulse 1.2s ease-in-out infinite;
  }
  .nr-lead-eyebrow .desk { color: var(--ink-60); }

  .nr-lead-h {
    font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 900;
    font-size: clamp(34px, 4vw, 60px);
    line-height: 1; letter-spacing: -0.025em;
    color: var(--ink); margin: 0 0 18px;
  }
  .nr-lead-h em { font-style: italic; font-weight: 700; color: var(--ink-60); }
  .nr-lead-h .accent-red { color: var(--red); }

  .nr-lead-deck {
    font-family: var(--font-forma-djr-text), "DJR Text"; font-size: clamp(15px, 1.05vw, 18px);
    line-height: 1.65; color: var(--ink);
    margin: 0 0 26px;
  }

  .nr-lead-byline {
    display: flex; align-items: center; gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--rule);
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 11px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ink-60);
  }
  .nr-lead-byline strong { color: var(--ink); }
  .nr-lead-cta {
    display: inline-flex; align-items: center; gap: 12px;
    margin-top: 24px;
    padding: 14px 22px;
    background: var(--ink); color: var(--cream);
    border: 2px solid var(--ink);
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 11px;
    letter-spacing: 0.22em; text-transform: uppercase;
    cursor: none;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: background .25s, border-color .25s, transform .2s, box-shadow .25s;
  }
  .nr-lead-cta:hover {
    background: var(--red); border-color: var(--red);
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(225,31,38,0.36);
  }
  .nr-lead-cta svg { width: 14px; height: 8px; }

  @media (max-width: 900px) { .nr-lead-grid { grid-template-columns: 1fr; } }

  /* ============= FILTER CHIPS (desks/sections) ============= */
  .nr-filters {
    padding: 26px 0 6px;
    border-bottom: 1px solid var(--rule);
  }
  .nr-filters-inner {
    display: flex; flex-wrap: wrap; gap: 10px 12px;
    align-items: center;
  }
  .nr-filter-label {
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 10px;
    letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--ink-60); margin-right: 4px;
  }
  .nr-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 16px;
    background: transparent;
    border: 1.5px solid var(--ink);
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 10.5px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ink);
    cursor: none;
    transition: background .25s, color .25s, border-color .25s, transform .2s;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  }
  .nr-chip:hover {
    background: var(--red); color: var(--cream); border-color: var(--red);
    transform: translateY(-1px);
  }
  .nr-chip.is-on {
    background: var(--ink); color: var(--cream);
  }
  .nr-chip.is-on:hover { background: var(--red); border-color: var(--red); }
  .nr-chip .count {
    color: var(--red); font-weight: 800;
  }
  .nr-chip.is-on .count { color: var(--gold-bright); }

  /* ============= THE WIRE (latest) ============= */
  .nr-section { padding: 60px 0; }
  .nr-section-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 18px; flex-wrap: wrap;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--ink);
  }
  .nr-section-h {
    font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 900;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1; letter-spacing: -0.02em;
    margin: 0;
    color: var(--ink);
  }
  .nr-section-h em { font-style: italic; font-weight: 400; color: var(--ink-60); }
  .nr-section-h .accent-red { color: var(--red); }
  .nr-section-link {
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 10.5px;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--red);
    transition: color .25s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .nr-section-link svg { width: 14px; height: 8px; transition: transform .25s; }
  .nr-section-link:hover { color: var(--miami-deep); }
  .nr-section-link:hover svg { transform: translateX(4px); }

  .nr-wire {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
  }
  .nr-wire-main {
    border-right: 1px solid var(--rule);
    padding-right: 28px;
  }
  .nr-wire-rest {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .nr-wire-card {
    display: flex; flex-direction: column;
    padding-bottom: 18px;
    border-bottom: 1px dashed var(--rule);
    transition: background .25s;
  }
  .nr-wire-card:hover { background: rgba(225,31,38,0.04); }
  .nr-wire-card:last-of-type { border-bottom: none; }
  .nr-wire-tag {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 10px;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--red); margin-bottom: 8px;
  }
  .nr-wire-tag .time { color: var(--ink-60); }
  .nr-wire-h {
    font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 800;
    font-size: clamp(18px, 1.5vw, 26px); line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--ink); margin: 0 0 10px;
    transition: color .25s;
  }
  .nr-wire-card:hover .nr-wire-h { color: var(--red); }
  .nr-wire-card.lg .nr-wire-h { font-size: clamp(24px, 2vw, 36px); }
  .nr-wire-deck {
    font-family: var(--font-forma-djr-text), "DJR Text"; font-size: 14px; line-height: 1.55;
    color: var(--ink-60); margin: 0 0 14px;
  }
  .nr-wire-byline {
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 9.5px;
    letter-spacing: 0.26em; text-transform: uppercase;
    color: var(--ink-60); margin-top: auto;
  }
  .nr-wire-byline strong { color: var(--ink); }

  @media (max-width: 900px) {
    .nr-wire { grid-template-columns: 1fr; }
    .nr-wire-rest { grid-column: auto; grid-template-columns: 1fr; }
    .nr-wire-main { border-right: none; padding-right: 0; }
  }

  /* ============= BEATS (categories) ============= */
  .nr-beats {
    background: var(--ink);
    color: var(--cream);
    padding: 70px 0;
    border-top: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink);
    position: relative;
    overflow: hidden;
  }
  .nr-beats::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 50% 0%, rgba(11,211,211,0.08) 0%, transparent 50%),
      radial-gradient(ellipse at 50% 100%, rgba(225,31,38,0.06) 0%, transparent 55%);
  }
  .nr-beats .nr-section-head { border-bottom-color: var(--cream-20); }
  .nr-beats .nr-section-h { color: var(--cream); }
  .nr-beats .nr-section-h em { color: var(--cream-40); }
  .nr-beats .nr-section-link { color: var(--miami-light); }
  .nr-beats .nr-section-link:hover { color: var(--red); }

  .nr-beats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    position: relative;
  }
  .nr-beat {
    position: relative;
    padding: 28px 24px 24px;
    background: rgba(244,231,210,0.04);
    border: 1px solid rgba(244,231,210,0.18);
    transition: transform .35s, border-color .35s, background .35s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }
  .nr-beat:hover {
    transform: translateY(-4px);
    border-color: var(--red);
    background: rgba(225,31,38,0.06);
  }
  .nr-beat-head {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(244,231,210,0.18);
    margin-bottom: 16px;
  }
  .nr-beat-ix {
    font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 900;
    font-size: 36px; line-height: 1; letter-spacing: -0.02em;
    background: var(--gold-metal);
    -webkit-background-clip: text; background-clip: text;
    color: transparent; -webkit-text-fill-color: transparent;
  }
  .nr-beat-tag {
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 9.5px;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--miami-light);
  }
  .nr-beat-name {
    font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 800;
    font-size: 22px; line-height: 1.1;
    color: var(--cream); margin: 0 0 10px;
  }
  .nr-beat-byline {
    font-family: var(--font-forma-djr-text), "DJR Text"; font-size: 12px; line-height: 1.5;
    color: var(--cream-60); margin: 0 0 18px;
  }
  .nr-beat-byline strong { color: var(--gold-bright); }
  .nr-beat-count {
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 9.5px;
    letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--cream-60);
    display: flex; align-items: center; gap: 10px;
  }
  .nr-beat-count strong { color: var(--miami-light); }
  .nr-beat-count::after {
    content: "▸";
    color: var(--red); margin-left: auto; font-size: 16px;
    transition: transform .25s;
  }
  .nr-beat:hover .nr-beat-count::after { transform: translateX(4px); }

  @media (max-width: 900px) { .nr-beats-grid { grid-template-columns: 1fr; } }

  /* ============= ARCHIVE GRID ============= */
  .nr-archive {
    padding: 70px 0 80px;
  }
  .nr-archive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
  .nr-arch-card {
    position: relative;
    padding-top: 18px;
    border-top: 3px solid var(--ink);
    transition: border-color .25s;
  }
  .nr-arch-card:hover { border-top-color: var(--red); }
  .nr-arch-tag {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 9.5px;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--red); margin-bottom: 10px;
  }
  .nr-arch-tag .time { color: var(--ink-60); }
  .nr-arch-h {
    font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 800;
    font-size: clamp(16px, 1.3vw, 22px); line-height: 1.18;
    letter-spacing: -0.005em;
    color: var(--ink); margin: 0 0 12px;
    transition: color .25s;
  }
  .nr-arch-card:hover .nr-arch-h { color: var(--red); }
  .nr-arch-deck {
    font-family: var(--font-forma-djr-text), "DJR Text"; font-size: 13px; line-height: 1.5;
    color: var(--ink-60); margin: 0 0 12px;
  }
  .nr-arch-byline {
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 9px;
    letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--ink-60);
  }
  .nr-arch-byline strong { color: var(--ink); }
  @media (max-width: 1100px) { .nr-archive-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .nr-archive-grid { grid-template-columns: 1fr; } }

  /* ============= SUBSCRIBE STRIP ============= */
  .nr-subscribe {
    background:
      linear-gradient(180deg, var(--paper-deep) 0%, var(--paper) 100%);
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
  }
  .nr-subscribe::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(212,162,58,0.16) 0%, transparent 55%);
  }
  .nr-subscribe-inner {
    position: relative;
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 40px;
    align-items: center;
  }
  .nr-subscribe-head {
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 10.5px;
    letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--red); margin-bottom: 12px;
  }
  .nr-subscribe h2 {
    font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 900;
    font-size: clamp(36px, 4vw, 60px);
    line-height: 0.98; letter-spacing: -0.025em;
    color: var(--ink); margin: 0 0 14px;
  }
  .nr-subscribe h2 em { font-style: italic; font-weight: 400; color: var(--ink-60); }
  .nr-subscribe h2 .accent-red { color: var(--red); }
  .nr-subscribe p {
    font-family: var(--font-forma-djr-text), "DJR Text"; font-size: 16px; line-height: 1.6;
    color: var(--ink); margin: 0;
    max-width: 460px;
  }

  .nr-sub-form {
    display: flex; gap: 0; align-items: stretch;
    border: 2px solid var(--ink);
    background: var(--paper);
  }
  .nr-sub-form input {
    flex: 1;
    padding: 18px 20px;
    background: transparent; border: none;
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 14px;
    color: var(--ink);
  }
  .nr-sub-form input:focus { outline: none; background: rgba(212,162,58,0.08); }
  .nr-sub-form input::placeholder { color: var(--ink-60); }
  .nr-sub-form button {
    padding: 0 26px;
    background: var(--ink); color: var(--cream);
    border: none;
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 11px;
    letter-spacing: 0.24em; text-transform: uppercase;
    cursor: none;
    transition: background .25s;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .nr-sub-form button:hover { background: var(--red); }
  .nr-sub-form button svg { width: 14px; height: 8px; }
  .nr-sub-fine {
    margin-top: 12px;
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 9.5px;
    letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--ink-60);
  }

  @media (max-width: 900px) {
    .nr-subscribe-inner { grid-template-columns: 1fr; }
  }

  /* ============= FOOTER ============= */
  .nr-foot {
    background: var(--ink);
    color: var(--cream);
    padding: 32px 0;
    border-top: 1px solid var(--cream-20);
  }
  .nr-foot-inner {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 18px;
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 11px;
    letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--cream-60);
  }
  .nr-foot-inner strong { color: var(--cream); }

  /* Reveal */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
  .reveal.is-in { opacity: 1; transform: translateY(0); }
  .reveal-1 { transition-delay: .08s; }
  .reveal-2 { transition-delay: .16s; }
  .reveal-3 { transition-delay: .24s; }

  /* ====== RESPONSIVE FIXES (v5 mobile pass) ====== */
  img, svg { max-width: 100%; height: auto; }
  @media (max-width: 600px) {
    .nr-title { font-size: 44px; line-height: 0.92; }
    .nr-lead-art .editorial { font-size: 28px; }
    .nr-lead-h { font-size: 30px; }
    .nr-subscribe h2 { font-size: 32px; }
    .nr-archive-grid { grid-template-columns: 1fr; }
  }

/* === Responsive baseline + hero font fallback === */
  img, svg { max-width: 100%; height: auto; }
  @media (max-width: 600px) {
    .ib-hero-title { font-size: clamp(40px, 11vw, 56px); }
    .ib-section-h, .ib-close h2 { font-size: clamp(30px, 9vw, 42px); }
    .ib-bench-body h3 { font-size: clamp(26px, 8vw, 38px); }
    .ib-rec-big { font-size: clamp(36px, 11vw, 52px); }
  }
  @media (max-width: 380px) {
    .ib-hero-title { font-size: 38px; }
  }
/* === IMAGE QUALITY SAFEGUARDS === */
/* Optimize rendering for raster images on retina */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
/* Force smooth interpolation for explicitly sized photos */
img[src*="storyblok"], img[src*="webp"], img[src*=".jpg"], img[src*=".png"] {
  image-rendering: auto;
}
/* Object-position defaults so portraits don't get face-cropped */
img.headshot, [class*="-headshot"] img, [class*="team-card"] img, [class*="ds-team"] img, [class*="ds-roster"] img {
  object-fit: cover;
  object-position: center top;
}



/* Cap image display sizes proportional to Storyblok source resolution so upscale-blur stops */
img[src*="storyblok.com/f/1023744/380x640/"] { max-width: 570px; }
img[src*="storyblok.com/f/1023744/262x357/"] { max-width: 393px; }
img[src*="storyblok.com/f/1023744/600x918/"] { max-width: 900px; }
img[src*="storyblok.com/f/1023744/1083x747/"] { max-width: 1625px; }
img[src*="storyblok.com/f/1023744/1137x762/"] { max-width: 1705px; }
img[src*="storyblok.com/f/1023744/381623/"] { max-width: 100%; }
@media (min-width: 1101px) {
  .work-grid { max-width: 1140px; margin: 0 auto; }
}
