
:root {
  --ink: #0A0A0A;
  --paper: #F1EBDD;
  --signal: #D9FF00;
  --acid: #B8FF00;
  --violet: #8C00FF;
  --red: #FF2A00;
  --blue: #00D9FF;
  --max: 1500px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.45;
  overflow-x: hidden;
}
body::selection { background: var(--signal); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed; left: 1rem; top: -100px; z-index: 1000;
  padding: .75rem 1rem; background: var(--signal); color: var(--ink);
}
.skip-link:focus { top: 1rem; }

.site-header {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 0 3vw;
  border-bottom: 2px solid var(--ink);
  position: relative;
  z-index: 10;
  background: var(--paper);
}
.wordmark { font-family: var(--display); font-size: 2rem; letter-spacing: -.06em; line-height: 1; }
.wordmark-g { display: inline-block; transform: rotate(-8deg); margin-right: .03em; }
.site-nav ul { display: flex; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.site-nav a, .header-actions a {
  font-size: .7rem; font-weight: 800; letter-spacing: .12em;
}
.site-nav a:hover, .header-actions a:hover { text-decoration: underline; text-decoration-thickness: 2px; }
.header-actions { display: flex; justify-content: flex-end; gap: 1rem; align-items: center; }
.subscribe-link {
  background: var(--ink); color: var(--paper); padding: .65rem .9rem;
}
.menu-toggle { display: none; border: 0; background: none; font-weight: 900; letter-spacing: .12em; }

.hero-question {
  min-height: calc(100vh - 74px);
  padding: 3vw 4vw 4vw;
  border-bottom: 4px solid var(--ink);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--paper);
  background:
    linear-gradient(96deg, #050505 0 58%, #171717 58% 100%),
    repeating-linear-gradient(-8deg, transparent 0 17px, rgba(255,255,255,.035) 18px 19px);
  position: relative;
  isolation: isolate;
}
.hero-question::after {
  content: "";
  position: absolute; inset: 0; z-index: -1; opacity: .22;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 4px, rgba(255,255,255,.08) 5px),
    repeating-linear-gradient(90deg, transparent 0 7px, rgba(255,255,255,.04) 8px);
  mix-blend-mode: screen;
}
.hero-meta {
  display: flex; justify-content: space-between;
  font-size: .68rem; font-weight: 900; letter-spacing: .16em;
}
.question-kicker {
  font-size: clamp(.9rem, 1.3vw, 1.2rem);
  font-weight: 900; letter-spacing: .2em;
  color: var(--signal);
  transform: rotate(-2deg);
}
.question-title {
  margin: 1rem 0;
  max-width: 11ch;
  position: relative;
  left: -1.2vw;
  font-family: var(--display);
  font-size: clamp(5rem, 13vw, 14rem);
  line-height: .78;
  letter-spacing: -.045em;
  text-transform: uppercase;
  text-wrap: balance;
}
.question-bottom {
  display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: end;
}
.question-excerpt { max-width: 44rem; font-family: var(--serif); font-size: clamp(1.1rem, 1.7vw, 1.7rem); margin: 0; }
.giant-link {
  display: flex; gap: 2rem; justify-content: space-between; align-items: center;
  min-width: 19rem; padding: 1rem 1.1rem;
  background: var(--signal); color: var(--ink);
  border: 2px solid var(--ink);
  font-weight: 900; font-size: .78rem; letter-spacing: .12em;
  box-shadow: 8px 8px 0 var(--red);
  transition: transform .15s ease, box-shadow .15s ease;
}
.giant-link:hover { transform: translate(5px, 5px); box-shadow: 3px 3px 0 var(--red); }

.manifesto-strip {
  display: grid; grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem; padding: 1.2rem 3vw;
  background: var(--signal); border-bottom: 2px solid var(--ink);
  font-weight: 900; font-size: .72rem; letter-spacing: .1em;
}
.manifesto-strip p { margin: 0; font-family: var(--serif); font-size: 1.05rem; letter-spacing: 0; }
.manifesto-strip span:last-child { text-align: right; }

