:root {
  --ink: #000000;
  --ink-2: #0b0b0b;
  --ink-3: #141414;
  --line: #1f1f1f;
  --line-2: #2a2a2a;
  --bone: #ededea;
  --bone-dim: #9a9a97;
  --bone-faint: #5a5a57;
  --passion: #E30613;
  --passion-soft: #ff2a3a;
  --gold: #c9a961;
  --gold-soft: #e5c989;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--passion); color: var(--bone); }

/* Shared logo (used in footer) */
.nj-logo {
  display: flex; align-items: center; gap: 14px;
  letter-spacing: 0.18em; font-size: 12px; font-weight: 500;
}
.nj-logo-mark {
  width: 42px; height: 42px;
  border: 1px solid var(--bone);
  display: grid; place-items: center;
  font-family: var(--serif); font-style: italic;
  font-size: 18px; font-weight: 600;
  letter-spacing: 0;
}
.nj-logo-mark span:nth-child(1) { transform: translate(-3px,-3px); }
.nj-logo-mark span:nth-child(2) { transform: translate(3px,3px); color: var(--passion); }

.nj-cta-outline {
  border: 1px solid var(--bone);
  background: transparent; color: var(--bone);
  padding: 13px 26px;
  font-size: 11px; letter-spacing: 0.22em; font-weight: 500;
  text-decoration: none;
  transition: all .3s ease;
  cursor: pointer;
}
.nj-cta-outline:hover { background: var(--bone); color: var(--ink); }

/* Section base */
section {
  position: relative;
  padding: 140px 56px;
}

.nj-section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--passion);
  font-size: 11px; letter-spacing: 0.28em; font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.nj-section-eyebrow::before {
  content: ""; width: 6px; height: 6px; background: var(--passion);
  border-radius: 50%;
}

h2.nj-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
h2.nj-display em {
  font-style: italic; color: var(--passion);
  font-weight: 400;
}

/* ============ ABOUT ============ */
#about {
  padding-top: 140px;
}
.nj-about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: end;
  max-width: 1400px;
  margin: 0 auto;
}
.nj-about-copy p.nj-lede {
  font-family: var(--serif);
  font-size: 24px; line-height: 1.45;
  color: var(--bone);
  font-weight: 300;
  margin-top: 48px;
  max-width: 560px;
}
.nj-about-copy p.nj-lede em { color: var(--passion); font-style: italic; }
.nj-about-meta {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  max-width: 560px;
}
.nj-about-meta div .nj-num {
  font-family: var(--serif);
  font-size: 48px; line-height: 1;
  color: var(--bone);
  font-weight: 400;
}
.nj-about-meta div .nj-num em { color: var(--passion); font-style: normal; }
.nj-about-meta div .nj-lbl {
  font-size: 10px; letter-spacing: 0.22em;
  color: var(--bone-faint);
  margin-top: 10px; text-transform: uppercase;
}

.nj-about-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  overflow: hidden;
}
.nj-about-visual svg { width: 100%; height: 100%; display: block; }
.nj-about-visual::after {
  content: "NJ · MMXXVI";
  position: absolute; bottom: 24px; left: 24px;
  font-family: var(--serif); font-style: italic;
  font-size: 13px; color: var(--bone-dim);
  letter-spacing: 0.1em;
}
.nj-about-visual .nj-ed-tag {
  position: absolute; top: 24px; right: 24px;
  font-size: 10px; letter-spacing: 0.24em;
  color: var(--passion); font-weight: 500;
}

/* ============ TICKETS ============ */
#tickets {
  background: var(--ink-2);
}
.nj-tickets-head {
  max-width: 1400px; margin: 0 auto 80px;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: end;
}
.nj-tickets-head p {
  color: var(--bone-dim);
  font-size: 15px; max-width: 420px;
}
.nj-tickets-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.nj-ticket {
  background: var(--ink);
  padding: 56px 44px;
  position: relative;
  transition: background .45s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 620px;
}
.nj-ticket:hover {
  background: linear-gradient(180deg, rgba(227,6,19,0.08) 0%, var(--ink) 60%);
}
.nj-ticket:first-child:hover {
  background: linear-gradient(180deg, rgba(201,169,97,0.10) 0%, var(--ink) 60%);
}

