/* ==========================================================================
   We Are Live in Five, variant 2: "THE SPRINT SHEET"
   Concept: the site is the sprint agenda document. Ruled paper, time-coded
   sections, spec leaders, stamps, and a sign-off. Set in the brand palette.
   ========================================================================== */

/* ---- Fonts (self-hosted, latin subset) ---- */
@font-face {
  font-family: 'DM Serif Text';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/dmseriftext-400.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Serif Text';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/dmseriftext-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../assets/fonts/jost.woff2') format('woff2');
}
@font-face {
  font-family: 'Almarai';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/almarai-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Almarai';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../assets/fonts/almarai-800.woff2') format('woff2');
}

/* ---- Tokens ---- */
:root {
  --cream: hsl(30, 35%, 93%);
  --cream-dim: hsla(30, 35%, 93%, 0.66);
  --cream-faint: hsla(30, 35%, 93%, 0.15);
  --cream-ghost: hsla(30, 35%, 93%, 0.05);
  --plum: hsl(318, 67%, 14%);
  --plum-deep: hsl(318, 74%, 9%);
  --plum-soft: hsl(318, 56%, 18%);
  --purple: hsl(280, 71%, 68%);
  --coral: hsl(13, 79%, 57%);
  --chartreuse: hsl(64, 85%, 42%);
  --ink: hsl(0, 3%, 6%);
  --scribble: #fb051c;

  --font-serif: 'DM Serif Text', Georgia, serif;
  --font-body: 'Jost', 'Avenir Next', sans-serif;
  --font-meta: 'Almarai', 'Helvetica Neue', sans-serif;

  --measure: 40rem;
  --gutter: clamp(1.25rem, 4.5vw, 6rem);
  --rule: 1px solid var(--cream-faint);
  --dotted: 2px dotted hsla(30, 35%, 93%, 0.32);
  --ease-out: cubic-bezier(0.22, 0.9, 0.3, 1);
}

/* ---- Base: the ruled sheet ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background-color: var(--plum);
  /* ruled-paper lines: one 1px rule tiled every 4.5rem, scales with root font size */
  background-image: linear-gradient(var(--cream-ghost) 1px, transparent 1px);
  background-size: 100% 4.5rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 0.4vw + 1rem, 1.1875rem);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* film grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 95;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.08;
  margin: 0 0 0.5em;
}

h1 i, h2 i, h3 i, .quote i {
  font-style: italic;
  color: var(--coral);
}

p {
  margin: 0 0 1.15em;
  max-width: var(--measure);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
}

::selection {
  background: var(--purple);
  color: var(--plum);
}

:focus-visible {
  outline: 2px solid var(--chartreuse);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 130;
  padding: 0.6rem 1rem;
  background: var(--chartreuse);
  color: var(--ink);
  font-family: var(--font-meta);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

/* available to assistive tech, removed from the visual document */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: 100%;
  padding-inline: var(--gutter);
}

/* elapsed-time bar */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--purple), var(--coral) 70%, var(--chartreuse));
}

/* ---- Meta type helpers ---- */
.meta {
  font-family: var(--font-meta);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* time-code chip */
.code {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-meta);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid var(--cream-faint);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  white-space: nowrap;
}

.code::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: var(--chartreuse);
  border-radius: 1px;
  flex-shrink: 0;
}

/* dotted spec leader row */
.spec {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  max-width: 34rem;
  padding-block: 0.55rem;
}

.spec .k {
  font-family: var(--font-meta);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  flex-shrink: 0;
}

.spec .leader {
  flex: 1;
  border-bottom: var(--dotted);
  transform: translateY(-0.3em);
  min-width: 2rem;
}

.spec .v {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  text-align: right;
}

.spec .v i {
  color: var(--coral);
}

/* ---- Logo ---- */
.logo {
  display: block;
  width: auto;
  height: 4rem;
  margin: -12px 0;
}

.footer-mark .logo {
  display: inline-block;
  height: clamp(4rem, 9vw, 7rem);
}

/* ---- Wordmark ---- */
.wordmark {
  display: inline-block;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.wordmark-live {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
}

.wordmark-five {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.28em;
  color: var(--coral);
  margin-left: 0.08em;
}

/* ---- Five-lines motif ---- */
.five-lines {
  display: flex;
  align-items: flex-end;
  gap: clamp(0.75rem, 2.2vw, 2.2rem);
}

.five-lines span {
  flex: 1;
  height: clamp(0.5rem, 1.3vw, 0.85rem);
  background: var(--purple);
  border-radius: 1px;
}

.five-lines span:last-child {
  background: var(--coral);
  height: clamp(1.3rem, 3.4vw, 2.3rem);
  flex: 1.15;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 110;
  background: hsla(318, 74%, 9%, 0.78);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: var(--rule);
}

.site-header .wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
  padding-block: 1rem;
}

.site-header .wordmark {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
}

.status {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-meta);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream-dim);
  white-space: nowrap;
}

.status::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 1px;
  background: var(--chartreuse);
  animation: blink 2.4s ease infinite;
}

