/* =========================================================================
   NIRVEDHA v2 · Components
   The eight new components defined in the Phase 3 blueprint.
   1. Catalogue card · 2. Catalogue grid · 3. Praise blurb · 4. Pull quote
   5. Numbered process grid · 6. Reading-progress bar · 7. Filter chip strip
   8. Press wordmark strip
   Plus: top navigation, hero shell, primary CTA button, footer.
   ========================================================================= */

/* -------------------------------------------------------------------------
   TOP NAVIGATION
   ------------------------------------------------------------------------- */
.n-nav-bar {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 14, 14, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline-cream);
}
.n-nav-inner {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 18px var(--shell-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
}
.n-nav-logo {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--vellum-cream);
  text-decoration: none;
}
.n-nav-logo .nirvedha-mark { color: var(--hiranya-gold); }

/* Nirvedha logo image — used in nav and footer */
.n-logo-img {
  height: 40px;
  width: auto;
  display: block;
  vertical-align: middle;
}
.n-footer .n-logo-img { height: 56px; }
@media (max-width: 768px) {
  .n-logo-img { height: 32px; }
  .n-footer .n-logo-img { height: 48px; }
}
.n-nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-7);
  list-style: none;
  margin: 0;
  padding: 0;
}
.n-nav-links a {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vellum-cream-70);
  text-decoration: none;
  transition: color var(--t-base) var(--ease-out);
}
.n-nav-links a:hover { color: var(--hiranya-gold); }
.n-nav-cta {
  display: inline-block;
  padding: 14px 22px;
  background: var(--vermillion);
  color: var(--vellum-cream);
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  transition: background var(--t-base) var(--ease-out);
}
.n-nav-cta:hover { background: var(--vermillion-soft); }

/* Hamburger — mobile only */
.n-hamburger {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--vellum-cream);
}
.n-hamburger svg { width: 24px; height: 24px; }

@media (max-width: 900px) {
  .n-nav-links { display: none; }
  .n-nav-cta { display: none; }
  .n-hamburger { display: inline-flex; }
}

/* Mobile drawer */
.n-drawer {
  position: fixed;
  inset: 0;
  background: var(--onyx-black);
  z-index: 200;
  padding: 100px var(--shell-pad-x-m) var(--s-9);
  display: none;
  flex-direction: column;
  gap: var(--s-6);
  overflow-y: auto;
}
.n-drawer[data-open="true"] { display: flex; }
.n-drawer-close {
  position: absolute;
  top: 24px;
  right: var(--shell-pad-x-m);
  background: none;
  border: 0;
  color: var(--vellum-cream);
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
}
.n-drawer a {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 36px;
  color: var(--vellum-cream);
  text-decoration: none;
  border-bottom: 1px solid var(--hairline-cream);
  padding-bottom: var(--s-5);
}
.n-drawer a:last-child { border-bottom: 0; }
.n-drawer .n-drawer-cta {
  align-self: flex-start;
  margin-top: var(--s-6);
  padding: 16px 28px;
  background: var(--vermillion);
  color: var(--vellum-cream);
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  border-bottom: 0;
  padding-bottom: 16px;
  font-size: 14px;
}

/* -------------------------------------------------------------------------
   HERO BLOCK (home + page hero)
   ------------------------------------------------------------------------- */
.n-hero-block {
  padding: var(--s-11) 0;
  text-align: left;
}
.n-hero-block .n-overline {
  margin-bottom: var(--s-6);
  color: var(--hiranya-gold);
}
.n-hero-block .n-display-mega,
.n-hero-block .n-hero {
  margin: 0;
  max-width: 18ch;
}
.n-hero-block .n-meta {
  margin-top: var(--s-6);
  color: var(--vellum-cream-70);
}
.n-hero-block .n-rule { margin: var(--s-7) 0 var(--s-6); }

@media (max-width: 768px) {
  .n-hero-block { padding: var(--s-9) 0 var(--s-8); }
  .n-hero-block .n-display-mega { max-width: none; }
}

