:root {
  --ink: #171714;
  --ink-soft: #25251f;
  --paper: #f4f0e8;
  --chalk: #fffdf8;
  --stone: #d8d2c6;
  --amber: #d99b2b;
  --olive: #686b55;
  --red: #b84332;
  --rule: rgba(23, 23, 20, 0.2);
  --rule-light: rgba(255, 253, 248, 0.2);
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Manrope", Arial, sans-serif;
  --shell: min(1360px, calc(100vw - 96px));
  --header-height: 80px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

::selection {
  background: var(--amber);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--amber);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

p,
h1,
h2,
h3,
figure,
blockquote,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1,
h2 {
  text-wrap: balance;
}

h2 {
  font-size: clamp(3rem, 5vw, 5.15rem);
  line-height: 1.01;
}

h3 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.03;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(96px, 9vw, 136px) 0;
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: 12px;
  left: 12px;
  padding: 11px 18px;
  border: 1px solid var(--chalk);
  background: var(--ink);
  color: var(--chalk);
  transform: translateY(-150%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.utility-label,
.role-line {
  margin-bottom: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.utility-label::before {
  display: inline-block;
  width: 24px;
  height: 2px;
  margin-right: 10px;
  background: var(--amber);
  content: "";
  vertical-align: 0.22em;
}

.utility-label-light {
  color: var(--chalk);
}

.role-line {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.7vw, 28px);
}

.role-line i {
  width: 22px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--amber);
}

.role-line span {
  white-space: nowrap;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: var(--amber);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  cursor: pointer;
  transition:
    background 200ms var(--ease),
    color 200ms var(--ease),
    transform 200ms var(--ease),
    border-color 200ms var(--ease);
}

.button:hover {
  background: var(--chalk);
  transform: translateY(-2px);
}

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

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.69rem;
}

.button-light {
  border-color: var(--chalk);
  background: var(--chalk);
}

.button-light:hover {
  border-color: var(--amber);
  background: var(--amber);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--chalk);
}

.button-dark:hover {
  background: transparent;
  color: var(--ink);
}

.text-link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--amber);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms var(--ease);
}

.text-link:hover::after {
  transform: scaleX(1);
}

.text-link-light {
  color: var(--chalk);
}

.text-button {
  padding: 0;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  background: transparent;
  cursor: pointer;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.review-bar {
  position: relative;
  z-index: 201;
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 7px 24px;
  background: var(--amber);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.035em;
}

.review-bar p {
  margin: 0;
}

.review-bar p span {
  margin-right: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-link {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: inherit;
  font-weight: 800;
  cursor: pointer;
}

.site-header {
  position: sticky;
  z-index: 200;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(244, 240, 232, 0.92);
  backdrop-filter: blur(18px);
  transition: height 200ms var(--ease), border-color 200ms var(--ease);
}

.site-header.scrolled {
  height: 68px;
  border-bottom-color: var(--rule);
}

.header-inner {
  display: grid;
  height: 100%;
  align-items: center;
  grid-template-columns: 190px 1fr auto;
  gap: 36px;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.9;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.2vw, 38px);
}

.desktop-nav a,
.header-work-link {
  position: relative;
  padding: 9px 0;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.desktop-nav a::after,
.header-work-link::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--amber);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease);
}

.desktop-nav a:hover::after,
.header-work-link:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: clamp(72px, 8vw, 116px);
  padding-bottom: clamp(72px, 8vw, 112px);
}

.hero::after {
  position: absolute;
  right: -2vw;
  bottom: 52px;
  width: 31vw;
  height: 1px;
  background: var(--amber);
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  gap: clamp(58px, 7vw, 112px);
}

.hero-copy {
  max-width: 800px;
}

.hero-identity-lockup {
  margin-bottom: 22px;
}

.hero-identity-lockup .role-line {
  margin-bottom: 0;
}

.hero-mobile-portrait {
  display: none;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 30px;
  font-size: clamp(4.35rem, 7vw, 7.35rem);
  line-height: 0.91;
}

.hero h1 em {
  color: var(--ink);
  font-weight: 400;
  text-decoration-color: var(--amber);
  text-decoration-line: underline;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 0.055em;
  text-underline-offset: 0.08em;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 36px;
  color: rgba(23, 23, 20, 0.78);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.65vw, 1.58rem);
  line-height: 1.38;
}

.quiet-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 28px;
  color: rgba(23, 23, 20, 0.7);
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.hero-visual {
  position: relative;
  max-width: 520px;
  justify-self: end;
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
  margin: 0;
  border: 1px solid var(--ink);
  background: var(--stone);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  border: 10px solid rgba(255, 253, 248, 0.12);
  content: "";
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(0.85) contrast(0.97);
}

.hero-image-wrap figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 253, 248, 0.4);
  background: rgba(23, 23, 20, 0.88);
  color: var(--chalk);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.image-side-note {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: -86px;
  margin: 0;
  color: var(--ink);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(90deg);
}

.amber-stitch {
  position: absolute;
  z-index: 1;
  width: 100px;
  height: 100px;
  border: 1px solid var(--amber);
}

