/* =========================================================================
   THE TRIAL GROUND — « rosette de cérémonie » design system, prefix trl-
   Vocabulary: the vintage Fixtures of July ceremony program, in French as a
   signature: rostrum (header bandstand), sheet (content width),
   rosette (poster hero), brace (nav), gangline (breadcrumb), season
   (numbered section), terrace (grandstand card), roll/entry (dated
   feed), slip (article head), field (lead image), peg
   (reading column), venue/draw (time-and-place boxes), stake/steward
   (crafted boxes), chevron (SVG separator), plinth (footer).
   Palette: marine ink + patinated brick red + cream paper, with worn gold
   for ornaments. Editorial serif (Iowan/Palatino), system sans for UI.
   No remote font, no CDN, no loud gradient. Dark mode is automatic.
   ========================================================================= */

:root {
  color-scheme: light dark;

  /* ---- 1. COLOURS · the ceremony grounds -------------------------------- */
  --parch:        #f3ecdc;  /* cream paper, the magazine page            */
  --parch-hollow:  #eae0c8;  /* deeper paper, reserves, alt sections      */
  --parch-lift:    #faf5e8;  /* lightest reserve, tip boxes               */
  --char:         #1f2d3d;  /* marine ink: text                          */
  --char-night:    #16222f;  /* deepest marine: header, poster, footer    */
  --char-dim:   #57626f;  /* captions, meta, deck                      */
  --heather:        #a8402e;  /* patinated brick: links, cards, lettrine */
  --heather-lift:    #d9674a;  /* brick on dark grounds                     */
  --heather-fade: #7e3122;  /* pressed / hover                           */
  --brass:            #94722e;  /* worn gold: ornaments, hairline accents    */
  --rule:         #d5c8a9;  /* hairline on paper                         */
  --rule-dusk:    #33404f;  /* hairline on night                         */

  /* Dark mode: the same grounds after the fireworks. */
  --dusk-ground:   #131b24;
  --dusk-ground-hollow: #1a232e;
  --dusk-text:    #e7e0cd;
  --dusk-soft:     #a49f8d;

  /* ---- 2. TYPE · system stacks, nothing fetched ------------------------- */
  --face-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --face-reading: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --face-caps: system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --display-weight: 600;
  --display-tracks: 0.004em;
  --caps-tracks: 0.22em;   /* cards, kickers, edition line         */

  --reading-size: clamp(1.02rem, 0.98rem + 0.2vw, 1.1rem);
  --reading-leading: 1.66;
  --step-h1: clamp(2.2rem, 1.2rem + 3.5vw, 4rem);
  --step-h2: clamp(1.5rem, 1.12rem + 1.5vw, 2.25rem);
  --step-h3: clamp(1.12rem, 1.02rem + 0.5vw, 1.4rem);
  --step-h4: 1.02rem;

  /* ---- 3. RHYTHM --------------------------------------------------------- */
  --gauge:        62ch;       /* reading column                            */
  --gauge-broad:  1340px;
  --trim:    clamp(1.1rem, 4vw, 3.8rem);
  --gully:     clamp(0.9rem, 2.2vw, 2rem);
  --breath:       clamp(2.4rem, 5.5vw, 5.2rem);
  --slantstep:      clamp(1.2rem, 3vw, 3rem);

  /* ---- 4. DETAILS --------------------------------------------------------- */
  --crimp:       2px;
  --rule-hair:   1px solid var(--rule);
  --trot:     150ms ease;
}

@media (prefers-color-scheme: dark) {
  :root {
    --parch:       var(--dusk-ground);
    --parch-hollow: var(--dusk-ground-hollow);
    --parch-lift:   #202a35;
    --char:        var(--dusk-text);
    --char-dim:  var(--dusk-soft);
    --heather:       var(--heather-lift);
    --heather-fade: #e88a6e;
    --brass:           #c3a058;
    --rule:        #313d4b;
  }
}