/* -------------------------------------------------------------------------
   PRIMARY CTA — square, Vermillion, no icon
   ------------------------------------------------------------------------- */
.n-cta {
  display: inline-block;
  padding: 22px 44px;
  min-width: 280px;
  background: var(--vermillion);
  color: var(--vellum-cream);
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: background var(--t-base) var(--ease-out);
}
.n-cta:hover { background: var(--vermillion-soft); }

.n-cta-secondary {
  display: inline-block;
  padding: 16px 28px;
  background: transparent;
  color: var(--vellum-cream);
  border: 1px solid var(--vellum-cream-50);
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  transition: border-color var(--t-base) var(--ease-out), color var(--t-base) var(--ease-out);
}
.n-cta-secondary:hover { border-color: var(--hiranya-gold); color: var(--hiranya-gold); }

/* In-prose text link */
.n-link {
  color: var(--hiranya-gold);
  text-decoration: none;
  border-bottom: 1px solid var(--hairline-gold);
  padding-bottom: 1px;
  transition: border-color var(--t-base) var(--ease-out);
}
.n-link:hover { border-bottom-color: var(--hiranya-gold); }
.n-band-vellum .n-link { color: #8C6F1F; border-bottom-color: rgba(140,111,31,0.4); }

/* -------------------------------------------------------------------------
   1. CATALOGUE CARD + 2. CATALOGUE GRID
   ------------------------------------------------------------------------- */
.n-catalogue {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
@media (max-width: 1024px) {
  .n-catalogue { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .n-catalogue { grid-template-columns: 1fr; gap: var(--s-7); }
}

.n-card {
  display: flex;
  flex-direction: column;
  background: var(--smoke);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-slow) var(--ease-out);
}
.n-card::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 4px;
  background: var(--hiranya-gold);
  transition: width var(--t-slow) var(--ease-out);
}
.n-card:hover::after { width: 100%; }

.n-card-cover {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--onyx-black);
  position: relative;
  overflow: hidden;
}
.n-card-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(245,239,226,0.04) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
  opacity: 0.5;
}
.n-card-cover .n-card-eyebrow {
  position: absolute;
  top: var(--s-5);
  left: var(--s-5);
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hiranya-gold);
}
.n-card-cover .n-card-paper-title {
  position: absolute;
  bottom: var(--s-5);
  left: var(--s-5);
  right: var(--s-5);
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 28px;
  line-height: 1.15;
  color: var(--vellum-cream);
}

.n-card-body {
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.n-card-title {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 22px;
  line-height: 1.2;
  color: var(--vellum-cream);
  margin: 0 0 var(--s-4);
}
.n-card-dek {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--vellum-cream-70);
  margin: 0 0 var(--s-5);
  flex-grow: 1;
}
.n-card-meta {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vellum-cream-50);
}

/* Books catalogue uses cover-image cards */
.n-card-book .n-card-cover {
  aspect-ratio: 2 / 3;
  background: var(--smoke);
}
.n-card-book .n-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.n-card-book {
  background: transparent;
}
.n-card-book .n-card-body { padding: var(--s-5) 0 0; }

/* Books strip — 5 covers in a single row on desktop */
.n-books-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-5);
}
@media (max-width: 900px) {
  .n-books-strip { grid-template-columns: repeat(3, 1fr); }
  .n-books-strip > *:nth-child(4),
  .n-books-strip > *:nth-child(5) { /* keep on second row */ }
}
@media (max-width: 540px) {
  .n-books-strip { grid-template-columns: repeat(2, 1fr); }
}

/* Frameworks grid — two-column list */
.n-frameworks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-7) var(--s-9);
}
@media (max-width: 768px) {
  .n-frameworks-grid { grid-template-columns: 1fr; gap: var(--s-6); }
}
.n-framework-row {
  border-top: 1px solid var(--hairline-cream);
  padding-top: var(--s-5);
}
.n-framework-row a {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 28px;
  color: var(--vellum-cream);
  text-decoration: none;
  display: block;
  transition: color var(--t-base) var(--ease-out);
}
.n-framework-row a:hover { color: var(--hiranya-gold); }
.n-framework-row p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--vellum-cream-70);
  margin: var(--s-3) 0 0;
  line-height: 1.5;
}