.stitch-one {
  top: -22px;
  left: -26px;
}

.stitch-two {
  right: -22px;
  bottom: -24px;
}

.recognition {
  padding: 88px 0 96px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--chalk);
}

.recognition-head {
  display: grid;
  align-items: end;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  margin-bottom: 50px;
}

.recognition-head h2 {
  margin: 0;
  font-size: clamp(3rem, 4.8vw, 5.2rem);
}

.recognition-head > p {
  max-width: 520px;
  margin: 0 0 6px;
  color: rgba(23, 23, 20, 0.7);
  font-size: 0.98rem;
}

.recognition-updated {
  display: block;
  margin-top: 12px;
  color: rgba(23, 23, 20, 0.72);
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recognition-rail {
  display: grid;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  grid-template-columns: repeat(6, 1fr);
}

.recognition-item {
  position: relative;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 3px;
  padding: 22px 18px 20px;
  border-right: 1px solid var(--rule);
  transition: background 220ms var(--ease), color 220ms var(--ease);
}

.recognition-item:last-child {
  border-right: 0;
}

.recognition-item:hover,
.recognition-current {
  background: var(--ink);
  color: var(--chalk);
}

.recognition-current::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 44%;
  height: 5px;
  background: var(--amber);
  content: "";
}

.item-status {
  position: absolute;
  top: 20px;
  left: 18px;
  color: var(--olive);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.recognition-item:hover .item-status,
.recognition-current .item-status {
  color: var(--amber);
}

.item-status.status-red {
  color: var(--red);
}

.recognition-item strong {
  max-width: 190px;
  font-family: var(--serif);
  font-size: 1.44rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.recognition-item small {
  margin-top: 7px;
  color: currentColor;
  font-size: 0.66rem;
  font-weight: 700;
  opacity: 0.66;
}

.intent-prompt {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  padding-left: 18px;
  border-left: 3px solid var(--amber);
}

.intent-prompt > p:first-child {
  flex: 0 0 auto;
  margin: 0;
  font-size: 0.7rem;
  font-weight: 800;
}

.intent-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.intent-options a {
  display: inline-block;
  padding: 7px 11px;
  border: 1px solid var(--stone);
  border-radius: 2px;
  background: transparent;
  font-size: 0.63rem;
  font-weight: 700;
  transition: background 180ms var(--ease), border-color 180ms var(--ease);
}

.intent-options a:hover,
.intent-options a:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--chalk);
}

.intent-status {
  margin: 0;
  color: var(--olive);
  font-size: 0.65rem;
  font-weight: 700;
}

.chapter {
  overflow: hidden;
}

.chapter-heading {
  display: grid;
  grid-template-columns: 110px minmax(0, 7fr) minmax(290px, 4fr);
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(64px, 7vw, 100px);
}

.chapter-number {
  align-self: start;
  margin: 4px 0 0;
  color: var(--amber);
  font-family: var(--serif);
  font-size: 4.4rem;
  letter-spacing: -0.05em;
  line-height: 0.8;
}

.chapter-heading h2 {
  max-width: 780px;
  margin: 0;
}

.chapter-intro {
  max-width: 450px;
  margin: 0 0 5px;
  color: rgba(23, 23, 20, 0.7);
  font-size: 0.94rem;
}

.chapter-broadcast {
  background: var(--ink);
  color: var(--chalk);
}

.chapter-broadcast .chapter-intro {
  color: rgba(255, 253, 248, 0.68);
}

.broadcast-feature {
  display: grid;
  min-height: 570px;
  border: 1px solid var(--rule-light);
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
}

.feature-art {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 570px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(34px, 5vw, 72px);
  border-right: 1px solid var(--rule-light);
  background: var(--chalk);
  color: var(--ink);
}

.feature-art::before {
  position: absolute;
  top: 0;
  right: 11%;
  width: 24%;
  height: 100%;
  border-right: 1px solid var(--stone);
  border-left: 1px solid var(--stone);
  content: "";
}

.feature-art::after {
  position: absolute;
  right: 0;
  bottom: 90px;
  width: 82%;
  height: 18px;
  background: var(--amber);
  content: "";
}

.feature-kicker {
  position: absolute;
  top: 32px;
  left: 34px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-art > strong {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-size: clamp(7rem, 14vw, 13rem);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 0.72;
}

.feature-art > div {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 34px;
}

.feature-art > div span:first-child {
  color: var(--red);
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7rem);
  font-style: italic;
  line-height: 0.8;
}

.feature-art > div span:last-child {
  font-family: var(--serif);
  font-size: 2rem;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(38px, 5vw, 76px);
}

.status-tag {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--amber);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-tag-red {
  color: #df7867;
}

.status-tag-quiet {
  color: rgba(255, 253, 248, 0.55);
}

.feature-copy h3 {
  max-width: 470px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5vw, 5.3rem);
}

.feature-copy > p:not(.status-tag) {
  max-width: 510px;
  color: rgba(255, 253, 248, 0.72);
}

