@font-face {
  font-family: "Metronic Slab";
  src: url("/assets/fonts/metronic-slab-light.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Metronic Slab";
  src: url("/assets/fonts/metronic-slab-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #181714;
  --ink-soft: #4d4942;
  --paper: #eee8dc;
  --paper-deep: #ded4c2;
  --paper-light: #f6f2ea;
  --clay: #a94f37;
  --clay-dark: #713526;
  --atlantic: #183948;
  --line: color-mix(in oklab, var(--ink) 17%, transparent);
  --line-light: color-mix(in oklab, var(--paper) 24%, transparent);
  --display: "Metronic Slab", Rockwell, "Rockwell Nova", Georgia, serif;
  --body: "Aptos", "Segoe UI", Arial, sans-serif;
  --mono: "Cascadia Mono", "IBM Plex Mono", ui-monospace, monospace;
  --s1: 0.25rem;
  --s2: 0.5rem;
  --s3: 0.75rem;
  --s4: 1rem;
  --s5: 1.5rem;
  --s6: 2rem;
  --s7: 3rem;
  --s8: 4rem;
  --s9: 6rem;
  --s10: 8rem;
  --page: min(100% - clamp(2rem, 6vw, 7rem), 92rem);
  --reading: 68ch;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --decisive: cubic-bezier(0.7, 0, 0.3, 1);
  --header-h: 5.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-width: 20rem;
  background: var(--paper);
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.125rem);
  line-height: 1.6;
  font-feature-settings: "kern" 1, "liga" 1;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.22em;
}

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

button {
  border: 0;
}

::selection {
  background: var(--clay);
  color: var(--paper-light);
}

:focus-visible {
  outline: 0.15rem solid var(--clay);
  outline-offset: 0.2rem;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
  widows: 3;
  orphans: 3;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--paper-light);
  transform: translateY(-140%);
  transition: transform 180ms var(--ease);
}

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

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

.section {
  padding-block: clamp(5rem, 10vw, 10rem);
}

.section-rule {
  border-top: 0.0625rem solid var(--line);
}

.dark {
  background: var(--atlantic);
  color: var(--paper-light);
}

.clay {
  background: var(--clay);
  color: var(--paper-light);
}

.paper-light {
  background: var(--paper-light);
}

.eyebrow,
.index-label,
.meta-label,
.image-caption,
.breadcrumbs,
.footer-small,
.board-number {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-transform: uppercase;
}

.eyebrow,
.meta-label,
.image-caption,
.breadcrumbs {
  color: var(--ink-soft);
}

.dark .eyebrow,
.dark .image-caption,
.clay .eyebrow {
  color: color-mix(in oklab, var(--paper-light) 72%, transparent);
}

.lede {
  max-width: var(--reading);
  font-family: var(--display);
  font-size: clamp(1.35rem, 1.05rem + 1.1vw, 2.15rem);
  font-weight: 300;
  line-height: 1.35;
}

.copy {
  max-width: var(--reading);
  color: var(--ink-soft);
}

.copy p + p {
  margin-top: 1.25em;
}

.dark .copy {
  color: color-mix(in oklab, var(--paper-light) 78%, transparent);
}

.display-xl {
  max-width: 11ch;
  font-size: clamp(3.3rem, 7.3vw, 8.9rem);
}

.display-lg {
  max-width: 15ch;
  font-size: clamp(2.8rem, 5.3vw, 6.8rem);
}

.display-md {
  font-size: clamp(2.15rem, 3.5vw, 4.5rem);
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.text-link::after {
  content: "↗";
  font-size: 1.05rem;
  transition: transform 250ms var(--ease);
}

.text-link[data-internal]::after {
  content: "→";
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(0.25rem);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header-h);
  border-bottom: 0.0625rem solid var(--line);
  background: color-mix(in oklab, var(--paper) 92%, transparent);
  backdrop-filter: blur(0.75rem);
}

.header-inner {
  display: grid;
  width: var(--page);
  height: 100%;
  margin-inline: auto;
  grid-template-columns: minmax(11rem, 1fr) auto auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 3.5rem);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.05rem;
  height: 2.05rem;
  border: 0.0625rem solid currentColor;
  place-items: center;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: -0.04em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.4rem);
}

.desktop-nav a,
.language-link,
.menu-toggle {
  min-height: 2.75rem;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a {
  position: relative;
  display: flex;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 0.0625rem;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--decisive);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-link {
  display: inline-flex;
  justify-content: center;
  border-left: 0.0625rem solid var(--line);
  padding-left: clamp(1rem, 2vw, 2rem);
  font-family: var(--mono);
  letter-spacing: 0.12em;
}

.menu-toggle {
  display: none;
  background: transparent;
  cursor: pointer;
}

.menu-panel {
  position: fixed;
  z-index: 40;
  inset: var(--header-h) 0 0;
  display: grid;
  padding: 2rem max(1rem, calc((100vw - 92rem) / 2));
  background: var(--atlantic);
  color: var(--paper-light);
  grid-template-rows: 1fr auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms var(--ease), visibility 300ms;
}

.menu-panel.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.menu-panel nav {
  display: grid;
  align-content: center;
  gap: 0.4rem;
}

.menu-panel nav a {
  width: fit-content;
  font-family: var(--display);
  font-size: clamp(2.5rem, 11vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  text-decoration: none;
}

.menu-meta {
  display: flex;
  padding-top: 1.5rem;
  border-top: 0.0625rem solid var(--line-light);
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  min-height: calc(100svh - var(--header-h));
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.85fr);
}

.hero-copy {
  display: flex;
  padding: clamp(4rem, 8vw, 9rem) clamp(2rem, 6vw, 7rem);
  flex-direction: column;
  justify-content: space-between;
  gap: 4rem;
}

.hero-copy .lede {
  max-width: 32rem;
  margin-top: clamp(2rem, 5vw, 5rem);
}

.hero-bottom {
  display: grid;
  padding-top: 2rem;
  border-top: 0.0625rem solid var(--line);
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1.5rem;
}

.hero-media {
  position: relative;
  min-height: 42rem;
  overflow: hidden;
  background: var(--atlantic);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  border: 1.2rem solid color-mix(in oklab, var(--paper) 12%, transparent);
  content: "";
  pointer-events: none;
}

.hero-stamp {
  position: absolute;
  right: 1.8rem;
  bottom: 1.8rem;
  width: 8.5rem;
  padding: 1rem;
  border: 0.0625rem solid color-mix(in oklab, var(--paper-light) 65%, transparent);
  background: color-mix(in oklab, var(--atlantic) 78%, transparent);
  color: var(--paper-light);
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  line-height: 1.55;
  text-transform: uppercase;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(8rem, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(2.5rem, 8vw, 9rem);
}

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

.manifesto-copy .lede {
  max-width: 32ch;
}

.story-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 8rem);
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.story-image .image-caption {
  display: flex;
  margin-top: 0.8rem;
  justify-content: space-between;
  gap: 1rem;
}

.story-card {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  display: grid;
  gap: 2rem;
}

.story-card blockquote {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.6rem);
  font-weight: 300;
  line-height: 1.12;
}