.nj-ticket .nj-tag {
  font-size: 10px; letter-spacing: 0.26em;
  color: var(--passion);
  font-weight: 500; text-transform: uppercase;
  transition: color .35s ease;
}
.nj-ticket:first-child:hover .nj-tag { color: var(--gold); }

.nj-ticket .nj-tier {
  font-family: var(--serif);
  font-size: 56px; line-height: 1;
  margin-top: 20px; font-weight: 400;
  letter-spacing: -0.01em;
  min-height: 64px;
  display: flex;
  align-items: center;
}
.nj-ticket .nj-tier em {
  font-style: italic;
  color: var(--bone);
  transition: color .35s ease;
}
.nj-ticket:hover .nj-tier em { color: var(--passion); }
.nj-ticket:first-child:hover .nj-tier em { color: var(--gold); }

.nj-ticket .nj-t-meta {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 6px;
  min-height: 92px;
}
.nj-ticket .nj-t-meta .nj-t-date {
  font-family: var(--serif);
  font-size: 26px; line-height: 1.1;
  font-weight: 400; letter-spacing: -0.005em;
}
.nj-ticket .nj-t-meta .nj-t-time {
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: var(--bone);
  margin-top: 4px;
}
.nj-ticket .nj-t-meta .nj-t-loc {
  font-size: 11px; color: var(--bone-faint);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 6px;
}
.nj-ticket hr {
  border: none; border-top: 1px solid var(--line);
  margin: 32px 0;
}
.nj-ticket ul {
  list-style: none;
  flex: 1;
  min-height: 120px;
}
.nj-ticket ul li {
  font-size: 13px; color: var(--bone-dim);
  padding: 8px 0;
  display: flex; align-items: flex-start; gap: 12px;
}
.nj-ticket ul li::before {
  content: "—";
  color: var(--passion);
  margin-top: -1px;
  transition: color .35s ease;
}
.nj-ticket:first-child:hover ul li::before { color: var(--gold); }

.nj-ticket .nj-btn {
  display: inline-block;
  margin-top: 36px;
  padding: 16px 0;
  width: 100%; text-align: center;
  font-size: 11px; letter-spacing: 0.24em; font-weight: 500;
  text-decoration: none;
  transition: all .35s ease;
  cursor: pointer;
  border: none;
  background: var(--bone);
  color: var(--ink);
}
.nj-ticket:hover .nj-btn.nj-primary {
  background: var(--passion);
  color: var(--bone);
}
.nj-ticket:first-child:hover .nj-btn.nj-primary {
  background: var(--gold);
  color: var(--ink);
}

/* ============ APPLY ============ */
#apply {
  padding-top: 140px;
}
.nj-apply-head {
  text-align: center; max-width: 800px; margin: 0 auto 100px;
}
.nj-apply-head .nj-section-eyebrow { justify-content: center; }
.nj-apply-head h2 { margin-bottom: 20px; }
.nj-apply-head p {
  color: var(--bone-dim); font-size: 16px;
  max-width: 560px; margin: 0 auto;
}

.nj-apply-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.nj-chapter-card {
  position: relative;
  background: var(--ink);
  padding: 52px 40px 44px;
  display: flex; flex-direction: column;
  text-decoration: none;
  color: var(--bone);
  transition: background .35s ease;
  min-height: 360px;
}
.nj-chapter-card:hover { background: var(--ink-3); }
.nj-chapter-card .nj-num {
  position: absolute; top: 24px; right: 28px;
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: var(--bone-faint);
  letter-spacing: 0;
}
.nj-chapter-card .nj-ic {
  width: 56px; height: 56px;
  margin-bottom: 28px;
  color: var(--passion);
  display: grid; place-items: center;
}
.nj-chapter-card .nj-ic svg { width: 100%; height: 100%; }
.nj-chapter-card h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 34px; line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.nj-chapter-card p {
  color: var(--bone-dim);
  font-size: 13px; line-height: 1.6;
  max-width: 320px;
  flex: 1;
}
.nj-chapter-card .nj-apply-cta {
  margin-top: 28px;
  font-size: 11px; letter-spacing: 0.24em;
  font-weight: 500; color: var(--bone);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-2);
  align-self: flex-start;
  transition: all .3s ease;
}
.nj-chapter-card:hover .nj-apply-cta {
  color: var(--passion);
  border-color: var(--passion);
}

