/* Kevin Sproule Law Office — "The Table"
   Conceit: a criminal courtroom has two counsel tables. He has only sat at one.
   The aisle (--aisle) runs the full height of the document. Nothing crosses it. */

:root {
  /* Kevin's side: warm. */
  --ink:        #17130F;
  --ink-soft:   #4A4038;
  --paper:      #F4EFE7;
  --paper-deep: #E7DFD2;
  --crimson:    #A90E1B;   /* his #CC0000, deepened to the tie he wears */
  --brick:      #8A4A33;   /* from the courthouse brick in his photo */
  --grass:      #C0A063;   /* dry prairie grass, Red Deer Justice Centre */

  /* The state's side: cold, and colder than his black. */
  --state:      #101116;
  --state-line: #35373F;
  --state-text: #8B8E99;
  --state-dim:  #5C5F6A;

  --aisle: 34%;
  --rule: 1px;

  --serif:  "Libre Caslon Text", Georgia, "Times New Roman", serif;
  --display: "Libre Caslon Display", Georgia, "Times New Roman", serif;
  --mono:  "Courier Prime", "Courier New", Courier, monospace;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --pad: clamp(1.5rem, 4vw, 4.5rem);
}

*, *::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(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* ─────────────────────────────── THE AISLE ─────────────────────────────── */
/* One hairline, fixed, full height. The page is composed around it. */

/* The rule is permanent, and nothing travels down it. This page holds still:
   composure is the product. The only motion on it is the blank filling in. */
.aisle {
  position: fixed;
  top: 0; bottom: 0;
  left: var(--aisle);
  width: var(--rule);
  background: rgba(107,110,120,.42);
  z-index: 40;
  pointer-events: none;
}

/* ──────────────────────────────── NAV ──────────────────────────────────── */
/* One row. Name left. One number right. No stacked lockup, no CTA pair. */

.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: clamp(1.1rem, 2.2vw, 1.9rem) var(--pad);
  gap: 1rem;
}

.nav__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  letter-spacing: -0.01em;
  color: var(--paper);
  text-decoration: none;
  white-space: nowrap;
}

.nav__call {
  font-family: var(--mono);
  font-size: clamp(0.86rem, 1.02vw, 0.99rem);
  letter-spacing: 0.02em;
  color: var(--paper);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(244,239,231,.42);
  transition: border-color .25s ease, color .25s ease;
  white-space: nowrap;
}
.nav__call:hover { color: #fff; border-bottom-color: var(--crimson); }

/* ──────────────────────────────── HERO ─────────────────────────────────── */
/* Full-bleed photograph. The aisle is drawn over it. Media is the ground,
   not a column — so this is not copy-left/photo-right. */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: var(--aisle) 1fr;
  isolation: isolate;
}

.hero__photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/kevin-bench.jpg");
  background-size: cover;
  /* he sits just clear of the aisle, on his own side of it */
  background-position: 34% 48%;
}
.hero__photo::after { /* warm hold so the brick keeps its colour */
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(23,19,15,.58) 0%, rgba(23,19,15,.12) 30%, rgba(23,19,15,.30) 58%, rgba(23,19,15,.86) 100%),
    linear-gradient(90deg, rgba(16,17,22,.5) 0%, rgba(16,17,22,0) 44%);
}

/* LEFT OF THE AISLE — the state. A real Alberta style of cause. */
.state {
  position: relative;
  z-index: 2;
  background: rgba(16,17,22,.86);
  backdrop-filter: blur(2px);
  border-right: var(--rule) solid var(--state-line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* hero content sits a full tier inside the nav's edge */
  padding: clamp(5.5rem, 9vw, 8rem) clamp(1.25rem, 2.4vw, 2.6rem) var(--pad) calc(var(--pad) + clamp(2.75rem, 3vw, 3.5rem));
}

.file {
  font-family: var(--mono);
  color: var(--state-text);
  font-size: clamp(0.7rem, 0.78vw, 0.83rem);
  line-height: 1.85;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 30ch;
}
.file__court { color: var(--state-dim); }
.file hr {
  border: 0;
  border-top: var(--rule) solid var(--state-line);
  margin: 1.15rem 0;
}
.file__party {
  color: #C9CBD4;
  font-size: clamp(0.84rem, 1vw, 1rem);
  letter-spacing: 0.08em;
  display: block;
  margin: .35rem 0;
}
.file__vs {
  color: var(--state-dim);
  text-transform: none;
  letter-spacing: 0.05em;
  font-style: italic;
}

/* the blank ruled line that fills in — the hidden thing */
.file__blank {
  display: block;
  margin: .35rem 0 0;
  min-height: 1.9em;
  border-bottom: var(--rule) solid var(--state-line);
  position: relative;
  overflow: hidden;
}
.file__fill {
  display: inline-block;
  color: var(--crimson);
  font-size: clamp(0.84rem, 1vw, 1rem);
  letter-spacing: 0.06em;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(0.5em);
  transition: opacity .7s ease .2s, transform .7s cubic-bezier(.2,.7,.2,1) .2s;
}
.file__blank.is-filled .file__fill { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .file__fill { opacity: 1; transform: none; transition: none; }
}

/* RIGHT OF THE AISLE — Kevin. He gets the room. */
.hero__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* bottom pad reserves the fixed Fastlane ribbon band; the call never hides */
  padding: clamp(6rem, 10vw, 9rem) var(--pad) clamp(5.5rem, 7vw, 6.8rem) clamp(1.8rem, 3.4vw, 3.6rem);
  color: var(--paper);
}