/* =========================================================================
   BASE
   ========================================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--parch);
  color: var(--char);
  font-family: var(--face-reading);
  font-size: var(--reading-size);
  line-height: var(--reading-leading);
  overflow-wrap: break-word;
}
img, svg { max-width: 100%; height: auto; display: block; }
svg.trl-mark { display: inline-block; vertical-align: -0.14em; }

h1, h2, h3, h4 {
  font-family: var(--face-display);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracks);
  line-height: 1.14;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: var(--step-h1); }
h2 { font-size: var(--step-h2); }
h3 { font-size: var(--step-h3); }
h4 { font-size: var(--step-h4); }

p, ul, ol { margin: 0 0 1.1em; }
a {
  color: var(--heather);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.17em;
  transition: color var(--trot);
}
a:hover { color: var(--heather-fade); }
:focus-visible {
  outline: 2px solid var(--heather);
  outline-offset: 3px;
  border-radius: 1px;
}
hr { border: 0; border-top: var(--rule-hair); margin: var(--breath) 0; }

::selection { background: var(--heather); color: #f8f2e2; }

/* Hours, routes and figures read in tabular numerals. */
.trl-draw, .trl-venue, .trl-stake, .trl-ground, .trl-brief,
.trl-season__numero, .trl-rosette__edition {
  font-variant-numeric: tabular-nums;
}

/* =========================================================================
   SCAFFOLD
   ========================================================================= */

/* Skip link. Never remove. */
.trl-scratch {
  position: absolute; left: -9999px; top: 0;
  background: var(--char-night); color: var(--parch-lift);
  padding: 0.7rem 1.15rem; z-index: 60;
}
.trl-scratch:focus { left: 0.6rem; top: 0.6rem; }

/* The sheet: useful width of every content zone. */
.trl-sheet {
  width: 100%;
  max-width: var(--gauge-broad);
  margin-inline: auto;
  padding-inline: var(--trim);
}
.trl-vista { display: block; }