.status i {
  font-style: normal;
  color: var(--coral);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

@media (max-width: 860px) {
  .status {
    display: none;
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.75rem);
}

.site-nav a {
  font-family: var(--font-meta);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  transition: color 0.15s ease;
}

.site-nav a:hover {
  color: var(--purple);
}

.site-nav a[aria-current="page"] {
  color: var(--purple);
}

.nav-cta {
  position: relative;
  padding-bottom: 0.35rem;
}

.nav-cta::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -0.55rem;
  transform: translateX(-50%);
  width: 115%;
  height: 0.9rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 164 14' preserveAspectRatio='none'%3E%3Cpath d='M 2,8.5 c 19.99,-1.37 40,-4.25 80,-5.5 c 40,-1.25 60.8,0 80,0.5' fill='none' stroke='%23BAC610' stroke-width='3' stroke-linecap='square'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

@media (max-width: 480px) {
  .site-header .wrap {
    padding-block: 0.85rem;
  }
  .site-nav {
    gap: 1rem;
  }
  .site-nav a {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }
}

/* ---- Agenda section chrome ---- */
.section {
  padding-block: clamp(4.5rem, 9vw, 8.5rem);
  position: relative;
}

.agenda {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-bottom: clamp(2.75rem, 6vw, 5rem);
}

.agenda-rule {
  flex: 1;
  height: 1px;
  background: var(--cream-faint);
}

.folio {
  font-family: var(--font-meta);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  color: var(--cream-dim);
  white-space: nowrap;
}

.section-title {
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  max-width: 21ch;
  margin-bottom: 0.4em;
}

.lede {
  font-size: clamp(1.125rem, 1.5vw, 1.35rem);
  color: var(--cream-dim);
}

/* ---- Cover (hero) ---- */
.cover {
  min-height: min(calc(100svh - 4.2rem), 56rem);
  display: flex;
  flex-direction: column;
  padding-block: clamp(2rem, 4vw, 3.5rem) clamp(5rem, 8vw, 7rem);
  position: relative;
}

.cover-meta {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.cover-meta .leader {
  flex: 1;
  border-bottom: var(--dotted);
  transform: translateY(-0.3em);
}

.cover-meta .meta {
  color: var(--cream-dim);
}

.cover-meta .no {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--chartreuse);
}

.cover-grid {
  position: relative;
  z-index: 1;
}

.cover h1 {
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
}

.cover h1 .l1,
.cover h1 .l2,
.cover h1 .l3 {
  display: block;
}

.cover h1 .l1 {
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  color: var(--cream);
}

.cover h1 .l2 {
  font-size: clamp(3.4rem, 10.5vw, 10.5rem);
  color: var(--purple);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 9;
}

.cover h1 .l3 {
  font-size: clamp(3.4rem, 10.5vw, 10.5rem);
  font-style: italic;
  color: var(--coral);
  padding-left: clamp(2rem, 14vw, 16rem);
}

/* hand-drawn ring around "five." */
.circled {
  position: relative;
  display: inline-block;
  padding-inline: 0.08em 0.05em;
}

.circled svg {
  position: absolute;
  left: -8%;
  top: -24%;
  width: 121%;
  height: 146%;
  overflow: visible;
  pointer-events: none;
}

/* Dash values sit far above any on-screen path length so the ring is
   hidden before the draw in every browser's dash-space interpretation */
.circled svg path {
  fill: none;
  stroke: var(--chartreuse);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 6000;
  stroke-dashoffset: 6000;
}

.is-visible .circled svg path {
  animation: sketch 2s var(--ease-out) 0.7s forwards;
}

@keyframes sketch {
  to {
    stroke-dashoffset: 0;
  }
}

/* homepage cover: "five." ringed, with a handwritten margin note */
.l3-lead {
  display: inline-block;
}

.fx {
  position: relative;
  display: inline-block;
}

.fx7 .w {
  position: relative;
  z-index: 2;
}

/* hand-drawn ring around the word */
.fx7 .ring {
  position: absolute;
  left: -17%;
  top: -16%;
  width: 126%;
  height: 145%;
  overflow: visible;
  pointer-events: none;
  z-index: 1;
}
.fx7 .ring path {
  fill: none;
  stroke: var(--chartreuse);
  stroke-width: 3.2;
  stroke-linecap: round;
}

/* handwritten note in the empty space above-right of the word, its little
   arrow curving back down-left to "five." */
.fx7 .note {
  position: absolute;
  left: 46%;
  bottom: 90%;
  display: inline-flex;
  align-items: flex-end;
  gap: 0.15em;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.85rem, 1.6vw, 1.4rem);
  line-height: 1.05;
  color: var(--chartreuse);
  white-space: nowrap;
  transform: rotate(-5deg);
  transform-origin: left bottom;
  translate: 133px 30px;
  pointer-events: none;
}
.fx7 .note svg {
  width: 2.6em;
  height: auto;
  flex: none;
  overflow: visible;
  transform: translateY(0.35em);
  translate: 0 8px;
}
.fx7 .note svg path {
  fill: none;
  stroke: var(--chartreuse);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* draw the ring as the hero enters view, then fade the note in after.
   reduced-motion shows both statically. ('sketch' keyframe is shared with
   the About-page ring.) */
@media (prefers-reduced-motion: no-preference) {
  .fx7 .ring path {
    stroke-dasharray: 6000;
    stroke-dashoffset: 6000;
  }
  .is-visible .fx7 .ring path {
    animation: sketch 1.1s var(--ease-out) 0.6s forwards;
  }
  .fx7 .note {
    opacity: 0;
  }
  .is-visible .fx7 .note {
    animation: note-in 0.5s var(--ease-out) 1.6s forwards;
  }
}

@keyframes note-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* about cover: hand-drawn brackets around a word that swaps hours / days */
.bracketed {
  position: relative;
  display: inline-block;
  padding-inline: 0.5em;
}

.bracketed svg {
  position: absolute;
  left: 0;
  top: -3%;
  width: 100%;
  height: 116%;
  overflow: visible;
  pointer-events: none;
}

.bracketed .br {
  fill: none;
  stroke: var(--chartreuse);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* both words stack in one grid cell (container sizes to the wider word),
   centered, so the swap needs no absolute positioning */
.swap {
  display: inline-grid;
  vertical-align: baseline;
}

.swap-w {
  grid-area: 1 / 1;
  justify-self: center;
  font-style: italic;
  font-weight: 400;
  color: var(--coral);
}

/* second word hidden by default so reduced-motion and no-animation
   states show a single, static word */
.swap-w:nth-child(2) {
  opacity: 0;
}

/* the two words cross-fade with a gentle vertical slide, so a word is
   always fully legible (no edge-on flip frames) */
@media (prefers-reduced-motion: no-preference) {
  .swap-w:nth-child(1) { animation: swap-a 5s ease-in-out infinite; }
  .swap-w:nth-child(2) { animation: swap-b 5s ease-in-out infinite; }
  .bracketed .br {
    stroke-dasharray: 1300;
    stroke-dashoffset: 1300;
  }
  .is-visible .bracketed .br {
    animation: box-draw 0.6s var(--ease-out) 0.4s forwards;
  }
}

@keyframes swap-a {
  0%, 42% { opacity: 1; transform: translateY(0); }
  50%, 92% { opacity: 0; transform: translateY(-0.38em); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes swap-b {
  0%, 42% { opacity: 0; transform: translateY(0.38em); }
  50%, 92% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(0.38em); }
}

/* giant marching-ants 5 bleeding off the right */
.cover-five {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: calc(-1 * clamp(2rem, 8vw, 7rem));
  transform: translateY(-56%);
  width: clamp(16rem, 42vw, 44rem);
  height: auto;
  pointer-events: none;
}

.cover-five text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 620px;
  fill: none;
  stroke: hsla(30, 35%, 93%, 0.28);
  stroke-width: 1.6;
  stroke-dasharray: 12 9;
  animation: ants 26s linear infinite;
}

@keyframes ants {
  to {
    stroke-dashoffset: -420;
  }
}

/* about cover: a smaller marching-ants numeral */
.cover-five--sm {
  width: clamp(12rem, 32vw, 33rem);
}

@media (max-width: 700px) {
  .cover-five {
    width: 20rem;
    right: -7rem;
    top: 38%;
  }
  .cover-five--sm {
    width: 15rem;
  }
  .cover-five text {
    stroke: hsla(30, 35%, 93%, 0.16);
  }
}

.cover-specs {
  max-width: 34rem;
  border-top: var(--rule);
  padding-top: 1.2rem;
  margin-bottom: 2.4rem;
}

.cover-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem 2.2rem;
}

.hero-note {
  font-size: 0.95rem;
  color: var(--cream-dim);
  max-width: 21rem;
  margin: 0;
}

.scroll-cue {
  position: absolute;
  bottom: clamp(1rem, 3vw, 2rem);
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-meta);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.scroll-cue::after {
  content: '';
  width: clamp(4rem, 9vw, 8rem);
  height: 1px;
  background: linear-gradient(90deg, var(--cream-dim), transparent);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-meta);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: var(--chartreuse);
  padding: 1.1rem 2rem;
  border-radius: 999px;
  transition: transform 0.18s var(--ease-out), background-color 0.18s ease, box-shadow 0.18s ease;
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.18s var(--ease-out);
}

