/* Keelworth & Co. — chalk paper / charcoal ink / marker red. Fresh design for this brief. */

:root {
  --paper: #F8F5EF;
  --paper-warm: #F3EEE4;
  --stone: #ECE6DA;
  --ink: #23272E;
  --ink-soft: #3A4049;
  --ink-2: #2C313A;
  --red: #C4342B;
  --red-deep: #A32A22;
  --slate: #31445A;
  --note: #F2D06B;
  --line: rgba(35, 39, 46, 0.14);
  --line-soft: rgba(35, 39, 46, 0.08);
  --serif: 'Lora', Georgia, serif;
  --sans: 'Work Sans', system-ui, sans-serif;
  --mono: 'DM Mono', ui-monospace, monospace;
  --wrap: 1180px;
  --gut: clamp(20px, 4vw, 48px);
  --r: 10px;
  --shadow: 0 14px 40px rgba(35, 39, 46, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { overflow-x: clip; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red-deep); }
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.15; margin: 0 0 0.5em; color: var(--ink); font-weight: 600; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
.sr-only { position: absolute; width: 1px; height: 1px; clip-path: inset(50%); overflow: hidden; white-space: nowrap; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: 10px 16px; z-index: 300; }
.skip-link:focus { left: 8px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }

/* planning-wall graph grid on paper bands */
.grid-bg,
.accr-strip, .diary-band, .method-band, .prog-band, .ledger-band, .faq-band, .ins-band, .team-band, .story-band {
  position: relative;
}
.grid-bg::before,
.accr-strip::before, .diary-band::before, .method-band::before, .prog-band::before, .ledger-band::before, .faq-band::before, .ins-band::before, .team-band::before, .story-band::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(35,39,46,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35,39,46,0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.7), rgba(0,0,0,.35) 40%, rgba(0,0,0,.7));
}
.grid-bg > *, .accr-strip > *, .diary-band > *, .method-band > *, .prog-band > *, .ledger-band > *, .faq-band > *, .ins-band > *, .team-band > *, .story-band > * { position: relative; }