.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  /* own ramp — the min must survive a phone, not collapse to the floor */
  font-size: clamp(2.55rem, 5.4vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: -0.024em;
  margin: 0 0 clamp(1.1rem, 1.8vw, 1.6rem);
  max-width: 15ch;
  text-wrap: balance;
  text-shadow: 0 2px 40px rgba(16,17,22,.45);
}
.hero h1 em {
  font-style: normal;
  color: #fff;
  display: block;
}
.hero h1 .crown {
  color: #fff;
  border-bottom: 3px solid var(--crimson);
  padding-bottom: .04em;
}

.hero__lede {
  font-size: clamp(1rem, 1.16vw, 1.16rem);
  line-height: 1.62;
  color: rgba(244,239,231,.9);
  max-width: 46ch;
  margin: 0 0 clamp(1.5rem, 2.4vw, 2.2rem);
  text-shadow: 0 1px 24px rgba(16,17,22,.5);
}

.hero__act { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(1rem,1.8vw,1.8rem); }

/* ONE call. Solid. There is no second, ghosted button anywhere on this page. */
.call {
  display: inline-flex;
  align-items: baseline;
  gap: .8rem;
  font-family: var(--serif);
  font-size: clamp(1.28rem, 1.72vw, 1.68rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #FFF6F2;
  background: var(--crimson);
  text-decoration: none;
  padding: .62em 1.15em;
  border: 0;
  box-shadow: 0 1px 0 rgba(255,255,255,.16) inset, 0 10px 30px -12px rgba(169,14,27,.85);
  transition: background-color .2s ease, gap .25s cubic-bezier(.2,.7,.2,1), transform .2s ease;
}
.call:hover { background: #C11220; gap: 1.15rem; transform: translateY(-1px); }
.call:active { transform: none; }
.call__arrow { font-family: var(--sans); font-size: .66em; color: rgba(255,246,242,.82); transform: translateY(-.1em); }

.hero__aside {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(244,239,231,.62);
  margin: 0;
  max-width: 24ch;
  line-height: 1.7;
}

/* ── mobile: the aisle moves to the left edge; the state becomes a header ── */
@media (max-width: 900px) {
  :root { --aisle: 18px; }

  .aisle { left: 0; }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    min-height: 100svh;
  }
  /* on a phone the portrait can't win against the headline — give the
     headline the brick, and give Kevin the full-width plate further down */
  .hero__photo { background-position: 78% 42%; }
  .hero__photo::after {
    background:
      linear-gradient(180deg, rgba(16,17,22,.92) 0%, rgba(23,19,15,.5) 38%, rgba(23,19,15,.55) 60%, rgba(23,19,15,.9) 100%);
  }

  /* Keep the two territories opposed on a phone: the state's column stops
     short of the right edge, so it never owns Kevin's ground. The seam is
     its right border. A stacked banner would lose the whole argument. */
  .state {
    background: rgba(16,17,22,.92);
    margin-right: 17%;
    border-right: var(--rule) solid var(--state-line);
    border-bottom: var(--rule) solid var(--state-line);
    padding: 2.9rem 1rem .6rem calc(var(--pad) + 6px);
    justify-content: flex-end;
  }
  .state::after { /* the seam carries past the panel, down the page */
    content: "";
    position: absolute;
    top: 100%; right: -1px;
    width: var(--rule); height: 42vh;
    background: linear-gradient(180deg, var(--state-line), rgba(53,55,63,0));
  }
  .file { max-width: none; font-size: .66rem; line-height: 1.5; letter-spacing: .03em; }
  .file hr { margin: .5rem 0; }
  .file__court { line-height: 1.5; }
  .file__party { font-size: .78rem; margin: .1rem 0; letter-spacing: .06em; }
  .file__vs { font-size: .66rem; }
  .file__blank { min-height: 1.45em; }
  .file__fill { font-size: .78rem; white-space: normal; }

  .hero__body {
    padding: .7rem var(--pad) 1.2rem calc(var(--pad) + 6px);
    justify-content: center;
  }
  .hero__act { gap: .9rem; }
  /* On a phone the reader is frightened and holding the thing they'd call with:
     headline, then the call, then the explanation. Also keeps the button clear
     of the fixed ribbon band. */
  .hero h1 { order: 1; margin-bottom: .7rem; }
  .hero__act { order: 2; margin-bottom: 1.05rem; }
  .hero__lede { order: 3; margin-bottom: 0; }
  /* the court header is desktop detail; the parties are the point */
  .file__court, .file hr:first-of-type { display: none; }

  /* Reserve the Fastlane ribbon's footprint so it can never sit on the one
     button this page exists to deliver. (Measured: ribbon occupies ~108px.) */
  .hero__body { padding-bottom: 1.2rem; }
}

/* The ribbon is injected by fl.js; balance its title from the host page or it
   orphans its last word on narrow screens. */
.fl-ribbon__title { text-wrap: balance !important; }

@media (max-width: 900px) {
  .hero h1 { max-width: 13ch; }
  .hero__lede { max-width: 40ch; }
  .hero__aside { display: none; }
}

/* The desktop vw term dies on a phone and the clamp MIN wins — so the phone
   gets its own ramp, sized against the lede, never inherited. */
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(2.45rem, 10.9vw, 2.95rem); max-width: 12ch; }
  .hero__lede { font-size: .94rem; line-height: 1.5; max-width: 33ch; }
  .call { font-size: 1.24rem; padding: .58em 1em; }
}