/* -------------------------------------------------------------------------
   3. PRAISE BLURB
   ------------------------------------------------------------------------- */
.n-praise-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-9) var(--s-9);
}
@media (max-width: 768px) {
  .n-praise-wall { grid-template-columns: 1fr; gap: var(--s-8); }
}
.n-praise-block {
  position: relative;
  padding-top: var(--s-5);
}
.n-praise-block::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--vermillion);
  margin-bottom: var(--s-5);
}
.n-praise-block p {
  margin: 0;
}
.n-praise-byline {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hiranya-gold);
  margin-top: var(--s-5);
  display: block;
}

/* -------------------------------------------------------------------------
   4. PULL QUOTE
   ------------------------------------------------------------------------- */
.n-pullquote-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--s-9) 0;
}
.n-pullquote-block .n-pullquote {
  margin: 0 auto;
  font-size: 56px;
  max-width: 24ch;
}
@media (max-width: 768px) {
  .n-pullquote-block .n-pullquote { font-size: 32px; }
}
.n-pullquote-block .n-rule {
  margin: var(--s-7) auto 0;
}
.n-pullquote-block .n-meta {
  margin-top: var(--s-5);
  display: block;
}

/* -------------------------------------------------------------------------
   5. NUMBERED PROCESS GRID
   ------------------------------------------------------------------------- */
.n-process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-5);
}
@media (max-width: 1024px) {
  .n-process-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .n-process-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
}
.n-process-step {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding-top: var(--s-4);
  border-top: 1px solid var(--hairline-cream);
}
.n-process-step .step-num {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 64px;
  line-height: 1;
  color: var(--hiranya-gold);
}
.n-process-step h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
  color: var(--vellum-cream);
}
.n-process-step p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--vellum-cream-70);
  margin: 0;
}

/* -------------------------------------------------------------------------
   6. READING-PROGRESS BAR
   ------------------------------------------------------------------------- */
.n-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--vermillion);
  z-index: 1000;
  transition: width var(--t-progress) linear;
}

/* -------------------------------------------------------------------------
   7. FILTER CHIP STRIP
   ------------------------------------------------------------------------- */
.n-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}
.n-chip {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--hairline-cream);
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vellum-cream-70);
  cursor: pointer;
  border-radius: 0;
  transition: all var(--t-base) var(--ease-out);
}
.n-chip:hover { border-color: var(--hiranya-gold); color: var(--hiranya-gold); }
.n-chip[data-active="true"] {
  background: var(--hiranya-gold);
  border-color: var(--hiranya-gold);
  color: var(--onyx-black);
}

/* -------------------------------------------------------------------------
   RECOGNITION STRIP — Thinkers360 + Forbes credential wall
   ------------------------------------------------------------------------- */
.n-recognition-headline {
  display: flex;
  align-items: baseline;
  gap: var(--s-5);
  flex-wrap: wrap;
  padding-bottom: var(--s-7);
  border-bottom: 1px solid var(--hairline-gold);
  margin-bottom: var(--s-7);
}
.n-recognition-headline .badge-rank {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 96px;
  line-height: 1;
  color: var(--hiranya-gold);
  letter-spacing: -0.02em;
}
.n-recognition-headline .badge-rank-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.15;
  color: var(--vellum-cream);
  flex-grow: 1;
  min-width: 0;
}
.n-recognition-headline .badge-rank-source {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vellum-cream-50);
  align-self: flex-end;
}
@media (max-width: 768px) {
  .n-recognition-headline .badge-rank { font-size: 56px; }
  .n-recognition-headline .badge-rank-label { font-size: 22px; }
}