.btn:hover {
  background: hsl(64, 85%, 48%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -12px hsla(64, 85%, 42%, 0.55);
}

.btn:hover .arrow {
  transform: translateX(0.35rem);
}

.btn:active {
  transform: translateY(0);
}

/* ---- Tilted marquee ---- */
.ticker {
  position: relative;
  z-index: 9;
  background: var(--chartreuse);
  color: var(--ink);
  padding-block: 1.05rem;
  overflow: hidden;
  transform: rotate(-1.6deg) scale(1.03);
  border-block: 2px solid var(--ink);
  /* the negative end margin tucks the next section up behind the tilted
     band so its rotation never exposes the body background at the seam */
  margin-block: clamp(1rem, 3vw, 2.5rem) -1.6vw;
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker 38s linear infinite;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.9vw, 1.5rem);
}

.ticker-track span::after {
  content: '\2733';
  font-size: 0.85em;
  margin-inline: 1.6rem;
  color: var(--plum);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

/* ---- Split ---- */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 6rem);
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  }
  .split > :first-child {
    position: sticky;
    top: 7rem;
    align-self: start;
  }
}

/* ---- Sprint sheets (diptych) ---- */
.diptych {
  position: relative;
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 3rem);
}

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

.sheet {
  position: relative;
  background: linear-gradient(168deg, var(--plum-soft), hsl(318, 60%, 15%) 72%);
  border: 1px solid var(--cream-faint);
  border-radius: 4px;
  padding: clamp(2rem, 4vw, 3.25rem);
  display: flex;
  flex-direction: column;
  rotate: -0.7deg;
  transition: rotate 0.3s var(--ease-out), transform 0.3s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 24px 50px -30px hsla(318, 80%, 4%, 0.8);
}

.sheet--coral {
  rotate: 0.7deg;
}

.sheet:hover {
  rotate: 0deg;
  transform: translateY(-6px);
  border-color: hsla(280, 71%, 68%, 0.45);
}

.sheet--coral:hover {
  border-color: hsla(13, 79%, 57%, 0.5);
}

/* punched-hole detail */
.sheet::before {
  content: '';
  position: absolute;
  top: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--plum);
  box-shadow: inset 0 1px 2px hsla(318, 80%, 4%, 0.9), 0 0 0 1px var(--cream-faint);
}

.sheet-figure {
  font-family: var(--font-serif);
  line-height: 0.85;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 1.4rem;
}

.sheet-figure b {
  font-weight: 400;
  font-size: clamp(4.5rem, 8vw, 7.5rem);
  color: var(--purple);
}