/* --- Rostrum (the bandstand header) --------------------------------------- */
.trl-rostrum {
  background: var(--char-night);
  color: var(--parch-lift);
  border-bottom: 1px solid var(--rule-dusk);
  box-shadow: inset 0 -3px 0 var(--brass);
  padding-block: clamp(0.72rem, 1.6vw, 1.1rem);
}
.trl-rostrum__rang {
  display: flex; flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem 1.6rem;
}
.trl-pennon {
  font-family: var(--face-display);
  font-size: clamp(1.32rem, 1.1rem + 0.95vw, 1.92rem);
  font-weight: 600;
  color: var(--parch-lift);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.trl-pennon:hover { color: #fff; }
.trl-pennon span {
  display: block;
  font-family: var(--face-caps);
  font-size: 0.63rem;
  font-weight: 400;
  letter-spacing: var(--caps-tracks);
  text-transform: uppercase;
  color: var(--heather-lift);
  margin-top: 0.34rem;
}
.trl-brace ul {
  display: flex; flex-wrap: wrap;
  gap: 0.4rem 1.3rem;
  list-style: none; margin: 0; padding: 0;
}
.trl-brace a {
  font-family: var(--face-caps);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--dusk-soft);
  text-decoration: none;
  padding-block: 0.25rem;
}
.trl-brace a:hover { color: var(--heather-lift); }
.trl-brace a[aria-current="page"] {
  color: var(--parch-lift);
  box-shadow: inset 0 -2px 0 var(--brass);
}
/* The fold key only exists below 760 px; above it the seasons are a plain row. */
.trl-brace__key {
  display: none;
  font-family: var(--face-caps);
  font-size: 0.78rem;
  letter-spacing: var(--caps-tracks);
  text-transform: uppercase;
  color: var(--parch-lift);
  background: transparent;
  border: 1px solid var(--rule-dusk);
  border-radius: var(--crimp);
  padding: 0.42rem 0.85rem;
  cursor: pointer;
}
.trl-brace__key::after { content: " +"; color: var(--brass); }
.trl-brace[data-open="true"] .trl-brace__key::after { content: " -"; }
.trl-pennon[aria-current="page"] { color: #fff; }

/* --- Gangline (breadcrumb) ------------------------------------------------------ */
.trl-gangline { padding-block: clamp(0.85rem, 1.8vw, 1.3rem); }
.trl-gangline ol {
  display: flex; flex-wrap: wrap;
  gap: 0.35rem 0.6rem;
  list-style: none; margin: 0; padding: 0;
  font-family: var(--face-caps);
  font-size: 0.79rem;
  color: var(--char-dim);
}
.trl-gangline .trl-crumb + .trl-crumb::before {
  content: "›";
  margin-right: 0.55rem;
  color: var(--brass);
}
.trl-gangline a { color: var(--char-dim); }
.trl-gangline a:hover { color: var(--heather); }
.trl-gangline [aria-current="page"] { color: var(--char); font-weight: 600; }

/* =========================================================================
   L'ROSETTE · home hero, a typographic ceremony poster (no photograph)
   ========================================================================= */

.trl-rosette {
  background: var(--char-night);
  color: var(--parch-lift);
  /* Short band on purpose: the poster opens the page, the photograph of the
     anchor entry has to be in the first screen under it (measured at 1456x800
     and 390x844, not guessed). */
  padding-block: clamp(0.9rem, 1.6vw, 1.4rem);
}
.trl-rosette__cadre {
  border: 1px solid var(--brass);
  outline: 1px solid var(--brass);
  outline-offset: 4px;
  margin: 5px;
  padding: clamp(0.9rem, 1.9vw, 1.5rem) clamp(1.1rem, 3.4vw, 2.6rem);
  text-align: center;
}
.trl-rosette__kicker {
  display: flex; align-items: center; justify-content: center;
  gap: 0.9rem;
  font-family: var(--face-caps);
  font-size: 0.74rem;
  letter-spacing: var(--caps-tracks);
  text-transform: uppercase;
  color: var(--heather-lift);
  margin: 0 0 0.65rem;
}
.trl-rosette__kicker .trl-mark { color: var(--brass); }
.trl-rosette__kicker::before,
.trl-rosette__kicker::after {
  content: "";
  flex: 0 1 4.2rem;
  border-top: 1px solid var(--brass);
  opacity: 0.75;
}
.trl-rosette__cadre h1 {
  color: #f8f2e2;
  margin-inline: auto;
  max-width: 24ch;
  /* One size below the page scale: the poster is a band, not a splash screen. */
  font-size: clamp(1.65rem, 0.95rem + 2.2vw, 2.85rem);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}
.trl-rosette__deck {
  font-size: clamp(0.94rem, 0.9rem + 0.3vw, 1.1rem);
  line-height: 1.5;
  max-width: 60ch;
  margin: 0.7rem auto 0;
  color: var(--dusk-soft);
}
/* Double rule + edition line: the poster signature. */
.trl-rosette__edition {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.55rem 1rem;
  max-width: 46rem;
  margin: 0.9rem auto 0;
  padding-top: 0.6rem;
  border-top: 3px double rgba(214, 201, 169, 0.5);
  font-family: var(--face-caps);
  font-size: 0.73rem;
  letter-spacing: var(--caps-tracks);
  text-transform: uppercase;
  color: var(--heather-lift);
}
.trl-rosette__edition .trl-mark { color: var(--brass); }
.trl-rosette__edition em {
  font-style: normal;
  color: var(--dusk-soft);
  letter-spacing: 0.08em;
}

/* =========================================================================
   SEASONS (sections), numbered 01 to 06
   ========================================================================= */

.trl-season { padding-block: clamp(1.9rem, 4.4vw, 3.5rem); }
/* The section that follows the poster opens tighter, so the anchor photograph
   sits inside the first screen. */
.trl-rosette + .trl-season { padding-top: clamp(0.9rem, 1.8vw, 1.5rem); }
.trl-season--hollow { background: var(--parch-hollow); }
.trl-season__tete {
  display: flex; flex-wrap: wrap; align-items: baseline;
  justify-content: space-between;
  gap: 0.4rem 2rem;
  border-bottom: var(--rule-hair);
  padding-bottom: 0.6rem;
  margin-bottom: clamp(1.2rem, 2.6vw, 1.9rem);
}
.trl-season__numero {
  font-family: var(--face-caps);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--heather);
  margin-right: 0.7rem;
}
.trl-season__display { font-size: var(--step-h2); }
.trl-season__note {
  margin: 0;
  color: var(--char-dim);
  font-size: 0.92rem;
  max-width: 44ch;
}

/* Chevron: the SVG ornament between the great sections. */
.trl-chevron {
  display: flex;
  justify-content: center;
  padding-block: clamp(0.4rem, 1.2vw, 1rem);
  color: var(--brass);
}

/* The card: small-caps kicker above titles. */
.trl-card {
  font-family: var(--face-caps);
  font-size: 0.72rem;
  letter-spacing: var(--caps-tracks);
  text-transform: uppercase;
  color: var(--heather);
  margin: 0 0 0.55rem;
}

/* =========================================================================
   LES TERRACES · asymmetric mosaic of grandstand cards
   ========================================================================= */

.trl-terraces {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--gully);
  list-style: none; margin: 0; padding: 0;
}
.trl-terrace { margin: 0; }
.trl-terrace--open   { grid-column: span 6; }
.trl-terrace--broad   { grid-column: span 4; }
.trl-terrace--half  { grid-column: span 3; }
.trl-terrace--wee   { grid-column: span 2; }
.trl-terrace--slant  { transform: translateY(var(--slantstep)); }
.trl-terrace--slant2 { transform: translateY(calc(var(--slantstep) * 0.5)); }
/* trl-terraces--tight retire le 05/09/2026 : la liste d'une page d'annee
   porte desormais la seule classe trl-terraces, celle que le contrat de
   publication cite, et son cadre .trl-rank fournit l'espace. */
