/* =========================================================
   Demetriee Campbell — site styles  (v6: emma grede aesthetic)
   Bold sans, light palette, photography as structure.
   ========================================================= */

:root {
  --paper:     #F5F2EC;     /* warm off-white background */
  --paper-2:   #ECE7DC;     /* slightly deeper card panel */
  --ink:       #131211;     /* warm near-black text */
  --ink-soft:  #2E2A24;
  --mute:      #6F695C;
  --line:      #D8D1C0;
  --pill:      #131211;     /* button fill */
  --pill-ink:  #F5F2EC;     /* button text */
  --shell-pad: clamp(20px, 4vw, 56px);
  --max:       1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter Tight', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a {
  color: inherit;
  text-decoration: none;
  transition: opacity .25s ease;
}
a:hover { opacity: .65; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ============== TYPE ============== */
.h1, h1 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5.4vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin: 0 0 .35em;
  color: var(--ink);
}
.h2, h2 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.018em;
  margin: 0 0 .5em;
  color: var(--ink);
}
.h3, h3 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(1.2rem, 1.9vw, 1.45rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
  color: var(--ink);
}
p { margin: 0 0 1.1em; color: var(--ink-soft); }
.lede {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 32em;
}
.eyebrow {
  display: inline-block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 1.4em;
}
.eyebrow.mute { color: var(--mute); }
.eyebrow.cream { color: var(--paper); }

/* a single italic accent word lives in a serif */
em.serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: var(--pill);
  color: var(--pill-ink);
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--pill);
  border-radius: 0;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.btn:hover { background: transparent; color: var(--pill); opacity: 1; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-light {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--paper);
}
.btn-light:hover { background: transparent; color: var(--paper); }

/* ============== NAV ============== */
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px var(--shell-pad);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav .left, .nav .right { display: flex; gap: 28px; align-items: center; }
.nav .left { justify-self: start; }
.nav .right { justify-self: end; }
.nav a { color: var(--ink); }
.nav .btn { padding: 10px 18px; font-size: 11px; }
.wordmark {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1.2vw, 15px);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

@media (max-width: 720px) {
  .nav { grid-template-columns: auto 1fr auto; gap: 14px; padding: 16px var(--shell-pad); }
  .nav .left, .nav .right { display: none; }
  .nav-mobile { display: flex; gap: 18px; justify-self: end; align-items: center; }
  .nav-mobile a { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }
  .nav-mobile .btn { padding: 8px 14px; }
  .wordmark { font-size: 11px; letter-spacing: 0.28em; }
}
@media (min-width: 721px) { .nav-mobile { display: none; } }

/* ============== HERO ============== */
.hero {
  position: relative;
  height: 86vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--ink);
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 30%;
  filter: contrast(1.02) saturate(0.96);
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0) 45%,
    rgba(0,0,0,0.45) 80%,
    rgba(0,0,0,0.7) 100%);
  z-index: 2;
}
.hero-text {
  position: absolute;
  bottom: clamp(40px, 7vh, 80px);
  left: var(--shell-pad);
  right: var(--shell-pad);
  z-index: 3;
  max-width: min(800px, 70vw);
  color: var(--paper);
}
.hero-text h1 {
  color: var(--paper);
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 6vw, 5rem);
}
.hero-text h1 em.serif { color: var(--paper); }
.hero-text .sub {
  color: rgba(245, 242, 236, 0.86);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 38em;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-cta .btn-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.hero-cta .btn-light:hover { background: transparent; color: var(--paper); border-color: var(--paper); }
.hero-cta .btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(245,242,236,0.6);
}
.hero-cta .btn-ghost:hover { background: var(--paper); color: var(--ink); }

/* ============== SECTION SHELL ============== */
section.section {
  padding: clamp(80px, 11vh, 140px) var(--shell-pad);
}
.wrap { max-width: var(--max); margin: 0 auto; }