.sheet--coral .sheet-figure b {
  color: var(--coral);
}

.sheet-figure i {
  font-style: italic;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  color: var(--cream-dim);
}

.sheet-label {
  font-family: var(--font-meta);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 0.7rem;
}

.sheet h3 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
}

.sheet > p {
  color: var(--cream-dim);
}

.sheet .specs {
  margin: 1.6rem 0 2.2rem;
  border-top: var(--rule);
  padding-top: 0.8rem;
}

.sheet .spec {
  max-width: none;
}

.sheet .spec .v {
  color: var(--cream);
  font-size: 1rem;
  max-width: 60%;
}

.sheet .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* seal stamp: split-arc text reads upright top and bottom, slight impressed tilt */
.stamp {
  position: absolute;
  top: clamp(1.25rem, 2.5vw, 2rem);
  right: clamp(1.25rem, 2.5vw, 2rem);
  width: clamp(5.5rem, 9vw, 7.5rem);
  height: auto;
  rotate: 7deg;
}

.stamp .ring-text {
  font-family: var(--font-meta);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.stamp .center-fig {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 34px;
}

/* "pick one" medallion between sheets */
.diptych-or {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  background: var(--chartreuse);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  box-shadow: 0 0 0 8px var(--plum);
}

@media (max-width: 899px) {
  .diptych-or {
    display: none;
  }
}

/* ---- Audience case files ---- */
.cases {
  display: grid;
  gap: clamp(2.5rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

@media (min-width: 900px) {
  .cases {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
  }
  .case:nth-child(1) { rotate: -1.2deg; }
  .case:nth-child(2) { rotate: 0.8deg; translate: 0 1.2rem; }
  .case:nth-child(3) { rotate: -0.6deg; }
}

.case {
  position: relative;
  background: linear-gradient(168deg, var(--plum-soft), hsl(318, 60%, 15%) 72%);
  border: 1px solid var(--cream-faint);
  border-radius: 0 6px 6px 6px;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: 0 24px 50px -30px hsla(318, 80%, 4%, 0.8);
  transition: rotate 0.3s var(--ease-out), translate 0.3s var(--ease-out);
}

.case:hover {
  rotate: 0deg;
  translate: 0 0;
}

.case-tab {
  position: absolute;
  bottom: 100%;
  left: -1px;
  display: inline-block;
  background: var(--plum-soft);
  border: 1px solid var(--cream-faint);
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  padding: 0.5rem 1rem 0.4rem;
  font-family: var(--font-meta);
  font-weight: 800;
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--chartreuse);
  white-space: nowrap;
}

.case:nth-child(2) .case-tab {
  left: auto;
  right: -1px;
}

.case h3 {
  font-size: clamp(1.45rem, 2.2vw, 1.8rem);
  max-width: 16ch;
}

.case p {
  color: var(--cream-dim);
  font-size: 1rem;
}

.case-rx {
  margin-top: 1.4rem;
  padding-top: 0.9rem;
  border-top: var(--dotted);
  font-family: var(--font-meta);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
}

.case-rx a {
  color: var(--coral);
  text-underline-offset: 4px;
}

.tick {
  display: block;
  width: 1.6rem;
  height: 0.45rem;
  background: var(--coral);
  border-radius: 1px;
}

.card-index .tick {
  margin-bottom: 1.3rem;
}

/* ---- Statement band (chartreuse note) ---- */
.statement {
  background: var(--chartreuse);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  border-block: 2px solid var(--ink);
}

.statement .asterisk {
  position: absolute;
  top: -0.12em;
  right: -0.06em;
  font-size: clamp(14rem, 32vw, 30rem);
  line-height: 1;
  color: hsla(0, 3%, 6%, 0.07);
  pointer-events: none;
  user-select: none;
  font-family: var(--font-serif);
}

.statement .wrap {
  position: relative;
  z-index: 1;
}

.statement .meta {
  color: hsla(0, 3%, 6%, 0.7);
  display: block;
  margin-bottom: 1.4rem;
}

.statement .section-title {
  max-width: 19ch;
}

.statement .section-title i {
  color: var(--plum);
}

.statement p {
  color: hsla(0, 3%, 6%, 0.85);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
}

/* ---- Two timelines (why the sprint exists) ---- */
.timelines {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.tl-row {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.tl-row .meta {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--cream-dim);
}

.tl-row--sprint .meta {
  color: var(--chartreuse);
}

.tl-row svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.tl-usual-path {
  fill: none;
  stroke: hsla(30, 35%, 93%, 0.45);
  stroke-width: 2.5;
  stroke-dasharray: 8 7;
  stroke-linecap: round;
}

.tl-note {
  font-family: var(--font-meta);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  fill: hsla(30, 35%, 93%, 0.5);
}

.tl-note--end {
  fill: hsla(30, 35%, 93%, 0.65);
}

.tl-note--live {
  fill: var(--chartreuse);
}

.tl-folder {
  fill: none;
  stroke: hsla(30, 35%, 93%, 0.5);
  stroke-width: 2;
  stroke-dasharray: 5 4;
  stroke-linejoin: round;
}

.tl-sprint-line {
  stroke: var(--coral);
  stroke-width: 5;
  stroke-linecap: round;
}

.tl-day {
  fill: var(--plum);
  stroke: var(--coral);
  stroke-width: 3;
}

.tl-live {
  fill: var(--chartreuse);
}

/* ---- Run of show (process agenda) ---- */
.run {
  border-top: var(--rule);
}

.run-row {
  display: grid;
  gap: 0.5rem 2.5rem;
  padding-block: clamp(1.5rem, 3vw, 2.2rem);
  border-bottom: var(--rule);
}

@media (min-width: 860px) {
  .run-row {
    grid-template-columns: 9rem minmax(0, 4fr) minmax(0, 7fr);
    align-items: baseline;
  }
}

.run-row .when {
  font-family: var(--font-meta);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
}

.run-row:last-child .when {
  color: var(--chartreuse);
}

.run-row h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin: 0;
}

.run-row p {
  color: var(--cream-dim);
  margin: 0;
}

/* ---- Receipts (testimonials placeholder) ---- */
.receipts .five-lines {
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

/* ---- Practice ---- */
.practice {
  background: var(--plum-deep);
  border-block: var(--rule);
}

.quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.9rem, 4.4vw, 4rem);
  line-height: 1.16;
  max-width: 22ch;
  margin: 0 0 1.6rem;
}

.attribution {
  font-family: var(--font-meta);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ---- Stats ledger ---- */
.stats {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 860px) {
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat {
  border-top: var(--dotted);
  padding-top: 1.4rem;
}

.stat .stat-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(3.2rem, 6vw, 5rem);
  line-height: 1;
  color: var(--purple);
  display: block;
  margin-bottom: 0.8rem;
  font-variant-numeric: tabular-nums;
}

.stat:nth-child(3) .stat-num {
  color: var(--coral);
}

.stat p {
  color: var(--cream-dim);
  font-size: 1rem;
}

/* ---- Index cards (principles) ---- */
.principles {
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 3rem);
}

@media (min-width: 860px) {
  .principles {
    grid-template-columns: 1fr 1fr;
  }
}

.card-index {
  background: linear-gradient(168deg, var(--plum-soft), hsl(318, 60%, 15%) 72%);
  border: 1px solid var(--cream-faint);
  border-top: 3px double hsla(30, 35%, 93%, 0.4);
  border-radius: 4px;
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  rotate: -0.5deg;
  transition: rotate 0.3s var(--ease-out), transform 0.3s var(--ease-out), border-color 0.3s ease;
  box-shadow: 0 24px 50px -30px hsla(318, 80%, 4%, 0.8);
}

.card-index:nth-child(even) {
  rotate: 0.5deg;
}

.card-index:hover {
  rotate: 0deg;
  transform: translateY(-4px);
  border-color: hsla(280, 71%, 68%, 0.4);
}

.card-index .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.6rem;
  color: transparent;
  -webkit-text-stroke: 1px var(--coral);
  display: block;
  margin-bottom: 1rem;
}

