/*
 * ARTCYP: contemporary art in Cyprus.
 *
 * System faces only, no webfonts, no third-party requests. A portal that
 * phones a font CDN on every page load is not a portal this project ships.
 *
 * The palette is the island's: limestone ground, copper accent (Cyprus gave
 * the metal its name), sea for links and depth, olive for the quiet notes.
 */

:root {
  color-scheme: light dark;

  --limestone: #faf7f1;
  --limestone-2: #f2ece1;
  --limestone-3: #e7dfd0;
  --ink: #16130e;
  --ink-soft: #4a443a;
  --muted: #7a7263;
  --rule: #ded5c5;

  --copper: #b4551f;
  --copper-bright: #d9722f;
  --sea: #12556e;
  --sea-bright: #2b7f9c;
  --olive: #5d6b3c;
  --plum: #6d4b8a;
  --rose: #b23a63;

  --ground: var(--limestone);
  --ground-2: var(--limestone-2);
  --ground-3: var(--limestone-3);
  --accent: var(--copper);
  --link: var(--sea);
  --focus: #1d4ed8;

  --serif: ui-serif, "Iowan Old Style", Palatino, "Palatino Linotype", Georgia, "Times New Roman", serif;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --measure: 36rem;
  --gutter: clamp(1.15rem, 4vw, 4.5rem);
  --step: clamp(3rem, 7vw, 6.5rem);
  --max: 84rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --limestone: #100e0c;
    --limestone-2: #191614;
    --limestone-3: #23201c;
    --ink: #efe9de;
    --ink-soft: #c0b8aa;
    --muted: #8f8778;
    --rule: #332e28;

    --copper: #e08a4f;
    --copper-bright: #f0a068;
    --sea: #6fb6d0;
    --sea-bright: #8fcde4;
    --olive: #9cb173;
    --plum: #b195cf;
    --rose: #e0819f;

    --focus: #7ea6ff;
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-color: color-mix(in srgb, currentColor 30%, transparent); text-underline-offset: 0.18em; }
a:hover { text-decoration-color: var(--accent); }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 2px; }

.skip { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--ink); color: var(--ground); padding: 0.75rem 1rem; }
.skip:focus { left: 0; }

main { display: block; }

/* --- wire ticker ---------------------------------------------------------- */

.wire {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.45rem var(--gutter);
  background: var(--ink); color: var(--limestone);
  font-size: 0.78rem; overflow: hidden; white-space: nowrap;
}
@media (prefers-color-scheme: dark) { .wire { background: var(--limestone-3); color: var(--ink); } }
.wire-tag {
  flex: none; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.66rem;
  color: var(--copper-bright); font-weight: 600;
}
.wire-item {
  flex: 1; overflow: hidden; text-overflow: ellipsis; text-decoration: none;
  opacity: 0.92; transition: opacity 220ms ease;
}
.wire-item:hover { opacity: 1; text-decoration: underline; }
.wire-item.fading { opacity: 0; }
@media (prefers-reduced-motion: reduce) { .wire-item { transition: none; } }
.wire-all { flex: none; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.7; text-decoration: none; }
.wire-all:hover { opacity: 1; }

/* --- masthead ------------------------------------------------------------- */