.nj-deadline {
  max-width: 1400px; margin: 60px auto 0;
  padding: 24px 32px;
  border: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.nj-deadline .nj-d-left {
  display: flex; align-items: center; gap: 16px;
  font-size: 12px; letter-spacing: 0.2em;
  color: var(--bone-dim);
}
.nj-deadline .nj-dot {
  width: 8px; height: 8px; background: var(--passion);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(227,6,19,0.18);
  animation: nj-pulse 2s infinite;
}
@keyframes nj-pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(227,6,19,0.18); }
  50% { box-shadow: 0 0 0 8px rgba(227,6,19,0.05); }
}
.nj-deadline .nj-d-date {
  font-family: var(--serif); font-style: italic;
  color: var(--bone); font-size: 16px; letter-spacing: 0;
}

/* ============ EVENTS ============ */
#events {
  background: var(--ink-2);
}
.nj-events-head {
  max-width: 1400px; margin: 0 auto 80px;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: end;
}
.nj-events-head p {
  color: var(--bone-dim); font-size: 15px; max-width: 420px;
}

.nj-events-list {
  max-width: 1400px; margin: 0 auto;
  border-top: 1px solid var(--line);
}
.nj-event {
  display: grid;
  grid-template-columns: 140px 1fr 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 40px 24px;
  border-bottom: 1px solid var(--line);
  transition: background .3s ease;
  cursor: pointer;
  position: relative;
}
.nj-event:hover { background: rgba(227,6,19,0.03); }
.nj-event::before {
  content: ""; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--passion);
  transform: scaleY(0); transform-origin: top;
  transition: transform .4s ease;
}
.nj-event:hover::before { transform: scaleY(1); }

.nj-event .nj-date .nj-day {
  font-family: var(--serif); font-size: 44px; line-height: 1;
  font-weight: 400;
}
.nj-event .nj-date .nj-mo {
  font-size: 11px; letter-spacing: 0.24em;
  color: var(--bone-dim); margin-top: 8px;
  text-transform: uppercase;
}
.nj-event .nj-title h3 {
  font-family: var(--serif);
  font-size: 26px; line-height: 1.2; font-weight: 400;
  letter-spacing: -0.005em;
}
.nj-event .nj-title .nj-sub {
  font-size: 12px; color: var(--bone-faint);
  letter-spacing: 0.15em; margin-top: 6px;
  text-transform: uppercase;
}
.nj-event .nj-info {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; color: var(--bone-dim);
}
.nj-event .nj-info span:first-child {
  color: var(--bone);
  font-family: var(--serif); font-style: italic;
  font-size: 15px;
}
.nj-event .nj-action {
  font-size: 11px; letter-spacing: 0.24em; font-weight: 500;
  color: var(--bone);
  display: flex; align-items: center; gap: 10px;
  text-transform: uppercase;
}
.nj-event .nj-action svg { transition: transform .3s ease; }
.nj-event:hover .nj-action svg { transform: translate(4px, 0); }
.nj-event.nj-sold .nj-action { color: var(--bone-faint); }
.nj-event.nj-sold .nj-action::before {
  content: "Sold Out"; letter-spacing: 0.24em;
}
.nj-event.nj-sold .nj-action svg { display: none; }
.nj-event.nj-sold .nj-action .nj-orig { display: none; }

.nj-event-expanded {
  display: block;
  padding: 0;
  cursor: default;
}
.nj-event-expanded::before { display: none; }
.nj-event-expanded:hover { background: transparent; }

.nj-event-expanded .nj-event-top {
  display: grid;
  grid-template-columns: 140px 1fr 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 40px 24px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.nj-event-expanded .nj-event-top::before {
  content: ""; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--passion);
}

