/* =========================================================
   RANDOMNESS INTRO
   ========================================================= */
.r-intro {
  padding: clamp(120px, 18vh, 200px) var(--pad-x) clamp(40px, 6vh, 64px);
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.r-tag {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--ff-label); font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--amber);
  font-variation-settings: "MONO" 0.5; margin-bottom: 36px;
}
.r-tag::before { content: ''; width: 40px; height: 1px; background: var(--amber); }
.r-tag a { color: var(--white-dim); transition: color 0.3s var(--ease); }
.r-tag a:hover { color: var(--amber); }
.r-tag .slash { color: var(--white-mute); }
.r-tag .now { color: var(--white); }

.r-head {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
.r-title {
  font-family: var(--ff-display);
  font-size: clamp(78px, 14vw, 240px);
  line-height: 0.84;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 95, "wght" 650;
  color: var(--white);
}
.r-title em {
  font-style: italic;
  color: var(--amber);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 600;
}
.r-title .stop { color: var(--orange); }
.r-title .script {
  display: block;
  font-family: var(--ff-script);
  font-size: 0.28em;
  color: var(--orange);
  font-style: normal;
  letter-spacing: 0;
  margin: 0.1em 0 0 0.2em;
  transform: rotate(-3deg);
  line-height: 1;
}
.r-blurb {
  font-family: var(--ff-body);
  font-size: clamp(16px, 1.45vw, 20px);
  font-variation-settings: "opsz" 20;
  line-height: 1.55; color: var(--white-dim);
  max-width: 42ch;
  padding-bottom: 12px;
}
.r-blurb em { font-style: italic; color: var(--amber); }
.r-blurb p + p { margin-top: 14px; }

/* index strip */
.r-stats {
  margin-top: clamp(40px, 6vh, 64px);
  padding: 22px 0;
  border-top: 1px solid var(--line-white);
  border-bottom: 1px solid var(--line-white);
  display: grid;
  grid-template-columns: repeat(6, auto);
  gap: clamp(20px, 3vw, 56px);
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--ff-label);
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
  font-variation-settings: "MONO" 0.5;
}
.r-stats .s { color: var(--white-mute); display: flex; gap: 10px; align-items: baseline; }
.r-stats .s strong {
  color: var(--amber); font-weight: 600;
  font-family: var(--ff-display); font-size: 22px; font-style: italic;
  font-variation-settings: "opsz" 24, "SOFT" 100, "wght" 600;
  letter-spacing: 0;
}
.r-stats .feed {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--white); padding: 8px 12px;
  border: 1px solid var(--line-white);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.r-stats .feed:hover { border-color: var(--amber); color: var(--amber); }
.r-stats .feed .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(236,89,44,0.20);
  animation: pulse 2.4s var(--ease) infinite;
}

.r-filters {
  margin-top: clamp(32px, 5vh, 56px);
  display: flex; flex-wrap: wrap; gap: 6px 10px;
  align-items: center;
}
.r-filter-label {
  font-family: var(--ff-label); font-size: 10px;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--white-mute); font-variation-settings: "MONO" 0.5;
  margin-right: 18px;
}
.r-filter {
  font-family: var(--ff-label); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white); font-variation-settings: "MONO" 0.3;
  padding: 9px 14px;
  border: 1px solid var(--line-white);
  border-radius: 999px;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.r-filter:hover { border-color: var(--amber); color: var(--amber); }
.r-filter.is-on {
  background: var(--amber); color: var(--navy);
  border-color: var(--amber); font-weight: 600;
}
.r-filter .count { margin-left: 6px; opacity: 0.6; font-size: 10px; }

@media (max-width: 960px) {
  .r-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .r-stats { grid-template-columns: repeat(2, 1fr); gap: 14px 24px; }
  .r-stats .feed { grid-column: 1 / -1; justify-self: start; }
}

/* =========================================================
   GRID
   ========================================================= */