.card-index h3 {
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  max-width: 20ch;
}

.card-index p {
  color: var(--cream-dim);
  font-size: 1rem;
}

/* ---- Team sheets ---- */
.team {
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 3rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 860px) {
  .team {
    grid-template-columns: 1fr 1fr;
  }
}

.person {
  position: relative;
  background: linear-gradient(168deg, var(--plum-soft), hsl(318, 60%, 15%) 72%);
  border: 1px solid var(--cream-faint);
  border-radius: 4px;
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  rotate: -0.5deg;
  transition: rotate 0.3s var(--ease-out), transform 0.3s var(--ease-out), border-color 0.3s ease;
  box-shadow: 0 24px 50px -30px hsla(318, 80%, 4%, 0.8);
}

.person:nth-child(even) {
  rotate: 0.5deg;
}

.person:hover {
  rotate: 0deg;
  transform: translateY(-4px);
  border-color: hsla(13, 79%, 57%, 0.4);
}

.person .avatar {
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--plum);
  background: var(--purple);
  margin-bottom: 1.4rem;
}

.person .avatar--coral {
  background: var(--coral);
}

.person h3 {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.person .role {
  display: block;
  font-family: var(--font-meta);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.1rem;
}

.person p {
  color: var(--cream-dim);
  font-size: 1rem;
}

/* ---- Appendix (FAQ) ---- */
.faq {
  max-width: 52rem;
}

.faq details {
  border-top: var(--dotted);
}

.faq details:last-child {
  border-bottom: var(--dotted);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  padding: 1.7rem 0;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  transition: color 0.15s ease;
}

.faq summary:hover {
  color: var(--purple);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq .q-num {
  font-family: var(--font-meta);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--coral);
  flex-shrink: 0;
}

.faq summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.7rem;
  color: var(--coral);
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-out);
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  padding: 0 0 1.8rem 3.4rem;
  color: var(--cream-dim);
}

@media (max-width: 640px) {
  .faq details p {
    padding-left: 0;
  }
}

/* perforated tear divider: punched holes meeting a rotated asterisk seal */
.tear-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 1.6rem);
  padding-block: clamp(1rem, 3vw, 2rem);
}

.tear-rule::before,
.tear-rule::after {
  content: '';
  flex: 1;
  height: 8px;
  background: radial-gradient(circle, hsla(30, 35%, 93%, 0.34) 1.6px, transparent 2.2px) repeat-x;
  background-size: 17px 8px;
  background-position: center;
}

.tear-star {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--chartreuse);
  rotate: -8deg;
}

/* ---- Sign-off ---- */
.signoff {
  padding-block: clamp(6rem, 12vw, 11rem);
  position: relative;
}

.signoff-grid {
  display: grid;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

@media (min-width: 980px) {
  .signoff-grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
  }
}

.signoff .section-title {
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  max-width: 18ch;
}

.signoff .btn {
  margin-top: 2rem;
}

.signoff .hero-note {
  margin-top: 1.6rem;
}

/* signature block */
.signature {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  max-width: 24rem;
}

.signature svg {
  display: block;
  width: 9rem;
  height: auto;
  margin-bottom: 0.4rem;
}