/* A year page lists its entries on the full sheet, not inside the reading
   column: three cards of about 420 px, not three columns of 135 px. */
.trl-rank { margin-block: clamp(1.6rem, 3.4vw, 2.6rem) 0; }
.trl-rank__tete {
  border-bottom: var(--rule-hair);
  padding-bottom: 0.55rem;
  margin-bottom: clamp(1.1rem, 2.4vw, 1.7rem);
}

.trl-terrace__cadre {
  position: relative;
  overflow: hidden;
  border-radius: var(--crimp);
  border: var(--rule-hair);
  background: var(--parch-hollow);
}
.trl-terrace__cadre::after {     /* night tint on hover; link stays on the title */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22, 34, 47, 0) 58%, rgba(22, 34, 47, 0.26));
  opacity: 0;
  transition: opacity var(--trot);
}
.trl-terrace:hover .trl-terrace__cadre::after,
.trl-terrace:focus-within .trl-terrace__cadre::after { opacity: 1; }
.trl-terrace__cadre--swath     { aspect-ratio: 21 / 9; }
.trl-terrace__cadre--ridge  { aspect-ratio: 4 / 3; }
.trl-terrace__cadre--pen    { aspect-ratio: 1 / 1; }
.trl-terrace__cadre--gorse { aspect-ratio: 3 / 4; }
.trl-terrace__vue {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}
.trl-terrace:hover .trl-terrace__vue { transform: scale(1.02); }

.trl-terrace__cartel { padding-top: 0.7rem; }
.trl-terrace__display { margin: 0 0 0.3rem; }
.trl-terrace__lien {
  color: var(--char);
  text-decoration: none;
  background-image: linear-gradient(var(--heather), var(--heather));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: 0 96%;
  transition: background-size var(--trot), color var(--trot);
}
.trl-terrace__lien:hover { color: var(--heather); background-size: 100% 2px; }
.trl-terrace__note {
  margin: 0;
  color: var(--char-dim);
  font-size: 0.92rem;
  line-height: 1.5;
}
.trl-terrace__indication {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--face-caps);
  font-size: 0.7rem;
  letter-spacing: var(--caps-tracks);
  text-transform: uppercase;
  color: var(--brass);
  border: 1px solid currentColor;
  border-radius: var(--crimp);
  padding: 0.14rem 0.5rem;
}