.nj-showtimes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  padding: 0;
  margin: 0 24px 24px;
  border: 1px solid var(--line);
}
.nj-showtime {
  background: var(--ink-2);
  padding: 28px 24px;
  transition: background .3s ease;
}
.nj-showtime:hover { background: var(--ink-3); }
.nj-st-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-2);
}
.nj-st-time {
  font-family: var(--serif);
  font-size: 26px; font-weight: 400;
  line-height: 1;
}
.nj-st-tag {
  font-size: 10px; letter-spacing: 0.22em;
  color: var(--passion); font-weight: 500;
  text-transform: uppercase;
}
.nj-st-designers {
  list-style: none; padding: 0;
}
.nj-st-designers li {
  font-family: var(--serif); font-style: italic;
  font-size: 15px; color: var(--bone);
  padding: 6px 0;
  display: flex; align-items: center; gap: 10px;
}
.nj-st-designers li::before {
  content: ""; width: 4px; height: 4px;
  background: var(--bone-faint);
  border-radius: 50%;
  flex-shrink: 0;
}
.nj-showtime:hover .nj-st-designers li::before { background: var(--passion); }

/* ============ SHOP ============ */
#shop { padding-top: 140px; }
.nj-shop-head {
  max-width: 1400px; margin: 0 auto 80px;
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: 40px;
}
.nj-shop-head .nj-right {
  display: flex; gap: 8px;
}
.nj-shop-head .nj-filter {
  padding: 10px 18px; font-size: 11px; letter-spacing: 0.2em;
  background: transparent; border: 1px solid var(--line-2);
  color: var(--bone-dim); cursor: pointer;
  transition: all .25s ease; font-weight: 500;
  text-transform: uppercase;
}
.nj-shop-head .nj-filter:hover,
.nj-shop-head .nj-filter.nj-active {
  border-color: var(--bone); color: var(--bone);
}
.nj-shop-head .nj-filter.nj-active {
  background: var(--bone); color: var(--ink);
}

.nj-shop-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px 28px;
}
.nj-product { cursor: pointer; }
.nj-product .nj-ph {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--ink-3);
  overflow: hidden;
  margin-bottom: 18px;
}
.nj-product .nj-ph svg {
  width: 100%; height: 100%; display: block;
  transition: transform .8s ease;
}
.nj-product:hover .nj-ph svg { transform: scale(1.03); }
.nj-product .nj-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 9px; letter-spacing: 0.24em;
  padding: 5px 10px; z-index: 2;
  font-weight: 500; text-transform: uppercase;
}
.nj-product .nj-badge.nj-new { background: var(--passion); color: var(--bone); }
.nj-product .nj-badge.nj-ltd {
  background: transparent; color: var(--bone);
  border: 1px solid var(--bone);
}
.nj-product .nj-quick {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px;
  background: var(--ink);
  color: var(--bone);
  font-size: 11px; letter-spacing: 0.24em; font-weight: 500;
  text-align: center;
  transform: translateY(100%);
  transition: transform .4s ease;
  text-transform: uppercase;
}
.nj-product:hover .nj-quick { transform: translateY(0); }
.nj-product h4 {
  font-family: var(--serif); font-weight: 400;
  font-size: 18px;
  margin-bottom: 4px;
}
.nj-product .nj-cat {
  font-size: 10px; letter-spacing: 0.22em;
  color: var(--bone-faint); text-transform: uppercase;
  margin-bottom: 8px;
}
.nj-product .nj-price {
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: var(--bone);
}

/* ============ PRESS ============ */
#press {
  background: var(--ink-2);
  padding-bottom: 100px;
}
.nj-press-head {
  max-width: 1400px; margin: 0 auto 80px;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: end;
}
.nj-press-head p {
  color: var(--bone-dim); font-size: 15px; max-width: 420px;
}