.signature svg path {
  fill: none;
  stroke: var(--scribble);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
}

.is-visible .signature svg path {
  animation: sketch 0.9s ease 0.5s forwards;
}

.signature .line {
  border-top: var(--dotted);
  padding-top: 0.5rem;
  font-family: var(--font-meta);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* big approval stamp: ring text spins around a fixed upright centre */
.stamp--approve {
  position: static;
  width: clamp(9rem, 16vw, 13rem);
  margin-inline: auto;
  rotate: 0deg;
}

.seal-rotor {
  animation: spin 32s linear infinite;
  transform-origin: 60px 60px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.stamp--approve .ring-text {
  fill: var(--chartreuse);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--plum-deep);
  border-top: var(--rule);
  padding-top: clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
}

.footer-mark {
  display: block;
  text-align: left;
  padding-inline: var(--gutter);
  text-decoration: none;
  font-size: clamp(2.4rem, 9vw, 8.5rem);
  line-height: 1;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.footer-mark .wordmark-live {
  letter-spacing: 0.26em;
}

.site-footer .five-lines {
  padding-inline: var(--gutter);
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 2rem;
  padding: 2rem var(--gutter) 2.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: var(--rule);
  font-size: 0.85rem;
  color: var(--cream-dim);
}

.footer-base a {
  color: var(--cream);
  text-decoration-color: var(--coral);
  text-underline-offset: 3px;
}

.footer-base a:hover {
  color: var(--coral);
}

/* ---- Reveal ---- */
/* .reveal starts hidden and is unhidden by the IntersectionObserver. The
   <noscript> block in each page's <head> neutralises this rule so the whole
   document is legible when script never runs. Keep the two in sync. */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(1.6rem);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    transition-delay: var(--d, 0ms);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   Conversion overhaul additions. Same document language, same tokens:
   booking sheet, receipts, decision guide, method rows, differentiators.
   ========================================================================== */

/* anchor targets clear the sticky header */
[id] {
  scroll-margin-top: 4.5rem;
}

/* inline text links in the document voice */
.text-link {
  color: var(--cream);
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--coral);
  transition: color 0.15s ease;
}

.text-link:hover {
  color: var(--coral);
}

/* small uppercase link (decision guide, run-of-show note) */
.link-cta {
  font-family: var(--font-meta);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration-color: var(--coral);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  transition: color 0.15s ease;
}

.link-cta:hover {
  color: var(--coral);
}

/* credibility line under the cover CTA */
.cover-cred {
  margin-top: 1.6rem;
  color: var(--cream-dim);
}

/* the Live in Five Method: ticked agenda lines */
.method-label {
  display: block;
  color: var(--cream-dim);
  margin: 1.8rem 0 0;
}

.method-list {
  list-style: none;
  margin: 0.8rem 0 1.5rem;
  padding: 0;
  max-width: var(--measure);
  border-top: var(--dotted);
}

.method-list li {
  position: relative;
  border-bottom: var(--dotted);
  padding: 0.7rem 0 0.7rem 2rem;
}

.method-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 1.1rem;
  height: 0.32rem;
  background: var(--coral);
  border-radius: 1px;
}

/* sheet focus options: tick-one boxes on the five-hour, included lines on the five-day */
.focus-label {
  display: block;
  color: var(--cream-dim);
  margin: 1.4rem 0 0.2rem;
}

.sheet .focus {
  border-top: var(--rule);
  padding-top: 0.9rem;
  margin-bottom: 0.6rem;
}

.focus-opt {
  position: relative;
  margin: 0 0 0.7rem;
  padding-left: 1.9rem;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  color: var(--cream);
  max-width: none;
}

.focus-opt::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.24em;
  width: 0.8rem;
  height: 0.8rem;
  border: 2px solid hsla(30, 35%, 93%, 0.4);
  border-radius: 2px;
}

.focus--all .focus-opt::before {
  border: 0;
  border-radius: 1px;
  top: 0.55em;
  width: 1.1rem;
  height: 0.32rem;
  background: var(--coral);
}

.focus-or {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  margin: 0 0 0.8rem 1.9rem;
  border-radius: 50%;
  background: var(--chartreuse);
  color: var(--ink);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  rotate: -8deg;
}

/* spec row whose value runs long: key and leader up top, value below */
.spec--stack {
  flex-wrap: wrap;
}

.spec--stack .v {
  flex-basis: 100%;
  text-align: left;
}

.sheet .specs--top {
  margin-bottom: 0.6rem;
}

.sheet .specs--fit {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}

.sheet .spec--stack .v {
  max-width: none;
  color: var(--cream-dim);
}

/* decision guide under the diptych */
.decision {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: var(--rule);
  padding-top: clamp(1.75rem, 3.5vw, 2.5rem);
}

.decision h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin-bottom: clamp(1.2rem, 2.5vw, 1.8rem);
}

.decision-paths {
  display: grid;
  gap: clamp(1.5rem, 3.5vw, 3rem);
}

@media (min-width: 860px) {
  .decision-paths {
    grid-template-columns: 1fr 1fr;
  }
}

.decision-path {
  border-top: var(--dotted);
  padding-top: 1.1rem;
}

.decision-path p {
  color: var(--cream-dim);
  margin-bottom: 0.9rem;
}

.decision-path strong {
  color: var(--cream);
  font-weight: 600;
}

