@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-italic-500.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-italic-600.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-normal-600.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-normal-700.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/ibm-plex-mono-normal-400.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/ibm-plex-mono-normal-500.woff2") format("woff2");
}

:root {
  --field: #0C0C0C;
  --ink: #F2F2F2;
  --mute: #8A8680;
  --slogan: #C9C4BC;
  --pink: #E3A4B8;
  --rule: #2A2A2A;
  --well: #161616;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--field);
  color: var(--ink);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 32px 56px;
}
header, footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
header {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand .mark {
  width: 78px;
  height: 26px;
  display: block;
  flex: 0 0 auto;
}
.brand .word {
  font-family: "Avenir Next Condensed", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
}
nav {
  display: flex;
  gap: 20px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
nav a { color: var(--mute); }
nav .here { color: var(--ink); font-weight: 500; }
.brand-hero {
  min-height: clamp(520px, 73svh, 760px);
  padding: 64px 0 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  border-bottom: 1px solid var(--rule);
}
.brand-hero-copy { max-width: 880px; }
.brand-hero h1 {
  max-width: 8ch;
  margin-top: 18px;
  font-size: clamp(74px, 10vw, 122px);
  line-height: 0.84;
}
.epigraphs {
  margin-top: 28px;
  max-width: 36ch;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.epigraphs p {
  font-family: "Cormorant Garamond", Palatino, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.28;
  color: var(--slogan);
}
.cancelled-line {
  position: relative;
  display: inline-block;
  color: var(--pink);
  font-family: "Cormorant Garamond", Palatino, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}
.cancelled-line::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -7%;
  top: 52%;
  height: 4px;
  background: var(--ink);
  transform: rotate(-6deg);
}
.hero-handoff {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 70px;
  padding: 0 2px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--mute);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-handoff:hover {
  background: #0F0F0F;
  text-decoration: none;
}
.hero-handoff span:last-child {
  color: var(--ink);
}
.hero-handoff b {
  margin-left: 10px;
  color: var(--pink);
  font-weight: 400;
}
.index-intro {
  padding: 42px 0 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.55fr);
  gap: 48px;
  align-items: end;
  border-bottom: 1px solid var(--rule);
  scroll-margin-top: 24px;
}
.section-kicker {
  margin-bottom: 8px;
  color: var(--mute);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section-title {
  max-width: 21ch;
  font-family: "Cormorant Garamond", Palatino, serif;
  font-size: clamp(38px, 4.6vw, 54px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.02em;
}
.hero {
  padding: 30px 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.55fr);
  gap: 48px;
  align-items: end;
  border-bottom: 1px solid var(--rule);
}
h1 {
  font-family: "Cormorant Garamond", Palatino, serif;
  font-weight: 700;
  font-size: clamp(50px, 6.2vw, 74px);
  line-height: 0.92;
  letter-spacing: -0.02em;
}
.slogan {
  margin-top: 12px;
  font-family: "Cormorant Garamond", Palatino, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.12;
  color: var(--slogan);
}
.standfirst {
  margin-top: 10px;
  max-width: 50ch;
  color: var(--mute);
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.struck {
  position: relative;
  display: inline-block;
  margin-top: 12px;
  font-family: "Cormorant Garamond", Palatino, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
  color: var(--pink);
}
.struck::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  top: 52%;
  height: 3px;
  background: var(--ink);
  transform: rotate(-8deg);
}
.meta {
  font-size: 10px;
  line-height: 1.65;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: right;
  color: var(--mute);
}
.meta strong {
  display: block;
  font-weight: 500;
  font-size: 23px;
  letter-spacing: 0;
  font-family: "Cormorant Garamond", Palatino, serif;
  text-transform: none;
  margin-bottom: 5px;
  color: var(--ink);
}
.toolbar {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(480px, 1fr);
  grid-template-areas:
    "search filters"
    "count count";
  align-items: end;
  gap: 8px 20px;
  padding: 18px 0 6px;
  color: var(--mute);
}
.search-wrap {
  grid-area: search;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.search {
  min-height: 40px;
  border: 1px solid var(--rule);
  background: #111111;
  padding: 10px 12px;
  width: 100%;
  font: inherit;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--ink);
}
.search::placeholder { color: var(--mute); }
.search:focus {
  outline: none;
  border-color: var(--pink);
}
.search-count, .empty {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}
.search-count { grid-area: count; }
.filter-grid {
  grid-area: filters;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 0;
}
.filter-control {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}
.filter-control select {
  min-height: 40px;
  width: 100%;
  border: 1px solid var(--rule);
  border-radius: 0;
  background: #111111;
  padding: 0 30px 0 10px;
  color: var(--ink);
  font: 12px/1 "IBM Plex Mono", ui-monospace, monospace;
}
.filter-control select:focus {
  outline: none;
  border-color: var(--pink);
}
.empty { padding: 24px 0; }
.row {
  display: grid;
  grid-template-columns: 32px 48px minmax(0, 1fr);
  gap: 16px;
  padding: 17px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.row:hover { background: #0F0F0F; }
.photo {
  width: 48px;
  height: 48px;
  overflow: hidden;
  background: #141414;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
.photo.initial {
  display: grid;
  place-items: center;
  font-family: "DIN Condensed", "Avenir Next Condensed", Impact, sans-serif;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #F2F2F2;
}
.num {
  font-size: 10px;
  letter-spacing: 0.18em;
  padding-top: 5px;
  color: var(--mute);
}
.row .body {
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1.5fr);
  grid-template-rows: auto auto;
  column-gap: 30px;
  align-items: start;
  min-width: 0;
}
.name {
  font-family: "Cormorant Garamond", Palatino, serif;
  font-weight: 700;
  font-size: clamp(25px, 2.6vw, 34px);
  line-height: 0.96;
  letter-spacing: -0.015em;
}
.row .name { grid-column: 1; grid-row: 1; }
.who {
  margin-top: 6px;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}
.row .who { grid-column: 1; grid-row: 2; }
.quote {
  margin-top: 10px;
  font-family: "Cormorant Garamond", Palatino, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.18;
  max-width: 46ch;
  color: var(--slogan);
}
.row .quote {
  grid-column: 2;
  grid-row: 1;
  margin-top: 0;
}
.source {
  margin-top: 8px;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}
.row .source { grid-column: 2; grid-row: 2; }
footer {
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}
.record {
  padding-top: 36px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  align-items: start;
}
.record .photo {
  width: 96px;
  height: 96px;
}
.record .photo.initial {
  font-size: 28px;
}
.socials {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}
.socials a { color: var(--ink); }
.bio {
  margin-top: 10px;
  max-width: 42em;
  font-size: 15px;
  line-height: 1.45;
  color: var(--mute);
}
.post-count {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}
.posts {
  margin-top: 10px;
  border-top: 1px solid var(--rule);
}
.post {
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.post .quote { margin-top: 0; max-width: 54ch; }
.post.highlight .quote { color: var(--ink); }
.crumbs {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 18px;
}
.submit-page {
  max-width: 680px;
  padding: 42px 0 8px;
}
.submit-page h1 {
  font-size: clamp(52px, 8vw, 84px);
  line-height: .95;
}
.submit-page .standfirst {
  margin-top: 14px;
  max-width: 42ch;
}
.method p {
  font-family: "Cormorant Garamond", Palatino, serif;
  font-size: 22px;
  line-height: 1.35;
  max-width: 46ch;
  margin: 18px 0;
  color: var(--slogan);
}
.method h2 {
  margin: 28px 0 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.method .api {
  list-style: none;
  max-width: 52ch;
  margin: 8px 0 24px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--mute);
}
.method .api a { color: var(--ink); }
.method code {
  font-size: 12px;
  color: var(--ink);
}
.submit {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 46ch;
  margin: 18px 0 8px;
}
.submit label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}
.submit input, .submit textarea {
  border: 1px solid var(--rule);
  background: var(--well);
  padding: 12px 14px;
  font: inherit;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink);
}
.submit button {
  align-self: flex-start;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  padding: 12px 16px;
  font: inherit;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}
.submit button:hover { border-color: var(--pink); }
.form-note {
  font-family: "IBM Plex Mono", ui-monospace, monospace !important;
  font-size: 12px !important;
  letter-spacing: 0.04em;
  max-width: 46ch;
  color: var(--mute);
}
.hidden { display: none !important; }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
@media (min-width: 900px) {
  .brand-hero-copy {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
    grid-template-rows: auto auto;
    column-gap: clamp(72px, 9vw, 150px);
    align-items: end;
  }
  .brand-hero .cancelled-line {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }
  .brand-hero h1 {
    grid-column: 1;
    grid-row: 2;
  }
  .brand-hero .epigraphs {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    max-width: 32ch;
    margin: 0 0 4px;
    gap: 22px;
  }
  .brand-hero .epigraphs p {
    line-height: 1.42;
  }
}
@media (max-width: 720px) {
  .hero, .record, .row, header, footer, .toolbar {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }
  .hero { align-items: stretch; }
  .brand-hero {
    min-height: 560px;
    padding: 54px 0 92px;
  }
  .brand-hero h1 {
    max-width: 7ch;
    font-size: clamp(68px, 18vw, 92px);
  }
  .epigraphs { max-width: calc(100vw - 56px); }
  .hero-handoff {
    min-height: 64px;
    padding: 0;
  }
  .index-intro {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 30px 0 24px;
    text-align: left;
  }
  .hero > div {
    width: 100%;
    max-width: calc(100vw - 56px);
  }
  h1, .slogan, .standfirst { max-width: calc(100vw - 56px); }
  .hero > *, .record > *, .row > * { min-width: 0; }
  .name, .quote, .source { overflow-wrap: anywhere; }
  .row {
    display: grid;
    grid-template-columns: 24px 44px minmax(0, 1fr);
    gap: 12px;
    padding: 16px 0;
    align-items: start;
  }
  .row .body {
    display: block;
  }
  .row .quote { margin-top: 10px; }
  .num { width: auto; }
  .photo { width: 44px; height: 44px; }
  .meta, footer { text-align: left; }
  .brand .mark { width: 72px; height: 24px; }
  .filter-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .filter-control:first-child { grid-column: 1 / -1; }
  .toolbar {
    display: flex;
    width: 100%;
    gap: 10px;
    align-items: stretch;
  }
}

.engagers-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 28px;
  align-items: end;
  padding: 34px 0 24px;
  border-bottom: 1px solid var(--rule);
}
.greatest-hits {
  padding: 44px 0 30px;
  border-bottom: 1px solid var(--rule);
}
.hits-kicker {
  color: var(--pink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hits-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}
.hits-standfirst {
  color: var(--slogan);
  font-size: 16px;
  line-height: 1.5;
}
.hits-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
  margin: 32px 0 40px;
}
.hit-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  padding: 24px;
  background: var(--well);
  border-radius: 4px;
  border: 1px solid var(--rule);
}
.hit-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.hit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hit-photo img[src$="/catlin-crawford.jpg"],
.db-photo img[src$="/catlin-crawford.jpg"],
.record .photo img[src$="/catlin-crawford.jpg"] {
  transform: rotate(-90deg) scale(1.32);
}
.hit-photo img[src$="/louise-saunders.jpg"],
.db-photo img[src$="/louise-saunders.jpg"],
.record .photo img[src$="/louise-saunders.jpg"] {
  transform: scale(1.42);
}
.hit-photo img[src$="/zachary-vandt.jpg"],
.db-photo img[src$="/zachary-vandt.jpg"],
.record .photo img[src$="/zachary-vandt.jpg"] {
  transform: scale(1.18);
}
.hit-photo.initial {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink);
  color: var(--field);
  font-weight: 700;
  font-size: 28px;
}
.hit-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 8px;
}
.hit-who {
  color: var(--mute);
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 12px;
}
.hit-bio {
  color: var(--slogan);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.hit-socials {
  color: var(--mute);
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 14px;
}
.hit-socials a {
  color: var(--pink);
  text-decoration: none;
}
.hit-socials a:hover {
  text-decoration: underline;
}
.hit-quote {
  margin-top: 18px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.48;
}
.hit-source {
  color: var(--mute);
  font-size: 13px;
  line-height: 1.4;
  margin-top: 14px;
}
.scroll-cta {
  text-align: center;
  margin: 36px 0 28px;
}
.scroll-cta a {
  color: var(--pink);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
.scroll-cta a:hover {
  text-decoration: underline;
}

/* Database page: a compact working surface inside the editorial brand. */
.db-masthead { padding: 30px 0 22px; border-bottom: 1px solid var(--rule); }
.db-masthead-line { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.db-masthead h1 { font-size: clamp(44px, 7vw, 72px); line-height: .94; }
.db-masthead-line > p { color: var(--mute); flex: 0 0 auto; font-size: 13px; letter-spacing: .05em; text-transform: uppercase; }
.db-masthead-line strong { color: var(--ink); }
.db-deck { color: var(--slogan); font-family: "Cormorant Garamond", Georgia, serif; font-size: 20px; font-style: italic; line-height: 1.35; margin-top: 10px; max-width: 680px; }
.db-toolbar { position: sticky; top: 0; z-index: 20; padding: 14px 0 12px; border-bottom: 1px solid var(--rule); background: rgba(14, 14, 13, .96); backdrop-filter: blur(12px); }
.db-search-wrap { display: block; margin-bottom: 10px; }
.db-search { width: 100%; min-height: 50px; padding: 12px 16px; font-size: 16px; border: 1px solid #4A4744; border-radius: 4px; background: var(--field); color: var(--ink); }
.db-search:focus { outline: none; border-color: var(--pink); }
.db-tabs { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; }
.db-tabs::-webkit-scrollbar { display: none; }
.db-tab { flex: 0 0 auto; padding: 8px 11px; border: 1px solid var(--rule); border-radius: 999px; background: transparent; color: var(--mute); cursor: pointer; font: inherit; font-size: 13px; }
.db-tab span { color: var(--ink); margin-left: 4px; }
.db-tab:hover, .db-tab:focus-visible { border-color: var(--pink); color: var(--ink); }
.db-tab.active { border-color: var(--pink); background: var(--pink); color: var(--field); }
.db-tab.active span { color: var(--field); }
.db-tools-line { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 10px; }
.db-search-count { color: var(--mute); font-size: 13px; }
.db-filter-panel { position: relative; }
.db-filter-panel summary { color: var(--ink); cursor: pointer; font-size: 13px; list-style: none; padding: 7px 10px; border: 1px solid var(--rule); border-radius: 4px; }
.db-filter-panel summary::-webkit-details-marker { display: none; }
.db-filter-panel summary::after { content: " +"; color: var(--pink); }
.db-filter-panel[open] summary::after { content: " −"; }
.db-filter-panel summary span:not(:empty)::before { content: " · "; }
.db-filter-grid { position: absolute; right: 0; top: calc(100% + 8px); width: min(620px, calc(100vw - 40px)); display: grid; grid-template-columns: repeat(2, minmax(180px, 1fr)); gap: 12px; padding: 16px; border: 1px solid var(--rule); border-radius: 6px; background: var(--field); box-shadow: 0 16px 40px rgba(0, 0, 0, .45); }
.db-filter-control { display: block; color: var(--mute); font-size: 13px; }
.db-filter-control select { display: block; width: 100%; padding: 10px 12px; font-size: 14px; border: 1px solid var(--rule); border-radius: 6px; background: var(--field); color: var(--ink); margin-top: 4px; }
.db-section { margin: 0 0 28px; }
.db-list { display: grid; gap: 0; }
.db-row { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--rule); }
.db-photo { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.db-photo img { width: 100%; height: 100%; object-fit: cover; }
.db-photo.initial { display: flex; align-items: center; justify-content: center; background: var(--pink); color: var(--field); font-weight: 700; font-size: 17px; }
.db-name { font-family: "Cormorant Garamond", Georgia, serif; font-size: 21px; font-weight: 600; line-height: 1.1; margin-bottom: 3px; }
.db-who { color: var(--mute); font-size: 13px; margin-bottom: 4px; }
.db-quote { display: -webkit-box; margin-top: 5px; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; color: var(--ink); font-family: "Cormorant Garamond", Georgia, serif; font-style: italic; font-size: 16px; line-height: 1.3; }
.db-source { display: flex; align-items: center; flex-wrap: wrap; gap: 5px; color: var(--mute); font-size: 13px; margin-top: 6px; }
.db-type { display: inline-block; padding: 2px 7px; border-radius: 999px; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.db-row.supporter .db-type { background: var(--pink); color: var(--field); }
.db-row.engager .db-type { background: var(--well); color: var(--ink); border: 1px solid var(--rule); }
.db-engagement { color: var(--mute); font-size: 12px; margin-top: 4px; }
.db-empty { text-align: center; padding: 40px; color: var(--mute); font-size: 16px; }
.db-load-more { display: block; width: 100%; margin: 20px 0 34px; padding: 14px 18px; border: 1px solid var(--pink); border-radius: 4px; background: transparent; color: var(--ink); cursor: pointer; font: inherit; font-size: 14px; }
.db-load-more:hover, .db-load-more:focus-visible { background: var(--pink); color: var(--field); }
.db-to-top { position: fixed; right: max(18px, calc((100vw - 980px) / 2)); bottom: 18px; z-index: 30; padding: 9px 12px; border: 1px solid var(--pink); border-radius: 999px; background: var(--field); color: var(--ink); cursor: pointer; font: inherit; font-size: 13px; box-shadow: 0 8px 24px rgba(0, 0, 0, .42); }
.hit-meta,
.hit-source,
.engagers-note {
  color: var(--mute);
  font-size: 13px;
  line-height: 1.5;
  margin-top: 10px;
}
.hit-sample {
  margin-top: 14px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.35;
}
.hit-likes {
  color: var(--pink);
  font-weight: 600;
}
.engagers-list {
  display: grid;
  gap: 0;
}
.engager-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.engager-num {
  color: var(--mute);
  font-size: 13px;
  padding-top: 4px;
}
.engager-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
}
.engager-meta,
.engager-stats,
.engager-source,
.engagers-note {
  color: var(--mute);
  font-size: 13px;
  line-height: 1.5;
  margin-top: 8px;
}
.engager-sample {
  margin-top: 10px;
  color: var(--slogan);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.35;
}
.platform-badge {
  display: inline-block;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 2px 8px;
  margin-right: 6px;
  color: var(--ink);
}
.engagers-note {
  margin-top: 24px;
}
.hidden { display: none !important; }

@media (max-width: 520px) {
  .page { padding: 24px 20px 44px; }
  header { gap: 14px; width: 100%; }
  nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 9px 16px;
    padding-top: 12px;
    border-top: 1px solid var(--rule);
    line-height: 1.35;
  }
  .hero { padding: 24px 0 20px; gap: 18px; }
  .brand-hero {
    min-height: calc(100svh - 90px);
    padding: 48px 0 90px;
  }
  .brand-hero h1 { font-size: 68px; }
  .cancelled-line { font-size: 31px; }
  .cancelled-line::after { height: 3px; }
  .index-intro { padding: 28px 0 22px; }
  .hero > div,
  h1, .slogan, .standfirst { max-width: calc(100vw - 40px); }
  h1 { font-size: 46px; }
  .engagers-intro {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .engager-row {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }
  .engager-name { font-size: 24px; }
  .hits-list {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 24px 0 32px;
  }
  .hit-row {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    padding: 20px;
  }
  .hit-photo {
    width: 58px;
    height: 58px;
  }
  .hit-body { display: contents; }
  .hit-name,
  .hit-who,
  .hit-bio,
  .hit-socials { grid-column: 2; }
  .hit-quote,
  .hit-source { grid-column: 1 / -1; }
  .hit-name { font-size: 24px; }
  .hit-who,
  .hit-bio,
  .hit-socials { margin-bottom: 4px; }
  .hit-quote {
    margin-top: 12px;
    font-size: 20px;
    line-height: 1.5;
  }
  .hit-source { margin-top: 12px; }
  .db-masthead { padding: 24px 0 18px; }
  .db-masthead-line { display: block; }
  .db-masthead h1 { font-size: 44px; }
  .db-masthead-line > p { margin-top: 8px; }
  .db-deck { font-size: 18px; }
  .db-toolbar { margin: 0 -20px; padding: 12px 20px 10px; }
  .db-search { min-height: 48px; font-size: 16px; }
  .db-tab { padding: 7px 10px; font-size: 12px; }
  .db-filter-grid { right: 0; top: calc(100% + 8px); width: calc(100vw - 40px); grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .db-filter-control select {
    min-height: 44px;
    padding: 8px;
    font-size: 12px;
  }
  .db-row { grid-template-columns: 42px minmax(0, 1fr); gap: 11px; padding: 12px 0; }
  .db-photo { width: 42px; height: 42px; }
  .db-name { font-size: 20px; }
  .db-to-top span { display: none; }
}
.post .receipt {
  margin: 14px 0 10px;
}
.post .receipt img {
  display: block;
  width: min(100%, 540px);
  height: auto;
  border: 1px solid var(--rule);
}