/* ─────────────────────────── BANDS (scored to the aisle) ───────────────── */

.band {
  display: grid;
  grid-template-columns: var(--aisle) 1fr;
  border-top: var(--rule) solid rgba(23,19,15,.13);
}

.band__gutter {
  padding: var(--section-pad) clamp(1.25rem, 2.4vw, 2.6rem) var(--section-pad) var(--pad);
  display: flex;
  justify-content: flex-end;
  text-align: right;
}

.band__body {
  padding: var(--section-pad) var(--pad) var(--section-pad) clamp(1.8rem, 3.4vw, 3.6rem);
  max-width: 62rem;
}

:root { --section-pad: clamp(3.75rem, 8vw, 7.5rem); }

/* his own parentheticals, elevated into the margin */
.marginal {
  font-family: var(--mono);
  font-size: clamp(.72rem, .8vw, .82rem);
  line-height: 1.7;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--brick);
  margin: 0;
  position: sticky;
  top: clamp(5.5rem, 12vh, 9rem);
  align-self: flex-start;
}
.marginal--pale { color: rgba(244,239,231,.5); }

.kicker {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--crimson);
  margin: 0 0 1.5rem;
}

.h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.72rem, 3.05vw, 2.95rem);
  line-height: 1.12;
  letter-spacing: -0.018em;
  margin: 0 0 clamp(1.9rem, 3.2vw, 3rem);
  max-width: 21ch;
  text-wrap: balance;
  color: var(--ink);
}
.h2--tight { max-width: 19ch; }
.h2--big { font-size: clamp(1.95rem, 3.7vw, 3.5rem); max-width: 17ch; }

.prose {
  font-size: clamp(1rem, 1.1vw, 1.11rem);
  line-height: 1.68;
  color: var(--ink-soft);
  max-width: 58ch;
  margin: 0 0 1.35rem;
  text-wrap: pretty;
}
.prose--wide { max-width: 62ch; }
.prose strong { color: var(--ink); font-weight: 500; }

.band__note {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.14vw, 1.14rem);
  line-height: 1.6;
  color: var(--brick);
  max-width: 52ch;
  margin: clamp(2rem, 3.4vw, 3rem) 0 0;
  text-wrap: pretty;
}

/* ── the docket: statute (cold) against plain english (warm) ── */
.docket { list-style: none; margin: 0; padding: 0; border-top: var(--rule) solid rgba(23,19,15,.14); }

.docket__row {
  display: grid;
  grid-template-columns: 13rem 1fr;
  gap: clamp(1.25rem, 2.6vw, 2.75rem);
  padding: clamp(1.4rem, 2.1vw, 1.9rem) 0;
  border-bottom: var(--rule) solid rgba(23,19,15,.14);
  align-items: baseline;
  transition: background-color .3s ease;
}
.docket__row:hover { background: rgba(23,19,15,.032); }