.masthead {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 1.1rem var(--gutter);
  border-bottom: 1px solid var(--rule);
  flex-wrap: wrap;
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--ground) 90%, transparent);
  backdrop-filter: saturate(1.5) blur(12px);
}
.wordmark { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--ink); }
.wordmark svg { flex: none; }
.wordmark-text { display: flex; flex-direction: column; line-height: 1.15; }
.wordmark-text strong {
  font-family: var(--sans); font-weight: 700; font-size: 1.15rem;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.wordmark-text em { font-style: normal; font-size: 0.68rem; letter-spacing: 0.08em; color: var(--muted); }

.masthead nav ul { display: flex; gap: clamp(0.85rem, 2.2vw, 1.9rem); list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.masthead nav a {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em;
  text-decoration: none; color: var(--muted); padding-block: 0.3rem; white-space: nowrap;
}
.masthead nav a:hover { color: var(--ink); }
.masthead nav a[aria-current="page"] { color: var(--ink); box-shadow: inset 0 -2px 0 var(--copper); }

/* --- typography ----------------------------------------------------------- */

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.08; letter-spacing: -0.015em; margin: 0 0 0.5rem; }
h1 { font-size: clamp(2.1rem, 1.4rem + 3.2vw, 4rem); }
h2 { font-size: clamp(1.5rem, 1.1rem + 1.7vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem); }
h1 a, h2 a, h3 a { text-decoration: none; }
h1 a:hover, h2 a:hover, h3 a:hover { color: var(--accent); }

p { margin: 0 0 1rem; }

.kicker {
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted); margin: 0 0 0.7rem;
}
.dot-sep { opacity: 0.5; }
.lede { color: var(--ink-soft); margin: 0 0 0.7rem; }
.lede.big { font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.3rem); max-width: var(--measure); line-height: 1.5; }
.byline { font-size: 0.88rem; color: var(--ink-soft); margin: 0 0 0.3rem; }
.micro { font-size: 0.78rem; color: var(--muted); margin: 0 0 0.5rem; }
.small { font-size: 0.8rem; }
.muted { color: var(--muted); }
.local { font-family: var(--serif); font-size: 1.05rem; color: var(--muted); margin: -0.2rem 0 0.7rem; }
.statement { font-family: var(--serif); font-size: 1.08rem; font-style: italic; color: var(--ink-soft); max-width: var(--measure); }
.essay-excerpt { color: var(--ink-soft); max-width: 38ch; }
code { font-family: var(--mono); font-size: 0.85em; background: var(--ground-2); padding: 0.1em 0.4em; border-radius: 3px; }

.rule {
  border-top: 1px solid var(--rule); padding-top: 0.9rem; margin-bottom: 1.75rem;
  font-family: var(--sans); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--muted); font-weight: 600;
}

.prose { max-width: var(--measure); margin: 0 auto; padding: 0 var(--gutter) var(--step); font-size: 1.05rem; }
.prose p { margin-bottom: 1.15rem; }
.prose h2 { margin-top: 2.5rem; font-size: 1.45rem; }
.prose ul { padding-left: 1.2rem; }
.prose-inline { color: var(--ink-soft); font-size: 0.92rem; }

/* --- buttons and chips ----------------------------------------------------- */

.cta-row { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 1.5rem; }

.button {
  display: inline-block; padding: 0.68rem 1.4rem;
  background: var(--ink); color: var(--ground);
  text-decoration: none; font-size: 0.78rem; letter-spacing: 0.09em; text-transform: uppercase; font-weight: 600;
  border: 1px solid var(--ink); border-radius: 2px; cursor: pointer;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}
.button:hover { background: var(--copper); border-color: var(--copper); color: #fff; }
.button.ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.button.ghost:hover { background: var(--ink); color: var(--ground); border-color: var(--ink); }
@media (prefers-reduced-motion: reduce) { .button { transition: none; } }

.chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.33rem 0.78rem; border: 1px solid var(--rule); border-radius: 999px;
  font-size: 0.78rem; text-decoration: none; color: var(--ink-soft);
  background: transparent; cursor: pointer; font-family: inherit;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip-on { background: var(--ink); border-color: var(--ink); color: var(--ground); }
.chip .count { font-variant-numeric: tabular-nums; opacity: 0.7; font-size: 0.72rem; }

/* Category and status pills */
.cat, .status {
  display: inline-block; padding: 0.1rem 0.5rem; border-radius: 2px;
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid currentColor;
}
.cat-catalogue { color: var(--copper); }
.cat-guide { color: var(--sea); }
.cat-notes { color: var(--plum); }
.cat-build { color: var(--olive); }
.cat-relay { color: var(--copper-bright); }
.status-current { color: var(--copper); }
.status-upcoming { color: var(--sea); }
.status-past { color: var(--muted); }

/* --- hero ------------------------------------------------------------------ */

.hero {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  border-bottom: 1px solid var(--rule);
}
.hero-media { position: relative; overflow: hidden; background: var(--ground-2); min-height: min(78vh, 44rem); }
.hero-media svg, .hero-media canvas { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--step) var(--gutter);
  border-left: 1px solid var(--rule);
}
.hero-copy h1 { margin-bottom: 0.6rem; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-media { min-height: 52vh; }
  .hero-copy { border-left: 0; border-top: 1px solid var(--rule); padding-block: 2.5rem; }
}