/* kicker: mono index tab with red tick */
.kicker {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.kicker::before { content: ''; width: 26px; height: 3px; background: var(--red); border-radius: 2px; transform: rotate(-1.2deg); }
.kicker-light { color: rgba(255,255,255,0.82); }
.kicker-red { color: var(--note); }
.kicker-red::before { background: var(--note); }

/* marker underline device */
.mark-u { position: relative; white-space: nowrap; }
.mark-u::after {
  content: ''; position: absolute; left: -2%; right: -2%; bottom: 0.02em; height: 0.16em;
  background: var(--red); opacity: 0.85; border-radius: 2px; transform: rotate(-0.6deg); z-index: -1;
}

/* buttons */
.btn {
  display: inline-block; font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 8px; text-decoration: none; border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-red, a.btn-red { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(196,52,43,0.28); }
.btn-red:hover { background: var(--red-deep); color: #fff; }
.btn-ink, a.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--ink-2); color: #fff; }
.btn-ghost, a.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-ghost-light, a.btn-ghost-light { border-color: rgba(255,255,255,0.75); color: #fff; background: transparent; }
.btn-ghost-light:hover { background: #fff; color: var(--ink); }

/* ---------- topbar + header ---------- */
.topbar { background: var(--ink); color: rgba(255,255,255,0.85); font-size: 0.82rem; }
.topbar-in { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-block: 7px; white-space: nowrap; overflow: hidden; }
.topbar-note { overflow: hidden; text-overflow: ellipsis; font-family: var(--mono); letter-spacing: 0.04em; }
.topbar a.topbar-tel { color: #fff; text-decoration: none; font-weight: 600; flex: 0 0 auto; }
.topbar a.topbar-tel:hover { color: var(--note); }

.site-head { position: sticky; top: 0; z-index: 120; background: rgba(248,245,239,0.96); border-bottom: 1px solid var(--line-soft); }
.head-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 14px; }
.logo { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.logo svg { width: 40px; height: 40px; }
.logo-plate { fill: var(--ink); }
.logo-word { font-family: var(--serif); font-weight: 600; font-size: 1.3rem; letter-spacing: -0.01em; }
.logo-word b { color: var(--red); font-weight: 600; }
.site-nav { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 26px); }
.site-nav a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: 0.98rem; padding: 6px 2px; border-bottom: 2px solid transparent; white-space: nowrap; }
.site-nav a:hover { border-bottom-color: var(--line); }
.site-nav a[aria-current="page"] { border-bottom-color: var(--red); }
.site-nav a.nav-cta { background: var(--red); color: #fff; padding: 11px 20px; border-radius: 8px; border-bottom: none; font-weight: 600; }
.site-nav a.nav-cta:hover { background: var(--red-deep); }
.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; color: #fff; }
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 40%; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(24,27,33,0.9) 0%, rgba(24,27,33,0.72) 38%, rgba(24,27,33,0.28) 68%, rgba(24,27,33,0.42) 100%);
}
.hero-in { position: relative; padding-block: clamp(84px, 11vw, 150px) clamp(150px, 16vw, 200px); }
.hero h1 { color: #fff; max-width: 15ch; }
.hero-lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 52ch; color: rgba(255,255,255,0.92); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 8px 26px; margin-top: 34px; font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

/* sticky-note pain row docked over hero base */
.note-row-wrap { position: relative; margin-top: calc(-1 * clamp(96px, 11vw, 128px)); z-index: 5; }
.note-row-label { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; opacity: 0.9; margin: 0 0 12px; }
.note-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(10px, 1.6vw, 22px); align-items: stretch; }
.note-card {
  display: flex; flex-direction: column; gap: 8px; min-height: 132px;
  background: var(--note); color: var(--ink); text-decoration: none;
  padding: 18px 18px 14px; border-radius: 3px;
  box-shadow: 0 12px 22px rgba(24,27,33,0.28), 0 2px 4px rgba(24,27,33,0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.note-card::before { content: ''; width: 34px; height: 10px; background: rgba(255,255,255,0.55); margin: -24px auto 6px; transform: rotate(-2deg); box-shadow: 0 1px 2px rgba(0,0,0,0.08); }
.note-card:nth-child(1) { transform: rotate(-1.6deg); background: #F2D06B; }
.note-card:nth-child(2) { transform: rotate(1.1deg); background: #F5DC8C; }
.note-card:nth-child(3) { transform: rotate(-0.7deg); background: #EFC95F; }
.note-card:nth-child(4) { transform: rotate(1.7deg); background: #F4D67B; }
.note-card:nth-child(5) { transform: rotate(-1.2deg); background: #F5DC8C; }
.note-card:nth-child(6) { transform: rotate(0.9deg); background: #EFC95F; }
.note-card:hover { transform: rotate(0deg) translateY(-6px); box-shadow: 0 20px 34px rgba(24,27,33,0.32); }
.note-q { font-family: var(--serif); font-style: italic; font-size: 1.08rem; line-height: 1.35; font-weight: 500; }
.note-cta { margin-top: auto; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red-deep); }

/* ---------- accreditation strip ---------- */
.accr-strip { background: var(--stone); border-bottom: 1px solid var(--line-soft); }
.accr-in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 32px; padding-block: 30px 26px; }
.accr-stats { display: flex; flex-wrap: wrap; gap: 16px clamp(24px, 3.5vw, 52px); }
.stat b { display: block; font-family: var(--serif); font-size: clamp(1.5rem, 2.4vw, 2rem); color: var(--ink); line-height: 1; }
.stat span { font-size: 0.82rem; color: var(--ink-soft); }
.accr-badges { margin: 0; font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.06em; color: var(--ink-soft); }
.accr-badges b { color: var(--ink); font-weight: 500; }

/* ---------- generic band paddings ---------- */
.band { padding-block: clamp(64px, 8vw, 108px); }
.band-tint { background: var(--paper-warm); }
.band-stone { background: var(--stone); }

/* layout utilities (replace inline grids so media queries can collapse them) */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(14px, 2vw, 24px); }
.split-2 { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr); gap: clamp(24px, 4vw, 60px); align-items: start; }
.split-2.split-mid { align-items: center; }
.team-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.8vw, 22px); }
.note-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 920px) {
  .split-2 { grid-template-columns: 1fr; }
  .note-row-3 { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 700px) {
  .grid-2 { grid-template-columns: 1fr; }
  .team-row-3 { grid-template-columns: repeat(2, 1fr); }
  .note-row-3 { grid-template-columns: 1fr; }
}

/* ---------- week diary device ---------- */
.diary-band { background: var(--paper); padding-block: clamp(64px, 8vw, 108px); }
.diary-head { max-width: 62ch; margin-bottom: 40px; }
.diary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 3vw, 36px); align-items: start; position: relative; }
.diary-link {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%) rotate(-3deg); z-index: 3;
  background: var(--red); color: #fff; font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.08em;
  padding: 8px 14px; border-radius: 4px; box-shadow: 0 10px 22px rgba(163,42,34,0.35); white-space: nowrap;
}
@media (max-width: 920px) { .diary-link { display: none; } }
.diary-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow); overflow: hidden; }
.diary-card h3 { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; font-family: var(--mono); font-weight: 500; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 18px; margin: 0; border-bottom: 1px solid var(--line-soft); }
.diary-before h3 { background: rgba(196,52,43,0.07); color: var(--red-deep); }
.diary-after h3 { background: rgba(49,68,90,0.07); color: var(--slate); }
.diary-tag { font-size: 0.7rem; opacity: 0.75; }
.diary-body { padding: 16px 18px 18px; }
.diary-days { display: grid; grid-template-columns: repeat(5, 1fr); gap: 7px; }
.diary-day { display: flex; flex-direction: column; gap: 4px; }
.diary-day em { font-style: normal; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.08em; color: var(--ink-soft); text-align: center; margin-bottom: 2px; }
.blk { border-radius: 3px; min-height: 13px; }
.blk-fire { background: #E4A19C; }
.blk-admin { background: #D8D2C6; }
.blk-ops { background: #B9C4CF; }
.blk-own { background: var(--slate); }
.blk-off { background: transparent; border: 1px dashed var(--line); }
.blk-tall { min-height: 30px; }
.blk-mid { min-height: 21px; }
.diary-note { margin: 14px 0 0; font-size: 0.85rem; color: var(--ink-soft); }
.diary-note b { color: var(--red-deep); }
.diary-legend { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 22px; font-size: 0.82rem; color: var(--ink-soft); }
.diary-legend span { display: inline-flex; align-items: center; gap: 7px; }
.diary-legend i { width: 13px; height: 13px; border-radius: 3px; display: inline-block; }
.diary-fine { font-size: 0.8rem; color: var(--ink-soft); margin-top: 10px; }

/* ---------- ODI diagnostic ---------- */
.odi-band { background: var(--ink); color: #fff; position: relative; overflow: hidden; padding-block: clamp(64px, 8vw, 110px); }
.odi-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
}
.odi-band > * { position: relative; }
.odi-band h2, .odi-band h3 { color: #fff; }
.odi-head { max-width: 64ch; margin-bottom: 38px; }
.odi-head p { color: rgba(255,255,255,0.85); }
.odi-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(24px, 4vw, 56px); align-items: start; }
.odi-q-group { margin-bottom: 26px; }
.odi-q-group h3 { font-family: var(--mono); font-weight: 500; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--note); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.odi-q-group h3 .odi-dim-score { margin-left: auto; color: rgba(255,255,255,0.6); }
.odi-q { border-bottom: 1px solid rgba(255,255,255,0.12); padding: 12px 0; }
.odi-q p { margin: 0 0 9px; font-size: 0.95rem; color: rgba(255,255,255,0.92); }
.odi-opts { display: flex; gap: 8px; flex-wrap: wrap; }
.odi-opt {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.05em;
  padding: 7px 13px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.32);
  background: transparent; color: rgba(255,255,255,0.85); cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}
.odi-opt:hover { border-color: #fff; color: #fff; }
.odi-opt[aria-pressed="true"] { background: var(--red); border-color: var(--red); color: #fff; }
.odi-result { position: sticky; top: 96px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--r); padding: clamp(18px, 2.6vw, 30px); }
.odi-map { width: 100%; height: auto; display: block; }
.odi-map text { font-family: var(--mono); }
.odi-score-line { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.odi-score-line b { font-family: var(--serif); font-size: 2.6rem; line-height: 1; color: #fff; }
.odi-stage { font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--note); }
.odi-blurb { font-size: 0.92rem; color: rgba(255,255,255,0.85); }
.odi-moves { margin: 14px 0 0; padding: 0 0 0 18px; font-size: 0.92rem; color: rgba(255,255,255,0.88); }
.odi-moves li { margin-bottom: 7px; }
.odi-moves-h { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin: 18px 0 6px; }
.odi-actions { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; }
.odi-hint { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-top: 12px; }
.odi-progress { font-family: var(--mono); font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-bottom: 8px; }

/* ---------- method (numbered narrative) ---------- */
.method-band { background: var(--paper); padding-block: clamp(64px, 8vw, 108px); }
.method-head { max-width: 62ch; margin-bottom: 46px; }
.method-phase { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: clamp(22px, 4vw, 60px); align-items: center; padding-block: clamp(28px, 4vw, 46px); border-top: 1px solid var(--line); }
.method-phase:nth-child(even) .m-media { order: -1; }
.m-num { font-family: var(--mono); font-size: clamp(2.6rem, 5vw, 4rem); color: rgba(35,39,46,0.14); line-height: 1; display: block; margin-bottom: 6px; }
.m-window { font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red-deep); }
.m-copy h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); margin-top: 6px; }
.m-copy .m-sum { font-weight: 600; color: var(--ink); }
.m-artifact { display: flex; gap: 12px; margin-top: 16px; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: 6px; padding: 13px 16px; box-shadow: 0 6px 16px rgba(35,39,46,0.06); }
.m-artifact b { font-family: var(--mono); font-weight: 500; font-size: 0.85rem; display: block; }
.m-artifact span { font-size: 0.85rem; color: var(--ink-soft); }
.m-media img { border-radius: var(--r); box-shadow: var(--shadow); width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

/* ---------- programmes (editorial feature rows) ---------- */
.prog-band { background: var(--stone); padding-block: clamp(64px, 8vw, 108px); }
.prog-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 42px; }
.prog-head > div { max-width: 62ch; }
.prog-row { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(20px, 3.4vw, 48px); background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); margin-bottom: clamp(20px, 3vw, 32px); }
.prog-row:nth-child(even) { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
.prog-row:nth-child(even) .prog-media { order: 2; }
.prog-media { position: relative; min-height: 260px; }
.prog-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.prog-copy { padding: clamp(22px, 3.4vw, 40px); display: flex; flex-direction: column; }
.prog-kicker { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--red-deep); margin: 0 0 8px; }
.prog-price { display: flex; align-items: baseline; gap: 8px; margin: 8px 0 12px; }
.prog-price b { font-family: var(--serif); font-size: 1.7rem; color: var(--ink); }
.prog-price span { font-size: 0.85rem; color: var(--ink-soft); }
.prog-includes { margin: 0 0 16px; padding-left: 18px; color: var(--ink-soft); font-size: 0.95rem; }
.prog-includes li { margin-bottom: 5px; }
.prog-foot { margin-top: auto; display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; }
.prog-cad { font-family: var(--mono); font-size: 0.76rem; color: var(--ink-soft); }
.tlink { font-weight: 600; color: var(--red-deep); text-decoration: none; border-bottom: 2px solid rgba(196,52,43,0.35); }
.tlink:hover { border-bottom-color: var(--red); }