.n-recognition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6) var(--s-7);
}
@media (max-width: 900px) { .n-recognition-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .n-recognition-grid { grid-template-columns: 1fr; gap: var(--s-5); } }
.n-recognition-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding: var(--s-5) 0;
  border-top: 1px solid var(--hairline-cream);
  text-decoration: none;
  transition: border-color var(--t-base) var(--ease-out);
}
.n-recognition-card:hover { border-top-color: var(--hiranya-gold); }
.n-recognition-card .rank {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  line-height: 1;
  color: var(--hiranya-gold);
  letter-spacing: -0.01em;
}
.n-recognition-card .category {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  color: var(--vellum-cream);
}
.n-recognition-card .source {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vellum-cream-50);
  margin-top: var(--s-2);
}
.n-recognition-card .verify-arrow {
  color: var(--hiranya-gold);
  opacity: 0;
  margin-left: var(--s-2);
  transition: opacity var(--t-base) var(--ease-out);
}
.n-recognition-card:hover .verify-arrow { opacity: 1; }

.n-recognition-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-8);
}
@media (max-width: 768px) { .n-recognition-secondary { grid-template-columns: 1fr; } }
.n-cert-card {
  padding: var(--s-5);
  background: rgba(212, 169, 58, 0.04);
  border-left: 2px solid var(--hiranya-gold);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  transition: background var(--t-base) var(--ease-out);
}
.n-cert-card:hover { background: rgba(212, 169, 58, 0.08); }
.n-cert-card .cert-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hiranya-gold);
}
.n-cert-card .cert-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  color: var(--vellum-cream);
}
.n-cert-card .cert-source {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vellum-cream-50);
}

.n-forbes-anchor {
  margin-top: var(--s-7);
  padding: var(--s-6);
  background: rgba(245, 239, 226, 0.04);
  border-left: 2px solid var(--vermillion);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  flex-wrap: wrap;
}
.n-forbes-anchor .forbes-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--vellum-cream);
}
.n-forbes-anchor .forbes-since {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vellum-cream-50);
}

/* -------------------------------------------------------------------------
   8. PRESS WORDMARK STRIP
   ------------------------------------------------------------------------- */
.n-press {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s-7) var(--s-9);
}
@media (max-width: 768px) {
  .n-press { gap: var(--s-5) var(--s-6); }
}
.n-press-item {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: rgba(245, 239, 226, 0.5);
  text-transform: none;
  transition: color var(--t-base) var(--ease-out);
}
.n-press-item:hover { color: var(--vellum-cream); }

/* -------------------------------------------------------------------------
   METRICS STRIP
   ------------------------------------------------------------------------- */
.n-metrics {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  padding: var(--s-9) 0;
  border-top: 1px solid var(--hairline-gold);
  border-bottom: 1px solid var(--hairline-gold);
}
.n-metric {
  display: flex;
  align-items: baseline;
  gap: var(--s-5);
  flex-wrap: wrap;
}
.n-metric-num {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 56px;
  line-height: 1;
  color: var(--hiranya-gold);
  letter-spacing: -0.01em;
}
.n-metric-label {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--vellum-cream-70);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .n-metric-num { font-size: 36px; }
  .n-metric-label { font-size: 14px; }
}

/* -------------------------------------------------------------------------
   COACHING-PROOF (Niharika section on home)
   ------------------------------------------------------------------------- */
.n-coaching-proof {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-9);
  align-items: start;
}
@media (max-width: 900px) {
  .n-coaching-proof { grid-template-columns: 1fr; gap: var(--s-7); }
}
.n-coaching-proof img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.05);
}

/* -------------------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------------------- */
.n-footer {
  background: var(--onyx-black);
  color: var(--vellum-cream-70);
  padding: var(--s-9) 0 var(--s-6);
  border-top: 1px solid var(--hairline-cream);
}
.n-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--s-7);
}
@media (max-width: 768px) {
  .n-footer-inner { grid-template-columns: 1fr; gap: var(--s-6); }
}
.n-footer h4 {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hiranya-gold);
  margin: 0 0 var(--s-4);
}
.n-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-3); }
.n-footer a {
  color: var(--vellum-cream-70);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--t-base) var(--ease-out);
}
.n-footer a:hover { color: var(--hiranya-gold); }
.n-footer-fineprint {
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid var(--hairline-cream);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-4);
  font-size: 12px;
  color: var(--vellum-cream-50);
}
.n-pause-toggle {
  background: none;
  border: 0;
  color: var(--vellum-cream-50);
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--t-base) var(--ease-out);
}
.n-pause-toggle:hover { color: var(--hiranya-gold); }