.feed-section { padding: 6vw 5vw; }
.section-heading {
  display: grid; grid-template-columns: 5rem 1fr auto; align-items: baseline;
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  padding: .9rem 0; margin-bottom: 2rem;
}
.section-heading span, .section-heading a, .eyebrow, .card-type {
  font-size: .68rem; font-weight: 900; letter-spacing: .16em;
}
.section-heading h2 { margin: 0; font-family: var(--display); font-size: clamp(2.5rem, 5vw, 6rem); line-height: .8; letter-spacing: -.03em; }
.writing-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr 1fr;
  gap: 0;
  align-items: start;
  counter-reset: gadfly-card;
}
.writing-card {
  border: 0;
  border-top: 3px solid var(--ink);
  border-right: 2px solid var(--ink);
  background: var(--paper);
  min-height: 31rem;
  display: flex;
  flex-direction: column;
  position: relative;
  counter-increment: gadfly-card;
}
.writing-card:nth-child(1) {
  background: var(--signal);
  transform: rotate(-1.1deg);
  z-index: 2;
  margin-right: -1rem;
}
.writing-card:nth-child(2) {
  background: #E2D8F2;
  transform: rotate(1.7deg) translateY(1.2rem);
  z-index: 3;
  margin-left: -1rem;
}
.writing-card:nth-child(3) {
  background: #DCE8EA;
  transform: rotate(-.7deg) translateY(-.7rem);
  z-index: 1;
  margin-left: -.5rem;
}
.writing-card:nth-child(4n) { background: #F3D5C8; }
.writing-card:nth-child(5n) { background: #D7E6A6; }
.writing-card:nth-child(6n) { background: #D6C9EA; }
.card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
  padding: .45rem;
  background: var(--ink);
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.2) saturate(1.5);
  mix-blend-mode: screen;
  transition: transform .2s steps(2, end);
}
.writing-card:hover .card-image img { transform: scale(1.05) rotate(.5deg); }
.card-body {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-index {
  font-family: var(--display);
  font-size: 3.2rem;
  line-height: .75;
  margin-bottom: 1.2rem;
  transform: rotate(-4deg);
  display: inline-block;
}
.card-index::before { content: counter(gadfly-card, decimal-leading-zero); }
.card-body h3 { font-family: var(--serif); font-size: clamp(1.7rem, 2.5vw, 2.8rem); line-height: .95; margin: .4rem 0 1rem; }
.card-body p { margin: 0 0 1rem; font-family: var(--serif); font-size: 1rem; }
.card-meta { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--ink); font-size: .65rem; font-weight: 900; letter-spacing: .08em; }

.media-section { background: var(--ink); color: var(--paper); padding: 6vw 5vw; }
.section-heading.inverted { border-color: var(--paper); }
.section-heading.inverted a { color: var(--signal); }
.media-intro { min-height: 40vh; display: grid; grid-template-columns: 2fr 1fr; align-items: center; }
.media-intro p { font-family: var(--serif); font-size: clamp(2rem, 5vw, 6rem); line-height: .92; max-width: 16ch; }
.media-glyph { font-size: clamp(8rem, 20vw, 22rem); color: var(--signal); transform: rotate(13deg); text-align: center; }

.archive-tease {
  padding: 8vw 5vw; display: flex; justify-content: space-between; align-items: end;
  background: var(--red); color: var(--ink); min-height: 70vh;
}
.archive-tease h2 { font-family: var(--display); font-size: clamp(5rem, 13vw, 14rem); line-height: .72; letter-spacing: -.06em; margin: .5rem 0 0; }
.outline-link { border: 2px solid var(--ink); padding: 1rem 1.2rem; font-weight: 900; letter-spacing: .12em; font-size: .75rem; }

.single-post { background: var(--paper); }
.question-post-header, .standard-post-header {
  padding: 7vw 7vw 5vw; border-bottom: 2px solid var(--ink);
}
.question-post-header { background: #111; color: var(--paper); }
.post-kicker { font-size: .68rem; font-weight: 900; letter-spacing: .18em; color: var(--signal); }
.question-post-header h1, .standard-post-header h1 {
  max-width: 14ch; font-family: var(--display); font-size: clamp(4.5rem, 12vw, 13rem);
  line-height: .78; letter-spacing: -.05em; margin: 1rem 0;
}
.standard-post-header h1 { font-family: var(--serif); max-width: 17ch; line-height: .85; }
.dek { max-width: 52rem; font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 2rem); }
.post-byline { margin-top: 2rem; font-size: .7rem; font-weight: 900; letter-spacing: .12em; }
.post-art { margin: 4vw 0 0; }
.post-art img { width: 100%; max-height: 80vh; object-fit: cover; border: 2px solid currentColor; }
.post-art figcaption { margin-top: .5rem; font-size: .7rem; }

.post-layout { display: grid; grid-template-columns: 11rem minmax(0, 1fr); max-width: 1100px; margin: 0 auto; }
.post-rail { padding: 4rem 1rem; border-right: 2px solid var(--ink); display: flex; flex-direction: column; gap: .8rem; font-size: .65rem; font-weight: 900; letter-spacing: .15em; position: sticky; top: 0; align-self: start; }
.gh-content { padding: 5rem clamp(1.5rem, 6vw, 6rem); font-family: var(--serif); font-size: 1.18rem; }
.gh-content > * { max-width: 70ch; }
.gh-content h2, .gh-content h3 { font-family: var(--sans); line-height: 1; }
.gh-content h2 { font-size: 2.5rem; margin-top: 4rem; }
.gh-content blockquote { margin: 3rem 0; padding: 1rem 0 1rem 1.5rem; border-left: 8px solid var(--signal); font-size: 2rem; line-height: 1.05; }
.gh-content figure { max-width: none; }
.gh-content hr { border: 0; border-top: 2px solid var(--ink); margin: 4rem 0; }
.response-cta { padding: 7vw 7vw 9vw; background: var(--signal); border-top: 2px solid var(--ink); }
.response-cta h2 { max-width: 11ch; font-family: var(--display); font-size: clamp(4rem, 10vw, 11rem); line-height: .76; letter-spacing: -.05em; margin: .6rem 0 1rem; }
.response-cta p { font-family: var(--serif); font-size: 1.3rem; max-width: 40rem; }
.post-footer { border-top: 2px solid var(--ink); padding: 1rem 3vw; }
.post-footer-inner { display: flex; justify-content: space-between; gap: 1rem; }
.post-tags { display: flex; gap: .6rem; flex-wrap: wrap; }
.post-tags a, .post-share { font-size: .68rem; font-weight: 900; letter-spacing: .1em; }

.archive-page { padding: 7vw 5vw; }
.archive-header { max-width: 1000px; margin-bottom: 5rem; }
.archive-header h1 { font-family: var(--display); font-size: clamp(5rem, 14vw, 15rem); line-height: .72; letter-spacing: -.05em; margin: .5rem 0 1.5rem; }
.archive-header p { max-width: 50rem; font-family: var(--serif); font-size: 1.3rem; }
.archive-list { border-top: 2px solid var(--ink); }
.archive-row { display: grid; grid-template-columns: 5rem 1fr 3rem; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--ink); }
.archive-row > span { font-weight: 900; font-size: .7rem; }
.archive-row h2 { font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 3rem); line-height: .95; margin: .35rem 0; }
.archive-row p { margin: 0; max-width: 55rem; font-family: var(--serif); }
.author-avatar { width: 90px; height: 90px; object-fit: cover; border-radius: 50%; margin-bottom: 2rem; }
.pagination { display: flex; justify-content: space-between; padding-top: 2rem; font-size: .7rem; font-weight: 900; letter-spacing: .1em; }