.docket__stat {
  font-family: var(--mono);
  font-size: clamp(.74rem, .82vw, .84rem);
  line-height: 1.6;
  letter-spacing: .045em;
  text-transform: uppercase;
  color: var(--state-dim);
}
.docket__plain {
  font-size: clamp(.99rem, 1.08vw, 1.09rem);
  line-height: 1.62;
  color: var(--ink-soft);
  max-width: 54ch;
  text-wrap: pretty;
}
.cite {
  display: block;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--state-dim);
  margin: .3rem 0 .35rem;
}
.docket__plain strong {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.06em;
  color: var(--ink);
  display: block;
  margin-bottom: .2rem;
  letter-spacing: -.008em;
}

/* ── the seven days ── */
.band--clock { background: var(--paper-deep); }

.clockface {
  font-family: var(--mono);
  color: var(--state-dim);
  text-align: right;
  font-size: clamp(.7rem, .78vw, .8rem);
  line-height: 1.65;
  letter-spacing: .04em;
  position: sticky;
  top: clamp(5.5rem, 12vh, 9rem);
  align-self: flex-start;
  max-width: 17rem;
}
.clockface hr { border: 0; border-top: var(--rule) solid rgba(23,19,15,.2); margin: 1.1rem 0; }
.clockface__n {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(4.4rem, 8.4vw, 8.2rem);
  line-height: .84;
  letter-spacing: -.04em;
  color: var(--crimson);
}
.clockface__u {
  display: block;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--ink-soft);
  margin-top: .5rem;
}
.clockface__line { display: block; text-transform: uppercase; }
.clockface__src { display: block; margin-top: .6rem; opacity: .72; text-transform: none; letter-spacing: .02em; }

/* ── the circuit ── */
.circuit { list-style: none; margin: 0; padding: 0; counter-reset: stop; }
.circuit li {
  counter-increment: stop;
  display: flex;
  align-items: baseline;
  gap: clamp(.9rem, 1.6vw, 1.6rem);
  padding: clamp(.72rem, 1.1vw, .95rem) 0;
  border-bottom: var(--rule) solid rgba(23,19,15,.12);
  position: relative;
}
.circuit li::before {
  content: counter(stop, decimal-leading-zero);
  font-family: var(--mono);
  font-size: .74rem;
  color: var(--state-dim);
  letter-spacing: .06em;
  min-width: 2.1rem;
}
.circuit li:first-child .circuit__town { color: var(--crimson); }
.circuit__town {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.24rem, 1.95vw, 1.85rem);
  letter-spacing: -.015em;
  color: var(--ink);
  flex: 0 0 auto;
}
.circuit__court {
  font-family: var(--mono);
  font-size: clamp(.7rem, .78vw, .79rem);
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--state-dim);
  margin-left: auto;
  text-align: right;
}

/* ── who ── */
.who { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: clamp(1.9rem, 3.6vw, 3.6rem); align-items: start; }
.who__fig { margin: 0; }
.who__fig img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 47% 46%;
  filter: saturate(.94) contrast(1.02);
}
.who__fig figcaption {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--state-dim);
  margin-top: .8rem;
}
.who__text .h2 { max-width: 18ch; }

.record { margin: clamp(1.6rem, 2.6vw, 2.3rem) 0 0; padding: 0; border-top: var(--rule) solid rgba(23,19,15,.14); }
.record > div {
  display: grid;
  grid-template-columns: 3.6rem 1fr;
  gap: 1rem;
  padding: .72rem 0;
  border-bottom: var(--rule) solid rgba(23,19,15,.1);
}
.record dt {
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .05em;
  color: var(--crimson);
  padding-top: .12rem;
}
.record dd {
  margin: 0;
  font-size: .93rem;
  line-height: 1.5;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.pull {
  margin: clamp(1.9rem, 3vw, 2.6rem) 0;
  padding: 0 0 0 clamp(1.1rem, 1.8vw, 1.8rem);
  border-left: 3px solid var(--crimson);
}
.pull p {
  font-family: var(--serif);
  font-size: clamp(1.14rem, 1.52vw, 1.5rem);
  line-height: 1.42;
  color: var(--ink);
  margin: 0 0 .85rem;
  letter-spacing: -.012em;
  text-wrap: pretty;
}
.pull p strong { font-weight: 700; }
.pull cite {
  font-family: var(--mono);
  font-style: normal;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--state-dim);
}