.story-card cite {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-style: normal;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  margin-bottom: clamp(3.5rem, 7vw, 7rem);
  grid-template-columns: minmax(8rem, 0.35fr) minmax(0, 1.65fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
}

.section-heading .lede {
  max-width: 38rem;
  justify-self: end;
}

.board-grid {
  display: grid;
  border-top: 0.0625rem solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.board-card {
  position: relative;
  display: grid;
  min-height: 40rem;
  padding: 1.35rem;
  border-right: 0.0625rem solid var(--line);
  border-bottom: 0.0625rem solid var(--line);
  grid-template-rows: auto 1fr auto;
  color: var(--ink);
  text-decoration: none;
}

.board-card:nth-child(3n) {
  border-right: 0;
}

.board-card:nth-child(5n + 1) {
  background: var(--paper-light);
}

.board-card:nth-child(5n + 2) {
  background: var(--paper-deep);
}

.board-card:nth-child(5n + 3) {
  background: color-mix(in oklab, var(--clay) 17%, var(--paper));
}

.board-card:nth-child(5n + 4) {
  background: color-mix(in oklab, var(--atlantic) 13%, var(--paper));
}

.board-card:nth-child(5n) {
  background: color-mix(in oklab, var(--ink) 6%, var(--paper));
}

.board-card-head,
.board-card-foot {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.board-card-head {
  align-items: flex-start;
}

.board-card-foot {
  align-items: end;
}

.board-card h3 {
  font-size: clamp(1.8rem, 2.5vw, 3rem);
}

.board-card p {
  max-width: 14rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.board-card-visual {
  display: grid;
  min-height: 28rem;
  padding: 2rem 1rem;
  place-items: center;
  overflow: hidden;
}

.board-card-visual img {
  width: auto;
  max-width: 88%;
  height: 27rem;
  object-fit: contain;
  filter: drop-shadow(0 1rem 0.75rem color-mix(in oklab, var(--ink) 13%, transparent));
  transform: none;
  transition: transform 400ms var(--ease), filter 300ms var(--ease);
}


.board-card:hover .board-card-visual img,
.board-card:focus-visible .board-card-visual img {
  transform: translate3d(0, -0.35rem, 0) scale(1.025);
}

.board-card-arrow {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  border: 0.0625rem solid var(--line);
  place-items: center;
  font-size: 1rem;
  transition: background 250ms var(--ease), color 250ms var(--ease);
}

.board-card:hover .board-card-arrow,
.board-card:focus-visible .board-card-arrow {
  background: var(--ink);
  color: var(--paper-light);
}

.wide-interlude {
  position: relative;
  min-height: min(80svh, 56rem);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper-light);
}

.wide-interlude img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
}

.wide-interlude::after {
  position: absolute;
  inset: 0;
  background: color-mix(in oklab, var(--atlantic) 35%, transparent);
  content: "";
}

.interlude-copy {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: inherit;
  padding-block: clamp(4rem, 8vw, 8rem);
  grid-template-columns: 1fr minmax(18rem, 0.7fr);
  align-items: end;
  gap: 4rem;
}

.interlude-copy blockquote {
  grid-column: 2;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.4vw, 5rem);
  font-weight: 300;
  line-height: 1.06;
}

.rider-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
}

.rider-card {
  display: grid;
  grid-template-columns: minmax(11rem, 0.75fr) minmax(0, 1.25fr);
  border-top: 0.0625rem solid var(--line);
  gap: 1.6rem;
  padding-top: 1.6rem;
}

.rider-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.rider-copy {
  display: grid;
  align-content: space-between;
  gap: 1.5rem;
}

.rider-copy h3 {
  font-size: clamp(2rem, 3.3vw, 3.8rem);
}

.rider-copy p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(17rem, 0.8fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
}

.contact-band .display-lg {
  max-width: 12ch;
}

.contact-list {
  display: grid;
  border-top: 0.0625rem solid var(--line-light);
}