.error-page { min-height: 80vh; padding: 8vw 5vw; background: var(--violet); }
.error-number { font-family: var(--display); font-size: 20vw; line-height: .7; }
.error-page h1 { font-family: var(--serif); font-size: clamp(3rem, 7vw, 8rem); max-width: 12ch; line-height: .85; }

.site-footer {
  background: var(--ink); color: var(--paper); padding: 3rem 5vw;
  display: grid; grid-template-columns: 5rem 1fr auto; gap: 2rem; align-items: start;
}
.footer-mark { font-size: 2rem; position: relative; min-height: 3rem; }
.site-footer p { margin: .4rem 0 0; font-family: var(--serif); }
.footer-meta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: flex-end; font-size: .65rem; font-weight: 900; letter-spacing: .1em; }

.mode-ink-paper .hero-question { background: var(--paper); color: var(--ink); }
.mode-ink-paper .hero-question::after { display: none; }
.mode-ink-paper .question-kicker { color: var(--red); }
.mode-acid-night { --paper: #0A0A0A; --ink: #F1EBDD; }
.mode-acid-night .site-header { background: #0A0A0A; color: #F1EBDD; }
.mode-acid-night .hero-question { background: #0A0A0A; }
.mode-acid-night .writing-card { background: #151515; color: #F1EBDD; border-color: #F1EBDD; }

/* =========================================================
   GADFLY DIY LAYER
   Less grid. More wall, xerox, marker, accident.
   ========================================================= */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .055;
  background:
    repeating-linear-gradient(91deg, transparent 0 3px, #000 4px 5px, transparent 6px 11px),
    repeating-linear-gradient(177deg, transparent 0 7px, #000 8px 9px, transparent 10px 17px);
  mix-blend-mode: multiply;
}

.hero-question {
  overflow: hidden;
}
.hero-question::before {
  content: "GADFLY";
  position: absolute;
  right: -2vw;
  bottom: 8vh;
  font-family: var(--display);
  font-size: clamp(8rem, 23vw, 28rem);
  line-height: .65;
  letter-spacing: -.09em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(241,235,221,.28);
  transform: rotate(-7deg);
  z-index: -1;
}
.hero-meta span:first-child::before {
  content: "✳ ";
  color: var(--signal);
}
.question-kicker::after {
  content: " / / /";
  color: var(--red);
  margin-left: .5rem;
}
.giant-link {
  position: relative;
  overflow: hidden;
}
.giant-link::before {
  content: "";
  position: absolute;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: var(--red);
  left: var(--mx, -10rem);
  top: var(--my, -10rem);
  transform: translate(-50%, -50%);
  opacity: .35;
  transition: left .08s linear, top .08s linear;
}
.giant-link span { position: relative; z-index: 1; }

.manifesto-strip {
  position: relative;
  overflow: hidden;
}
.manifesto-strip::after {
  content: "NO EASY ANSWERS";
  position: absolute;
  right: 3vw;
  bottom: -1rem;
  font-family: var(--display);
  font-size: 4rem;
  transform: rotate(-5deg);
  opacity: .12;
}

.section-heading {
  position: relative;
}
.section-heading h2 {
  text-shadow: 4px 3px 0 var(--signal);
}
.section-heading::after {
  content: "✳";
  position: absolute;
  right: 13rem;
  top: -.7rem;
  font-size: 2rem;
  transform: rotate(18deg);
}

.writing-card {
  clip-path: polygon(0 1%, 98% 0, 100% 98%, 2% 100%);
}
.writing-card:nth-child(2) .card-body h3 {
  transform: rotate(-1.4deg);
}
.writing-card:nth-child(3) .card-body h3 {
  transform: rotate(1.1deg);
}
.writing-card::after {
  content: "READ →";
  position: absolute;
  right: .8rem;
  bottom: .7rem;
  font-family: var(--display);
  font-size: .9rem;
  transform: rotate(-6deg);
  opacity: .7;
}
.writing-card:hover {
  z-index: 8;
  transform: rotate(0deg) translateY(-.5rem) scale(1.015) !important;
}

.media-section {
  position: relative;
  overflow: hidden;
}
.media-section::before {
  content: "VISUAL";
  position: absolute;
  top: 3vw;
  right: -2vw;
  font-family: var(--display);
  font-size: 16vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(241,235,221,.2);
  transform: rotate(8deg);
}
.media-glyph {
  font-family: var(--display);
  text-shadow: 8px 7px 0 var(--red), -6px -5px 0 var(--violet);
}

.archive-tease {
  position: relative;
  overflow: hidden;
}
.archive-tease::before {
  content: "QUESTIONS QUESTIONS QUESTIONS QUESTIONS";
  position: absolute;
  top: 1rem;
  left: -2rem;
  font-family: var(--display);
  font-size: 3rem;
  white-space: nowrap;
  transform: rotate(-3deg);
  opacity: .13;
}
.archive-tease h2 {
  position: relative;
  text-shadow: 7px 5px 0 var(--signal);
}

.question-post-header {
  position: relative;
  overflow: hidden;
}
.question-post-header::before {
  content: "✳  ✳  ✳  ✳  ✳";
  position: absolute;
  right: 4vw;
  top: 8vw;
  color: var(--red);
  font-size: 2rem;
  transform: rotate(17deg);
}
.question-post-header h1 {
  text-shadow: 8px 6px 0 var(--violet);
}

.gh-content p:first-child::first-letter {
  font-size: 4.5em;
  float: left;
  line-height: .7;
  padding: .05em .08em 0 0;
  font-family: var(--display);
  color: var(--red);
}

.gh-content blockquote {
  position: relative;
  transform: rotate(-.6deg);
  background: var(--signal);
  border-left: 0;
  padding: 1.5rem;
  box-shadow: 7px 7px 0 var(--red);
}

.post-rail span:nth-child(2) { transform: rotate(-5deg); }
.post-rail span:nth-child(3) { transform: rotate(4deg); }
.post-rail span:nth-child(4) { transform: rotate(-3deg); }

.response-cta {
  position: relative;
  overflow: hidden;
}
.response-cta::after {
  content: "WRITE IT DOWN";
  position: absolute;
  right: -1rem;
  bottom: 1rem;
  font-family: var(--display);
  font-size: clamp(4rem, 10vw, 11rem);
  color: transparent;
  -webkit-text-stroke: 2px rgba(10,10,10,.15);
  transform: rotate(-7deg);
  pointer-events: none;
}
.response-cta h2, .response-cta p, .response-cta .giant-link {
  position: relative;
  z-index: 1;
}

.archive-row:nth-child(3n+1) h2 { transform: rotate(-.8deg); }
.archive-row:nth-child(3n+2) h2 { transform: rotate(.8deg); }
.archive-row:hover {
  background: var(--signal);
  padding-left: .8rem;
  padding-right: .8rem;
  transition: all .12s steps(2, end);
}

.site-footer {
  position: relative;
}
.site-footer::before {
  content: "THINK / THINK / THINK / THINK / THINK";
  position: absolute;
  top: -.9rem;
  left: 3vw;
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--signal);
  transform: rotate(-2deg);
}

/* Give image-heavy posts the handmade pasted-up treatment. */
.post-art img {
  box-shadow: 12px 12px 0 var(--signal);
  transform: rotate(-.8deg);
}
.post-art figcaption {
  font-family: var(--sans);
  transform: rotate(.5deg);
}

/* Keep Ghost cards and embeds from losing the experimental language. */
.kg-card {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.kg-image-card img {
  filter: contrast(1.12) saturate(1.2);
}
.kg-callout-card {
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--red);
}
.kg-button-card a {
  border-radius: 0 !important;
  box-shadow: 5px 5px 0 var(--ink);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .1em;
}

/* Mobile: retain the collisions, but keep the reading experience sane. */
@media (max-width: 620px) {
  .writing-grid { display: block; }
  .writing-card,
  .writing-card:nth-child(1),
  .writing-card:nth-child(2),
  .writing-card:nth-child(3) {
    margin: 0 0 1.2rem;
    transform: none;
  }
  .writing-card:hover { transform: translateY(-.3rem) !important; }
  .section-heading::after { right: 1rem; }
  .hero-question::before { right: -30vw; bottom: 18vh; }
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav, .header-actions { display: none; }
  .site-nav.is-open, .header-actions.is-open { display: flex; position: absolute; left: 0; right: 0; background: var(--paper); padding: 1rem 3vw; border-bottom: 2px solid var(--ink); }
  .site-nav.is-open { top: 74px; }
  .site-nav ul { flex-direction: column; }
  .header-actions.is-open { top: calc(74px + 150px); justify-content: flex-start; flex-wrap: wrap; }
  .menu-toggle { display: block; }
  .question-bottom { grid-template-columns: 1fr; }
  .giant-link { width: 100%; min-width: 0; }
  .manifesto-strip { grid-template-columns: 1fr; }
  .manifesto-strip span:last-child { text-align: left; }
  .writing-grid { grid-template-columns: 1fr 1fr; }
  .writing-card:nth-child(3n+2) { transform: none; }
  .media-intro { grid-template-columns: 1fr; }
  .archive-tease { flex-direction: column; align-items: flex-start; gap: 3rem; }
  .post-layout { grid-template-columns: 1fr; }
  .post-rail { position: static; border-right: 0; border-bottom: 2px solid var(--ink); flex-direction: row; padding: 1rem 5vw; overflow: auto; }
}

@media (max-width: 620px) {
  .site-header { padding: 0 1rem; }
  .hero-question, .feed-section, .media-section, .archive-tease, .archive-page { padding-left: 1rem; padding-right: 1rem; }
  .question-title { font-size: clamp(4.2rem, 21vw, 7rem); }
  .hero-meta { font-size: .55rem; }
  .writing-grid { grid-template-columns: 1fr; }
  .writing-card { min-height: 0; }
  .archive-row { grid-template-columns: 3rem 1fr 2rem; gap: .8rem; }
  .question-post-header, .standard-post-header { padding-left: 1rem; padding-right: 1rem; }
  .question-post-header h1, .standard-post-header h1 { font-size: clamp(4rem, 19vw, 7rem); }
  .gh-content { padding: 3rem 1rem; }
  .site-footer { grid-template-columns: 3rem 1fr; }
  .footer-meta { grid-column: 1 / -1; justify-content: flex-start; }
}


/* Ghost Koenig editor width support */
.kg-width-wide {
  width: min(1200px, 100%);
  margin-left: auto;
  margin-right: auto;
}
.kg-width-full {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.kg-width-full img {
  width: 100%;
}

/* =========================================================
   GADFLY V0.3: GRIT + FLIES
   ========================================================= */


.question-title {
  transform: rotate(-.7deg);
  filter: contrast(1.08);
}

.question-title::selection {
  -webkit-text-stroke: 0;
}

.card-body h3,
.standard-post-header h1 {
  -webkit-text-stroke: .25px currentColor;
  text-shadow: 1px 1px 0 rgba(0,0,0,.18);
}

/* Small print/ink imperfections */
.card-type,
.post-kicker,
.eyebrow,
.hero-meta,
.header-actions a,
.site-nav a {
  text-shadow: .5px 0 0 currentColor;
}

/* Remove the old star/asterisk decorations */
.hero-meta span:first-child::before,
.question-kicker::after,
.section-heading::after,
.media-glyph {
  content: none;
}
.media-glyph { display: none; }

@media (max-width: 620px) {
  .gadfly-mark { transform: scale(.85) rotate(-13deg); }
  .hero-fly { right: 3vw; top: 15vh; }
  .question-fly { right: 2vw; top: 8vw; }
  .archive-fly { left: auto; right: 10vw; }
}


/* V0.8: symbols are editorial events, not interface decoration. */
.question-fly,
.archive-owl,
.response-eye {
  filter: drop-shadow(5px 5px 0 #000);
}
.question-fly img,
.archive-owl img,
.response-eye img {
  mix-blend-mode: normal;
}
.archive-tease .archive-owl {
  opacity: .95;
}


/* =========================================================
   GADFLY V1: TYPOGRAPHY EXORCISM
   Less "content platform", more independent print journal.
   ========================================================= */

/* Display type should feel pulled from a poster, not a UI kit. */
h1, h2, h3, .question-title, .archive-header h1,
.response-cta h2, .archive-tease h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .86;
  text-wrap: balance;
}

.question-title {
  font-size: clamp(4.8rem, 12vw, 12rem);
  max-width: 9ch;
  transform: rotate(-1.2deg);
  font-style: normal;
  text-shadow: 5px 4px 0 var(--signal);
}

.hero-kicker,
.question-kicker,
.card-type,
.post-kicker,
.eyebrow {
  font-family: "Arial Black", Impact, sans-serif;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .7rem;
}

/* Body copy: literary and quiet, without looking like a lifestyle blog. */
body,
p,
.gh-content,
.card-excerpt,
.post-excerpt {
  font-family: Georgia, "Times New Roman", serif;
}

.card-body h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.3vw, 3.7rem);
  line-height: .9;
  letter-spacing: -.045em;
}

.standard-post-header h1,
.question-post-header h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 9vw, 9rem);
  letter-spacing: -.065em;
  line-height: .82;
}

.archive-row h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 4.8rem);
  letter-spacing: -.055em;
  line-height: .88;
}