/* differentiators: compact timelines plus plus-marked agenda lines */
.timelines--compact {
  max-width: 58rem;
  margin-top: 0;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.plus-list {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: grid;
  gap: 0 clamp(2rem, 5vw, 4rem);
  max-width: 58rem;
}

@media (min-width: 860px) {
  .plus-list {
    grid-template-columns: 1fr 1fr;
  }
}

.plus-list li {
  position: relative;
  border-top: var(--dotted);
  padding: 0.75rem 0 0.75rem 2.1rem;
  font-family: var(--font-serif);
  font-size: 1.12rem;
}

.plus-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 0.62rem;
  color: var(--coral);
  font-family: var(--font-body);
  font-size: 1.35rem;
  line-height: 1.2;
}

/* the call sheet: run of show as a production document */
.callsheet {
  position: relative;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(168deg, var(--plum-soft), hsl(318, 60%, 15%) 85%);
  border: 1px solid var(--cream-faint);
  border-top: 3px double hsla(30, 35%, 93%, 0.4);
  border-radius: 4px;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.75rem);
  box-shadow: 0 24px 50px -30px hsla(318, 80%, 4%, 0.8);
}

.cs-head,
.cs-row,
.cs-foot {
  display: grid;
  gap: 0.4rem 2.5rem;
  padding-block: 1.1rem;
}

@media (min-width: 860px) {
  .cs-head,
  .cs-row {
    grid-template-columns: 8rem minmax(0, 4fr) minmax(0, 7fr);
    align-items: baseline;
  }
}

.cs-head {
  font-family: var(--font-meta);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-dim);
  border-bottom: var(--rule);
  padding-block: 0 0.7rem;
}

@media (max-width: 859px) {
  .cs-head {
    display: none;
  }
}

.cs-row {
  border-bottom: var(--dotted);
}

.cs-when {
  font-family: var(--font-meta);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
}

.cs-row h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  margin: 0;
}

.cs-row p {
  color: var(--cream-dim);
  margin: 0;
  font-size: 1rem;
}

.cs-foot {
  grid-template-columns: 8rem 1fr;
  align-items: baseline;
  padding-bottom: 0.2rem;
}

.cs-foot .meta {
  color: var(--cream-dim);
}

.cs-live {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--chartreuse);
}

/* run-of-show scheduling note */
.run-note {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.8rem 1.8rem;
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
}

.run-note .meta {
  color: var(--cream-dim);
}

/* receipts: logged client entries with a dotted total line */
.receipt {
  margin: 0;
  padding: clamp(1.75rem, 3.5vw, 2.5rem) 0;
  border-top: var(--dotted);
}

.receipt-no {
  display: block;
  color: var(--cream-dim);
  margin-bottom: 1.2rem;
}

.receipt blockquote {
  margin: 0;
}

.receipt blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  line-height: 1.45;
  max-width: 56ch;
}

.receipt blockquote i {
  color: var(--coral);
}

.receipt--feature blockquote p {
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.35;
  max-width: 48ch;
}

.receipt figcaption {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-top: 1.4rem;
  max-width: 56ch;
}

.receipt figcaption .leader {
  flex: 1;
  min-width: 2rem;
  border-bottom: var(--dotted);
  transform: translateY(-0.3em);
}

.receipt-grid {
  display: grid;
  gap: 0 clamp(2rem, 5vw, 4rem);
}

@media (min-width: 860px) {
  .receipt-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* about: the client testimonial as a repeat-project ledger */
.t-ledger {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
  margin-top: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 860px) {
  .t-ledger {
    grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  }
}

.t-ledger .fig-wrap {
  border-top: 3px double hsla(30, 35%, 93%, 0.4);
  padding-top: 1rem;
}

.t-ledger .fig {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.85;
  color: var(--coral);
}

.t-ledger .fig-u {
  display: block;
  margin-top: 0.7rem;
  font-family: var(--font-meta);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  max-width: 14rem;
}

.t-ledger figure { margin: 0; }

.t-ledger blockquote { margin: 0; }

.t-ledger blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  line-height: 1.42;
}

.t-ledger blockquote i { color: var(--coral); }

.t-ledger figcaption {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.t-ledger figcaption .leader {
  flex: 1;
  min-width: 2rem;
  border-bottom: var(--dotted);
  transform: translateY(-0.3em);
}

.t-ledger .attribution { flex-shrink: 0; }

/* the booking sheet: the one part of the agenda the visitor fills in */
.book-form {
  display: grid;
  gap: 1.6rem;
  max-width: 34rem;
}

.book-form .hp {
  display: none;
}

.book-form .field {
  display: grid;
  gap: 0.5rem;
}

.book-form .field > label,
.book-form legend {
  font-family: var(--font-meta);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 0;
}

.book-form .optional {
  letter-spacing: 0.14em;
  opacity: 0.75;
}

.book-form input[type='text'],
.book-form input[type='email'],
.book-form select,
.book-form textarea {
  width: 100%;
  min-height: 2.9rem;
  background: transparent;
  border: 0;
  border-bottom: var(--dotted);
  border-radius: 0;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  padding: 0.4rem 0.1rem 0.6rem;
  color-scheme: dark;
}

/* dropdown: match the underlined text fields — drop the native chevron/box
   and draw our own chevron in cream, same underline and serif as the inputs */
.book-form select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 2rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1.6 L7 7.4 L13 1.6' stroke='%23F2EDE4' stroke-opacity='0.7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.15rem center;
  background-size: 0.85rem;
}

.book-form select option {
  color: var(--cream);
  background: var(--plum-deep);
}

.book-form textarea {
  border: 1px solid var(--cream-faint);
  border-radius: 4px;
  background: var(--cream-ghost);
  padding: 0.8rem;
  resize: vertical;
}

.book-form fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.radio-row {
  display: grid;
  gap: 0.35rem;
  padding-top: 0.7rem;
}

.radio {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.35rem 0;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  color: var(--cream);
  cursor: pointer;
}