/* ============== TWO-COL (photo + text) ============== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }
.two-col-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-2);
}
.two-col-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.two-col-photo.crop-tight img { object-position: center 18%; transform: scale(1.15); }
.two-col-photo.crop-eyes  img { object-position: center 28%; transform: scale(1.4); }
.two-col-photo.crop-shoulder img { object-position: center 60%; transform: scale(1.05); }
.two-col-text { display: flex; flex-direction: column; justify-content: center; }
.two-col-text .lede { margin-bottom: 24px; }

@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col.flip { direction: ltr; }
}

/* ============== LATEST ESSAYS ============== */
.essays {
  padding: clamp(80px, 11vh, 140px) 0;
}
.essays-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  padding: 0 var(--shell-pad);
  max-width: var(--max);
  margin: 0 auto clamp(28px, 4vw, 48px);
}
.essays-head h2 { margin: 0; }
.essays-head .more {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  white-space: nowrap;
}
.essays-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(280px, 1fr));
  gap: 20px;
  padding: 0 var(--shell-pad);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.essays-track::-webkit-scrollbar { height: 6px; }
.essays-track::-webkit-scrollbar-track { background: transparent; }
.essays-track::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.essay-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
.essay-card-photo {
  aspect-ratio: 1 / 1;
  background: var(--paper-2);
  overflow: hidden;
  margin-bottom: 18px;
}
.essay-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.essay-card:hover .essay-card-photo img { transform: scale(1.04); }
.essay-card-photo.placeholder {
  display: flex; align-items: center; justify-content: center;
  background: var(--paper-2);
}
.essay-card-photo.placeholder span {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}
.essay-card-meta {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 10px;
}
.essay-card-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--ink);
}
.essay-card-excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 1100px) {
  .essays-track { grid-template-columns: repeat(4, 78%); }
}
@media (max-width: 720px) {
  .essays-head { flex-direction: column; align-items: start; }
}

/* ============== NEWSLETTER ============== */
.newsletter {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 11vh, 140px) var(--shell-pad);
}
.newsletter-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.newsletter h2 {
  color: var(--paper);
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  margin: 0 0 16px;
}
.newsletter .lede { color: rgba(245,242,236,0.78); margin-bottom: 0; max-width: 30em; }
.newsletter .eyebrow.cream { color: rgba(245,242,236,0.6); margin-bottom: 18px; }
.signup {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid var(--paper);
  padding-bottom: 4px;
}
.signup input[type="email"] {
  border: 0;
  background: transparent;
  color: var(--paper);
  font-family: inherit;
  font-size: 16px;
  padding: 14px 0;
  width: 100%;
}
.signup input[type="email"]::placeholder { color: rgba(245,242,236,0.5); }
.signup input[type="email"]:focus { outline: none; }
.signup button {
  background: transparent;
  border: 0;
  color: var(--paper);
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 14px 18px;
}
.signup button:hover { color: rgba(245,242,236,0.6); }
.signup-note {
  margin-top: 14px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.5);
}
@media (max-width: 800px) {
  .newsletter-inner { grid-template-columns: 1fr; }
}

/* ============== INSTAGRAM STRIP (auto-scrolling marquee) ============== */
.ig-strip {
  padding: 0;
  background: var(--paper);
}
.ig-strip-label {
  text-align: center;
  padding: clamp(48px, 7vh, 80px) var(--shell-pad) clamp(20px, 3vh, 32px);
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
}
.ig-strip-label a {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  margin-left: 6px;
}
.ig-strip-viewport {
  overflow: hidden;
  width: 100%;
  padding-bottom: clamp(48px, 7vh, 80px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.ig-strip-track {
  display: flex;
  width: max-content;
  gap: 4px;
  animation: ig-marquee 50s linear infinite;
  will-change: transform;
}
.ig-strip-track:hover { animation-play-state: paused; }
.ig-strip-track a {
  flex: 0 0 clamp(120px, 12vw, 180px);
  width: clamp(120px, 12vw, 180px);
  height: clamp(120px, 12vw, 180px);
  overflow: hidden;
  background: var(--paper-2);
  display: block;
}
.ig-strip-track a img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), opacity .3s ease;
}
.ig-strip-track a:hover img { transform: scale(1.06); opacity: .85; }

@keyframes ig-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ig-strip-track { animation: none; }
}

/* ============== BOOKSHELF ============== */
.bookshelf {
  padding: clamp(96px, 13vh, 160px) var(--shell-pad);
  background: var(--paper-2);
}
.bookshelf-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto clamp(36px, 5vw, 64px);
}
.bookshelf-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}
.bookshelf-head .sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  color: var(--mute);
  margin: 8px 0 0;
  max-width: 28em;
}