.r-grid-wrap {
  padding: clamp(40px, 6vh, 80px) var(--pad-x) clamp(60px, 8vh, 120px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.r-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 2vw, 28px);
  grid-auto-rows: minmax(180px, auto);
}
.r-block {
  position: relative;
  display: flex; flex-direction: column;
  isolation: isolate;
}
.r-block a.r-link {
  position: absolute; inset: 0; z-index: 5;
  font-size: 0; color: transparent;
}
.r-block .r-type {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-label); font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase;
  font-variation-settings: "MONO" 0.5; font-weight: 600;
}
.r-block .r-type .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
}
.r-block .r-type[data-t="note"] .dot { background: var(--amber); }
.r-block .r-type[data-t="essay"] .dot { background: var(--orange); }
.r-block .r-type[data-t="list"] .dot { background: var(--paper); }
.r-block .r-type[data-t="notebook"] .dot { background: var(--paper-deep); }
.r-block .r-type[data-t="letter"] .dot { background: var(--amber); }
.r-block .r-type[data-t="quote"] .dot { background: var(--orange); }

.r-block .r-meta {
  font-family: var(--ff-label); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white-mute); font-variation-settings: "MONO" 0.5;
  margin-top: 14px;
}

/* col spans */
.s-12 { grid-column: span 12; grid-row: span 4; }
.s-8  { grid-column: span 8; grid-row: span 3; }
.s-7  { grid-column: span 7; grid-row: span 3; }
.s-6  { grid-column: span 6; grid-row: span 2; }
.s-5  { grid-column: span 5; grid-row: span 3; }
.s-4  { grid-column: span 4; grid-row: span 2; }
.s-3  { grid-column: span 3; grid-row: span 2; }
.s-tall  { grid-row: span 3; }
.s-short { grid-row: span 1; }

@media (max-width: 1080px) {
  .s-12, .s-8, .s-7 { grid-column: span 12; }
  .s-6 { grid-column: span 12; }
  .s-5 { grid-column: span 12; }
  .s-4 { grid-column: span 6; }
  .s-3 { grid-column: span 6; }
}
@media (max-width: 620px) {
  .r-grid { grid-template-columns: 1fr; }
  .r-block, .s-12, .s-8, .s-7, .s-6, .s-5, .s-4, .s-3 { grid-column: 1 / -1; grid-row: auto; }
}

/* ------ BLOCK A: Featured photo block ------ */
.b-featured {
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
  isolation: isolate;
}
.b-featured .cover {
  position: absolute; inset: 0; z-index: 0;
}
.b-featured .cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease), filter 0.6s var(--ease);
  filter: saturate(0.85) brightness(0.7);
}
.b-featured:hover .cover img { transform: scale(1.04); filter: saturate(1) brightness(0.78); }
.b-featured .cover::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(16,28,41,0.85) 0%, rgba(16,28,41,0.3) 55%, rgba(16,28,41,0.85) 100%),
    radial-gradient(ellipse at 18% 75%, rgba(236,89,44,0.18) 0%, transparent 60%);
}
.b-featured .pad {
  position: relative; z-index: 2;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: clamp(28px, 4vw, 56px);
  min-height: clamp(420px, 60vh, 620px);
}
.b-featured .top {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 14px; flex-wrap: wrap;
}
.b-featured h2 {
  align-self: end;
  font-family: var(--ff-display);
  font-size: clamp(40px, 5.8vw, 92px);
  line-height: 0.96; letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 95, "wght" 600;
  font-style: italic;
  color: var(--white);
  max-width: 22ch;
}
.b-featured h2 em {
  color: var(--amber); font-style: normal;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 700;
}
.b-featured .lede {
  align-self: end;
  font-family: var(--ff-body);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55; color: var(--white-dim);
  max-width: 56ch;
}
.b-featured .read-cta {
  display: inline-flex; align-items: center; gap: 12px;
  align-self: start;
  font-family: var(--ff-label); font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--amber); font-variation-settings: "MONO" 0.5;
  margin-top: 10px;
}
.b-featured .read-cta .arrow {
  font-family: var(--ff-body); font-style: italic; font-size: 16px;
  letter-spacing: 0; transition: transform 0.35s var(--ease);
}
.b-featured:hover .read-cta .arrow { transform: translateX(6px); }

/* ------ BLOCK B: Photo tile ------ */
.b-photo .cover {
  position: relative;
  flex: 1; min-height: 240px;
  overflow: hidden;
  background: var(--navy-deep);
}
.b-photo .cover img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.5s var(--ease);
  filter: saturate(0.92);
}
.b-photo:hover .cover img { transform: scale(1.05); filter: saturate(1.05); }
.b-photo .text {
  padding: 18px 0 4px;
}
.b-photo h3 {
  font-family: var(--ff-display);
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.1;
  font-variation-settings: "opsz" 48, "SOFT" 90, "wght" 600;
  color: var(--white);
  margin: 8px 0 6px;
}
.b-photo h3 em {
  font-style: italic; color: var(--amber);
  font-variation-settings: "opsz" 48, "SOFT" 100, "wght" 600;
}
.b-photo p {
  font-family: var(--ff-body); font-size: 15px;
  line-height: 1.5; color: var(--white-dim);
  max-width: 50ch;
}