/* ---------- interstitial pull-quote ---------- */
.inter-band { position: relative; color: #fff; }
.inter-band img.inter-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.inter-band::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(24,27,33,0.55), rgba(24,27,33,0.72)); }
.inter-in { position: relative; z-index: 2; padding-block: clamp(84px, 11vw, 150px); max-width: 880px; }
.inter-in blockquote { margin: 0; font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 2.8vw, 2.1rem); line-height: 1.4; }
.inter-in figcaption { margin-top: 18px; font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.8); }

/* ---------- results ledger ---------- */
.ledger-band { background: var(--paper); padding-block: clamp(64px, 8vw, 108px); }
.ledger-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 34px; }
.ledger-head > div { max-width: 60ch; }
.ledger { border-top: 2px solid var(--ink); }
.ledger-row { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.7fr) minmax(0, 1.35fr) auto; gap: 14px clamp(16px, 2.4vw, 34px); align-items: center; padding: 20px 4px; border-bottom: 1px solid var(--line); text-decoration: none; color: var(--ink); transition: background 0.14s ease; }
.ledger-row:hover { background: rgba(196,52,43,0.045); }
.lg-client b { font-family: var(--serif); font-size: 1.15rem; display: block; }
.lg-client span { font-size: 0.83rem; color: var(--ink-soft); }
.lg-move { font-family: var(--mono); font-size: 0.88rem; line-height: 1.5; min-width: 0; }
.lg-move .lg-arrow { color: var(--red); font-weight: 700; padding: 0 5px; display: inline-block; }
.lg-headline { font-size: 0.94rem; color: var(--ink-soft); min-width: 0; }
.lg-tag { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red-deep); border: 1px solid rgba(196,52,43,0.4); border-radius: 100px; padding: 5px 12px; white-space: nowrap; }
.ledger-fine { margin-top: 14px; font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- founder + team ---------- */
.story-band { background: var(--paper-warm); padding-block: clamp(64px, 8vw, 108px); }
.founder-grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(26px, 4.5vw, 64px); align-items: center; margin-bottom: clamp(40px, 6vw, 64px); }
.founder-photo { position: relative; }
.founder-photo img { border-radius: var(--r); box-shadow: var(--shadow); width: 100%; }
.founder-badge { position: absolute; left: -14px; bottom: 22px; background: var(--ink); color: #fff; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 9px 14px; border-radius: 6px; transform: rotate(-2deg); box-shadow: 0 10px 20px rgba(24,27,33,0.25); }
.founder-copy blockquote { margin: 18px 0; padding-left: 18px; border-left: 4px solid var(--red); font-family: var(--serif); font-style: italic; font-size: 1.18rem; color: var(--ink-soft); }
.team-band { background: transparent; }
.team-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(12px, 1.8vw, 22px); }
.team-card { text-decoration: none; color: var(--ink); background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r); overflow: hidden; box-shadow: 0 8px 20px rgba(35,39,46,0.07); transition: transform 0.16s ease, box-shadow 0.16s ease; }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.team-card img { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; }
.team-card .tc-body { padding: 13px 15px 15px; }
.team-card b { font-family: var(--serif); font-size: 1.02rem; display: block; }
.team-card span { font-size: 0.8rem; color: var(--ink-soft); display: block; }
.team-card .tc-creds { font-family: var(--mono); font-size: 0.68rem; color: var(--red-deep); margin-top: 6px; }