.giant-link {
  font-family: "Arial Black", Impact, sans-serif;
  letter-spacing: -.04em;
}

/* Deliberately crude print-style utility type. */
.site-nav a,
.header-actions a,
.site-footer,
.meta,
.card-meta,
.post-rail,
.post-date {
  font-family: Arial, Helvetica, sans-serif;
}

/* Let the big serif forms collide with the page rather than sitting politely. */
.section-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 7rem);
  letter-spacing: -.07em;
  line-height: .78;
  transform: rotate(-1deg);
}

.manifesto-strip p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  line-height: .98;
  letter-spacing: -.025em;
}

/* Kill the previous "designed-by-algorithm" text shadows. */
.card-body h3,
.standard-post-header h1 {
  text-shadow: none;
  -webkit-text-stroke: 0;
}

/* Keep the Question title's single rough offset as a physical ink mark. */
.question-title {
  -webkit-text-stroke: 0;
}

/* Slightly irregular headline behavior across cards. */
.writing-card:nth-child(1) h3 { font-style: italic; }
.writing-card:nth-child(2) h3 { font-style: normal; }
.writing-card:nth-child(3) h3 { font-style: italic; }

@media (max-width: 620px) {
  .question-title {
    font-size: clamp(3.8rem, 17vw, 7rem);
  }
  .standard-post-header h1,
  .question-post-header h1 {
    font-size: clamp(3.4rem, 15vw, 6rem);
  }
}