/* ------ BLOCK C: Big text note (no photo) ------ */
.b-textnote {
  padding: clamp(22px, 2.6vw, 36px);
  background: var(--navy-soft);
  border: 1px solid var(--line-white);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.b-textnote::before {
  content: '"';
  position: absolute;
  top: 14px; right: 22px;
  font-family: var(--ff-display); font-style: italic;
  font-size: 200px; line-height: 0.8;
  color: var(--amber); opacity: 0.10;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 700;
  pointer-events: none;
}
.b-textnote .body {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.22;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 48, "SOFT" 100, "wght" 500;
  color: var(--white);
  margin: auto 0;
  text-wrap: balance;
}
.b-textnote .body em { color: var(--amber); font-style: normal; font-variation-settings: "opsz" 48, "SOFT" 100, "wght" 700; }
.b-textnote .meta-row {
  margin-top: 22px;
  display: flex; justify-content: space-between; gap: 14px;
  align-items: baseline;
  border-top: 1px solid var(--line-white);
  padding-top: 14px;
}
.b-textnote .meta-row .r-meta { margin-top: 0; }

/* ------ BLOCK D: Marginalia (small text card) ------ */
.b-marg {
  padding: 22px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px dashed var(--line-white);
  display: flex; flex-direction: column;
  gap: 12px; min-height: 180px;
}
.b-marg h4 {
  font-family: var(--ff-display);
  font-size: 22px; line-height: 1.15;
  font-variation-settings: "opsz" 32, "SOFT" 80, "wght" 600;
  color: var(--white);
}
.b-marg h4 em { font-style: italic; color: var(--amber); font-variation-settings: "opsz" 32, "SOFT" 100, "wght" 600; }
.b-marg p {
  font-family: var(--ff-body); font-size: 14px;
  line-height: 1.5; color: var(--white-dim);
}
.b-marg .r-meta { margin-top: auto; }

/* ------ BLOCK E: List preview ------ */
.b-list {
  padding: clamp(22px, 2.4vw, 32px);
  background: var(--paper);
  color: var(--ink-on-paper);
  border: 1px solid var(--line-paper);
  position: relative;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.b-list::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.08; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.9'/></svg>");
}
.b-list .r-type { color: var(--orange); position: relative; z-index: 1; }
.b-list h3 {
  position: relative; z-index: 1;
  font-family: var(--ff-display);
  font-size: clamp(22px, 2vw, 30px); line-height: 1.1;
  font-variation-settings: "opsz" 48, "SOFT" 90, "wght" 600;
  margin: 12px 0 16px;
}
.b-list h3 em { font-style: italic; color: var(--orange); font-variation-settings: "opsz" 48, "SOFT" 100, "wght" 600; }
.b-list ol {
  display: grid; gap: 10px;
  position: relative; z-index: 1;
  counter-reset: bookct;
}
.b-list ol li {
  display: grid; grid-template-columns: 32px 1fr;
  gap: 10px;
  font-family: var(--ff-body); font-size: 15px;
  line-height: 1.4; color: var(--ink-on-paper);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-paper);
  counter-increment: bookct;
}
.b-list ol li:last-child { border-bottom: none; padding-bottom: 0; }
.b-list ol li::before {
  content: counter(bookct, decimal-leading-zero);
  font-family: var(--ff-label); font-size: 11px;
  letter-spacing: 0.18em; color: var(--orange);
  font-variation-settings: "MONO" 0.5; font-weight: 600;
  align-self: center;
}
.b-list ol li em { color: var(--orange); font-style: italic; }
.b-list .r-meta { color: rgba(21,33,46,0.55); margin-top: 14px; }