.feature-meta {
  display: grid;
  width: 100%;
  margin: 34px 0;
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
  grid-template-columns: repeat(3, 1fr);
}

.feature-meta div {
  padding: 15px 10px 15px 0;
}

.feature-meta dt {
  margin-bottom: 3px;
  color: rgba(255, 253, 248, 0.45);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-meta dd {
  font-family: var(--serif);
  font-size: 1.05rem;
}

.programme-index {
  margin-top: 42px;
  border-top: 1px solid var(--rule-light);
}

.programme-row {
  display: grid;
  min-height: 190px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule-light);
  grid-template-columns: 80px minmax(250px, 3.5fr) minmax(300px, 5fr) 100px;
  gap: 30px;
}

.programme-row > .programme-index {
  margin: 0;
  border: 0;
  color: rgba(255, 253, 248, 0.38);
  font-family: var(--serif);
  font-size: 1rem;
}

.programme-name p {
  margin-bottom: 10px;
}

.programme-name h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.25rem);
}

.programme-row > p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 253, 248, 0.65);
  font-size: 0.86rem;
}

.programme-row > a,
.programme-note {
  justify-self: end;
  border-bottom: 1px solid currentColor;
  font-size: 0.68rem;
  font-weight: 800;
}

.programme-actions {
  display: flex;
  justify-self: end;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.programme-actions a {
  border-bottom: 1px solid currentColor;
  font-size: 0.68rem;
  font-weight: 800;
}

.programme-note {
  border: 0;
  color: rgba(255, 253, 248, 0.5);
}

.chapter-author {
  background: var(--paper);
}

.book-shelf {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(26px, 3vw, 48px);
}

.book-entry {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.book-cover {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--ink);
  box-shadow: 12px 16px 0 rgba(23, 23, 20, 0.08);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}

.book-entry:hover .book-cover {
  box-shadow: 16px 20px 0 rgba(23, 23, 20, 0.1);
  transform: translateY(-4px);
}

.book-cover > span {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.book-cover > strong {
  margin-top: auto;
  font-family: var(--serif);
  font-size: clamp(4rem, 6vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.78;
}

.book-cover > small {
  max-width: 240px;
  margin-top: 25px;
  font-family: var(--serif);
  font-size: 0.92rem;
  line-height: 1.25;
}

.book-find {
  background: #e4cb69;
}

.book-find::after {
  position: absolute;
  top: 31%;
  right: 25px;
  width: 88px;
  height: 88px;
  border: 18px solid var(--red);
  border-radius: 50%;
  content: "";
}

.book-keep {
  background: #bd3e32;
  color: var(--chalk);
}

.book-keep::after {
  position: absolute;
  top: 18%;
  right: 30px;
  width: 82px;
  height: 130px;
  border: 1px solid var(--chalk);
  content: "";
  transform: rotate(8deg);
}

.book-talk {
  overflow: hidden;
  background: var(--ink);
  color: var(--chalk);
}

.book-talk::before {
  position: absolute;
  top: 0;
  right: 16%;
  width: 1px;
  height: 100%;
  background: var(--amber);
  content: "";
}

.book-talk::after {
  position: absolute;
  right: -25px;
  bottom: 75px;
  width: 170px;
  height: 18px;
  background: var(--amber);
  content: "";
}

.book-talk i {
  position: absolute;
  top: 24px;
  right: 22px;
  padding: 6px 8px;
  border: 1px solid var(--amber);
  color: var(--amber);
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.book-copy h3 {
  margin-bottom: 14px;
}

.book-copy > p:not(.utility-label) {
  min-height: 84px;
  margin-bottom: 20px;
  color: rgba(23, 23, 20, 0.7);
  font-size: 0.87rem;
}

.earlier-work {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 70px;
  padding: 24px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.earlier-work p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.earlier-work p span {
  margin-right: 22px;
  color: var(--olive);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.earlier-work a {
  flex: 0 0 auto;
  font-size: 0.68rem;
  font-weight: 800;
}

.chapter-entrepreneur {
  border-top: 1px solid var(--ink);
  background: var(--chalk);
}

.venture-index {
  border-top: 1px solid var(--ink);
}

.venture-row {
  display: grid;
  min-height: 205px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--ink);
  grid-template-columns: 125px minmax(220px, 2.5fr) minmax(320px, 4fr) minmax(160px, 1.6fr);
  gap: 32px;
}

.venture-row > * {
  min-width: 0;
}

.venture-id {
  display: flex;
  min-height: 145px;
  flex-direction: column;
  justify-content: space-between;
}

.venture-id span {
  font-family: var(--serif);
  font-size: 1rem;
}

.venture-id b {
  color: var(--olive);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.venture-title p {
  margin-bottom: 7px;
  color: var(--olive);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.venture-title h3 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  overflow-wrap: break-word;
}

.venture-row > p,
.venture-detail > p {
  max-width: 570px;
  margin: 4px 0 0;
  color: rgba(23, 23, 20, 0.68);
  font-size: 0.86rem;
}

.venture-row > a,
.venture-pending {
  align-self: end;
  justify-self: end;
  margin-bottom: 3px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: 0.67rem;
  font-weight: 800;
  text-align: right;
  cursor: pointer;
}

.venture-pending {
  color: rgba(23, 23, 20, 0.48);
}

.venture-detail ul {
  display: grid;
  gap: 8px;
  margin: 19px 0 0;
  padding: 0;
  list-style: none;
}

.venture-detail li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 10px;
  font-size: 0.7rem;
}

.venture-detail li i {
  color: var(--olive);
  font-size: 0.54rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.amber-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin-top: -4px;
  min-width: 0;
}

.amber-proof strong {
  color: var(--amber);
  font-family: var(--serif);
  font-size: clamp(2.85rem, 4.1vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.9;
  overflow-wrap: normal;
}

.venture-sutton .venture-title h3 {
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 0.98;
  text-wrap: balance;
}

.amber-proof p {
  margin: 0;
  color: rgba(23, 23, 20, 0.7);
  font-size: 0.76rem;
  line-height: 1.5;
}

.amber-proof small {
  margin-top: 10px;
  color: rgba(23, 23, 20, 0.72);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.relational-bridge {
  overflow: hidden;
  background: var(--olive);
  color: var(--chalk);
}

.bridge-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 70px 110px;
}

.bridge-heading h2 {
  margin: 0;
}

.bridge-copy {
  max-width: 670px;
}

.bridge-question {
  margin-bottom: 28px;
  color: var(--amber);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.7vw, 2.75rem);
  line-height: 1.12;
}

.bridge-copy > p:not(.bridge-question) {
  color: rgba(255, 253, 248, 0.76);
}

.bridge-copy .bridge-boundary {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--rule-light);
}

.bridge-boundary p {
  margin: 0 0 10px;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.7rem;
  font-weight: 650;
}

.bridge-boundary a {
  color: var(--amber);
  font-size: 0.66rem;
  font-weight: 800;
}

.bridge-copy .button-row {
  margin-top: 34px;
}

.bridge-road {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  margin-top: 30px;
}

.bridge-road span {
  width: 12px;
  height: 12px;
  background: var(--amber);
  transform: rotate(45deg);
}

.bridge-road i {
  height: 1px;
  flex: 1;
  background: rgba(255, 253, 248, 0.4);
}

.bridge-mission {
  grid-column: 1 / -1;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 7.8rem);
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.bridge-mission em {
  color: var(--amber);
  font-weight: 400;
}

.about {
  padding: 0;
  background: var(--ink);
  color: var(--chalk);
}

.about-grid {
  display: grid;
  min-height: 820px;
  grid-template-columns: 5fr 7fr;
}

.about-image {
  position: relative;
  min-height: 820px;
  margin: 0;
  border-right: 1px solid var(--rule-light);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.78) contrast(0.98);
}

.about-image::after {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 20, 0.12);
  content: "";
}

.about-image figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
  border-top: 1px solid var(--rule-light);
  background: rgba(23, 23, 20, 0.82);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(56px, 8vw, 120px);
}

.about-copy h2 {
  max-width: 720px;
  margin-bottom: 36px;
}

.about-lead {
  max-width: 680px;
  color: var(--chalk);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.45;
}

.about-copy > p:not(.utility-label, .about-lead) {
  max-width: 660px;
  color: rgba(255, 253, 248, 0.68);
}

.about-copy blockquote {
  width: 100%;
  margin: 38px 0 30px;
  padding: 23px 0;
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
}

.about-copy blockquote p {
  margin-bottom: 4px;
  color: var(--amber);
  font-family: var(--serif);
  font-size: 1.65rem;
}

.about-copy blockquote cite {
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.live-dates {
  background: var(--paper);
}

.live-dates::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: var(--amber);
  content: "";
}

.live-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(260px, 4fr) minmax(0, 8fr);
  gap: clamp(54px, 7vw, 110px);
}