/* ---------- time-worth teaser / dark tool band ---------- */
.tw-band { position: relative; color: #fff; overflow: hidden; }
.tw-band img.tw-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tw-band::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(24,27,33,0.94) 0%, rgba(24,27,33,0.86) 55%, rgba(24,27,33,0.6) 100%); }
.tw-in { position: relative; z-index: 2; padding-block: clamp(64px, 9vw, 120px); display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(26px, 4vw, 60px); align-items: center; }
.tw-in h2 { color: #fff; }
.tw-in p { color: rgba(255,255,255,0.87); }
.tw-sample { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--r); padding: 22px 24px; font-family: var(--mono); font-size: 0.9rem; }
.tw-line { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; border-bottom: 1px dashed rgba(255,255,255,0.18); }
.tw-line:last-child { border-bottom: none; }
.tw-line b { color: var(--note); font-weight: 500; }
.tw-line.tw-hot b { color: #F08A80; }
.tw-line b { text-align: right; }

/* ---------- testimonials ---------- */
.quote-band { background: var(--paper); padding-block: clamp(64px, 8vw, 108px); }
.quote-feature { max-width: 900px; margin-bottom: 44px; }
.quote-feature blockquote { margin: 0; font-family: var(--serif); font-style: italic; font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.35; color: var(--ink); }
.quote-feature blockquote::before { content: '“'; color: var(--red); font-size: 1.4em; line-height: 0; vertical-align: -0.3em; margin-right: 4px; }
.quote-attr { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; margin-top: 18px; font-size: 0.92rem; color: var(--ink-soft); }
.quote-attr b { color: var(--ink); }
.result-chip { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; background: var(--ink); color: var(--note); padding: 5px 12px; border-radius: 100px; }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 24px); }
.quote-card { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r); padding: 22px 22px 18px; box-shadow: 0 8px 20px rgba(35,39,46,0.06); display: flex; flex-direction: column; gap: 12px; }
.quote-band .quote-card { position: relative; border-radius: 3px; }
.quote-band .quote-card::before {
  content: ''; position: absolute; top: -9px; left: 50%; transform: translateX(-50%) rotate(-2deg);
  width: 64px; height: 18px; background: rgba(242,208,107,0.65); box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.quote-band .quote-card:nth-child(2)::before { transform: translateX(-50%) rotate(1.5deg); }
.quote-band .quote-card:nth-child(3)::before { transform: translateX(-50%) rotate(-1deg); }
.quote-card p { margin: 0; font-size: 0.96rem; color: var(--ink-soft); font-style: italic; }
.quote-card .qc-attr { margin-top: auto; font-size: 0.84rem; }
.quote-card .qc-attr b { display: block; color: var(--ink); font-style: normal; }
.quote-card .qc-attr span { color: var(--ink-soft); }

/* ---------- insights ---------- */
.ins-band { background: var(--paper-warm); padding-block: clamp(64px, 8vw, 108px); }
.ins-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 38px; }
.ins-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: clamp(20px, 3vw, 40px); align-items: start; }
.ins-card { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r); overflow: hidden; box-shadow: 0 8px 20px rgba(35,39,46,0.06); }
.ins-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.ins-card .ins-body { padding: 18px 20px 20px; }
.ins-meta { font-family: var(--mono); font-size: 0.74rem; color: var(--ink-soft); margin: 0 0 8px; }
.ins-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.ins-card h3 a { color: var(--ink); text-decoration: none; }
.ins-card h3 a:hover { color: var(--red-deep); }
.ins-ex { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }
.ins-lead img { aspect-ratio: 16 / 10; }
.ins-lead h3 { font-size: 1.5rem; }
.ins-list { display: flex; flex-direction: column; gap: 16px; }
.ins-list .ins-card { display: grid; grid-template-columns: 130px minmax(0, 1fr); align-items: stretch; }
.ins-list .ins-card img { height: 100%; aspect-ratio: auto; min-height: 108px; object-fit: cover; }
.ins-list .ins-card .ins-body { padding: 14px 16px; }
.ins-list .ins-card h3 { font-size: 1.02rem; margin-bottom: 4px; }
.ins-list .ins-ex { display: none; }