.bookshelf-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 3vw, 40px);
  max-width: var(--max);
  margin: 0 auto;
  align-items: end;
}
.book {
  display: flex;
  flex-direction: column;
}
.book-cover {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--ink);
  margin-bottom: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.08);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.book:hover .book-cover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0,0,0,0.18), 0 4px 10px rgba(0,0,0,0.1);
}
.book-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.book-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--paper);
  color: var(--ink);
  padding: 6px 10px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 2;
}

.book-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.005em;
  margin: 0 0 2px;
  color: var(--ink);
}
.book-author {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--mute);
  margin: 0 0 8px;
}
.book-note {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 1100px) {
  .bookshelf-row { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .bookshelf-row .book:nth-child(n+4) { display: none; }
}
@media (max-width: 720px) {
  .bookshelf-row {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 18px;
    padding-bottom: 8px;
  }
  .bookshelf-row .book { flex: 0 0 50%; scroll-snap-align: start; }
  .bookshelf-row .book:nth-child(n+4) { display: flex; }
  .bookshelf-head { flex-direction: column; align-items: start; }
}

/* ============== CONTACT FORM ============== */
.contact-form {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(96px, 14vh, 180px) var(--shell-pad);
}
.contact-form-inner {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.contact-form .eyebrow.cream { color: rgba(245,242,236,0.6); margin-bottom: 18px; }
.contact-form h2 {
  color: var(--paper);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  margin: 0 0 18px;
}
.contact-form .lede {
  color: rgba(245,242,236,0.78);
  margin-bottom: 0;
  font-size: 15px;
  max-width: 28em;
}
form.cf-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
form.cf-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
form.cf-form label {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.55);
  margin-bottom: 8px;
}
form.cf-form input[type="text"],
form.cf-form input[type="email"],
form.cf-form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(245,242,236,0.4);
  color: var(--paper);
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  padding: 8px 0 12px;
  outline: none;
  transition: border-color .25s ease;
  border-radius: 0;
}
form.cf-form textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}
form.cf-form input:focus,
form.cf-form textarea:focus {
  border-bottom-color: var(--paper);
}
form.cf-form input::placeholder,
form.cf-form textarea::placeholder { color: rgba(245,242,236,0.35); }
form.cf-form .field { display: flex; flex-direction: column; }
form.cf-form .honeypot { display: none !important; }
form.cf-form button {
  align-self: start;
  margin-top: 12px;
  padding: 14px 26px;
  border: 1px solid var(--paper);
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
form.cf-form button:hover { background: transparent; color: var(--paper); }
form.cf-form .note {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.5);
  margin: 0;
}
@media (max-width: 800px) {
  .contact-form-inner { grid-template-columns: 1fr; }
  form.cf-form .row { grid-template-columns: 1fr; }
}

/* ============== ELSEWHERE (small links row) ============== */
.elsewhere {
  padding: clamp(60px, 8vh, 96px) var(--shell-pad);
  text-align: center;
  border-top: 1px solid var(--line);
}
.elsewhere .eyebrow { display: inline-block; margin-bottom: 18px; }
.elsewhere-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 36px);
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.elsewhere-row a { color: var(--ink); }
.elsewhere-row .dot {
  width: 3px; height: 3px;
  background: var(--mute);
  border-radius: 50%;
}

/* ============== FOOTER ============== */
footer {
  border-top: 1px solid var(--line);
  padding: 28px var(--shell-pad);
  background: var(--paper);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ============== ARTICLE ============== */
.article-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(72px, 11vh, 140px) var(--shell-pad);
}
.article-shell .back {
  display: inline-block;
  margin-bottom: 3em;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.article-shell .article-meta {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 1.2em;
}
.article-shell h1 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 .8em;
  color: var(--ink);
}
.article-shell h1 em.serif { font-weight: 400; }
.article-shell .deck {
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--mute);
  margin: 0 0 2.4em;
  max-width: 32em;
}
.article-shell .article-body {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.06rem;
  line-height: 1.72;
  color: var(--ink-soft);
}
.article-shell .article-body p { margin: 0 0 1.2em; }
.article-shell .article-body strong { color: var(--ink); font-weight: 600; }
.article-shell .article-body em { font-style: italic; color: var(--ink); }
.article-shell .article-body h2 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin: 2em 0 .4em;
  color: var(--ink);
}
.article-shell .article-body blockquote {
  border-left: 2px solid var(--ink);
  margin: 1.6em 0;
  padding: .2em 0 .2em 1.2em;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  font-family: 'Cormorant Garamond', Georgia, serif;
}
.article-shell hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2.4em auto;
  max-width: 4em;
}