/* ------ BLOCK F: Reading list / tonal card ------ */
.b-reading {
  padding: clamp(22px, 2.4vw, 32px);
  background: var(--amber);
  color: var(--navy);
  position: relative;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.b-reading::before {
  content: ''; position: absolute; inset: 0;
  pointer-events: none; opacity: 0.10; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.9'/></svg>");
}
.b-reading .r-type { color: var(--navy); position: relative; z-index: 1; }
.b-reading .r-type .dot { background: var(--navy) !important; }
.b-reading h3 {
  position: relative; z-index: 1;
  font-family: var(--ff-display);
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.1;
  font-variation-settings: "opsz" 48, "SOFT" 90, "wght" 600;
  margin: 12px 0 14px;
}
.b-reading h3 em { font-style: italic; }
.b-reading ul {
  display: grid; gap: 12px;
  position: relative; z-index: 1;
}
.b-reading ul li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: baseline;
  border-bottom: 1px solid rgba(16,28,41,0.18);
  padding-bottom: 10px;
}
.b-reading ul li:last-child { border-bottom: none; padding-bottom: 0; }
.b-reading ul li .glyph {
  font-family: var(--ff-display); font-style: italic;
  font-size: 16px; color: var(--navy); opacity: 0.6;
  font-variation-settings: "opsz" 24, "SOFT" 100, "wght" 600;
}
.b-reading ul li .t {
  font-family: var(--ff-display); font-style: italic;
  font-size: 17px; line-height: 1.3;
  font-variation-settings: "opsz" 24, "SOFT" 100, "wght" 600;
  color: var(--navy);
}
.b-reading ul li .by {
  display: block; font-style: normal;
  font-family: var(--ff-label); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(16,28,41,0.65);
  margin-top: 4px; font-variation-settings: "MONO" 0.5;
}
.b-reading .r-meta {
  color: rgba(16,28,41,0.7);
  margin-top: auto;
  position: relative; z-index: 1;
}

/* ------ BLOCK G: Quote block ------ */
.b-quote {
  padding: clamp(28px, 3vw, 48px);
  background: var(--orange);
  color: var(--white);
  position: relative;
  display: grid; place-items: center;
  text-align: center;
  overflow: hidden;
}
.b-quote::before {
  content: '★';
  position: absolute; top: 18px; left: 24px;
  font-family: var(--ff-display); font-style: normal;
  font-size: 28px;
  font-variation-settings: "opsz" 24, "SOFT" 100, "wght" 700;
  color: var(--navy); opacity: 0.7;
}
.b-quote::after {
  content: ''; position: absolute; inset: 0;
  pointer-events: none; opacity: 0.10; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.9'/></svg>");
}
.b-quote blockquote {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.22;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 48, "SOFT" 100, "wght" 500;
  color: var(--white);
  max-width: 26ch;
  position: relative; z-index: 1;
}
.b-quote blockquote em { color: var(--navy); font-style: normal; font-variation-settings: "opsz" 48, "SOFT" 100, "wght" 700; }
.b-quote .attr {
  margin-top: 18px;
  font-family: var(--ff-label); font-size: 10px;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(16,28,41,0.85); font-variation-settings: "MONO" 0.5;
  position: relative; z-index: 1;
}

/* ------ BLOCK H: Letter (paper, epistolary) ------ */
.b-letter {
  padding: clamp(24px, 2.6vw, 36px);
  background: var(--paper-deep);
  color: var(--ink-on-paper);
  position: relative;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.b-letter::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  opacity: 0.10; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.9'/></svg>");
}
.b-letter::after {
  /* postmark glyph */
  content: 'N.L · MMXXVI';
  position: absolute;
  bottom: 18px; right: 22px;
  font-family: var(--ff-label); font-size: 9px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--orange); opacity: 0.75;
  padding: 6px 10px; border: 1px solid var(--orange);
  border-radius: 999px; transform: rotate(-7deg);
  font-variation-settings: "MONO" 0.5; font-weight: 600;
}
.b-letter .r-type { color: var(--orange); position: relative; z-index: 1; }
.b-letter .r-type .dot { background: var(--orange) !important; }
.b-letter .dear {
  font-family: var(--ff-script);
  font-size: 38px; line-height: 1;
  color: var(--orange);
  margin: 18px 0 14px;
  position: relative; z-index: 1;
}
.b-letter p {
  font-family: var(--ff-body);
  font-size: 16px; line-height: 1.55;
  color: var(--ink-on-paper);
  max-width: 44ch;
  position: relative; z-index: 1;
}
.b-letter p em { font-style: italic; color: var(--orange); }
.b-letter .r-meta { color: rgba(21,33,46,0.55); margin-top: auto; padding-top: 16px; position: relative; z-index: 1; }