/* --- sections -------------------------------------------------------------- */

.section { padding: var(--step) var(--gutter); border-bottom: 1px solid var(--rule); max-width: var(--max); margin: 0 auto; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  margin-bottom: 2.25rem; flex-wrap: wrap;
  border-bottom: 2px solid var(--ink); padding-bottom: 0.6rem;
}
.section-head h2 { margin: 0; }
.more { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; text-decoration: none; color: var(--muted); font-weight: 600; }
.more:hover { color: var(--accent); }

.page-head { padding: var(--step) var(--gutter) 2rem; max-width: var(--max); margin: 0 auto; }
.page-head.narrow { max-width: calc(var(--measure) + var(--gutter) * 2); }

/* --- news ------------------------------------------------------------------ */

.news-section { background: var(--ground-2); max-width: none; }
.news-section > * { max-width: var(--max); margin-inline: auto; }

.news-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(1.5rem, 3vw, 3rem); }
.news-column { display: grid; gap: 1.5rem; align-content: start; }
.news-column .news-card { border-top: 1px solid var(--rule); padding-top: 1.1rem; }
.news-column .news-card:first-child { border-top: 0; padding-top: 0; }

.news-card h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.news-lead h3 { font-family: var(--serif); font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.1rem); margin: 0.8rem 0 0.5rem; }
.news-image { display: block; }
.news-image .plate-figure { aspect-ratio: 16 / 10; }

@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr; } }

.news-index { list-style: none; margin: 0; padding: 0 var(--gutter) var(--step); max-width: var(--max); margin-inline: auto; }
.news-index li { border-top: 1px solid var(--rule); }
.news-index li:last-child { border-bottom: 1px solid var(--rule); }
.news-row {
  display: grid; grid-template-columns: 4.5rem 7.5rem 1fr 7rem; gap: 1.25rem; align-items: baseline;
  padding: 1.15rem 0; text-decoration: none;
  transition: background 140ms ease;
}
.news-row:hover { background: var(--ground-2); }
.news-row time { font-size: 0.75rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.news-row-body strong { display: block; font-family: var(--serif); font-size: 1.2rem; font-weight: 400; line-height: 1.2; margin-bottom: 0.25rem; }
.news-row-body .lede { font-size: 0.88rem; margin: 0; }
.news-row-city { font-size: 0.75rem; color: var(--muted); text-align: right; }
.news-row:hover .news-row-body strong { color: var(--accent); }

@media (max-width: 820px) {
  .news-row { grid-template-columns: 1fr; gap: 0.4rem; }
  .news-row-city { text-align: left; }
  .news-row .cat { justify-self: start; }
}

/* --- programme and cards ---------------------------------------------------- */

.grid { display: grid; gap: clamp(1.5rem, 2.5vw, 2.75rem); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 21rem), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 14rem), 1fr)); }

.plate-figure {
  margin: 0; aspect-ratio: 1; overflow: hidden; background: var(--ground-2);
  border: 1px solid var(--rule);
}
.plate-figure svg, .plate-figure canvas { width: 100%; height: 100%; object-fit: cover; display: block; }

.card .plate { display: block; text-decoration: none; }
.card .plate-figure { transition: transform 220ms cubic-bezier(0.2, 0.7, 0.3, 1), border-color 220ms ease; }
.card .plate:hover .plate-figure { transform: translateY(-4px); border-color: var(--copper); }
@media (prefers-reduced-motion: reduce) { .card .plate-figure { transition: none; } }
.card-meta { margin-top: 0.8rem; }
.card-meta h3 { font-size: 1rem; margin-bottom: 0.15rem; }
.card-meta p { margin: 0 0 0.15rem; }

.journal-card { border-top: 1px solid var(--rule); padding-top: 1.25rem; }