/* =========================================================================
   LE ROLL · dated feed on the home
   ========================================================================= */

.trl-roll {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: calc(var(--gully) * 1.5);
}
.trl-entry {
  display: grid;
  /* The thumbnail is a real picture, not a bullet: at least a quarter of the
     row on desktop (170 px of a 560 px column). */
  grid-template-columns: minmax(170px, 30%) 1fr;
  gap: 1.05rem;
  padding-block: 1.1rem;
  border-bottom: var(--rule-hair);
  margin: 0;
}
.trl-roll .trl-entry:nth-last-child(-n+2) { border-bottom: 0; }
.trl-entry__vue {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--crimp);
  border: var(--rule-hair);
}
.trl-ground {
  margin: 0 0 0.3rem;
  font-family: var(--face-caps);
  font-size: 0.72rem;
  letter-spacing: var(--caps-tracks);
  text-transform: uppercase;
  color: var(--heather);
}
.trl-entry h3 { margin: 0 0 0.3rem; }
.trl-entry h3 a { color: var(--char); text-decoration: none; }
.trl-entry h3 a:hover { color: var(--heather); text-decoration: underline; }
.trl-entry p { margin: 0; color: var(--char-dim); font-size: 0.93rem; }

/* =========================================================================
   ARTICLES · slip, field, peg
   ========================================================================= */

.trl-slip {
  padding-block: clamp(0.4rem, 1.5vw, 1.1rem) clamp(1.3rem, 3vw, 2.1rem);
  max-width: 56rem;
}
.trl-slip__chapo {
  font-size: clamp(1.07rem, 1rem + 0.48vw, 1.3rem);
  line-height: 1.56;
  color: var(--char-dim);
  max-width: 58ch;
  margin: 0.9rem 0 0;
}
.trl-brief {
  display: flex; flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
  list-style: none; margin: 1.05rem 0 0; padding: 0;
  font-family: var(--face-caps);
  font-size: 0.79rem;
  color: var(--char-dim);
  border-top: var(--rule-hair);
  padding-top: 0.8rem;
}
.trl-brief a { color: var(--char-dim); }
.trl-brief a:hover { color: var(--heather); }

.trl-field { margin: 0; }
.trl-field__vue {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--crimp);
  border: var(--rule-hair);
}