.live-list {
  display: grid;
}

.live-intro h2 {
  margin-bottom: 26px;
}

.live-intro > p:last-child {
  max-width: 500px;
  margin-bottom: 0;
  color: rgba(23, 23, 20, 0.68);
}

.live-card {
  display: grid;
  min-height: 300px;
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 32px;
}

.live-card + .live-card {
  border-top: 0;
}

.live-card time {
  display: flex;
  height: 100%;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding-right: 28px;
  border-right: 1px solid var(--rule);
  font-family: var(--serif);
}

.live-card time strong {
  font-size: 4.6rem;
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.72;
}

.live-card time span {
  margin-top: 12px;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.live-card time small {
  margin-top: 2px;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 800;
}

.live-detail .status-tag {
  margin-bottom: 14px;
}

.live-detail h3 {
  max-width: 620px;
  margin-bottom: 20px;
}

.live-detail > p:not(.status-tag) {
  margin-bottom: 5px;
  font-size: 0.84rem;
  font-weight: 700;
}

.live-detail > small {
  color: rgba(23, 23, 20, 0.58);
  font-size: 0.65rem;
  font-weight: 650;
}

.live-actions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.live-actions .button {
  white-space: nowrap;
}

.notes {
  background: var(--amber);
}

.notes-grid {
  display: grid;
  grid-template-columns: 100px minmax(0, 6fr) minmax(360px, 5fr);
  gap: 44px;
}

.notes-number {
  color: rgba(23, 23, 20, 0.25);
  font-family: var(--serif);
  font-size: 3.5rem;
  line-height: 0.8;
}

.notes-copy h2 {
  max-width: 730px;
  margin-bottom: 24px;
}

.notes-copy > p:not(.utility-label) {
  max-width: 620px;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.45;
}

.notes-promise {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid rgba(23, 23, 20, 0.4);
  list-style: none;
}

.notes-promise li {
  display: grid;
  padding: 12px 0;
  border-bottom: 1px solid rgba(23, 23, 20, 0.4);
  grid-template-columns: 46px 1fr;
  font-size: 0.76rem;
  font-weight: 700;
}

.notes-promise span {
  font-family: var(--serif);
}

.notes-form {
  align-self: center;
  padding: 38px;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.notes-form-body {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.notes-form.is-switching .notes-form-body {
  opacity: 0;
  transform: translateY(-6px);
}

.notes-confirmation {
  min-height: 280px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 200ms ease,
    transform 200ms ease;
}

.notes-form.is-complete .notes-confirmation {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.notes-confirmation h3 {
  margin: 8px 0 14px;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.notes-confirmation > p:last-child {
  max-width: 420px;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.5;
}

.consent a,
.form-fallback a,
.enquiry-expectation a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field-group + .field-group {
  margin-top: 18px;
}

.field-group label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-size: 0.86rem;
}

.field-group input,
.field-group select {
  min-height: 48px;
}

.field-group textarea {
  padding: 12px 0;
  resize: vertical;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-bottom-width: 2px;
  border-bottom-color: var(--amber);
}

.notes-form .field-group input:focus {
  border-bottom-width: 1px;
  border-bottom-color: var(--amber);
  box-shadow: 0 2px 0 -1px var(--amber);
}

.notes-form .button {
  width: 100%;
  margin-top: 26px;
}

.notes-form .button:disabled {
  cursor: progress;
  opacity: 1;
}

.notes-form .button:disabled:hover {
  background: var(--ink);
  color: var(--chalk);
  transform: none;
}

.notes-button-icon {
  display: inline-block;
}

.notes-form.is-sending .notes-button-icon {
  animation: notes-send 850ms ease-in-out infinite alternate;
}

@keyframes notes-send {
  from { transform: translateX(0); }
  to { transform: translateX(5px); }
}

.consent {
  margin: 15px 0 0;
  color: rgba(23, 23, 20, 0.72);
  font-size: 0.59rem;
  line-height: 1.55;
}

.form-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--olive);
  font-size: 0.66rem;
  font-weight: 700;
}

.notes-form .consent,
.notes-form .form-fallback {
  font-size: 0.64rem;
}

.notes-form .form-status:empty {
  min-height: 0;
  margin-top: 0;
}

.form-fallback {
  margin: 4px 0 0;
  color: rgba(23, 23, 20, 0.72);
  font-size: 0.59rem;
  line-height: 1.55;
}

.work-with-paul {
  background: var(--ink);
  color: var(--chalk);
}

.work-intro {
  display: grid;
  align-items: end;
  grid-template-columns: 8fr 4fr;
  gap: 70px;
  margin-bottom: 72px;
}

.work-intro h2 {
  max-width: 950px;
  margin: 0;
}

.work-intro > p {
  max-width: 390px;
  margin: 0 0 5px;
  color: rgba(255, 253, 248, 0.68);
}

.work-grid {
  display: grid;
  border-top: 1px solid var(--rule-light);
  grid-template-columns: 5fr 7fr;
}

.enquiry-routes {
  border-right: 1px solid var(--rule-light);
}

.enquiry-routes button {
  display: grid;
  width: 100%;
  min-height: 78px;
  align-items: center;
  padding: 14px 30px 14px 0;
  border: 0;
  border-bottom: 1px solid var(--rule-light);
  background: transparent;
  color: var(--chalk);
  grid-template-columns: 48px 1fr 25px;
  font-family: var(--serif);
  font-size: 1.25rem;
  text-align: left;
  cursor: pointer;
  transition: padding-left 200ms var(--ease), background 200ms var(--ease);
}

.enquiry-routes button:hover,
.enquiry-routes button.is-selected {
  padding-left: 14px;
  background: rgba(255, 253, 248, 0.06);
}

.enquiry-routes button span {
  color: var(--amber);
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 800;
}

.enquiry-routes button i {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-style: normal;
  justify-self: end;
}

.enquiry-form {
  display: grid;
  padding: 8px 0 48px clamp(40px, 6vw, 90px);
  grid-template-columns: 1fr;
}

.enquiry-inline h3 {
  max-width: 620px;
  margin: 10px 0 12px;
}

.enquiry-intro {
  max-width: 680px;
  margin: 0 0 8px;
  color: rgba(255, 253, 248, 0.68);
}

.form-honeypot {
  display: none;
}

.enquiry-form-body {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.enquiry-inline.is-switching .enquiry-form-body {
  opacity: 0;
  transform: translateY(-6px);
}

.enquiry-confirmation {
  min-height: 360px;
  align-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 200ms ease,
    transform 200ms ease;
}

.enquiry-inline.is-complete .enquiry-confirmation {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

.enquiry-confirmation h3 {
  margin: 10px 0 14px;
}

.enquiry-confirmation > p:last-child {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.5;
}

.enquiry-reference {
  margin: 0 0 18px;
  color: var(--amber);
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
}

.enquiry-reference strong {
  white-space: nowrap;
}

.enquiry-expectation {
  max-width: 680px;
  margin: 16px 0 0;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.67rem;
  line-height: 1.6;
}

.enquiry-form .field-group {
  margin-top: 19px;
}

.enquiry-form .field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.enquiry-form .field-group label {
  color: rgba(255, 253, 248, 0.65);
}

.enquiry-form .field-optional {
  opacity: 0.72;
  font-weight: 600;
}

.enquiry-form .field-group input,
.enquiry-form .field-group select,
.enquiry-form .field-group textarea {
  border-bottom-color: rgba(255, 253, 248, 0.5);
  color: var(--chalk);
}

.enquiry-form select {
  background: var(--ink);
}

.enquiry-form textarea::placeholder,
.enquiry-form input::placeholder {
  color: rgba(255, 253, 248, 0.35);
}

.enquiry-consent {
  display: grid;
  max-width: 680px;
  align-items: start;
  margin-top: 24px;
  grid-template-columns: 20px 1fr;
  gap: 12px;
}

.enquiry-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--amber);
  cursor: pointer;
}

.enquiry-consent input:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  box-shadow: none;
}

.enquiry-consent label {
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.72rem;
  line-height: 1.55;
  cursor: pointer;
}

.enquiry-consent a {
  color: var(--chalk);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.enquiry-form .button {
  justify-self: start;
  margin-top: 28px;
}

.enquiry-inline .button:disabled {
  cursor: progress;
  opacity: 1;
}

.enquiry-inline .button:disabled:hover {
  border-color: var(--ink);
  background: var(--amber);
  color: var(--ink);
  transform: none;
}

.enquiry-button-icon {
  display: inline-block;
}

.enquiry-inline[aria-busy="true"] .enquiry-button-icon {
  animation: notes-send 850ms ease-in-out infinite alternate;
}

.enquiry-form .form-status {
  color: var(--amber);
}

.enquiry-form .form-status:empty {
  min-height: 0;
  margin-top: 0;
}

.footer {
  padding: 74px 0 22px;
  border-top: 1px solid var(--rule);
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 6fr 2fr 2fr 2fr;
  gap: 46px;
  padding-bottom: 60px;
}

.footer-wordmark {
  display: inline-block;
  margin-bottom: 15px;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.footer-grid > div > p {
  color: rgba(23, 23, 20, 0.62);
  font-size: 0.78rem;
}

.footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer nav p {
  margin-bottom: 7px;
  color: var(--olive);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer nav a,
.footer nav button {
  align-self: flex-start;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 0.72rem;
  cursor: pointer;
}

.footer nav a:hover,
.footer nav button:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: grid;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  color: rgba(23, 23, 20, 0.72);
  font-size: 0.56rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > p:last-child {
  justify-self: end;
  text-align: right;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.footer-bottom a {
  padding: 0;
  color: inherit;
  font: inherit;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.floating-feedback {
  position: fixed;
  z-index: 180;
  right: 20px;
  bottom: 20px;
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid var(--chalk);
  border-radius: 2px;
  background: var(--ink);
  color: var(--chalk);
  font-size: 0.65rem;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(23, 23, 20, 0.15);
  cursor: pointer;
}

.floating-feedback span {
  color: var(--amber);
}

.feedback-dialog {
  width: min(760px, calc(100vw - 40px));
  max-height: calc(100svh - 50px);
  padding: 0;
  overflow: auto;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--chalk);
  color: var(--ink);
}

.feedback-dialog::backdrop {
  background: rgba(23, 23, 20, 0.78);
  backdrop-filter: blur(6px);
}

.dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 38px 42px 30px;
  border-bottom: 1px solid var(--rule);
}

.dialog-head h2 {
  max-width: 540px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4rem);
}

.dialog-close {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--ink);
  background: transparent;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.feedback-dialog ol {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 30px 42px 25px 68px;
}

.feedback-dialog li {
  padding-left: 9px;
  font-family: var(--serif);
  font-size: 1.16rem;
  line-height: 1.4;
}

.feedback-note,
.copy-status {
  margin: 0 42px;
  color: rgba(23, 23, 20, 0.64);
  font-size: 0.73rem;
}

.dialog-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 42px 18px;
}

.copy-status {
  min-height: 24px;
  margin-bottom: 24px;
  color: var(--olive);
  font-weight: 700;
}

.toast {
  position: fixed;
  z-index: 250;
  right: 22px;
  bottom: 76px;
  max-width: 360px;
  padding: 13px 16px;
  border: 1px solid var(--stone);
  background: var(--chalk);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  box-shadow: 0 12px 36px rgba(23, 23, 20, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 400ms var(--ease), transform 400ms var(--ease);
}

.reveal[data-delay="1"] {
  transition-delay: 90ms;
}

.reveal[data-delay="2"] {
  transition-delay: 170ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 64px, 1120px);
  }

  .desktop-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .menu-button {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--ink);
    background: transparent;
    cursor: pointer;
  }

  .menu-button > span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--ink);
  }

  .mobile-menu {
    position: fixed;
    z-index: 199;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 34px;
    background: var(--paper);
  }

  .site-header.scrolled .mobile-menu {
    top: 68px;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu > a:not(.button) {
    padding: 15px 0;
    border-bottom: 1px solid var(--rule);
    font-family: var(--serif);
    font-size: 1.8rem;
  }

  .mobile-menu .button {
    align-self: flex-start;
    margin-top: 28px;
  }

  .hero-grid {
    grid-template-columns: 6.5fr 5.5fr;
    gap: 54px;
  }

  .hero h1 {
    font-size: clamp(4rem, 7vw, 5.5rem);
  }

  .recognition-rail {
    grid-template-columns: repeat(3, 1fr);
  }

  .recognition-item:nth-child(3) {
    border-right: 0;
  }

  .recognition-item:nth-child(n + 4) {
    border-top: 1px solid var(--rule);
  }

  .recognition-item:nth-child(4) {
    grid-column: 1 / 2;
  }

  .chapter-heading {
    grid-template-columns: 80px minmax(0, 1fr);
  }

  .chapter-heading .chapter-intro {
    grid-column: 2;
    margin-top: -10px;
  }

  .broadcast-feature {
    grid-template-columns: 6fr 6fr;
  }

  .feature-art {
    min-height: 520px;
  }

  .programme-row {
    grid-template-columns: 55px minmax(220px, 3fr) minmax(280px, 4fr) 80px;
    gap: 22px;
  }

  .book-cover {
    min-height: 460px;
  }

  .venture-row {
    grid-template-columns: 90px minmax(200px, 2.5fr) minmax(290px, 4fr) 140px;
    gap: 22px;
  }

  .notes-grid {
    grid-template-columns: 70px 6fr 5fr;
    gap: 30px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 48px, 820px);
  }

  .header-work-link {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: clamp(48px, 7vw, 68px);
    padding-bottom: 76px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: clamp(42px, 7vw, 64px);
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-identity-lockup {
    display: block;
    max-width: none;
    margin-bottom: 30px;
  }

  .hero h1 {
    max-width: 800px;
    font-size: clamp(4rem, 10vw, 5.5rem);
  }

  .hero-visual {
    display: block;
    width: min(72vw, 540px);
    justify-self: start;
    margin-left: 10%;
  }

  .recognition-head,
  .work-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .recognition-head > p,
  .work-intro > p {
    max-width: 650px;
  }

  .intent-prompt {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .broadcast-feature {
    grid-template-columns: 1fr;
  }

  .feature-art {
    min-height: 460px;
    border-right: 0;
    border-bottom: 1px solid var(--rule-light);
  }

  .programme-row {
    grid-template-columns: 50px 1fr auto;
  }

  .programme-row > p {
    grid-column: 2 / -1;
  }

  .programme-row > a,
  .programme-actions,
  .programme-note {
    grid-column: 3;
    grid-row: 1;
  }

  .book-shelf {
    gap: 28px;
    grid-template-columns: 1fr 1fr;
  }

  .book-entry-upcoming {
    grid-column: 1 / -1;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
  }

  .book-entry-upcoming .book-cover {
    width: 100%;
  }

  .venture-row {
    grid-template-columns: 75px 1fr;
    gap: 14px 24px;
  }

  .venture-id {
    grid-row: 1 / 4;
  }

  .venture-title {
    grid-column: 2;
  }

  .venture-row > p,
  .venture-detail,
  .amber-proof {
    grid-column: 2;
  }

  .venture-row > a,
  .venture-pending {
    grid-column: 2;
    justify-self: start;
  }

  .bridge-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bridge-road,
  .bridge-mission {
    grid-column: 1;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 670px;
    border-right: 0;
    border-bottom: 1px solid var(--rule-light);
  }

  .live-grid {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .live-intro {
    max-width: 680px;
  }

  .live-card {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .live-actions {
    grid-column: 2;
    align-items: flex-start;
    flex-direction: row;
  }

  .notes-grid {
    grid-template-columns: 60px 1fr;
  }

  .notes-form {
    grid-column: 2;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .enquiry-routes {
    border-right: 0;
  }

  .enquiry-form {
    padding: 48px 0 0;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-grid > div {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 40px);
    --header-height: 70px;
  }

  html {
    scroll-padding-top: 100px;
  }

  .header-inner {
    gap: 12px;
  }

  .wordmark {
    font-size: 1.05rem;
  }

  .header-actions .button {
    min-height: 44px;
    padding: 0 12px;
    font-size: 0.6rem;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .mobile-menu {
    top: var(--header-height);
    padding: 24px 20px;
  }

  .section {
    padding: 78px 0;
  }

  h2 {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 68px;
  }

  .hero-identity-lockup {
    display: block;
    margin-bottom: 22px;
  }

  .role-line {
    display: flex;
    align-items: center;
    gap: clamp(8px, 2.5vw, 13px);
    font-size: 0.59rem;
    letter-spacing: 0.11em;
  }

  .role-line i {
    display: block;
    width: 1px;
    height: 12px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(3.15rem, 13.8vw, 4.1rem);
  }

  .hero-intro {
    margin-bottom: 24px;
    font-size: 1.02rem;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-visual {
    width: calc(100% - 22px);
    margin-left: 0;
  }

  .button-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .quiet-link {
    margin-top: 24px;
  }

  .image-side-note {
    display: none;
  }

  .recognition {
    padding: 70px 0;
  }

  .recognition-head {
    margin-bottom: 34px;
  }

  .recognition-rail {
    display: flex;
    width: auto;
    margin-right: 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
  }

  .recognition-item {
    min-width: 70vw;
    border-top: 0 !important;
    border-right: 1px solid var(--rule) !important;
    scroll-snap-align: start;
  }

  .recognition-item:last-child {
    border-right: 0 !important;
  }

  .intent-options {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .chapter-heading {
    grid-template-columns: 56px 1fr;
    gap: 20px;
  }

  .chapter-number {
    font-size: 3.2rem;
  }

  .chapter-heading .chapter-intro {
    grid-column: 1 / -1;
    margin-top: 3px;
  }

  .feature-art {
    min-height: 390px;
    padding: 30px;
  }

  .feature-art > strong {
    font-size: 28vw;
  }

  .feature-copy {
    padding: 34px 24px;
  }

  .feature-copy h3 {
    font-size: 3.2rem;
  }

  .feature-meta {
    grid-template-columns: 1fr;
  }

  .feature-meta div {
    border-bottom: 1px solid var(--rule-light);
  }

  .feature-meta div:last-child {
    border-bottom: 0;
  }

  .programme-row {
    grid-template-columns: 35px 1fr;
    padding: 26px 0;
  }

  .programme-row > p,
  .programme-row > a,
  .programme-actions,
  .programme-note {
    grid-column: 2;
  }

  .programme-row > a,
  .programme-actions,
  .programme-note {
    grid-row: auto;
    justify-self: start;
  }

  .programme-actions {
    align-items: flex-start;
    flex-direction: row;
  }

  .book-shelf {
    grid-template-columns: 1fr;
  }

  .book-entry-upcoming {
    grid-column: auto;
    display: flex;
  }

  .book-cover {
    min-height: 480px;
  }

  .earlier-work {
    align-items: flex-start;
    flex-direction: column;
  }

  .earlier-work p span {
    display: block;
    margin-bottom: 10px;
  }

  .venture-row {
    grid-template-columns: 1fr;
  }

  .venture-id {
    min-height: 0;
    flex-direction: row;
    grid-row: auto;
  }

  .venture-title,
  .venture-row > p,
  .venture-detail,
  .amber-proof,
  .venture-row > a,
  .venture-pending {
    grid-column: 1;
  }

  .bridge-copy .button-row {
    align-items: flex-start;
  }

  .bridge-mission {
    font-size: 3.55rem;
  }

  .about-image {
    min-height: 520px;
  }

  .about-copy {
    padding: 64px 0;
  }

  .live-card {
    min-height: 0;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
  }

  .live-card time {
    padding-right: 16px;
  }

  .live-card time strong {
    font-size: 3.2rem;
  }

  .live-card time span {
    font-size: 1rem;
  }

  .live-detail h3 {
    font-size: 2.35rem;
  }

  .live-actions {
    grid-column: 1 / -1;
    align-items: flex-start;
    flex-direction: column;
  }

  .notes-grid {
    grid-template-columns: 1fr;
  }

  .notes-number {
    display: none;
  }

  .notes-form {
    grid-column: 1;
    padding: 28px 22px;
  }

  .notes-form .consent,
  .notes-form .form-fallback,
  .notes-form .form-status {
    font-size: 0.68rem;
  }

  .notes-confirmation {
    min-height: 235px;
  }

  .enquiry-routes button {
    min-height: 72px;
    padding-right: 12px;
    font-size: 1.05rem;
  }

  .enquiry-form .field-pair {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div {
    grid-column: 1 / -1;
  }

  .footer-grid nav:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom > p:last-child {
    justify-self: start;
    text-align: left;
  }

  .floating-feedback {
    right: 12px;
    bottom: 12px;
  }

  .dialog-head {
    padding: 26px 22px 22px;
  }

  .feedback-dialog ol {
    padding: 24px 22px 22px 48px;
  }

  .feedback-note,
  .copy-status {
    margin-inline: 22px;
  }

  .dialog-actions {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