/* ------ BLOCK I: Notebook stub (compact) ------ */
.b-notebook {
  padding: 22px 24px;
  background: rgba(255,255,255,0.02);
  border-left: 2px solid var(--amber);
  display: flex; flex-direction: column;
  gap: 10px; min-height: 180px;
}
.b-notebook h4 {
  font-family: var(--ff-display); font-style: italic;
  font-size: 21px; line-height: 1.2;
  font-variation-settings: "opsz" 32, "SOFT" 100, "wght" 500;
  color: var(--white);
}
.b-notebook p {
  font-family: var(--ff-body); font-size: 14px;
  line-height: 1.5; color: var(--white-dim);
  max-width: 42ch;
}
.b-notebook .r-meta { margin-top: auto; }
.b-notebook .more {
  font-family: var(--ff-label); font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--amber); font-variation-settings: "MONO" 0.5;
  display: inline-flex; gap: 8px; align-items: center;
}
.b-notebook .more .arrow { font-family: var(--ff-body); font-style: italic; font-size: 14px; transition: transform 0.3s var(--ease); }
.b-notebook:hover .more .arrow { transform: translateX(4px); }

/* ------ marginalia row (between sections) ------ */
.r-marginalia {
  margin: clamp(40px, 6vh, 64px) 0;
  padding: 18px 24px;
  border-top: 1px solid var(--line-white);
  border-bottom: 1px solid var(--line-white);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  font-family: var(--ff-label); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white-mute); font-variation-settings: "MONO" 0.5;
}
.r-marginalia .quip {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(18px, 1.5vw, 24px);
  color: var(--white); letter-spacing: 0; text-transform: none;
  font-variation-settings: "opsz" 32, "SOFT" 100, "wght" 500;
}
.r-marginalia .quip em { color: var(--amber); font-style: normal; font-variation-settings: "opsz" 32, "SOFT" 100, "wght" 700; }
.r-marginalia .ix { color: var(--amber); }

/* ------ Subscribe strip ------ */
.r-subscribe {
  background: var(--paper);
  color: var(--ink-on-paper);
  padding: clamp(80px, 12vh, 140px) var(--pad-x);
  position: relative;
}
.r-subscribe-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(32px, 5vw, 96px);
  align-items: center;
}
.r-subscribe .label {
  font-family: var(--ff-label); font-size: 11px;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--orange); font-variation-settings: "MONO" 0.5;
  display: inline-flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
.r-subscribe .label::before { content: ''; width: 40px; height: 1px; background: var(--orange); }
.r-subscribe h2 {
  font-family: var(--ff-display);
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1; letter-spacing: -0.02em;
  font-variation-settings: "opsz" 72, "SOFT" 95, "wght" 600;
  font-style: italic;
}
.r-subscribe h2 strong {
  font-style: normal; color: var(--orange);
  font-variation-settings: "opsz" 72, "SOFT" 100, "wght" 700;
  font-weight: 700;
}
.r-subscribe p {
  font-family: var(--ff-body); font-size: 17px;
  line-height: 1.6; color: var(--ink-on-paper);
  opacity: 0.85; max-width: 60ch;
  margin-bottom: 20px;
}
.r-subscribe form {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--ink-on-paper);
  background: transparent;
  max-width: 540px;
}
.r-subscribe input[type="email"] {
  flex: 1; min-width: 0;
  background: transparent; border: none; outline: none;
  padding: 18px 20px;
  font-family: var(--ff-body); font-size: 16px;
  color: var(--ink-on-paper);
}
.r-subscribe input::placeholder { color: rgba(21,33,46,0.5); font-style: italic; }
.r-subscribe button {
  background: var(--ink-on-paper); color: var(--paper);
  padding: 18px 22px;
  font-family: var(--ff-label); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
  font-variation-settings: "MONO" 0.3;
  transition: background 0.3s var(--ease);
}
.r-subscribe button:hover { background: var(--orange); color: var(--white); }
.r-subscribe .micro {
  margin-top: 14px;
  font-family: var(--ff-label); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(21,33,46,0.55); font-variation-settings: "MONO" 0.5;
}
@media (max-width: 880px) { .r-subscribe-inner { grid-template-columns: 1fr; } }