/* A relayed headline is somebody else's, and is marked as theirs. */
.relay-card {
  border-top: 1px solid var(--rule); padding-top: 1.25rem;
  border-left: 3px solid var(--copper-bright); padding-left: 1rem;
}
.relay-card h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.relay-card h3 a { text-decoration: none; }
.relay-card h3 a:hover { text-decoration: underline; }
.relay-card .ext { font-size: 0.75em; opacity: 0.55; }

.tags { display: flex; gap: 0.45rem; list-style: none; padding: 0; margin: 1rem auto 0; flex-wrap: wrap; max-width: var(--measure); }
.tags li {
  font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); border: 1px solid var(--rule); padding: 0.15rem 0.55rem; border-radius: 999px;
}

/* --- feature work ----------------------------------------------------------- */

.feature-work {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center; background: var(--ground-3); max-width: none;
}
.feature-plate { overflow: hidden; border: 1px solid var(--rule); }
.feature-plate svg, .feature-plate canvas { width: 100%; height: auto; display: block; }
.mini-spec { display: grid; grid-template-columns: 6rem 1fr; gap: 0.3rem 1rem; font-size: 0.85rem; margin: 1.25rem 0; }
.mini-spec dt { color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.68rem; padding-top: 0.15rem; }
.mini-spec dd { margin: 0; }
@media (max-width: 860px) { .feature-work { grid-template-columns: 1fr; } }

/* --- filters ------------------------------------------------------------------ */

.filters { padding: 0 var(--gutter) 2.5rem; display: grid; gap: 0.75rem; max-width: var(--max); margin: 0 auto; }
.filter-row { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.filter-label { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); min-width: 4.5rem; font-weight: 600; }
.empty { padding: 0 var(--gutter) var(--step); color: var(--muted); max-width: var(--max); margin: 0 auto; }

/* --- story and work pages ------------------------------------------------------ */

.story-figure { margin: 0 auto var(--step); padding: 0 var(--gutter); max-width: var(--max); }
.story-figure.wide { padding: 0; }
.story-figure .plate-figure { aspect-ratio: 16 / 9; }
.story-figure figcaption { margin-top: 0.6rem; }

.work { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--step); padding: var(--step) var(--gutter); align-items: start; max-width: var(--max); margin: 0 auto; }
.work-plate { position: sticky; top: 6.5rem; }
.work-plate > svg, .work-plate > canvas { width: 100%; height: auto; border: 1px solid var(--rule); background: var(--ground-2); }
.plate-controls { display: flex; gap: 0.7rem; margin-top: 1rem; flex-wrap: wrap; }
.spec { display: grid; grid-template-columns: 8rem 1fr; gap: 0.4rem 1rem; margin: 1.5rem 0; font-size: 0.9rem; }
.spec dt { color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.68rem; padding-top: 0.15rem; }
.spec dd { margin: 0; }
.reactions { display: flex; gap: 0.5rem; margin: 1.5rem 0 0.5rem; flex-wrap: wrap; }
@media (max-width: 900px) { .work { grid-template-columns: 1fr; } .work-plate { position: static; } .spec { grid-template-columns: 7rem 1fr; } }

/* --- pulse --------------------------------------------------------------------- */

.pulse-section { background: var(--ground-2); max-width: none; }
.pulse-section > * { max-width: var(--max); margin-inline: auto; }
.pulse { list-style: none; margin: 1.5rem auto 0; padding: 0; display: grid; font-family: var(--mono); font-size: 0.8rem; max-width: var(--max); }
.pulse li {
  display: grid; grid-template-columns: 5.5rem 1fr auto; gap: 1rem; align-items: baseline;
  padding: 0.6rem 0; border-top: 1px solid var(--rule);
  animation: pulse-in 400ms ease both;
}
.pulse .t { color: var(--muted); font-variant-numeric: tabular-nums; }
.pulse .s { color: var(--muted); font-size: 0.72rem; }
.pulse a { text-decoration: none; }
.pulse a:hover { color: var(--accent); }
@keyframes pulse-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .pulse li { animation: none; } }
@media (max-width: 620px) { .pulse li { grid-template-columns: 1fr; gap: 0.15rem; } }