.nj-quotes {
  max-width: 1400px; margin: 0 auto 100px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.nj-quote {
  padding: 40px 32px;
  border: 1px solid var(--line);
  position: relative;
  background: var(--ink);
}
.nj-quote .nj-mark {
  font-family: var(--serif);
  font-size: 80px; color: var(--passion);
  line-height: 0.5; position: absolute;
  top: 32px; left: 24px;
  font-style: italic;
  font-weight: 400;
}
.nj-quote blockquote {
  font-family: var(--serif);
  font-size: 20px; line-height: 1.4;
  color: var(--bone);
  font-weight: 300;
  padding-top: 40px;
  font-style: italic;
}
.nj-quote footer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.nj-quote footer .nj-src {
  font-family: var(--serif); font-weight: 500;
  font-size: 15px; letter-spacing: 0.05em;
}
.nj-quote footer .nj-date {
  font-size: 10px; letter-spacing: 0.22em;
  color: var(--bone-faint); text-transform: uppercase;
}

.nj-press-resources {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.nj-resource {
  background: var(--ink);
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px; align-items: center;
  transition: background .3s ease;
  cursor: pointer;
}
.nj-resource:hover { background: var(--ink-3); }
.nj-resource h4 {
  font-family: var(--serif); font-weight: 400;
  font-size: 28px; margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.nj-resource p {
  color: var(--bone-dim); font-size: 13px;
  max-width: 360px;
}
.nj-resource .nj-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  transition: all .3s ease;
}
.nj-resource:hover .nj-icon {
  border-color: var(--passion);
  background: var(--passion);
}
.nj-resource .nj-icon svg {
  width: 20px; height: 20px; stroke: var(--bone);
  transition: transform .3s ease;
}
.nj-resource:hover .nj-icon svg { transform: translate(2px, -2px); }

.nj-press-contact {
  max-width: 1400px; margin: 80px auto 0;
  padding: 48px 40px;
  border: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 32px;
  background: linear-gradient(90deg, rgba(227,6,19,0.04) 0%, transparent 60%);
}
.nj-press-contact h4 {
  font-family: var(--serif); font-weight: 400;
  font-size: 26px; margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.nj-press-contact h4 em { font-style: italic; color: var(--passion); }
.nj-press-contact .nj-meta { font-size: 13px; color: var(--bone-dim); }
.nj-press-contact a.nj-mail {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--bone);
  text-decoration: none; border-bottom: 1px solid var(--passion);
  padding-bottom: 4px;
  transition: color .3s ease;
}
.nj-press-contact a.nj-mail:hover { color: var(--passion); }

/* ============ FOOTER ============ */
footer {
  border-top: 1px solid var(--line);
  padding: 80px 56px 40px;
  background: var(--ink);
}
.nj-footer-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 80px; padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.nj-footer-brand p {
  color: var(--bone-dim); font-size: 13px;
  margin-top: 20px; max-width: 320px; line-height: 1.7;
}
.nj-footer-col h5 {
  font-size: 11px; letter-spacing: 0.24em;
  color: var(--bone-faint); font-weight: 500;
  margin-bottom: 20px; text-transform: uppercase;
}
.nj-footer-col ul { list-style: none; }
.nj-footer-col ul li { padding: 6px 0; }
.nj-footer-col ul li a {
  color: var(--bone); text-decoration: none;
  font-size: 14px;
  transition: color .25s ease;
}
.nj-footer-col ul li a:hover { color: var(--passion); }
.nj-footer-bottom {
  max-width: 1400px; margin: 40px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--bone-faint); font-size: 12px;
}
.nj-footer-bottom .nj-tagline em {
  color: var(--passion); font-style: italic;
  font-family: var(--serif); font-size: 15px;
}

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  section { padding: 100px 28px; }
  .nj-about-grid, .nj-tickets-head, .nj-events-head, .nj-press-head { grid-template-columns: 1fr; gap: 48px; }
  .nj-tickets-grid, .nj-quotes { grid-template-columns: 1fr; }
  .nj-apply-grid { grid-template-columns: repeat(2, 1fr); }
  .nj-shop-grid { grid-template-columns: repeat(2, 1fr); }
  .nj-press-resources { grid-template-columns: 1fr; }
  .nj-event { grid-template-columns: 80px 1fr; gap: 24px; padding: 28px 16px; }
  .nj-event .nj-info, .nj-event .nj-action { grid-column: 2; }
  .nj-event-expanded .nj-event-top { grid-template-columns: 80px 1fr; gap: 24px; padding: 28px 16px; }
  .nj-event-expanded .nj-event-top .nj-info, .nj-event-expanded .nj-event-top .nj-action { grid-column: 2; }
  .nj-showtimes { grid-template-columns: repeat(2, 1fr); margin: 0 16px 16px; }
  .nj-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .nj-apply-grid { grid-template-columns: 1fr; }
  .nj-showtimes { grid-template-columns: 1fr; }
}

/* ============ Reveal ============ */
.nj-reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s ease; }
.nj-reveal.nj-in { opacity: 1; transform: translateY(0); }