.contact-list a {
  display: flex;
  min-height: 4rem;
  border-bottom: 0.0625rem solid var(--line-light);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.page-hero {
  display: grid;
  min-height: 34rem;
  padding-block: clamp(5rem, 10vw, 10rem) clamp(4rem, 7vw, 7rem);
  grid-template-columns: minmax(9rem, 0.35fr) minmax(0, 1.65fr);
  align-items: end;
  gap: clamp(2.5rem, 8vw, 9rem);
}

.page-hero-copy {
  display: grid;
  gap: 2rem;
}

.page-hero-copy .lede {
  max-width: 38rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.breadcrumbs a {
  text-decoration: none;
}

.story-long {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(18rem, 1.2fr);
  align-items: start;
  gap: clamp(3rem, 9vw, 10rem);
}

.story-long-media {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.story-long-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.story-long-copy {
  display: grid;
  gap: clamp(2.2rem, 5vw, 4.5rem);
}

.story-long-copy .copy {
  font-size: clamp(1.05rem, 0.98rem + 0.26vw, 1.25rem);
}

.story-quote {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  border-left: 0.0625rem solid var(--clay);
}

.story-quote blockquote {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  font-weight: 300;
  line-height: 1.08;
}

.story-quote cite {
  display: block;
  margin-top: 1.2rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-style: normal;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.board-detail-hero {
  display: grid;
  min-height: calc(100svh - var(--header-h));
  grid-template-columns: minmax(0, 0.85fr) minmax(22rem, 1.15fr);
}

.board-detail-copy {
  display: flex;
  padding: clamp(3rem, 6vw, 7rem);
  flex-direction: column;
  justify-content: space-between;
  gap: 4rem;
}

.board-detail-copy h1 {
  max-width: 9ch;
  font-size: clamp(4rem, 7vw, 8.5rem);
}

.board-detail-intro {
  display: grid;
  gap: 1.5rem;
}

.board-detail-intro .lede {
  max-width: 33rem;
  font-size: clamp(1.15rem, 0.95rem + 0.7vw, 1.7rem);
}

.board-detail-visual {
  display: grid;
  min-height: 46rem;
  background: var(--paper-deep);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.board-view {
  position: relative;
  display: grid;
  min-width: 0;
  padding: 2rem;
  border-left: 0.0625rem solid var(--line);
  place-items: center;
  overflow: hidden;
}

.board-view:nth-child(2) {
  background: color-mix(in oklab, var(--clay) 16%, var(--paper));
}

.board-view img {
  width: auto;
  max-width: 88%;
  height: min(68svh, 43rem);
  object-fit: contain;
  filter: drop-shadow(0 1.2rem 0.8rem color-mix(in oklab, var(--ink) 13%, transparent));
}

.board-view span {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.board-specs {
  display: grid;
  border-block: 0.0625rem solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.board-spec {
  min-height: 9rem;
  padding: 1.5rem;
  border-right: 0.0625rem solid var(--line);
}

.board-spec:last-child {
  border-right: 0;
}

.board-spec strong {
  display: block;
  margin-top: 1.2rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.2vw, 2.6rem);
  font-weight: 300;
  line-height: 1.1;
}

.board-notes {
  display: grid;
  grid-template-columns: minmax(10rem, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.board-notes-list {
  display: grid;
  border-top: 0.0625rem solid var(--line);
}

.board-notes-list li {
  display: grid;
  min-height: 5.5rem;
  padding-block: 1rem;
  border-bottom: 0.0625rem solid var(--line);
  list-style: none;
  grid-template-columns: 3rem 1fr;
  align-items: center;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 3.2rem);
  font-weight: 300;
}

.board-notes-list li::before {
  color: var(--clay);
  content: "—";
  font-family: var(--mono);
  font-size: 0.8rem;
}

.next-board {
  display: grid;
  min-height: 28rem;
  padding-block: clamp(4rem, 8vw, 8rem);
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  color: var(--paper-light);
  text-decoration: none;
}

.next-board h2 {
  margin-top: 1rem;
  font-size: clamp(3.5rem, 8vw, 9rem);
}

.next-arrow {
  display: grid;
  width: 5rem;
  height: 5rem;
  border: 0.0625rem solid var(--line-light);
  place-items: center;
  font-size: 1.6rem;
  transition: background 250ms var(--ease), color 250ms var(--ease);
}

.next-board:hover .next-arrow,
.next-board:focus-visible .next-arrow {
  background: var(--paper-light);
  color: var(--atlantic);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(0.7rem, 1.4vw, 1.25rem);
}

.gallery-item {
  position: relative;
  display: block;
  padding: 0;
  background: var(--paper-deep);
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-item:nth-child(6n + 1),
.gallery-item:nth-child(6n + 4) {
  grid-column: span 7;
}

.gallery-item:nth-child(6n + 2),
.gallery-item:nth-child(6n + 3),
.gallery-item:nth-child(6n + 5),
.gallery-item:nth-child(6n) {
  grid-column: span 5;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 300ms var(--ease);
}

.gallery-item:nth-child(3n + 2) img {
  aspect-ratio: 4 / 5;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.025);
  filter: saturate(0.86);
}

.lightbox {
  width: min(92vw, 86rem);
  max-width: none;
  height: min(90vh, 58rem);
  max-height: none;
  padding: 0;
  border: 0;
  background: var(--ink);
  color: var(--paper-light);
}

.lightbox::backdrop {
  background: color-mix(in oklab, var(--ink) 86%, transparent);
}

.lightbox-inner {
  display: grid;
  height: 100%;
  grid-template-rows: 1fr auto;
}

.lightbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-bar {
  display: flex;
  min-height: 4.5rem;
  padding-inline: 1.2rem;
  border-top: 0.0625rem solid var(--line-light);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lightbox-close {
  width: 2.75rem;
  height: 2.75rem;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 1.2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 7rem);
}

.contact-card {
  padding-top: 1.5rem;
  border-top: 0.0625rem solid var(--line);
}

.contact-card h2 {
  margin-block: 1.4rem 2rem;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
}

.contact-card address {
  color: var(--ink-soft);
  font-style: normal;
}

.contact-card address + .text-link {
  margin-top: 2rem;
}

.contact-card .contact-list {
  margin-top: 2rem;
  border-color: var(--line);
}

.contact-card .contact-list a {
  border-color: var(--line);
}

.site-footer {
  padding-block: clamp(4rem, 7vw, 7rem) 2rem;
  background: var(--ink);
  color: var(--paper-light);
}

.footer-top {
  display: grid;
  padding-bottom: clamp(4rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.footer-signature {
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 8.5rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 0.9;
}

.footer-navs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.footer-nav a {
  width: fit-content;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  padding-top: 1.5rem;
  border-top: 0.0625rem solid var(--line-light);
  justify-content: space-between;
  gap: 2rem;
  color: color-mix(in oklab, var(--paper-light) 62%, transparent);
}

.footer-small {
  letter-spacing: 0.11em;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 1.25rem, 0);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.not-found {
  display: grid;
  min-height: calc(100svh - var(--header-h));
  padding-block: 4rem;
  grid-template-columns: minmax(9rem, 0.35fr) minmax(0, 1.65fr);
  align-items: center;
  gap: clamp(2rem, 8vw, 9rem);
}

.not-found-code {
  font-family: var(--display);
  font-size: clamp(7rem, 20vw, 22rem);
  font-weight: 300;
  letter-spacing: -0.08em;
  line-height: 0.75;
}

@media (max-width: 72rem) {
  .desktop-nav {
    display: none;
  }

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

  .menu-toggle {
    display: inline-flex;
  }

  .board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .board-card:nth-child(3n) {
    border-right: 0.0625rem solid var(--line);
  }

  .board-card:nth-child(2n) {
    border-right: 0;
  }

  .rider-card {
    grid-template-columns: 1fr;
  }

  .rider-card img {
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 58rem) {
  :root {
    --header-h: 4.5rem;
  }

  .hero,
  .board-detail-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 38rem;
    padding: clamp(3rem, 10vw, 6rem) max(1.25rem, 6vw);
  }

  .hero-media {
    min-height: min(76svh, 42rem);
  }

  .manifesto-grid,
  .section-heading,
  .page-hero,
  .board-notes,
  .not-found {
    grid-template-columns: 1fr;
  }

  .section-heading .lede {
    justify-self: start;
  }

  .story-preview,
  .story-long,
  .contact-band,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .story-card,
  .story-long-media {
    position: static;
  }

  .story-long-media img {
    aspect-ratio: 3 / 2;
  }

  .interlude-copy {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .interlude-copy blockquote {
    grid-column: 1;
  }

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

  .rider-card {
    grid-template-columns: minmax(10rem, 0.75fr) minmax(0, 1.25fr);
  }

  .rider-card img {
    aspect-ratio: 4 / 5;
  }

  .board-detail-copy {
    min-height: 40rem;
    padding: clamp(3rem, 10vw, 6rem) max(1.25rem, 6vw);
  }

  .board-detail-visual {
    min-height: 42rem;
  }

  .board-view img {
    height: min(60svh, 36rem);
  }

  .gallery-item:nth-child(n) {
    grid-column: span 6;
  }
}

@media (max-width: 42rem) {
  .brand span:last-child {
    max-width: 8rem;
  }

  .language-link {
    padding-left: 0.85rem;
  }

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

  .display-xl {
    font-size: clamp(3rem, 15vw, 5.6rem);
  }

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

  .board-card:nth-child(n) {
    min-height: 34rem;
    border-right: 0;
  }

  .board-card-visual {
    min-height: 23rem;
  }

  .board-card-visual img {
    height: 22rem;
  }

  .rider-card {
    grid-template-columns: 1fr;
  }

  .rider-card img {
    aspect-ratio: 3 / 2;
  }

  .board-detail-visual {
    min-height: 36rem;
  }

  .board-view {
    padding: 1rem 0.5rem;
  }

  .board-view img {
    height: min(54svh, 29rem);
  }

  .board-specs,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .board-spec {
    min-height: 7rem;
    border-right: 0;
    border-bottom: 0.0625rem solid var(--line);
  }

  .board-spec:last-child {
    border-bottom: 0;
  }

  .gallery-item:nth-child(n) {
    grid-column: 1 / -1;
  }

  .gallery-item:nth-child(3n + 2) img {
    aspect-ratio: 3 / 2;
  }

  .next-board {
    grid-template-columns: 1fr;
  }

  .next-arrow {
    width: 3.75rem;
    height: 3.75rem;
  }

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

  .footer-bottom,
  .menu-meta {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  .board-card,
  .board-view,
  .site-header {
    border: 0.0625rem solid CanvasText;
  }
}

@media print {
  .site-header,
  .menu-panel,
  .site-footer,
  .lightbox,
  .text-link {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .section {
    padding-block: 2rem;
  }
}


/* SEO persona v2 */
.proof-strip {
  border-block: 0.0625rem solid var(--line);
  background: var(--paper-light);
}

.proof-list {
  display: grid;
  margin-block: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.proof-list li {
  display: grid;
  min-height: 8rem;
  padding: 1.5rem;
  border-right: 0.0625rem solid var(--line);
  align-content: space-between;
  gap: 1rem;
}

.proof-list li:last-child { border-right: 0; }
.proof-list span { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.16em; }
.proof-list strong { max-width: 18rem; font-family: var(--display); font-size: clamp(1.2rem, 1.8vw, 1.75rem); font-weight: 300; line-height: 1.2; }

.decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 0.0625rem solid var(--line);
}

.decision-card { min-height: 25rem; padding: clamp(2rem, 5vw, 5rem); }
.decision-card + .decision-card { border-left: 0.0625rem solid var(--line); }
.decision-card h2 { margin-top: clamp(3rem, 8vw, 7rem); font-size: clamp(1.8rem, 3.2vw, 3.8rem); line-height: 1.12; }
.decision-card .text-link { margin-top: 2rem; }
.decision-good { background: var(--paper-light); }
.decision-watch { background: color-mix(in oklab, var(--clay) 15%, var(--paper)); }

.guide-method {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 0.0625rem solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.guide-method li { min-height: 18rem; padding: 1.5rem; border-right: 0.0625rem solid var(--line); border-bottom: 0.0625rem solid var(--line); }
.guide-method li:last-child { border-right: 0; }
.guide-method span { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.16em; }
.guide-method h3 { margin-top: 4rem; font-size: clamp(1.8rem, 2.7vw, 3rem); }
.guide-method p { margin-top: 1.3rem; color: var(--ink-soft); }

.guide-table { max-width: 100%; overflow-x: auto; border: 0.0625rem solid var(--line); }
.guide-table table { width: 100%; min-width: 62rem; border-collapse: collapse; }
.guide-table caption { padding: 1rem; text-align: left; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; }
.guide-table th, .guide-table td { padding: 1.4rem; border-top: 0.0625rem solid var(--line); border-right: 0.0625rem solid var(--line); text-align: left; vertical-align: top; }
.guide-table tr > :last-child { border-right: 0; }
.guide-table thead th { background: var(--atlantic); color: var(--paper-light); font-family: var(--mono); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; }
.guide-table tbody th { width: 15rem; background: var(--paper); }
.guide-table tbody th a { display: block; font-family: var(--display); font-size: 1.7rem; font-weight: 300; text-decoration: none; }
.guide-table tbody th span { display: block; margin-top: 0.5rem; color: var(--ink-soft); font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; }

.legal-copy { max-width: 52rem; }
.legal-copy h2 { margin-top: 3rem; font-size: clamp(1.8rem, 3vw, 3rem); }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy p { margin-top: 1rem; color: var(--ink-soft); }
.text-button { min-height: 2.75rem; padding: 0; border-bottom: 0.0625rem solid currentColor; background: transparent; cursor: pointer; font-weight: 600; }

.consent-banner {
  position: fixed;
  z-index: 300;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: min(36rem, calc(100vw - 2rem));
  padding: 1.5rem;
  border: 0.0625rem solid var(--line-light);
  background: var(--ink);
  color: var(--paper-light);
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
}

.consent-banner[hidden] { display: none; }
.consent-banner p { max-width: 34rem; font-size: 0.9rem; }
.consent-banner .consent-title { margin-bottom: 0.5rem; font-family: var(--display); font-size: 1.35rem; }
.consent-banner a { font-size: 0.8rem; }
.consent-actions { display: flex; align-items: end; gap: 0.5rem; }
.consent-actions button { min-height: 2.75rem; padding: 0.65rem 0.85rem; border: 0.0625rem solid var(--line-light); background: transparent; color: inherit; cursor: pointer; }
.consent-actions button:last-child { background: var(--paper-light); color: var(--ink); }

@media (max-width: 58rem) {
  .proof-list, .guide-method { grid-template-columns: 1fr; }
  .proof-list li, .guide-method li { min-height: auto; border-right: 0; border-bottom: 0.0625rem solid var(--line); }
  .guide-method h3 { margin-top: 2rem; }
}

@media (max-width: 42rem) {
  .decision-grid { grid-template-columns: 1fr; }
  .decision-card { min-height: 20rem; }
  .decision-card + .decision-card { border-top: 0.0625rem solid var(--line); border-left: 0; }
  .consent-banner { grid-template-columns: 1fr; }
  .consent-actions { justify-content: flex-end; }
}


/* Brand assets · Martin Shapes */
.brand-logo {
  width: 1.7rem;
  height: 2.55rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.portrait-panel {
  display: grid;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 0.0625rem solid var(--line);
  background: var(--clay);
  grid-template-rows: 1fr auto;
}

.story-long-media.portrait-panel img {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: clamp(1.5rem, 4vw, 3.5rem) clamp(1rem, 3vw, 2.5rem) 0;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center bottom;
}

.portrait-panel .image-caption {
  padding: 0.8rem 1rem;
  border-top: 0.0625rem solid var(--line);
  background: var(--paper-light);
}

.partner-heading {
  min-height: 6rem;
}

.contact-partner-logo {
  display: block;
  width: min(14rem, 82%);
  height: auto;
}

.footer-brand-lockup {
  display: grid;
  align-content: space-between;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.footer-brand-primary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: end;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.footer-martin-logo {
  width: clamp(4.25rem, 7vw, 7rem);
  height: auto;
  filter: invert(1);
}

.footer-partner {
  display: grid;
  max-width: 22rem;
  padding-top: 1.4rem;
  border-top: 0.0625rem solid var(--line-light);
  grid-template-columns: minmax(8rem, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
}

.footer-partner .eyebrow {
  color: color-mix(in oklab, var(--paper-light) 62%, transparent);
}

.footer-partner a {
  display: grid;
  min-width: 7.5rem;
  min-height: 3rem;
  place-items: center;
}

.footer-partner-logo {
  width: clamp(7.5rem, 10vw, 9.5rem);
  height: auto;
  filter: invert(1);
}

@media (max-width: 58rem) {
  .footer-brand-lockup {
    max-width: 48rem;
  }

  .footer-brand-primary {
    grid-template-columns: minmax(3.75rem, 5.5rem) minmax(0, 1fr);
  }
}

@media (max-width: 42rem) {
  .brand-logo {
    width: 1.45rem;
    height: 2.2rem;
  }

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

  .footer-partner a {
    width: fit-content;
  }
}


/* Art direction refinement - restrained scale, true brand assets, intentional crops */
.display-xl {
  max-width: 13ch;
  font-size: clamp(3rem, 5.7vw, 6.9rem);
}

.display-lg {
  max-width: 16ch;
  font-size: clamp(2.35rem, 4vw, 5rem);
}

.display-md {
  font-size: clamp(1.9rem, 2.8vw, 3.5rem);
}

.board-detail-copy h1 {
  font-size: clamp(3.25rem, 6vw, 6.75rem);
}

.story-quote blockquote {
  font-size: clamp(2rem, 3.3vw, 3.8rem);
}

.next-board h2 {
  font-size: clamp(2.8rem, 6.5vw, 6.8rem);
}

.interlude-copy blockquote {
  font-size: clamp(2rem, 3.8vw, 4.2rem);
}

.footer-signature {
  font-size: clamp(3rem, 5.6vw, 6.5rem);
}

.header-inner {
  grid-template-columns: minmax(4rem, 1fr) auto auto;
}

.brand {
  min-height: calc(var(--header-h) - 0.75rem);
}

.brand-logo {
  width: 2.25rem;
  height: 3.35rem;
}

.hero {
  display: block;
  min-height: 0;
}

.hero-copy {
  display: grid;
  min-height: 0;
  padding: clamp(4rem, 7vw, 7rem) clamp(2rem, 6vw, 7rem);
  grid-template-columns: minmax(0, 1.55fr) minmax(17rem, 0.45fr);
  align-items: end;
  gap: clamp(3rem, 7vw, 8rem);
}

.hero-copy > div:first-child {
  max-width: 76rem;
}

.hero-copy .display-xl {
  max-width: 13ch;
}

.hero-copy .lede {
  max-width: 46rem;
  margin-top: clamp(1.75rem, 3vw, 3.5rem);
}

.hero-bottom {
  grid-column: 2;
  align-self: end;
}

.hero-media {
  min-height: 0;
  aspect-ratio: 1200 / 630;
}

.hero-media img {
  height: 100%;
  object-position: center;
}

.story-image img,
.rider-card img,
.story-photo img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.story-image img {
  object-position: center 42%;
}

.story-photo img {
  width: 100%;
  height: auto;
  padding: 0;
  object-position: center;
}

.story-watermark {
  position: relative;
  isolation: isolate;
}

.story-watermark::before {
  position: absolute;
  z-index: 0;
  inset: -5rem -2rem -4rem 44%;
  background: url("/assets/images/portrait-joshua-martin.png") right top / contain no-repeat;
  content: "";
  opacity: 0.055;
  pointer-events: none;
}

.story-watermark > * {
  position: relative;
  z-index: 1;
}

.rider-card {
  grid-template-columns: 1fr;
}

.rider-card img {
  object-position: center 35%;
}

.rider-copy {
  min-height: 11rem;
}

.wide-interlude {
  min-height: clamp(28rem, 54vw, 48rem);
}

.focus-home img {
  object-position: center 42%;
}

.focus-story img {
  object-position: center 30%;
}

.board-card::after {
  position: absolute;
  z-index: 3;
  inset: 0.7rem;
  border: 0.0625rem solid color-mix(in oklab, var(--ink) 0%, transparent);
  content: "";
  pointer-events: none;
  transition: border-color 300ms var(--decisive);
}

.board-card:hover::after,
.board-card:focus-visible::after {
  border-color: color-mix(in oklab, var(--ink) 22%, transparent);
}

.board-card-visual img,
.board-card:nth-child(even) .board-card-visual img {
  transform: none;
  transition: transform 400ms var(--ease), filter 300ms var(--ease);
}

.board-card:hover .board-card-visual img,
.board-card:focus-visible .board-card-visual img {
  filter: drop-shadow(0 1.35rem 0.95rem color-mix(in oklab, var(--ink) 17%, transparent));
  transform: translate3d(0, -0.35rem, 0) scale(1.025);
}

.footer-top {
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 1fr);
}

.footer-brand-primary {
  align-items: center;
}

.footer-martin-logo {
  width: clamp(5.25rem, 8vw, 8rem);
}

.footer-partner {
  max-width: 32rem;
  grid-template-columns: 1fr;
  justify-items: start;
  gap: 1.25rem;
}

.footer-partner a {
  min-width: 0;
  min-height: 0;
  place-items: start;
}

.footer-partner-logo {
  width: clamp(10.5rem, 14vw, 13.5rem);
}

@media (max-width: 58rem) {
  .hero-copy {
    padding: clamp(3.5rem, 9vw, 6rem) max(1.25rem, 6vw);
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-bottom {
    grid-column: 1;
  }

  .hero-media {
    min-height: 0;
  }

  .story-watermark::before {
    inset: 34% -1rem -3rem 18%;
    opacity: 0.045;
  }

  .rider-card {
    grid-template-columns: 1fr;
  }

  .rider-card img {
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 42rem) {
  .display-xl {
    font-size: clamp(2.6rem, 11.5vw, 4.35rem);
  }

  .display-lg {
    font-size: clamp(2.2rem, 9vw, 3.65rem);
  }

  .brand-logo {
    width: 1.9rem;
    height: 2.85rem;
  }

  .hero-copy {
    gap: 2.5rem;
  }

  .hero-media::after {
    border-width: 0.6rem;
  }

  .board-card:hover .board-card-visual img,
  .board-card:focus-visible .board-card-visual img {
    transform: translate3d(0, -0.2rem, 0) scale(1.015);
  }

  .story-watermark::before {
    inset: 42% -1rem -2rem 4rem;
  }

  .footer-partner-logo {
    width: 10.5rem;
  }
}


/* Scroll motion, compact sticky header and phone hardening */
.site-header {
  isolation: isolate;
  transition: background-color 250ms var(--ease), border-color 250ms var(--ease);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -0.0625rem;
  left: 0;
  height: 0.0625rem;
  background: color-mix(in oklab, var(--ink) 30%, transparent);
  content: "";
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms var(--decisive);
}

.site-header.is-scrolled {
  border-color: color-mix(in oklab, var(--ink) 24%, transparent);
  background: color-mix(in oklab, var(--paper) 97%, transparent);
}

.site-header.is-scrolled::after {
  transform: scaleX(1);
}

.brand-logo {
  transform-origin: left center;
  transition: transform 300ms var(--ease);
}

.site-header.is-scrolled .brand-logo {
  transform: scale(0.76);
}

.reveal {
  --reveal-x: 0;
  --reveal-y: 1.5rem;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0);
  transition:
    opacity 600ms var(--ease),
    transform 650ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal[data-reveal="left"] {
  --reveal-x: -2.25rem;
  --reveal-y: 0;
}

.reveal[data-reveal="right"] {
  --reveal-x: 2.25rem;
  --reveal-y: 0;
}

.reveal[data-reveal="fade"] {
  --reveal-x: 0;
  --reveal-y: 0;
}

.reveal.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 42rem) {
  html {
    overflow-x: clip;
  }

  body {
    min-width: 0;
  }

  .shell,
  .hero-copy,
  .page-hero-copy,
  .story-long-copy,
  .contact-card,
  .footer-navs {
    min-width: 0;
  }

  .header-inner {
    grid-template-columns: minmax(2.75rem, 1fr) auto auto;
    gap: 0.65rem;
  }

  .site-header.is-scrolled .brand-logo {
    transform: scale(0.72);
  }

  .language-link {
    min-width: 2.75rem;
    padding-left: 0.65rem;
    font-size: 0.72rem;
  }

  .menu-toggle {
    min-width: 3.25rem;
    justify-content: flex-end;
    font-size: 0.76rem;
  }

  .page-hero {
    min-height: 28rem;
    padding-block: 4.5rem 3.5rem;
  }

  .section {
    padding-block: clamp(4.25rem, 18vw, 6rem);
  }

  .contact-list a,
  .footer-nav a,
  .contact-card address,
  .footer-bottom span {
    overflow-wrap: anywhere;
  }

  .footer-brand-primary {
    grid-template-columns: 3.25rem minmax(0, 1fr);
    gap: 1rem;
  }

  .footer-signature {
    font-size: clamp(2.65rem, 13vw, 3.4rem);
  }

  .guide-table {
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .consent-banner {
    right: 0.75rem;
    bottom: 0.75rem;
    width: calc(100vw - 1.5rem);
    padding: 1.15rem;
    gap: 1rem;
  }

  .reveal {
    --reveal-delay: 0ms !important;
    --reveal-y: 0.9rem;
    transition-duration: 500ms;
  }

  .reveal[data-reveal="left"],
  .reveal[data-reveal="right"] {
    --reveal-x: 0;
    --reveal-y: 0.9rem;
  }
}

@media (max-width: 23rem) {
  :root {
    --page: calc(100% - 1.5rem);
  }

  .header-inner {
    gap: 0.35rem;
  }

  .language-link {
    min-width: 2.5rem;
  }

  .menu-toggle {
    min-width: 2.9rem;
  }

  .hero-copy {
    padding-inline: 0.9rem;
  }

  .board-card {
    padding-inline: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-logo,
  .site-header,
  .site-header::after,
  .reveal {
    transition: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Board page transition and product lightbox */
main {
  transform-origin: center;
  transition:
    opacity 320ms var(--decisive),
    transform 350ms var(--decisive);
}

body.is-board-leaving {
  pointer-events: none;
}

body.is-board-leaving main {
  opacity: 0;
  transform: translate3d(0, -0.75rem, 0) scale(0.992);
}

.board-detail-hero {
  animation: board-page-enter 520ms var(--ease) both;
}

@keyframes board-page-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 1rem, 0) scale(0.992);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.board-zoom {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  place-items: center;
}

.board-zoom img {
  grid-area: 1 / 1;
}

.board-zoom .board-zoom-label {
  position: absolute;
  z-index: 2;
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
  padding: 0.7rem 0.8rem;
  border: 0.0625rem solid var(--line);
  background: color-mix(in oklab, var(--paper-light) 88%, transparent);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: translate3d(0, 0.4rem, 0);
  transition:
    opacity 250ms var(--ease),
    transform 250ms var(--ease);
}

.board-zoom:hover .board-zoom-label,
.board-zoom:focus-visible .board-zoom-label {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.board-zoom:focus-visible {
  outline-offset: -0.2rem;
}

.lightbox {
  overflow: hidden;
  opacity: 1;
}

.lightbox[open] {
  animation: lightbox-enter 340ms var(--ease) both;
}

.lightbox[open]::backdrop {
  animation: lightbox-backdrop-enter 280ms var(--ease) both;
}

.lightbox.is-closing::backdrop {
  opacity: 0;
  transition: opacity 220ms var(--decisive);
}

.lightbox-stage {
  position: relative;
  display: grid;
  min-height: 0;
  overflow: hidden;
  place-items: center;
  touch-action: pan-y;
}

.lightbox-stage img {
  grid-area: 1 / 1;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-nav {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 3rem;
  height: 3rem;
  border: 0.0625rem solid var(--line-light);
  background: color-mix(in oklab, var(--ink) 76%, transparent);
  color: var(--paper-light);
  cursor: pointer;
  place-items: center;
  transform: translateY(-50%);
  transition:
    background-color 200ms var(--ease),
    color 200ms var(--ease);
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: var(--paper-light);
  color: var(--ink);
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

@keyframes lightbox-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 1.25rem, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes lightbox-backdrop-enter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 42rem) {
  .lightbox {
    width: calc(100vw - 1rem);
    height: min(92dvh, 50rem);
  }

  .lightbox-nav {
    top: auto;
    bottom: 0.75rem;
    width: 2.75rem;
    height: 2.75rem;
    transform: none;
  }

  .lightbox-prev {
    left: 0.75rem;
  }

  .lightbox-next {
    right: 4rem;
  }

  .lightbox-bar {
    min-height: 4rem;
    padding-left: 0.9rem;
  }

  .board-zoom .board-zoom-label {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  main,
  .board-detail-hero,
  .lightbox,
  .lightbox::backdrop,
  .board-zoom-label {
    animation: none !important;
    transition: none !important;
  }

  body.is-board-leaving main {
    opacity: 1;
    transform: none;
  }
}

/* Global scroll reveals and restrained parallax */
.parallax-layer {
  --parallax-y: 0px;
}

.parallax-float {
  translate: 0 var(--parallax-y);
}

.parallax-media > img,
.parallax-media .board-zoom > img {
  translate: 0 var(--parallax-y);
}

.hero-media.parallax-media > img,
.wide-interlude.parallax-media > img,
.gallery-item.parallax-media > img,
.craft-photo-frame.parallax-media > img {
  scale: 1.1;
  transform-origin: center;
}

html.is-parallax-scrolling .parallax-float,
html.is-parallax-scrolling .parallax-media > img,
html.is-parallax-scrolling .parallax-media .board-zoom > img {
  will-change: transform;
}

@media (max-width: 56.25rem) {
  .parallax-float,
  .parallax-media > img,
  .parallax-media .board-zoom > img {
    translate: none !important;
  }

  .hero-media.parallax-media > img,
  .wide-interlude.parallax-media > img,
  .gallery-item.parallax-media > img,
.craft-photo-frame.parallax-media > img {
    scale: 1;
  }
}

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

  .parallax-float,
  .parallax-media > img,
  .parallax-media .board-zoom > img {
    translate: none !important;
    will-change: auto !important;
  }

  .hero-media.parallax-media > img,
  .wide-interlude.parallax-media > img,
  .gallery-item.parallax-media > img,
.craft-photo-frame.parallax-media > img {
    scale: 1;
  }
}

/* Home workshop photo journal */
.craft-journal {
  overflow: clip;
  background: color-mix(in oklab, var(--paper-deep) 58%, var(--paper));
}

.craft-journal .section-heading {
  margin-bottom: clamp(3rem, 7vw, 7rem);
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
  align-items: stretch;
}

.craft-photo {
  display: grid;
  min-width: 0;
  margin: 0;
  grid-template-rows: 1fr auto;
}

.craft-photo:nth-child(1) {
  grid-column: 1 / span 7;
}

.craft-photo:nth-child(2) {
  grid-column: 8 / -1;
}

.craft-photo:nth-child(3) {
  grid-column: 1 / span 5;
}

.craft-photo:nth-child(4) {
  grid-column: 6 / -1;
}

.craft-photo-frame {
  min-height: clamp(20rem, 34vw, 34rem);
  overflow: hidden;
  background: var(--ink);
}

.craft-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft-photo:nth-child(1) img {
  object-position: center 48%;
}

.craft-photo:nth-child(2) img {
  object-position: center 40%;
}

.craft-photo:nth-child(3) img {
  object-position: center 50%;
}

.craft-photo figcaption {
  display: flex;
  min-height: 3.5rem;
  padding-top: 0.9rem;
  border-top: 0.0625rem solid var(--line);
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.craft-photo figcaption span:first-child {
  color: var(--ink);
}

@media (max-width: 58rem) {
  .craft-photo:nth-child(n) {
    grid-column: span 6;
  }

  .craft-photo-frame {
    min-height: clamp(18rem, 44vw, 28rem);
  }
}

@media (max-width: 42rem) {
  .craft-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .craft-photo:nth-child(n) {
    grid-column: 1;
  }

  .craft-photo-frame {
    min-height: 0;
  }

  .craft-photo-frame img {
    height: auto;
    aspect-ratio: 3 / 2;
  }
}

/* Home hero, slider and editorial footer — 2026-07-17 */
.desktop-nav a,
.language-link,
.menu-toggle,
.menu-panel nav a {
  text-transform: uppercase;
}

.desktop-nav a,
.language-link,
.menu-toggle {
  letter-spacing: 0.09em;
}

.menu-panel nav a {
  font-size: clamp(2.15rem, 9vw, 4.75rem);
  letter-spacing: 0.015em;
}

.hero {
  min-height: 0;
  background: var(--paper);
}

.hero-copy {
  min-height: clamp(31rem, 55vw, 45rem);
  padding: clamp(3.5rem, 6vw, 6rem) clamp(1.5rem, 5vw, 6rem);
  grid-template-columns: minmax(0, 1.45fr) minmax(15rem, 0.55fr);
  gap: clamp(2.5rem, 6vw, 7rem);
}

.hero-copy .display-xl {
  max-width: 15ch;
  font-size: clamp(2.85rem, 4.8vw, 5.55rem);
  line-height: 0.98;
}

.hero-copy .lede {
  max-width: 41rem;
  margin-top: clamp(1.35rem, 2.4vw, 2.5rem);
  font-size: clamp(0.98rem, 0.94rem + 0.2vw, 1.12rem);
  line-height: 1.58;
}

.home-slider {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper-light);
}

.home-slider-viewport {
  display: flex;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.home-slider-viewport::-webkit-scrollbar {
  display: none;
}

.home-slider-viewport:focus-visible {
  outline: 0.125rem solid var(--paper-light);
  outline-offset: -0.3rem;
}

.home-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.home-slide::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, color-mix(in oklab, var(--ink) 66%, transparent));
  content: "";
  pointer-events: none;
}

.home-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  transition: filter 600ms var(--ease), scale 900ms var(--ease);
}

.home-slide:nth-child(1) img {
  object-position: center 48%;
}

.home-slide:nth-child(2) img {
  object-position: center 44%;
}

.home-slide:nth-child(3) img {
  object-position: center 52%;
}

.home-slide figcaption {
  position: absolute;
  z-index: 2;
  right: max(1.25rem, calc((100vw - 92rem) / 2));
  bottom: clamp(1.25rem, 2.5vw, 2.25rem);
  left: max(1.25rem, calc((100vw - 92rem) / 2));
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-slide figcaption span:last-child {
  max-width: 34rem;
  text-align: right;
}

.home-slider-controls {
  display: flex;
  min-height: 4.5rem;
  padding-block: 0.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.home-slider-count {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.home-slider-buttons {
  display: flex;
  gap: 0.5rem;
}

.home-slider-buttons button {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  border: 0.0625rem solid var(--line-light);
  background: transparent;
  color: inherit;
  cursor: pointer;
  place-items: center;
  transition: background-color 200ms var(--ease), color 200ms var(--ease), opacity 200ms var(--ease);
}

.home-slider-buttons button:hover,
.home-slider-buttons button:focus-visible {
  background: var(--paper-light);
  color: var(--ink);
}

.home-slider-buttons button:disabled {
  opacity: 0.32;
  cursor: default;
}

.craft-photo:nth-child(3) {
  grid-column: 3 / 11;
}

.site-footer {
  padding-block: clamp(3.5rem, 6vw, 5.5rem) 1.25rem;
}

.footer-intro {
  display: grid;
  padding-bottom: clamp(3rem, 6vw, 5.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
}

.footer-brand-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
}

.footer-martin-lockup,
.footer-shapers-lockup {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 1rem;
}

.footer-martin-mark {
  width: clamp(2.7rem, 4vw, 3.7rem);
  height: auto;
  filter: invert(1);
}

.footer-martin-lockup > div {
  display: grid;
  gap: 0.55rem;
}

.footer-martin-lockup strong {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 300;
  line-height: 1;
}

.footer-collaboration {
  color: color-mix(in oklab, var(--paper-light) 46%, transparent);
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 300;
}

.footer-shapers-lockup {
  display: grid;
  width: fit-content;
  color: inherit;
  gap: 0.65rem;
  text-decoration: none;
}

.footer-shapers-lockup img {
  width: clamp(7.25rem, 10vw, 9.5rem);
  height: auto;
  filter: invert(1);
}

.footer-intro .eyebrow,
.footer-column .eyebrow {
  color: color-mix(in oklab, var(--paper-light) 58%, transparent);
}

.footer-statement {
  max-width: 29ch;
  font-family: var(--display);
  font-size: clamp(1.85rem, 3vw, 3.35rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.footer-directory {
  display: grid;
  padding-block: clamp(2.5rem, 4vw, 4rem);
  border-top: 0.0625rem solid var(--line-light);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4.5rem);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  min-width: 0;
  font-size: 0.82rem;
  line-height: 1.45;
}

.footer-column .eyebrow {
  margin-bottom: 0.5rem;
}

.footer-column a {
  width: fit-content;
  color: inherit;
  overflow-wrap: anywhere;
  text-decoration-color: transparent;
  text-underline-offset: 0.25rem;
  transition: text-decoration-color 180ms var(--ease), color 180ms var(--ease);
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--paper-light);
  text-decoration-color: currentColor;
}

.footer-column address {
  margin-bottom: 0.45rem;
  color: color-mix(in oklab, var(--paper-light) 67%, transparent);
  font-style: normal;
  line-height: 1.65;
}

.footer-provenance {
  display: grid;
  padding-block: 1.1rem;
  border-top: 0.0625rem solid var(--line-light);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  color: color-mix(in oklab, var(--paper-light) 54%, transparent);
}

.footer-provenance span:last-child {
  text-align: right;
}

.footer-bottom {
  padding-top: 1.1rem;
}

.footer-bottom a {
  color: inherit;
  text-underline-offset: 0.25rem;
}

.footer-small {
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.lightbox-board {
  width: min(68vw, 50rem);
  height: min(74dvh, 42rem);
}

.lightbox-board .lightbox-stage {
  padding: clamp(1rem, 2vw, 1.75rem) clamp(3.75rem, 7vw, 5.5rem) 0;
}

.lightbox-board .lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
}

.lightbox-board .lightbox-bar {
  min-height: 3.5rem;
}

.lightbox-board .lightbox-nav {
  width: 2.75rem;
  height: 2.75rem;
}

@media (max-width: 58rem) {
  .hero-copy {
    min-height: 0;
    padding: clamp(3.25rem, 8vw, 5.5rem) max(1.25rem, 6vw);
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .home-slider-viewport {
    aspect-ratio: 3 / 2;
  }

  .craft-photo:nth-child(n) {
    grid-column: span 6;
  }

  .craft-photo:nth-child(3) {
    grid-column: 4 / 10;
  }

  .footer-intro {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .footer-statement {
    max-width: 34ch;
  }

  .footer-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lightbox-board {
    width: min(84vw, 46rem);
  }
}

@media (max-width: 42rem) {
  .desktop-nav a,
  .language-link,
  .menu-toggle {
    letter-spacing: 0.07em;
  }

  .hero-copy .display-xl {
    font-size: clamp(2.4rem, 10vw, 3.8rem);
  }

  .hero-copy .lede {
    font-size: 0.98rem;
  }

  .home-slider-viewport {
    aspect-ratio: 4 / 5;
  }

  .home-slide img,
  .home-slide:nth-child(n) img {
    object-position: center;
  }

  .home-slide figcaption {
    right: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
  }

  .home-slide figcaption span:last-child {
    max-width: 15rem;
  }

  .craft-photo:nth-child(n) {
    grid-column: 1;
  }

  .footer-brand-row {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .footer-collaboration {
    display: none;
  }

  .footer-shapers-lockup {
    grid-column: 1 / -1;
    padding-top: 1.5rem;
    border-top: 0.0625rem solid var(--line-light);
  }

  .footer-statement {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .footer-directory {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-provenance {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .footer-provenance span:last-child {
    text-align: left;
  }

  .lightbox-board {
    width: calc(100vw - 1.5rem);
    height: min(76dvh, 36rem);
  }

  .lightbox-board .lightbox-stage {
    padding: 0.75rem 0.75rem 4rem;
  }

  .lightbox-board .lightbox-bar {
    min-height: 3.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-slider-viewport {
    scroll-behavior: auto;
  }

  .home-slide img,
  .home-slider-buttons button {
    transition: none;
  }
}
/* Desktop typography scale — 2026-07-17 */
@media (min-width: 58.0625rem) {
  body {
    font-size: 1rem;
  }

  .lede {
    font-size: clamp(1.12rem, 1.3vw, 1.5rem);
    line-height: 1.42;
  }

  .display-xl {
    font-size: clamp(2.65rem, 4.35vw, 5.25rem);
  }

  .display-lg {
    font-size: clamp(2rem, 3.25vw, 3.9rem);
  }

  .display-md {
    font-size: clamp(1.65rem, 2.25vw, 2.8rem);
  }

  .hero-copy .display-xl {
    font-size: clamp(2.55rem, 3.9vw, 4.7rem);
  }

  .hero-copy .lede {
    font-size: clamp(0.96rem, 0.9rem + 0.16vw, 1.06rem);
  }

  .menu-panel nav a {
    font-size: clamp(2rem, 6vw, 4rem);
  }

  .story-card blockquote {
    font-size: clamp(1.65rem, 2.35vw, 2.75rem);
  }

  .board-card h3 {
    font-size: clamp(1.45rem, 1.9vw, 2.25rem);
  }

  .interlude-copy blockquote {
    font-size: clamp(1.75rem, 3vw, 3.35rem);
  }

  .rider-copy h3 {
    font-size: clamp(1.65rem, 2.35vw, 2.7rem);
  }

  .story-long-copy .copy {
    font-size: clamp(1rem, 0.92rem + 0.16vw, 1.1rem);
  }

  .story-quote blockquote {
    font-size: clamp(1.75rem, 2.75vw, 3.1rem);
  }

  .board-detail-copy h1 {
    font-size: clamp(2.75rem, 4.6vw, 5.25rem);
  }

  .board-detail-intro .lede {
    font-size: clamp(1.02rem, 1.05vw, 1.25rem);
  }

  .board-spec strong {
    font-size: clamp(1.3rem, 1.75vw, 2.05rem);
  }

  .board-notes-list li {
    font-size: clamp(1.3rem, 1.9vw, 2.25rem);
  }

  .next-board h2 {
    font-size: clamp(2.55rem, 5vw, 5.25rem);
  }

  .contact-card h2 {
    font-size: clamp(1.9rem, 3vw, 3.45rem);
  }

  .proof-list strong {
    font-size: clamp(1.12rem, 1.35vw, 1.5rem);
  }

  .decision-card h2 {
    font-size: clamp(1.55rem, 2.45vw, 2.9rem);
  }

  .guide-method h3 {
    font-size: clamp(1.5rem, 2.1vw, 2.4rem);
  }

  .guide-table tbody th a {
    font-size: 1.45rem;
  }

  .legal-copy h2 {
    font-size: clamp(1.55rem, 2.2vw, 2.4rem);
  }

  .footer-statement {
    font-size: clamp(1.7rem, 2.45vw, 2.75rem);
  }

  .footer-martin-lockup strong {
    font-size: clamp(1.2rem, 1.55vw, 1.65rem);
  }

  .not-found-code {
    font-size: clamp(7rem, 15vw, 15rem);
  }
}
/* Contact form — Formspree */
.contact-form-section {
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(15rem, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.contact-form-intro {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.contact-form-intro h2 {
  margin-top: 1.25rem;
  max-width: 10ch;
}

.contact-form-intro > p:not(.eyebrow) {
  margin-top: 1.5rem;
  max-width: 34rem;
  color: var(--ink-soft);
}

.contact-form-intro .form-direct {
  padding-top: 1.5rem;
  border-top: 0.0625rem solid var(--line);
  font-size: 0.9rem;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  border: 0.0625rem solid var(--line);
  background: color-mix(in oklab, var(--paper-light) 72%, transparent);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.form-field {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}

.form-field label {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.78rem 0.9rem;
  border: 0.0625rem solid var(--line);
  border-radius: 0;
  background: var(--paper-light);
  transition: border-color 180ms var(--ease), background-color 180ms var(--ease);
}

.form-field textarea {
  min-height: 11rem;
  resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: color-mix(in oklab, var(--ink) 45%, transparent);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--clay);
  background: #fffdf8;
}

.form-consent {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.82rem;
  line-height: 1.55;
}

.form-consent input {
  flex: 0 0 auto;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.15rem 0 0;
  accent-color: var(--clay);
}

.form-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.25rem;
}

.form-submit {
  display: inline-flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  min-height: 3rem;
  padding: 0.78rem 1rem;
  background: var(--ink);
  color: var(--paper-light);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 180ms var(--ease), transform 180ms var(--ease);
}

.form-submit:hover {
  background: var(--clay-dark);
  transform: translateY(-0.1rem);
}

.form-required {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 56.25rem) {
  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-form-intro {
    position: static;
  }
}

@media (max-width: 42rem) {
  .contact-form {
    gap: 1.25rem;
    padding: 1.25rem;
  }

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

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit {
    width: 100%;
  }
}
/* Editorial video sections — 2026-07-17 */
.brand-film-layout,
.model-film {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.brand-film-layout {
  grid-template-columns: minmax(13rem, 0.55fr) minmax(0, 1.45fr);
}

.model-film {
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
}

.model-film-section {
  background: var(--paper-deep);
}

.brand-film-copy,
.model-film-copy {
  display: grid;
  align-content: center;
  gap: 1.5rem;
}

.brand-film-copy .display-md,
.model-film-copy .display-md {
  max-width: 12ch;
}

.brand-film-copy > p:not(.eyebrow) {
  max-width: 32rem;
  color: color-mix(in oklab, var(--paper-light) 76%, transparent);
}

.model-film-copy > p:not(.eyebrow) {
  max-width: 34rem;
  color: var(--ink-soft);
}

.video-frame {
  min-width: 0;
  margin: 0;
}

.video-frame video {
  display: block;
  width: 100%;
  height: auto;
  border: 0.0625rem solid color-mix(in oklab, var(--paper-light) 20%, transparent);
  border-radius: 0;
  background: var(--ink);
  object-fit: contain;
}

.video-frame-landscape video {
  aspect-ratio: 16 / 9;
}

.video-frame-portrait {
  width: min(100%, 22rem);
  justify-self: end;
}

.video-frame-portrait video {
  aspect-ratio: 9 / 16;
}

.video-frame figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.8rem;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.video-frame figcaption span:last-child {
  text-align: right;
}

.dark .video-frame figcaption {
  color: color-mix(in oklab, var(--paper-light) 58%, transparent);
}

@media (max-width: 56.25rem) {
  .brand-film-layout,
  .model-film {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .video-frame-portrait {
    width: min(100%, 21rem);
    justify-self: center;
  }
}

@media (max-width: 42rem) {
  .video-frame figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.3rem;
  }

  .video-frame figcaption span:last-child {
    text-align: left;
  }
}
/* Cinematic home hero — 2026-07-17 */
.hero-video {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper-light);
}

.hero-background-video,
.hero-video-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background-video {
  z-index: -2;
  display: block;
  background: var(--ink);
  object-fit: cover;
  object-position: center 48%;
}

.hero-video-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, color-mix(in oklab, var(--ink) 85%, transparent) 0%, color-mix(in oklab, var(--ink) 58%, transparent) 58%, color-mix(in oklab, var(--ink) 42%, transparent) 100%),
    linear-gradient(0deg, color-mix(in oklab, var(--ink) 54%, transparent) 0%, transparent 55%);
  pointer-events: none;
}

.hero-video .hero-copy {
  position: relative;
  z-index: 1;
}

.hero-video .eyebrow,
.hero-video .index-label,
.hero-video .lede {
  color: color-mix(in oklab, var(--paper-light) 86%, transparent);
}

.hero-video .hero-bottom {
  border-top-color: color-mix(in oklab, var(--paper-light) 36%, transparent);
}

@media (max-width: 42rem) {
  .hero-video .hero-copy {
    min-height: min(82svh, 42rem);
  }

  .hero-background-video {
    object-position: 54% center;
  }

  .hero-video-overlay {
    background: linear-gradient(0deg, color-mix(in oklab, var(--ink) 88%, transparent) 0%, color-mix(in oklab, var(--ink) 58%, transparent) 72%, color-mix(in oklab, var(--ink) 48%, transparent) 100%);
  }
}
/* Subtle ambient film on model sheets — 2026-07-17 */
.board-detail-copy {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.board-detail-copy > :not(.model-background-video) {
  position: relative;
  z-index: 1;
}

.model-background-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--paper);
  object-fit: cover;
  object-position: center 48%;
  opacity: 0.11;
  pointer-events: none;
}

@media (max-width: 42rem) {
  .model-background-video {
    object-position: 54% center;
    opacity: 0.075;
  }
}

@media print {
  .hero-background-video,
  .model-background-video {
    display: none !important;
  }
}
/* Deterministic board lightbox fit — 2026-07-17 */
.lightbox.lightbox-board {
  --board-stage-height: min(76vh, 44rem);
  --board-stage-height: min(76dvh, 44rem);
  --board-bar-height: 3.5rem;
  --board-image-inline: 4rem;
  --board-image-block: 1rem;
  width: min(90vw, 32rem);
  max-width: calc(100vw - 2rem);
  height: calc(var(--board-stage-height) + var(--board-bar-height));
  max-height: calc(100vh - 2rem);
  max-height: calc(100dvh - 2rem);
}

.lightbox.lightbox-board .lightbox-inner {
  height: 100%;
  grid-template-rows: var(--board-stage-height) var(--board-bar-height);
}

.lightbox.lightbox-board .lightbox-stage {
  width: 100%;
  height: 100%;
  padding: 0;
}

.lightbox.lightbox-board .lightbox-stage img {
  position: absolute;
  inset: var(--board-image-block) var(--board-image-inline);
  display: block;
  width: calc(100% - var(--board-image-inline) - var(--board-image-inline));
  height: calc(100% - var(--board-image-block) - var(--board-image-block));
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.lightbox.lightbox-board .lightbox-bar {
  height: var(--board-bar-height);
  min-height: 0;
}

@media (max-width: 42rem) {
  .lightbox.lightbox-board {
    --board-stage-height: min(68vh, 34rem);
    --board-stage-height: min(68dvh, 34rem);
    --board-bar-height: 3.75rem;
    --board-image-inline: 3.25rem;
    --board-image-block: 0.75rem;
    width: calc(100vw - 1rem);
    max-width: calc(100vw - 1rem);
    max-height: calc(100vh - 1rem);
    max-height: calc(100dvh - 1rem);
  }
}