/* --- not found ------------------------------------------------------------------ */

.notfound { padding: var(--step) var(--gutter); max-width: var(--measure); margin: 0 auto; }
.plate-inline { margin: 2rem 0; border: 1px solid var(--rule); }

/* --- footer ---------------------------------------------------------------------- */

.site-foot { padding: var(--step) var(--gutter) 3rem; max-width: var(--max); margin: 0 auto; }
.foot-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 2.5rem; margin-bottom: 2.5rem; }
@media (max-width: 800px) { .foot-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr)); } }
.foot-title { font-family: var(--sans); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 700; margin-bottom: 0.8rem; }
.foot-brand .foot-title { font-family: var(--sans); font-size: 1rem; letter-spacing: 0.14em; }
.plain { list-style: none; padding: 0; margin: 0; }
.plain li { margin-bottom: 0.35rem; font-size: 0.88rem; }
.plain a { text-decoration: none; color: var(--muted); }
.plain a:hover { color: var(--accent); }

/* --- guide to real institutions ---------------------------------------------
 *
 * Visually distinct from the catalogue on purpose: everything in the guide
 * refers to organisations that actually exist, and it should not read as more
 * of the same generated material.
 */

.venue-card {
  border-top: 1px solid var(--rule);
  border-left: 3px solid var(--sea);
  padding: 1.1rem 0 0 1rem;
}
.venue-card h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.venue-card h3 a { text-decoration: none; }
.venue-card h3 a:hover { color: var(--sea); }
.venue-card .ext { font-size: 0.75em; opacity: 0.55; }
.venue-card .lede { font-size: 0.92rem; }
.cat-venue { color: var(--sea); }

.spotlight { background: var(--ground-2); max-width: none; }
.spotlight > * { max-width: var(--max); margin-inline: auto; }

.disclosure {
  border-top: 1px solid var(--rule);
  padding-top: 0.9rem;
  margin-top: 0.9rem;
  max-width: 46rem;
}

/* --- provenance and freshness ------------------------------------------------- */

/* Anything the reader should weigh for age or reliability is marked, not hidden. */
.warn { color: var(--rose); }

.badge {
  font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.09em;
  border: 1px solid var(--rule); border-radius: 999px; padding: 0.1rem 0.5rem;
  color: var(--muted); white-space: nowrap;
}

.venue-stale { border-left: 3px solid var(--rose); padding-left: 1rem; }

.system-note {
  max-width: var(--measure); margin: 0 auto 1.5rem; padding: 0.9rem 1.1rem;
  border-left: 3px solid var(--copper); background: var(--panel, transparent);
  font-size: 0.92rem; color: var(--muted);
}

/* The source table is the relay showing its working. */
.sources { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.85rem; }
.sources th, .sources td { text-align: left; padding: 0.55rem 0.6rem; border-bottom: 1px solid var(--rule); vertical-align: top; }
.sources th { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 600; }
.sources tr.src-down td { color: var(--muted); }
.sources td a { text-decoration: none; }
.sources td a:hover { text-decoration: underline; }
@media (max-width: 620px) { .sources, .sources tbody, .sources tr, .sources td { display: block; width: 100%; }
  .sources thead { display: none; }
  .sources tr { border-bottom: 1px solid var(--rule); padding: 0.5rem 0; }
  .sources td { border: 0; padding: 0.15rem 0; } }

/* Cyprus institutions and the art press are both relayed, and both are marked
   with whose words they are. The colour only distinguishes the two lists. */
.relay-publication { border-left-color: var(--sea); }

/* The catalogue essay carries the argument, so it gets room to breathe. */
.catalogue-essay { margin: 0 auto 2.5rem; }
.catalogue-essay p { font-size: 1.02rem; }
.catalogue-essay p:first-child::first-letter {
  font-family: var(--serif); font-size: 3.1rem; line-height: 0.82;
  float: left; padding: 0.1rem 0.5rem 0 0; color: var(--copper);
}
.count-line { text-align: center; margin-bottom: 1rem; color: var(--muted); }