.trl-peg {
  max-width: var(--gauge);
  padding-block: clamp(1.5rem, 3.4vw, 2.5rem) clamp(1.9rem, 4.4vw, 3.2rem);
}
.trl-peg > * + * { margin-top: 0.9em; }
.trl-peg h2 {
  margin-top: 1.75em;
  padding-bottom: 0.26rem;
  border-bottom: var(--rule-hair);
}
.trl-peg h3 { margin-top: 1.35em; }
.trl-peg ul, .trl-peg ol { padding-left: 1.4rem; }
.trl-peg li + li { margin-top: 0.45em; }
.trl-peg strong { color: var(--char); font-weight: 700; }
@media (prefers-color-scheme: dark) {
  .trl-peg strong { color: #fff; }
}

/* Lettrine: the opening letter of a piece, as on a ceremony program.
   One per page: the closing block of a year page carries trl-peg--plain. */
.trl-peg--plain > p:first-of-type::first-letter { all: unset; }
.trl-peg:not(.trl-peg--plain) > p:first-of-type::first-letter {
  font-family: var(--face-display);
  font-weight: 600;
  float: left;
  font-size: 3.05em;
  line-height: 0.82;
  padding-right: 0.12em;
  padding-top: 0.06em;
  color: var(--heather);
}

/* Quote: motto. */
.trl-motto {
  margin: 1.6em 0;
  padding: 0.2rem 0 0.2rem 1.4rem;
  border-left: 3px solid var(--brass);
  font-size: 1.14em;
  font-style: italic;
  color: var(--char);
}

/* Venue: the time-and-place box, paper with a gold rule. */
.trl-venue {
  margin: 1.7em 0;
  background: var(--parch-lift);
  border: var(--rule-hair);
  border-left: 3px solid var(--brass);
  border-radius: var(--crimp);
  padding: 1rem 1.25rem;
  font-size: 0.96em;
}
.trl-venue h3, .trl-venue h4 {
  font-family: var(--face-caps);
  font-size: 0.76rem;
  letter-spacing: var(--caps-tracks);
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 0.55rem;
}
.trl-venue ul, .trl-venue p { margin: 0; }
.trl-venue li + li { margin-top: 0.4em; }

/* Draw: the schedule table, program-of-the-day style. */
.trl-draw {
  overflow-x: auto;
  margin: 1.5em 0;
  border: var(--rule-hair);
  border-radius: var(--crimp);
}
.trl-draw table {
  border-collapse: collapse;
  width: 100%;
  /* 32rem is wider than a 390 px screen on purpose: the frame above scrolls,
     the columns keep their width and nothing is squeezed into two letters. */
  min-width: 32rem;
  font-size: 0.93em;
}
/* Safety net: a table that somehow escaped the frame still has to be legible. */
.trl-peg > table { border-collapse: collapse; width: 100%; font-size: 0.93em; }
.trl-peg > table th, .trl-peg > table td {
  text-align: left; padding: 0.55rem 0.85rem;
  border-bottom: 1px solid var(--rule); vertical-align: top;
}
.trl-draw th, .trl-draw td {
  text-align: left;
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.trl-draw caption {
  caption-side: top;
  text-align: left;
  padding: 0.6rem 0.85rem;
  font-family: var(--face-caps);
  font-size: 0.75rem;
  letter-spacing: var(--caps-tracks);
  text-transform: uppercase;
  color: var(--heather);
  border-bottom: 1px solid var(--rule);
}
.trl-draw thead th {
  background: var(--char-night);
  color: var(--parch-lift);
  font-family: var(--face-caps);
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
}
.trl-draw tr:last-child td { border-bottom: 0; }
.trl-draw tbody tr:nth-child(even) { background: var(--parch-lift); }
.trl-draw td:first-child { white-space: nowrap; font-weight: 600; }

/* Stake: the notice card, ink ground, bright brick heading. */
.trl-stake {
  margin: 1.7em 0;
  background: var(--char-night);
  color: var(--dusk-text);
  border-radius: var(--crimp);
  padding: 1.15rem 1.3rem 1.25rem;
  border: 1px solid var(--rule-dusk);
}
.trl-stake h3, .trl-stake h4 {
  font-family: var(--face-caps);
  font-size: 0.77rem;
  letter-spacing: var(--caps-tracks);
  text-transform: uppercase;
  color: var(--heather-lift);
  margin: 0 0 0.7rem;
}
.trl-stake p, .trl-stake ul { margin: 0; font-size: 0.96rem; }
.trl-stake strong { color: #fff; font-variant-numeric: tabular-nums; }
.trl-stake p + p, .trl-stake ul { margin-top: 0.5rem; }
.trl-stake a { color: var(--heather-lift); }

/* Steward: the light tip card with the brick rule. */
.trl-steward {
  margin: 1.7em 0;
  background: var(--parch-lift);
  border: var(--rule-hair);
  border-left: 3px solid var(--heather);
  border-radius: var(--crimp);
  padding: 1rem 1.25rem;
  font-size: 0.96em;
}
.trl-steward h3, .trl-steward h4 {
  font-family: var(--face-caps);
  font-size: 0.76rem;
  letter-spacing: var(--caps-tracks);
  text-transform: uppercase;
  color: var(--heather);
  margin: 0 0 0.5rem;
}
.trl-steward p, .trl-steward ul { margin: 0; }
.trl-steward strong { color: var(--heather); }

/* Read next. */
.trl-onward {
  margin-top: 2.3em;
  padding-top: 1.15rem;
  border-top: 3px double var(--rule);
}
.trl-onward h2 {
  font-size: 1.18rem;
  border-bottom: 0;
  margin: 0 0 0.55rem;
}
.trl-onward ul { list-style: none; margin: 0; padding: 0; }
.trl-onward li { padding: 0.3rem 0; }
.trl-onward li::before {
  content: "·";
  color: var(--heather);
  margin-right: 0.55rem;
  font-weight: 700;
}

/* =========================================================================
   LE PLINTH (footer)
   ========================================================================= */

.trl-plinth {
  margin-top: var(--breath);
  background: var(--char-night);
  color: var(--dusk-text);
  box-shadow: inset 0 3px 0 var(--brass);
}
.trl-plinth__rang {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--gully) * 1.5);
  padding-block: clamp(1.9rem, 4.4vw, 3rem);
}
.trl-plinth h2 {
  font-family: var(--face-caps);
  font-size: 0.77rem;
  letter-spacing: var(--caps-tracks);
  text-transform: uppercase;
  color: var(--heather-lift);
  margin-bottom: 0.7rem;
}
.trl-plinth ul { list-style: none; margin: 0; padding: 0; }
.trl-plinth li { padding-block: 0.22rem; }
.trl-plinth a {
  font-family: var(--face-caps);
  font-size: 0.87rem;
  color: var(--dusk-soft);
  text-decoration: none;
}
.trl-plinth a:hover { color: var(--heather-lift); text-decoration: underline; }
.trl-plinth__bas {
  border-top: 1px solid var(--rule-dusk);
  padding-block: 1.05rem;
  font-family: var(--face-caps);
  font-size: 0.78rem;
  color: var(--dusk-soft);
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.55rem 0.9rem;
}
.trl-plinth__bas .trl-mark { color: var(--brass); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

@media (max-width: 1080px) {
  .trl-terrace--broad  { grid-column: span 6; }
  .trl-terrace--half { grid-column: span 3; }
  .trl-terrace--wee  { grid-column: span 3; }
  .trl-terrace--slant, .trl-terrace--slant2 { transform: none; }
}

@media (max-width: 760px) {
  .trl-brace { flex: 0 0 auto; }
  .trl-brace__key { display: inline-block; }
  .trl-brace ul { display: none; width: 100%; }
  .trl-brace[data-open="true"] ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0.6rem;
    border-top: 1px solid var(--rule-dusk);
  }
  .trl-brace[data-open="true"] li { border-bottom: 1px solid var(--rule-dusk); }
  .trl-brace[data-open="true"] a { display: block; padding-block: 0.62rem; }
  .trl-terraces { grid-template-columns: repeat(2, 1fr); }
  .trl-terrace--broad, .trl-terrace--half, .trl-terrace--wee { grid-column: span 2; }
  .trl-roll { grid-template-columns: 1fr; }
  .trl-entry { grid-template-columns: 118px 1fr; }
  .trl-plinth__rang { grid-template-columns: 1fr; }
  .trl-season__tete { flex-direction: column; gap: 0.3rem; }
  .trl-peg:not(.trl-peg--plain) > p:first-of-type::first-letter {
    font-size: 2.7em;
    float: none;
    padding: 0;
    color: inherit;
    font-family: inherit;
  }
}

@media (max-width: 480px) {
  .trl-entry { grid-template-columns: 108px 1fr; gap: 0.85rem; }
}

/* Motion courtesy. */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
  .trl-terrace:hover .trl-terrace__vue { transform: none; }
}

/* Print: a ceremony program on paper. */
@media print {
  .trl-rostrum, .trl-plinth, .trl-scratch, .trl-gangline, .trl-chevron { display: none; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .trl-peg { max-width: none; }
  .trl-rosette { background: #fff; color: #000; }
  .trl-rosette__cadre h1, .trl-rosette__deck { color: #000; }
  .trl-stake { background: #fff; color: #000; border: 1pt solid #000; }
}