/* ---------- FAQ ---------- */
.faq-band { background: var(--paper); padding-block: clamp(64px, 8vw, 108px); }
.faq-cols { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(24px, 4vw, 64px); align-items: start; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 18px; align-items: center; padding: 18px 2px; font-family: var(--serif); font-weight: 600; font-size: 1.08rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--mono); color: var(--red); font-size: 1.3rem; flex: 0 0 auto; transition: transform 0.18s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 2px 20px; color: var(--ink-soft); max-width: 68ch; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; color: #fff; overflow: hidden; }
.cta-media { position: absolute; inset: 0; background-image: url('/demos/business-coaching/keelworth-and-co/assets/img/cta-evening.webp'); background-size: cover; background-position: center 38%; }
.cta-band::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(24,27,33,0.82), rgba(24,27,33,0.9)); }
.cta-in { position: relative; z-index: 2; padding-block: clamp(76px, 10vw, 130px); text-align: center; max-width: 780px; }
.cta-in h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
.cta-in p { color: rgba(255,255,255,0.88); max-width: 56ch; margin-inline: auto; }
.cta-in .kicker { justify-content: center; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 26px; }
.cta-fine { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.6); margin-top: 22px; }

/* ---------- page-title system ---------- */
.page-title { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.pt-media { position: absolute; inset: 0; background-image: url('/demos/business-coaching/keelworth-and-co/assets/img/pagetitle-wall.webp'); background-size: cover; background-position: center; opacity: 0.34; filter: saturate(0.7); }
.page-title::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(24,27,33,0.88) 20%, rgba(24,27,33,0.55) 70%, rgba(24,27,33,0.7)); }
.pt-in { position: relative; z-index: 2; padding-block: clamp(56px, 7.5vw, 96px); }
.pt-in h1 { color: #fff; max-width: 22ch; }
.pt-lead { max-width: 60ch; color: rgba(255,255,255,0.88); font-size: 1.08rem; margin-bottom: 0; }
.crumbs { font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.04em; margin-bottom: 20px; color: rgba(255,255,255,0.7); }
.crumbs a { color: rgba(255,255,255,0.85); text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumb-sep { margin-inline: 8px; opacity: 0.5; }

/* ---------- prose / article ---------- */
.prose { max-width: 720px; }
.prose h2 { font-size: 1.5rem; margin-top: 1.6em; }
.prose ul, .prose ol { color: var(--ink-soft); }
.prose li { margin-bottom: 8px; }
.prose blockquote { margin: 1.4em 0; padding-left: 18px; border-left: 4px solid var(--red); font-family: var(--serif); font-style: italic; color: var(--ink-soft); font-size: 1.1rem; }
.article-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(28px, 4vw, 64px); align-items: start; padding-block: clamp(48px, 6vw, 80px); }
.article-aside { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.aside-card { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r); padding: 20px; box-shadow: 0 8px 20px rgba(35,39,46,0.06); }
.aside-card img { border-radius: 50%; width: 64px; height: 64px; object-fit: cover; }
.aside-card b { font-family: var(--serif); }
.aside-card .ac-role { font-size: 0.82rem; color: var(--ink-soft); }
.article-hero img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.form-grid .ff-full { grid-column: 1 / -1; }
.ff label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
.ff input, .ff select, .ff textarea {
  width: 100%; font: inherit; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 8px; background: #fff; color: var(--ink);
}
.ff input:focus, .ff select:focus, .ff textarea:focus { outline: 2px solid var(--slate); outline-offset: 1px; }
.ff .ff-err { display: none; color: var(--red-deep); font-size: 0.82rem; margin-top: 5px; }
.ff.invalid input, .ff.invalid select, .ff.invalid textarea { border-color: var(--red); }
.ff.invalid .ff-err { display: block; }
.form-success { display: none; background: #EAF3EC; border: 1px solid #B9D4BF; color: #295B34; border-radius: var(--r); padding: 22px; }
.form-success.show { display: block; }
.form-fine { font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- footer ---------- */
.site-foot { background: var(--ink); color: rgba(255,255,255,0.8); position: relative; }
.site-foot::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 36px 36px; }
.site-foot > * { position: relative; }
.foot-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(0, 1fr); gap: clamp(24px, 3.5vw, 56px); padding-block: clamp(48px, 6vw, 72px) 36px; }
.logo-foot .logo-word { color: #fff; }
.foot-brand p { font-size: 0.92rem; margin-top: 16px; }
.foot-accr { font-family: var(--mono); font-size: 0.76rem; color: rgba(255,255,255,0.55); }
.foot-col h3 { color: #fff; font-family: var(--mono); font-weight: 500; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }
.foot-col a { display: block; color: rgba(255,255,255,0.78); text-decoration: none; padding: 4px 0; font-size: 0.95rem; }
.foot-col a:hover { color: #fff; text-decoration: underline; }
.foot-contact address { font-style: normal; margin-bottom: 10px; font-size: 0.95rem; }
.foot-hours { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.foot-legal { border-top: 1px solid rgba(255,255,255,0.12); padding-block: 22px; font-size: 0.78rem; color: rgba(255,255,255,0.55); }
.foot-legal a { color: rgba(255,255,255,0.7); }
.foot-links { margin-top: 8px; }

/* Seed Light provenance */
.sl-disclaim { border-top: 1px dashed rgba(255,255,255,0.25); padding-block: 18px 26px; font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.sl-disclaim a { color: #35e07f; }
.sl-kit .sl-tab {
  position: fixed; right: 0; top: 50%; z-index: 200;
  transform: rotate(180deg) translateY(50%); writing-mode: vertical-rl;
  background: #171a21; color: #fff; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 8px; border-radius: 0 6px 6px 0; box-shadow: -4px 4px 14px rgba(0,0,0,0.3);
}
.sl-kit .sl-tab b { color: #35e07f; }
.sl-drawer {
  position: fixed; right: 40px; top: 50%; transform: translateY(-50%); z-index: 199;
  width: 250px; background: #171a21; color: #dfe3ea; border: 1px solid #2a2f3a; border-radius: 12px;
  padding: 18px; box-shadow: 0 18px 44px rgba(0,0,0,0.45);
}
.sl-drawer .sl-t { font-size: 0.9rem; margin: 0 0 6px; color: #fff; }
.sl-drawer .sl-t b { color: #35e07f; }
.sl-drawer .sl-d { font-size: 0.8rem; margin: 0 0 12px; color: #aab2c0; }
.sl-btn { display: block; text-align: center; font-size: 0.85rem; font-weight: 600; text-decoration: none; border-radius: 8px; padding: 10px 12px; margin-bottom: 8px; }
.sl-wa { background: #35e07f; color: #10131a; }
.sl-site { background: transparent; color: #35e07f; border: 1px solid #35e07f; }
.sl-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 26px rgba(0,0,0,0.3);
}
.sl-float svg { width: 30px; height: 30px; }

/* action bar (mobile) */
.action-bar { display: none; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .note-card, .team-card { transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .team-row { grid-template-columns: repeat(3, 1fr); }
  .ledger-row { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.6fr) auto; }
  .lg-headline { display: none; }
}

@media (max-width: 920px) {
  .site-nav {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 88vw); z-index: 150;
    background: var(--ink); flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 92px 28px 28px; transform: translateX(100%); transition: transform 0.25s ease;
    overflow-y: auto;
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav a { color: #fff; font-size: 1.15rem; padding: 10px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .site-nav a[aria-current="page"] { border-bottom-color: var(--red); }
  .site-nav a.nav-cta { margin-top: 16px; text-align: center; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer;
    padding: 10px; z-index: 160; position: relative;
  }
  .nav-toggle span:not(.sr-only) { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); background: #fff; }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); background: #fff; }
  .nav-dim { position: fixed; inset: 0; z-index: 140; background: rgba(24,27,33,0.5); }

  .note-row { grid-template-columns: 1fr 1fr; }
  .odi-grid, .tw-in, .faq-cols, .ins-grid { grid-template-columns: 1fr; }
  .odi-result { position: static; }
  .method-phase, .prog-row, .prog-row:nth-child(even), .founder-grid { grid-template-columns: 1fr; }
  .method-phase:nth-child(even) .m-media { order: 0; }
  .prog-row:nth-child(even) .prog-media { order: 0; }
  .article-grid { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .diary-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .topbar-in { justify-content: center; }
  .topbar-note { display: none; }
  .note-row { grid-template-columns: 1fr 1fr; }
  .note-card { min-height: 110px; }
  .team-row { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .ledger-row { grid-template-columns: 1fr; gap: 8px; padding: 18px 4px; }
  .lg-move { font-size: 0.82rem; }
  .lg-tag { justify-self: start; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-in { padding-bottom: clamp(170px, 34vw, 210px); }

  .action-bar {
    display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 8px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 180;
    background: rgba(24,27,33,0.97); padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  }
  .action-bar a { text-align: center; font-weight: 600; text-decoration: none; padding: 12px 8px; border-radius: 8px; color: #fff; border: 1px solid rgba(255,255,255,0.3); font-size: 0.95rem; }
  .action-bar .ab-primary { background: var(--red); border-color: var(--red); }
  body { padding-bottom: 64px; }
  .sl-float { width: 50px; height: 50px; bottom: 76px; }
  .sl-drawer { right: 34px; width: min(250px, 78vw); }
}

body.nav-open .sl-float, body.nav-open .action-bar, body.nav-open .sl-tab, body.nav-open .sl-drawer { display: none; }

/* compound overrides (must out-specify .quote-grid's own template) */
.quote-grid.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 700px) { .quote-grid.grid-2 { grid-template-columns: 1fr; } }

@media print {
  .sl-kit, .action-bar, .topbar, .site-nav, .nav-toggle, .cta-band, .sl-disclaim { display: none !important; }
}