/* ── the call ── */
.band--call { background: var(--state); border-top-color: var(--state-line); }
.band--call .h2 { color: var(--paper); }
.band--call .prose { color: rgba(244,239,231,.72); }
.band--call .prose strong { color: var(--paper); }

.call--ink { margin-top: .8rem; }

.contact {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.6rem, 3.4vw, 4rem) clamp(2.2rem, 5vw, 5.5rem);
  margin-top: clamp(2.4rem, 4vw, 3.6rem);
  padding-top: clamp(2.2rem, 3.4vw, 3rem);
  border-top: var(--rule) solid var(--state-line);
}
.contact__prime { text-decoration: none; display: block; }
.contact__label {
  display: block;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--state-dim);
  margin-bottom: .6rem;
}
.contact__value {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.42rem, 2.1vw, 2.05rem);
  letter-spacing: -.015em;
  color: var(--paper);
  transition: color .22s ease;
}
.contact__value--sm { font-size: clamp(1.08rem, 1.5vw, 1.45rem); }
a.contact__prime:hover .contact__value { color: var(--crimson); }
.contact__prime--static .contact__value { color: rgba(244,239,231,.6); }

/* ── foot ── */
.foot {
  display: grid;
  grid-template-columns: var(--aisle) 1fr;
  background: var(--state);
  border-top: var(--rule) solid var(--state-line);
}
/* the footer mirrors the nav: the name hugs the same edge */
.foot__gutter { padding: clamp(2.4rem, 4vw, 3.4rem) clamp(1.25rem, 2.4vw, 2.6rem) 0 var(--pad); }
.foot__mark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  letter-spacing: -.01em;
  color: rgba(244,239,231,.9);
  margin: 0;
}
.foot__body { padding: clamp(2.4rem, 4vw, 3.4rem) var(--pad) clamp(2.6rem, 4vw, 3.4rem) clamp(1.8rem, 3.4vw, 3.6rem); }
.foot__name {
  font-family: var(--serif);
  font-size: clamp(1.02rem, 1.25vw, 1.22rem);
  color: var(--paper);
  margin: 0 0 .55rem;
  letter-spacing: -.01em;
}
.foot__meta {
  font-family: var(--mono);
  font-size: .73rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--state-dim);
  margin: 0 0 1.5rem;
}
.foot__legal {
  font-size: .84rem;
  line-height: 1.65;
  color: rgba(139,142,153,.78);
  max-width: 58ch;
  margin: 0;
  text-wrap: pretty;
}

/* ─────────────────────────────── MOBILE ────────────────────────────────── */
@media (max-width: 900px) {
  .band, .foot { grid-template-columns: 1fr; }

  .band__gutter {
    padding: clamp(2.4rem, 7vw, 3rem) var(--pad) 0 calc(var(--pad) + 6px);
    justify-content: flex-start;
    text-align: left;
  }
  .band__body {
    padding: clamp(1.5rem, 4vw, 2rem) var(--pad) var(--section-pad) calc(var(--pad) + 6px);
    max-width: none;
  }
  .foot__gutter { padding: clamp(2.4rem, 7vw, 3rem) var(--pad) 0 calc(var(--pad) + 6px); }
  .foot__body { padding: 1.1rem var(--pad) clamp(2.6rem, 7vw, 3.2rem) calc(var(--pad) + 6px); }
  .foot__name { display: none; }

  .marginal, .clockface { position: static; text-align: left; max-width: none; }
  .who__fig img { aspect-ratio: 16 / 10; object-position: 47% 44%; }
  .clockface { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0 1.1rem; }
  .clockface hr { display: none; }
  .clockface__n { font-size: clamp(3.6rem, 22vw, 5.6rem); }
  .clockface__u { margin: 0; }
  .clockface__line { flex: 1 1 100%; margin-top: .7rem; }

  .h2, .h2--tight, .h2--big, .who__text .h2 { max-width: 16ch; }
  .h2 { font-size: clamp(1.62rem, 7.2vw, 2.3rem); }
  .h2--big { font-size: clamp(1.75rem, 8vw, 2.5rem); }

  .docket__row { grid-template-columns: 1fr; gap: .55rem; }
  .docket__plain { max-width: none; }

  .circuit li { flex-wrap: wrap; }
  .circuit__court { margin-left: 0; flex: 1 1 100%; text-align: left; padding-left: 2.1rem; margin-top: .12rem; }

  .who { grid-template-columns: 1fr; }
  .who__fig { position: static; order: -1; }

  .contact { gap: 1.6rem 2.4rem; }
}