/* -------------------------------------------------------------------------
   NEWSLETTER (passive secondary)
   ------------------------------------------------------------------------- */
.n-newsletter {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  max-width: 560px;
}
.n-newsletter-line {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: var(--fw-regular);
  font-size: 24px;
  line-height: 1.3;
  margin: 0;
}
.n-newsletter-form {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--onyx-black);
  align-items: stretch;
}
.n-band-onyx .n-newsletter-form { border-bottom: 1px solid var(--vellum-cream); }
.n-newsletter-form input {
  flex-grow: 1;
  padding: 14px 0;
  background: transparent;
  border: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: inherit;
  outline: none;
}
.n-newsletter-form button {
  padding: 14px 22px;
  background: transparent;
  border: 0;
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hiranya-gold);
  cursor: pointer;
  transition: color var(--t-base) var(--ease-out);
}
.n-newsletter-form button:hover { color: var(--vermillion); }

/* -------------------------------------------------------------------------
   APPLY CTA BLOCK (home, end of page)
   ------------------------------------------------------------------------- */
.n-apply-block {
  border-top: 4px solid var(--vermillion);
  padding: var(--s-11) 0;
  text-align: left;
}
.n-apply-block .n-display-m {
  max-width: 22ch;
  margin: 0 0 var(--s-7);
}
.n-apply-block .n-cta { margin-bottom: var(--s-5); }
.n-apply-block .n-meta { display: block; }

/* -------------------------------------------------------------------------
   TLDR strip (the layman line)
   ------------------------------------------------------------------------- */
.n-tldr {
  text-align: center;
  padding: var(--s-9) 0;
}
.n-tldr p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: var(--fw-regular);
  font-size: 32px;
  line-height: 1.3;
  margin: 0 auto;
  max-width: 28ch;
  color: var(--onyx-black);
}
@media (max-width: 768px) {
  .n-tldr p { font-size: 22px; }
}

/* -------------------------------------------------------------------------
   GENERIC HELPERS
   ------------------------------------------------------------------------- */
.n-eyebrow-row {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-bottom: var(--s-6);
}
.n-eyebrow-row::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--hiranya-gold);
}
.n-mt-4 { margin-top: var(--s-4); }
.n-mt-5 { margin-top: var(--s-5); }
.n-mt-6 { margin-top: var(--s-6); }
.n-mt-7 { margin-top: var(--s-7); }
.n-mt-8 { margin-top: var(--s-8); }
.n-mt-9 { margin-top: var(--s-9); }

.n-section-head {
  margin: 0 0 var(--s-7);
  max-width: 28ch;
}

.n-text-link-row {
  margin-top: var(--s-7);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.n-text-link-row a {
  color: var(--hiranya-gold);
  text-decoration: none;
  border-bottom: 1px solid var(--hairline-gold);
  padding-bottom: 2px;
  font-weight: var(--fw-semibold);
}
.n-text-link-row a:hover { color: var(--vermillion); border-bottom-color: var(--vermillion); }

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0ms !important; animation-duration: 0ms !important; }
}
[data-reduce-motion="true"] *, [data-reduce-motion="true"] *::before, [data-reduce-motion="true"] *::after {
  transition-duration: 0ms !important;
  animation-duration: 0ms !important;
}

/* Skip link */
.n-skip {
  position: absolute;
  top: 0; left: 0;
  padding: 12px 16px;
  background: var(--hiranya-gold);
  color: var(--onyx-black);
  text-decoration: none;
  font-weight: var(--fw-semibold);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(-100%);
  transition: transform var(--t-base) var(--ease-out);
  z-index: 999;
}
.n-skip:focus { transform: translateY(0); }