.radio input {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
  accent-color: var(--chartreuse);
  flex-shrink: 0;
}

button.btn {
  border: 0;
  cursor: pointer;
}

.btn:disabled {
  opacity: 0.65;
  pointer-events: none;
}

.book-note {
  margin-top: 1.6rem;
  font-size: 0.95rem;
  color: var(--cream-dim);
  max-width: 34rem;
}

/* footer quick nav */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 2rem;
  padding-inline: var(--gutter);
}

.footer-nav a {
  font-family: var(--font-meta);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-nav a:hover {
  color: var(--coral);
}

/* note on fit: a chartreuse memo taped onto the sheet, big margin asterisk */
.fit-grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 900px) {
  .fit-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
  }
}

.fit-ast {
  font-family: var(--font-serif);
  font-size: clamp(7rem, 16vw, 14rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 2px var(--chartreuse);
  user-select: none;
  justify-self: center;
}

.memo {
  position: relative;
  max-width: 46rem;
  background: var(--chartreuse);
  color: var(--ink);
  padding: clamp(2.2rem, 5vw, 3.5rem) clamp(1.8rem, 4vw, 3rem);
  rotate: -0.9deg;
  box-shadow: 0 30px 60px -30px hsla(318, 80%, 4%, 0.9);
}

.tape {
  position: absolute;
  width: clamp(6rem, 12vw, 9rem);
  height: 2rem;
  background: hsla(30, 35%, 93%, 0.35);
  box-shadow: 0 2px 6px hsla(318, 80%, 4%, 0.25);
}

.tape--l {
  top: -1rem;
  left: -2.2rem;
  rotate: -38deg;
}

.tape--r {
  top: -0.9rem;
  right: -2.4rem;
  rotate: 34deg;
}

.memo .meta {
  display: block;
  color: hsla(0, 3%, 6%, 0.7);
  margin-bottom: 1.3rem;
}

.memo h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  max-width: 19ch;
}

.memo h2 i {
  color: var(--plum);
}

.memo p {
  color: hsla(0, 3%, 6%, 0.85);
}

/* about: one principle as a dictionary entry */
.defn { max-width: 52rem; }

.defn-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  border-bottom: 3px double hsla(30, 35%, 93%, 0.4);
  padding-bottom: 1rem;
}

.defn-word {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.defn-say {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--cream-dim);
  font-size: 1.3rem;
}

.defn-pos {
  font-family: var(--font-meta);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
}

.defn-main {
  margin: 1.8rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.28;
  max-width: 26ch;
}

.defn-main i { color: var(--coral); }

.defn-eg {
  margin: 1.4rem 0 0;
  padding-left: 1.2rem;
  border-left: 2px solid var(--coral);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--cream-dim);
  max-width: 40ch;
}

.defn-note {
  margin-top: 1.8rem;
  padding-top: 0.9rem;
  border-top: var(--dotted);
  font-family: var(--font-meta);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* about: the range as the studio spectrum */
.spectrum-band {
  display: flex;
  margin-top: clamp(2rem, 4vw, 3rem);
  height: clamp(6.5rem, 11vw, 9rem);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--cream-faint);
  box-shadow: 0 24px 50px -30px hsla(318, 80%, 4%, 0.85);
}

.swatch {
  flex: 1;
  min-width: 0;
  background: var(--c);
  padding: 0.8rem 0.7rem;
  display: flex;
  align-items: flex-start;
  border-right: 1px solid hsla(318, 74%, 9%, 0.5);
  transition: flex 0.35s var(--ease-out);
}

.swatch:last-child { border-right: 0; }

.spectrum-band:hover .swatch { flex: 0.88; }
.spectrum-band .swatch:hover { flex: 1.7; }

.swatch .idx {
  font-family: var(--font-meta);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: hsla(318, 74%, 9%, 0.85);
}

.spectrum-legend {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.6rem 1rem;
  margin-top: 1.1rem;
}

.spectrum-legend span {
  font-family: var(--font-meta);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  color: var(--cream);
  line-height: 1.3;
}

.spectrum-legend b {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: var(--c);
  margin-bottom: 0.35rem;
}

.spectrum-stats {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  margin-top: clamp(2.2rem, 4.5vw, 3.5rem);
}

@media (min-width: 860px) {
  .spectrum-stats { grid-template-columns: repeat(3, 1fr); }
}

.sstat {
  border-top: var(--dotted);
  padding-top: 1.2rem;
}

.sstat-n {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  color: var(--purple);
  margin-bottom: 0.7rem;
  font-variant-numeric: tabular-nums;
}

.sstat:nth-child(2) .sstat-n { color: var(--coral); }
.sstat:nth-child(3) .sstat-n { color: var(--chartreuse); }

.sstat p {
  color: var(--cream-dim);
  font-size: 1rem;
}

@media (max-width: 720px) {
  .spectrum-band { height: 3.5rem; }
  .swatch .idx { display: none; }
  .spectrum-legend { grid-template-columns: repeat(2, 1fr); }
}

/* team headshot slot with initials fallback */
.headshot {
  margin-bottom: 1.4rem;
}

.headshot .avatar {
  margin-bottom: 0;
}

.headshot-img {
  display: block;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  object-fit: cover;
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .ticker {
    transform: none;
    margin-block-end: 0;
  }
  .ticker-track {
    animation: none;
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
  }
  .ticker-track span:nth-child(n+9) {
    display: none;
  }
  .cover-five text,
  .seal-rotor,
  .status::before {
    animation: none;
  }
  .circled svg path,
  .signature svg path {
    stroke-dashoffset: 0;
    animation: none;
  }
}
