:root {
  --ink: #171411;
  --ink-soft: #332a24;
  --bone: #eee8dc;
  --bone-surface: #ead4c4;
  --parchment: #d8c9b5;
  --tobacco: #8b6249;
  --ember: #b64a2b;
  --ember-deep: #8e351f;
  --leaf: #68705a;
  --mist: #a99f91;
  --error: #a43e34;
  --photo-black: #030303;
  --powder-coat: #eeede8;
  --brass: #b48735;
  --stainless: #a7a9a6;
  --trace-tobacco: color-mix(in srgb, var(--tobacco) 24%, transparent);
  --trace-bone: color-mix(in srgb, var(--bone) 20%, transparent);
  --trace-brass: color-mix(in srgb, var(--brass) 72%, transparent);
  --trace-paper: color-mix(in srgb, var(--tobacco) 5%, transparent);
  --field-surface: color-mix(in srgb, var(--parchment) 42%, transparent);
  --field-surface-active: color-mix(in srgb, var(--parchment) 64%, transparent);
  --font-body: "Familjen Grotesk", "Helvetica Neue", Arial, sans-serif;
  --container: 1480px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --section-space: clamp(5.5rem, 11vw, 10rem);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bone-surface);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body:not(.template-index) main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--bone-surface);
}

body:not(.template-index) main::before,
body:not(.template-index) main::after {
  position: absolute;
  z-index: 0;
  right: 0;
  left: 0;
  pointer-events: none;
  content: "";
}

body:not(.template-index) main::before {
  top: 0;
  height: clamp(10rem, 24vw, 22rem);
  background:
    linear-gradient(to bottom, var(--ink), transparent 68%),
    url("ambient-bridge-tobacco.webp") 50% 42% / cover no-repeat;
  opacity: 0.16;
  -webkit-mask-image: linear-gradient(to bottom, var(--ink), transparent);
  mask-image: linear-gradient(to bottom, var(--ink), transparent);
}

body:not(.template-index) main::after {
  bottom: 0;
  height: clamp(7rem, 12vw, 11rem);
  background:
    linear-gradient(to bottom, transparent, var(--ink)),
    url("ambient-bridge-ember.webp") 50% 64% / cover no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, transparent, var(--ink));
  mask-image: linear-gradient(to bottom, transparent, var(--ink));
}

.template-cart main::after {
  display: none;
}

.template-cart .cart-page {
  padding-bottom: 0;
}

body:not(.template-index) main > * {
  position: relative;
  z-index: 1;
}

.template-404 main {
  min-height: calc(100svh - 5rem);
}

.template-404 main::after {
  display: none;
}

img,
video,
model-viewer {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

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

button,
summary,
select {
  cursor: pointer;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-weight: 540;
  letter-spacing: -0.028em;
  line-height: 1;
  text-wrap: balance;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.5rem, 4.2vw, 4.2rem);
  letter-spacing: -0.035em;
  line-height: 0.96;
}

h2 {
  max-width: 18ch;
  font-size: clamp(1.85rem, 3.1vw, 3rem);
}

h3 {
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  font-weight: 560;
  line-height: 1.08;
}

p,
.rte {
  max-width: 70ch;
}

.rte > * + * {
  margin-top: 1rem;
}

.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;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 300;
  padding: 0.75rem 1rem;
  color: var(--bone);
  background: var(--ink);
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 4px;
}

.section-shell {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-code,
.meta-label {
  font-size: 0.72rem;
  font-weight: 620;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-code {
  margin-bottom: 1.4rem;
  color: var(--tobacco);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.35rem;
  align-items: center;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  gap: 0.75rem;
  padding: 0.9rem 1.4rem;
  border: 0;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 620;
  line-height: 1;
  text-decoration: none;
  transition:
    color 220ms var(--ease-out),
    background-color 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

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

.button--signal {
  color: var(--bone);
  background: var(--ember);
}

.button--signal:hover {
  background: var(--ember-deep);
}

.button--compact {
  min-height: 2.75rem;
  padding: 0.75rem 1.1rem;
  color: var(--bone);
  background: var(--ink);
}

.button--text,
.text-link {
  min-height: 2.75rem;
  padding-inline: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  text-decoration: underline;
  text-decoration-color: var(--tobacco);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.45rem;
}

.button--light,
.text-link--light {
  color: var(--bone);
}

.button--wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.15rem;
  font-size: 0.9rem;
  font-weight: 620;
}

.icon-arrow {
  width: 1.05rem;
  height: 1.05rem;
  transition: transform 220ms var(--ease-out);
}

a:hover .icon-arrow,
button:hover .icon-arrow {
  transform: translateX(0.25rem);
}

.announcement {
  display: flex;
  min-height: 1.75rem;
  align-items: center;
  justify-content: flex-end;
  padding: 0.35rem var(--gutter);
  color: var(--bone);
  background: var(--tobacco);
  font-size: 0.66rem;
  letter-spacing: 0.11em;
  text-align: right;
  text-transform: uppercase;
}

.announcement p,
.announcement a {
  max-width: 44rem;
}

.site-header {
  position: relative;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(17rem, 1fr) minmax(24rem, auto) minmax(15rem, 1fr);
  align-items: center;
  min-height: 5.75rem;
  padding: 0 var(--gutter);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
  color: var(--ink);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--bone-surface) 96%, white), var(--bone-surface));
}

.template-index .announcement {
  display: none;
}

.template-index .site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom-color: color-mix(in srgb, var(--bone) 18%, transparent);
  color: var(--bone);
  background:
    linear-gradient(to bottom, rgba(23, 20, 17, 0.82), rgba(23, 20, 17, 0.36) 72%, transparent);
}

.brand-lockup,
.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  min-height: 3rem;
  align-items: flex-start;
  justify-content: center;
  gap: 0.32rem;
  text-decoration: none;
}

.brand-lockup__image {
  width: min(13rem, 100%);
}

.brand-lockup__name {
  font-size: 1.15rem;
  font-weight: 640;
  letter-spacing: -0.025em;
  line-height: 1;
}

.site-footer__art {
  display: none;
}

.brand-lockup__descriptor {
  color: var(--tobacco);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.template-index .brand-lockup__descriptor {
  color: color-mix(in srgb, var(--bone) 72%, transparent);
}

.desktop-nav {
  counter-reset: primary-nav;
  justify-content: center;
  gap: clamp(0.15rem, 0.6vw, 0.55rem);
}

.desktop-nav a,
.header-search,
.cart-link {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 640;
  letter-spacing: 0.095em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  counter-increment: primary-nav;
  gap: 0.46rem;
  padding: 0 0.9rem;
  color: color-mix(in srgb, currentColor 82%, transparent);
}

.desktop-nav a::before {
  align-self: flex-start;
  margin-top: 0.85rem;
  color: var(--tobacco);
  content: "0" counter(primary-nav);
  font-size: 0.72rem;
  font-weight: 680;
  letter-spacing: 0.05em;
}

.template-index .desktop-nav a::before {
  color: color-mix(in srgb, var(--bone) 55%, transparent);
}

.desktop-nav a::after {
  position: absolute;
  right: 0.9rem;
  bottom: 0.34rem;
  left: 0.9rem;
  height: 1px;
  background: var(--ember);
  content: "";
  opacity: 0.8;
  transform: scaleX(0);
  transform-origin: left;
  transition:
    opacity 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

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

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: currentColor;
}

.header-actions {
  justify-content: flex-end;
  gap: 1.15rem;
  padding-left: clamp(1rem, 2vw, 2rem);
  border-left: 1px solid color-mix(in srgb, var(--ink) 16%, transparent);
}

.template-index .header-actions {
  border-left-color: color-mix(in srgb, var(--bone) 22%, transparent);
}

.header-search,
.cart-link {
  position: relative;
}

.header-search::after,
.cart-link::after {
  position: absolute;
  right: 0;
  bottom: 0.38rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition:
    opacity 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.header-search:hover::after,
.header-search[aria-current="page"]::after,
.cart-link:hover::after,
.cart-link[aria-current="page"]::after {
  opacity: 0.55;
  transform: scaleX(1);
}

.cart-link {
  gap: 0.5rem;
}

.cart-count {
  display: inline-grid;
  min-width: 1.45rem;
  height: 1.45rem;
  place-items: center;
  padding-inline: 0.25rem;
  border-radius: 999px;
  color: var(--bone);
  background: var(--ink);
  font-size: 0.66rem;
  letter-spacing: 0;
}

.template-index .cart-count {
  color: var(--ink);
  background: var(--bone);
}

.mobile-menu {
  display: none;
}

.atelier-hero {
  position: relative;
  min-height: min(58rem, 94svh);
  overflow: hidden;
  color: var(--bone);
  background: var(--photo-black);
}

.atelier-hero__media,
.atelier-hero__veil {
  position: absolute;
  inset: 0;
}

.atelier-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  animation: hero-focus 1.6s var(--ease-out) both;
}

.atelier-hero__veil {
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--photo-black) 86%, transparent) 0%, color-mix(in srgb, var(--photo-black) 56%, transparent) 38%, color-mix(in srgb, var(--photo-black) 12%, transparent) 72%, transparent 100%),
    linear-gradient(0deg, color-mix(in srgb, var(--photo-black) 86%, transparent) 0%, transparent 62%);
}

.atelier-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: min(58rem, 94svh);
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  padding-top: 10rem;
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}

.atelier-hero__copy {
  max-width: 42rem;
}

.atelier-hero .section-code {
  color: var(--parchment);
}

.atelier-hero__text {
  max-width: 34rem;
  margin-top: 1.4rem;
  color: rgba(238, 232, 220, 0.86);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.atelier-hero__note {
  max-width: 15rem;
  padding-bottom: 0.7rem;
  color: rgba(238, 232, 220, 0.7);
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: right;
}

@keyframes hero-focus {
  from {
    filter: blur(6px);
    transform: scale(1.055);
  }
  to {
    filter: blur(0);
    transform: scale(1);
  }
}

.purpose-section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.purpose-section__header {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(16rem, 4fr);
  gap: var(--gutter);
  align-items: end;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.purpose-section__header .section-code {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.purpose-section__header h2 {
  grid-column: 1;
}

.purpose-section__text {
  grid-column: 2;
  color: var(--ink-soft);
}

.purpose-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2.5rem);
}

.purpose-item {
  min-width: 0;
}

.purpose-item__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--parchment);
}

.purpose-item__media img,
.story-frame__media img,
.tool-card__media img,
.about-workshop__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.purpose-item:nth-child(2) .purpose-item__media {
  margin-top: clamp(2rem, 5vw, 5.5rem);
}

.purpose-item:hover .purpose-item__media img,
.story-frame:hover .story-frame__media img,
.tool-card:hover .tool-card__media img {
  transform: scale(1.035);
}

.purpose-item__body {
  padding-top: 1.35rem;
}

.purpose-item__body p {
  margin-top: 0.7rem;
  color: var(--ink-soft);
}

.collection-preview,
.workshop-story,
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.collection-preview > .section-shell,
.workshop-story > .section-shell,
.site-footer > .section-shell {
  position: relative;
  z-index: 1;
}

.ambient-bridge {
  position: absolute;
  z-index: 0;
  top: -1px;
  right: 0;
  left: 0;
  height: clamp(18rem, 34vw, 32rem);
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    to bottom,
    var(--ink) 0%,
    color-mix(in srgb, var(--ink) 72%, transparent) 52%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    var(--ink) 0%,
    color-mix(in srgb, var(--ink) 72%, transparent) 52%,
    transparent 100%
  );
}

.ambient-bridge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.ambient-bridge--tobacco {
  opacity: 0.5;
}

.ambient-bridge--tobacco img {
  object-position: 50% 58%;
  filter: saturate(0.72) contrast(0.9) brightness(0.82);
}

.ambient-bridge--parchment {
  opacity: 0.28;
}

.ambient-bridge--parchment img {
  object-position: 52% 42%;
  filter: saturate(0.52) contrast(0.88) brightness(0.64);
}

.purpose-item__status {
  display: inline-block;
  margin-top: 1rem;
  color: var(--tobacco);
  font-size: 0.76rem;
}

.workshop-story {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  color: var(--bone);
  background: var(--ink);
}

.workshop-story__header {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(16rem, 4fr);
  gap: var(--gutter);
  align-items: end;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.workshop-story__header .section-code {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: var(--parchment);
}

.workshop-story__text {
  color: rgba(238, 232, 220, 0.68);
}

.workshop-story__sequence {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem) var(--gutter);
}

.story-frame {
  min-width: 0;
}

.story-frame--1 {
  grid-column: 1 / span 7;
}

.story-frame--2 {
  grid-column: 8 / -1;
  margin-top: clamp(7rem, 14vw, 15rem);
}

.story-frame--3 {
  grid-column: 3 / span 7;
  margin-top: clamp(2rem, 6vw, 6rem);
}

.story-frame--4 {
  grid-column: 9 / -1;
}

.story-frame__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-soft);
}

.story-frame--2 .story-frame__media,
.story-frame--4 .story-frame__media {
  aspect-ratio: 4 / 5;
}

.story-frame figcaption {
  display: grid;
  grid-template-columns: minmax(9rem, 0.9fr) 1.1fr;
  gap: 1.25rem;
  padding-top: 1.2rem;
}

.story-frame figcaption p {
  color: rgba(238, 232, 220, 0.64);
}

.collection-preview {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  color: var(--bone);
  background: linear-gradient(
    to bottom,
    var(--ink-soft) 0%,
    var(--ink-soft) 22%,
    var(--photo-black) 56%,
    var(--ink) 100%
  );
}

.collection-preview__header {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(16rem, 4fr);
  gap: var(--gutter);
  align-items: end;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.collection-preview .section-code {
  color: var(--parchment);
}

.collection-preview__header > div:last-child {
  color: rgba(238, 232, 220, 0.7);
}

.catalogue-empty {
  display: grid;
  grid-template-columns: minmax(18rem, 4fr) minmax(0, 8fr);
  gap: var(--gutter);
  align-items: end;
}

.catalogue-empty__copy {
  padding-bottom: clamp(1rem, 4vw, 4rem);
}

.catalogue-empty__eyebrow {
  margin-bottom: 1.2rem;
  color: var(--parchment);
  font-size: 0.72rem;
  font-weight: 620;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.catalogue-empty__copy p:not(.catalogue-empty__eyebrow) {
  margin-top: 1rem;
  color: rgba(238, 232, 220, 0.64);
}

.catalogue-empty__copy .button {
  margin-top: 2rem;
}

.catalogue-empty__product {
  position: relative;
  isolation: isolate;
  min-height: clamp(24rem, 42vw, 38rem);
  overflow: hidden;
  background: var(--photo-black);
}

.catalogue-empty__product::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(110deg, rgba(23, 20, 17, 0.12), transparent 44%, rgba(139, 98, 73, 0.08));
  content: "";
  pointer-events: none;
}

.catalogue-empty__image {
  position: absolute;
  inset: 7% 10%;
  width: 80%;
  height: 86%;
  object-fit: contain;
  object-position: center;
  transition: transform 900ms var(--ease-out);
}

.catalogue-empty__product:hover .catalogue-empty__image {
  transform: scale(1.012);
}

.catalogue-empty__product span {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.2rem;
  color: rgba(238, 232, 220, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-notes {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: var(--gutter);
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.trust-notes__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3.5rem);
}

.trust-note {
  padding-top: 0;
}

.trust-note p {
  margin-top: 0.8rem;
  color: var(--ink-soft);
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(5rem, 9vw, 8rem);
  color: var(--bone);
  background: var(--ink);
}

.site-footer::before {
  position: absolute;
  z-index: 0;
  inset: 0 0 auto;
  height: clamp(20rem, 38vw, 34rem);
  background: url("ambient-bridge-ember.webp") 50% 62% / cover no-repeat;
  content: "";
  opacity: 0.56;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, var(--ink), transparent);
  mask-image: linear-gradient(to bottom, var(--ink), transparent);
}

.site-footer--minimal {
  padding-top: 1rem;
}

.site-footer--minimal::before {
  height: 10rem;
  opacity: 0.24;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.site-footer__lead,
.site-footer__grid,
.site-footer__base {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.site-footer__lead {
  display: grid;
  grid-template-columns: minmax(12rem, 3fr) minmax(0, 6fr) minmax(10rem, 3fr);
  gap: var(--gutter);
  align-items: end;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.site-footer__mark {
  align-self: start;
  font-weight: 650;
}

.site-footer__lead h2 {
  max-width: 21ch;
}

.site-footer__lead .button {
  justify-self: end;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gutter);
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.site-footer__grid nav {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
}

.site-footer__grid a {
  width: fit-content;
  color: rgba(238, 232, 220, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.45;
  text-decoration: none;
}

.site-footer__grid .meta-label {
  font-size: 0.78rem;
}

.site-footer__grid a:hover {
  color: var(--bone);
}

.site-footer__status p:last-child {
  margin-top: 1rem;
  color: rgba(238, 232, 220, 0.62);
}

.site-footer__base {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
  color: rgba(238, 232, 220, 0.48);
  font-size: 0.72rem;
}

/* Catalogue and products */

.collection-page,
.product-page,
.about-workshop,
.contact-page,
.cart-page,
.search-page,
.main-page,
.not-found {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: var(--section-space);
}

.route-banner-shell {
  padding-top: clamp(4rem, 8vw, 7rem);
}

.route-banner {
  position: relative;
  min-height: clamp(25rem, 48vw, 46rem);
  overflow: hidden;
  background: var(--ink);
}

.route-banner > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.route-banner__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 16, 13, 0.62), transparent 52%),
    linear-gradient(0deg, rgba(20, 16, 13, 0.44), transparent 42%);
  pointer-events: none;
}

.route-banner figcaption {
  position: absolute;
  right: clamp(1.25rem, 3vw, 3rem);
  bottom: clamp(1.25rem, 3vw, 3rem);
  left: clamp(1.25rem, 3vw, 3rem);
  display: grid;
  grid-template-columns: minmax(9rem, 1fr) minmax(14rem, 2fr);
  gap: var(--gutter);
  align-items: end;
  color: var(--bone);
}

.route-banner__code {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-banner__line {
  max-width: 24ch;
  justify-self: end;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  line-height: 1.08;
  text-align: right;
}

.route-banner--product > img {
  object-position: center 57%;
}

.route-banner--collection > img {
  object-position: center 54%;
}

.route-banner--about > img {
  object-position: center 48%;
}

.route-banner--contact {
  min-height: clamp(20rem, 32vw, 32rem);
}

.route-banner--contact > img {
  object-position: center 56%;
}

.route-banner--search > img,
.route-banner--cart > img {
  object-position: center 52%;
}

.search-page > .route-banner {
  grid-column: 1 / -1;
}

.route-banner + .collection-page__header,
.route-banner + .about-workshop__atmosphere + .about-workshop__header,
.route-banner + .contact-page__header,
.route-banner + .cart-page__header,
.route-banner + header {
  margin-top: clamp(4rem, 8vw, 7rem);
}

.not-found > .route-banner + .not-found__code {
  margin-top: clamp(4rem, 8vw, 7rem);
}

.collection-page__header,
.about-workshop__header,
.contact-page__header,
.cart-page__header {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(16rem, 4fr);
  gap: var(--gutter);
  align-items: end;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.collection-page__header .section-code,
.about-workshop__header .section-code,
.contact-page__header .section-code,
.cart-page__header .section-code {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.collection-page__description,
.about-workshop__header .rte,
.contact-page__header .rte {
  color: var(--ink-soft);
}

.collection-page__count {
  display: flex;
  gap: 0.55rem;
  align-items: baseline;
  margin-top: 1.25rem;
  color: var(--tobacco);
  font-size: 0.78rem;
}

.catalogue-layout {
  display: grid;
  grid-template-columns: minmax(13rem, 2fr) minmax(0, 10fr);
  gap: var(--gutter);
}

.catalogue-layout--single {
  display: block;
}

.catalogue-controls {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.filter-group {
  padding: 0.8rem 0 1.2rem;
}

.filter-group summary {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  min-height: 2.75rem;
  font-weight: 600;
}

.filter-group__body {
  display: grid;
  gap: 0.65rem;
  padding: 0.7rem 0 0.5rem;
}

.filter-option {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  min-height: 2.25rem;
}

.filter-option > span:last-child {
  margin-left: auto;
  color: var(--tobacco);
}

.price-range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.sort-form {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.75rem;
}

.sort-form select,
.filter-group input[type="number"] {
  width: 100%;
  min-height: 2.8rem;
  border: 0;
  padding: 0.7rem 0.85rem;
  background: var(--field-surface);
}

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

.collection-page .catalogue-layout--single .catalogue-grid {
  display: block;
}

.collection-page .catalogue-layout--single .tool-card {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(18rem, 4fr);
  gap: var(--gutter);
  align-items: end;
}

.collection-page .catalogue-layout--single .tool-card__media {
  aspect-ratio: 16 / 10;
  background: var(--photo-black);
}

.collection-page .catalogue-layout--single .tool-card__image {
  inset: 10% 16%;
  width: 68%;
  height: 78%;
}

.collection-page .catalogue-layout--single .tool-card__body {
  padding-bottom: clamp(1rem, 5vw, 5rem);
}

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

.collection-preview .catalogue-grid--single {
  display: block;
}

.collection-preview .catalogue-grid--single .tool-card {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(18rem, 4fr);
  gap: var(--gutter);
  align-items: end;
}

.collection-preview .catalogue-grid--single .tool-card__media {
  aspect-ratio: 16 / 10;
}

.collection-preview .catalogue-grid--single .tool-card__body {
  padding-bottom: clamp(1rem, 5vw, 5rem);
}

.collection-preview .catalogue-grid--single .tool-card__vendor,
.collection-preview .catalogue-grid--single .tool-card__price,
.collection-preview .catalogue-grid--single .tool-card__pending {
  color: rgba(238, 232, 220, 0.68);
}

.collection-preview .catalogue-grid--single .tool-placeholder {
  background:
    radial-gradient(circle at 54% 44%, rgba(216, 201, 181, 0.2), transparent 28%),
    linear-gradient(145deg, #4a3b31, var(--ink));
}

.collection-preview .catalogue-grid--single .tool-placeholder__shape {
  background: rgba(238, 232, 220, 0.16);
}

.tool-card {
  min-width: 0;
}

.tool-card__media {
  position: relative;
  display: block;
  isolation: isolate;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--photo-black);
}

.tool-card__media > a {
  display: block;
  height: 100%;
}

.tool-card__image {
  position: absolute;
  inset: 8% 10%;
  width: 80%;
  height: 84%;
  object-fit: contain;
  object-position: center;
  transition: transform 900ms var(--ease-out);
}

.tool-card__media:hover .tool-card__image {
  transform: scale(1.012);
}

.tool-card__pending {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.tool-card__body {
  padding-top: 1.2rem;
}

.tool-card__index {
  display: none;
}

.tool-card__vendor {
  margin-bottom: 0.45rem;
  color: var(--tobacco);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tool-card__title a {
  text-decoration: none;
}

.tool-card__price {
  margin-top: 0.55rem;
  color: var(--ink-soft);
}

.tool-placeholder {
  position: absolute;
  inset: 0;
  display: block;
  background:
    radial-gradient(circle at 50% 42%, rgba(139, 98, 73, 0.25), transparent 32%),
    linear-gradient(145deg, var(--parchment), #bca78f);
}

.tool-placeholder__axis {
  display: none;
}

.tool-placeholder__shape {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18%;
  height: 55%;
  border-radius: 45% 45% 22% 22%;
  background: rgba(23, 20, 17, 0.18);
  filter: blur(8px);
  transform: translate(-50%, -50%) rotate(24deg);
}

.pagination {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 4rem;
}

.pagination a,
.pagination span {
  display: grid;
  min-width: 2.75rem;
  min-height: 2.75rem;
  place-items: center;
}

.empty-state {
  max-width: 42rem;
  padding: clamp(4rem, 10vw, 9rem) 0;
}

.empty-state p {
  margin-top: 1rem;
  color: var(--ink-soft);
}

.empty-state--cart {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(26rem, 55vw, 42rem);
  max-width: none;
  align-items: end;
  overflow: visible;
  padding: clamp(2rem, 6vw, 5rem);
  color: var(--bone);
  background: transparent;
}

.empty-state--cart::before {
  position: absolute;
  z-index: -2;
  top: -4rem;
  right: calc(50% - 50vw);
  bottom: -4rem;
  left: calc(50% - 50vw);
  background: var(--ink-soft);
  content: "";
  -webkit-mask-image: linear-gradient(to bottom, transparent, var(--ink) 16%, var(--ink) 84%, transparent);
  mask-image: linear-gradient(to bottom, transparent, var(--ink) 16%, var(--ink) 84%, transparent);
}

.empty-state--cart > .tool-placeholder {
  z-index: -1;
  top: -4rem;
  right: calc(50% - 50vw);
  bottom: -4rem;
  left: calc(50% - 50vw);
  background:
    linear-gradient(20deg, color-mix(in srgb, var(--ink) 88%, transparent), transparent),
    url("ambient-bridge-tobacco.webp") 50% 54% / cover no-repeat;
  opacity: 0.78;
  -webkit-mask-image: linear-gradient(to bottom, transparent, var(--ink) 18%, var(--ink) 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, var(--ink) 18%, var(--ink) 82%, transparent);
}

.empty-state--cart > div:last-child {
  position: relative;
  max-width: 30rem;
}

.empty-state--cart p {
  color: color-mix(in srgb, var(--bone) 72%, transparent);
}

.empty-state--cart .button {
  margin-top: 1.75rem;
}

.template-cart .empty-state--cart::before {
  bottom: 0;
  -webkit-mask-image: linear-gradient(to bottom, transparent, var(--ink) 16%, var(--ink));
  mask-image: linear-gradient(to bottom, transparent, var(--ink) 16%, var(--ink));
}

.template-cart .empty-state--cart > .tool-placeholder {
  bottom: 0;
  -webkit-mask-image: linear-gradient(to bottom, transparent, var(--ink) 18%, var(--ink));
  mask-image: linear-gradient(to bottom, transparent, var(--ink) 18%, var(--ink));
}

.product-page {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(20rem, 4fr);
  gap: var(--gutter);
}

.product-method {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.product-specifications {
  position: relative;
  isolation: isolate;
  margin-top: clamp(3rem, 6vw, 6rem);
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  color: var(--bone);
  background: transparent;
}

.product-specifications::before {
  position: absolute;
  z-index: -1;
  top: -8rem;
  right: calc(50% - 50vw);
  bottom: 0;
  left: calc(50% - 50vw);
  background: linear-gradient(to bottom, transparent, var(--ink) 8rem, var(--ink));
  content: "";
}

.product-specifications .section-intro__note {
  color: rgba(238, 232, 220, 0.68);
}

.specification-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem) var(--gutter);
  margin: 0;
}

.specification-ledger > div {
  display: grid;
  grid-template-columns: minmax(7rem, 1fr) minmax(0, 2fr);
  gap: 1.5rem;
  padding: 0;
}

.specification-ledger dt {
  color: rgba(238, 232, 220, 0.56);
  font-size: 0.76rem;
}

.specification-ledger dd {
  margin: 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(16rem, 4fr);
  gap: var(--gutter);
  align-items: end;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.section-intro > .section-code {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-intro__note {
  color: var(--ink-soft);
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gutter);
  padding: 0;
  margin: 0;
  list-style: none;
}

.method-steps li {
  padding-top: 0;
}

.method-steps li > span {
  color: var(--tobacco);
  font-size: 0.72rem;
}

.method-steps li > div {
  margin-top: 1.25rem;
}

.method-steps p {
  margin-top: 0.7rem;
  color: var(--ink-soft);
}

.product-inspection__meta {
  display: none;
}

.product-media-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5.5rem) clamp(1rem, 2.5vw, 2.5rem);
}

.product-media {
  position: relative;
  overflow: hidden;
  background: var(--photo-black);
}

.product-media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5rem;
  background: linear-gradient(to bottom, transparent, color-mix(in srgb, var(--photo-black) 72%, transparent));
  content: "";
  pointer-events: none;
}

.product-media img {
  width: 100%;
  height: auto;
  transition: transform 700ms var(--ease-out);
}

.product-media:hover img {
  transform: scale(1.012);
}

.product-media figcaption {
  position: absolute;
  z-index: 1;
  right: 1.25rem;
  bottom: 1.1rem;
  max-width: min(20rem, calc(100% - 2.5rem));
  color: rgba(238, 232, 220, 0.72);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-align: right;
  text-transform: uppercase;
}

.product-media--primary {
  grid-column: 1 / -1;
}

.product-media--detail-left {
  grid-column: 1 / span 7;
}

.product-media--detail-right {
  grid-column: 7 / -1;
  margin-top: clamp(4rem, 10vw, 10rem);
}

.product-media--wide {
  grid-column: 2 / span 9;
}

.product-media--closing {
  grid-column: 4 / -1;
}

.product-media--empty {
  min-height: min(70vw, 48rem);
}

.product-media--empty .meta-label {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
}

.product-decision {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.product-decision .section-code {
  margin-bottom: 1rem;
}

.product-decision__vendor {
  margin-bottom: 0.7rem;
  color: var(--tobacco);
}

.product-price {
  margin-top: 1.5rem;
  font-size: 1.15rem;
}

.product-decision__description {
  margin-top: 2rem;
  color: var(--ink-soft);
}

.product-decision form {
  margin-top: 2.5rem;
}

.product-decision label {
  display: block;
  margin: 1.2rem 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
}

.product-decision select {
  width: 100%;
  min-height: 3rem;
  border: 0;
  padding: 0.7rem 0.85rem;
  background: var(--field-surface);
}

.quantity-control {
  display: grid;
  grid-template-columns: 2.75rem 1fr 2.75rem;
  max-width: 10rem;
  margin-bottom: 1.5rem;
  gap: 0.2rem;
  padding: 0.2rem;
  background: var(--field-surface);
}

.quantity-control button,
.quantity-control input {
  min-height: 2.75rem;
  border: 0;
  background: transparent;
  text-align: center;
}

.form-status {
  min-height: 1.5rem;
  margin-top: 1rem;
  color: var(--error);
}

.product-facts {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 0;
}

/* Editorial and service pages */

.about-workshop__collage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
  margin-bottom: var(--section-space);
}

.about-workshop__image {
  overflow: hidden;
}

.about-workshop__image figcaption {
  padding-top: 0.75rem;
  color: var(--tobacco);
  font-size: 0.72rem;
}

.about-workshop__image--wide {
  grid-column: 1 / span 8;
}

.about-workshop__image--detail {
  grid-column: 9 / -1;
  align-self: end;
  margin-bottom: -4rem;
}

.workshop-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gutter);
}

.workshop-principles > * {
  padding-top: 0;
}

.workshop-principles > * > span {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--tobacco);
  font-size: 0.72rem;
}

.workshop-principles h2 {
  max-width: 16ch;
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(18rem, 4fr);
  gap: var(--gutter);
}

.contact-ticket {
  max-width: 48rem;
}

/* Approved first-principles page family */

.product-showcase {
  padding-top: clamp(2rem, 4vw, 4.5rem);
  background: var(--bone-surface);
}

body.template-product main > .product-showcase {
  z-index: 2;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(22rem, 5fr);
  gap: var(--gutter);
  align-items: stretch;
}

.product-hero__media {
  min-height: clamp(38rem, 54vw, 50rem);
  margin: 0;
  background: var(--photo-black);
}

.product-hero__media .evidence-media__image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 61%;
}

.product-hero__media figcaption {
  right: clamp(1.25rem, 2vw, 2rem);
  bottom: clamp(1.25rem, 2vw, 2rem);
  left: clamp(1.25rem, 2vw, 2rem);
  color: color-mix(in srgb, var(--bone) 88%, transparent);
  text-align: left;
}

.product-hero__decision {
  align-self: center;
  padding: clamp(1rem, 3vw, 3rem) 0 clamp(1rem, 3vw, 3rem) clamp(0.5rem, 2vw, 2.5rem);
}

.product-hero__decision h1 {
  max-width: 13ch;
  margin-top: 0.85rem;
  font-size: clamp(2.5rem, 4.2vw, 4.2rem);
}

.product-hero__decision .product-decision__description {
  max-width: 39rem;
  margin-top: 1.75rem;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.65;
}

.product-commerce,
.product-inquiry {
  margin-top: clamp(2rem, 4vw, 3.25rem);
  padding: 1.5rem 0;
  border-top: 1px solid color-mix(in srgb, var(--ink) 28%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
}

.product-commerce > p:not(.meta-label, .product-price),
.product-inquiry > p:not(.meta-label, .product-price) {
  max-width: 35rem;
  color: var(--ink-soft);
}

.product-commerce .product-price,
.product-inquiry .product-price {
  margin: 0.35rem 0 0.6rem;
  font-size: 1.15rem;
}

.product-commerce form {
  margin-top: 1.5rem;
}

.product-commerce label {
  display: block;
  margin: 1.1rem 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
}

.product-commerce select {
  width: 100%;
  min-height: 3rem;
  border: 0;
  padding: 0.7rem 0.85rem;
  background: var(--field-surface);
}

.product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
}

.product-hero__actions .text-link {
  font-size: 0.9rem;
}

.product-keyfacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.product-keyfacts > div {
  min-width: 0;
}

.product-keyfacts dt {
  color: color-mix(in srgb, var(--tobacco) 78%, var(--ink));
  font-size: 0.76rem;
}

.product-keyfacts dd {
  margin: 0.35rem 0 0;
  line-height: 1.4;
}

.product-workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gutter);
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  margin-top: clamp(2rem, 5vw, 4.5rem);
  list-style: none;
  border-top: 0;
}

.product-workflow li {
  display: grid;
  grid-template-columns: minmax(4.5rem, 1fr) minmax(0, 2fr);
  gap: 1.25rem;
  align-items: start;
}

.product-workflow span {
  color: color-mix(in srgb, var(--tobacco) 78%, var(--ink));
  font-weight: 650;
}

.product-workflow p {
  margin: 0;
  color: var(--ink-soft);
}

.evidence-media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--photo-black);
}

.evidence-media__image {
  position: absolute;
  inset: 6% 9%;
  width: 82%;
  height: 88%;
  object-fit: contain;
  object-position: center;
  transition: transform 900ms var(--ease-out);
}

.evidence-media:hover .evidence-media__image {
  transform: scale(1.01);
}

.evidence-media figcaption {
  position: absolute;
  right: 1.25rem;
  bottom: 1rem;
  left: 1.25rem;
  z-index: 1;
  color: color-mix(in srgb, var(--bone) 86%, transparent);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-align: right;
  text-transform: uppercase;
}

.product-evidence {
  color: var(--bone);
}

.evidence-chapter {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(5.5rem, 9vw, 8rem);
  padding-bottom: clamp(5.5rem, 9vw, 8rem);
  background: var(--ink);
}

.evidence-chapter::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(ellipse at 72% 54%, rgba(139, 98, 73, 0.14), transparent 48%),
    linear-gradient(to bottom, var(--bone-surface) 0, var(--ink) clamp(4rem, 7vw, 6rem), var(--ink) 100%);
  content: "";
}

.evidence-chapter--stop {
  color: var(--bone);
  background: var(--ink-soft);
}

.evidence-chapter--stop::before {
  background:
    radial-gradient(ellipse at 28% 58%, rgba(139, 98, 73, 0.18), transparent 48%),
    linear-gradient(to bottom, var(--bone-surface) 0, var(--ink-soft) clamp(4rem, 7vw, 6rem), var(--ink-soft) 100%);
}

.evidence-chapter--blade::before {
  background:
    radial-gradient(ellipse at 72% 54%, rgba(139, 98, 73, 0.12), transparent 48%),
    linear-gradient(to bottom, var(--ink-soft), var(--ink) clamp(3rem, 5vw, 4.5rem), var(--ink));
}

.evidence-chapter--construction {
  background: var(--ink-soft);
}

.evidence-chapter--construction::before {
  background:
    radial-gradient(ellipse at 70% 60%, rgba(216, 201, 181, 0.09), transparent 46%),
    linear-gradient(to bottom, var(--ink-soft), color-mix(in srgb, var(--ink-soft) 86%, var(--ink)));
}

.evidence-chapter__copy {
  display: grid;
  grid-template-columns: minmax(10rem, 3fr) minmax(0, 5fr) minmax(18rem, 4fr);
  gap: var(--gutter);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.evidence-chapter__copy .section-code {
  align-self: start;
  color: var(--parchment);
}

.evidence-chapter--stop .evidence-chapter__copy .section-code {
  color: var(--parchment);
}

.evidence-chapter__copy p:last-child {
  color: color-mix(in srgb, var(--bone) 68%, transparent);
}

.evidence-chapter--stop .evidence-chapter__copy p:last-child {
  color: color-mix(in srgb, var(--bone) 68%, transparent);
}

.evidence-chapter__media {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
  align-items: start;
}

.evidence-chapter__media .evidence-media--large {
  grid-column: 1 / span 8;
  min-height: clamp(28rem, 43vw, 38rem);
}

.evidence-chapter__media .evidence-media--small {
  grid-column: 9 / -1;
  min-height: clamp(22rem, 30vw, 28rem);
  margin-top: clamp(4rem, 8vw, 7rem);
}

.evidence-chapter--stop .evidence-chapter__media .evidence-media--small {
  grid-column: 9 / -1;
  margin-top: clamp(4rem, 8vw, 7rem);
}

.evidence-chapter--stop .evidence-chapter__media .evidence-media--large {
  grid-column: 1 / span 8;
  margin-top: 0;
}

.product-recap {
  position: relative;
  z-index: 2;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(14rem, 3fr);
  gap: var(--gutter);
  align-items: end;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  color: var(--bone);
}

.product-recap::before {
  position: absolute;
  z-index: -1;
  inset: 0 calc(50% - 50vw);
  background: var(--ink-soft);
  content: "";
}

.product-recap h2 {
  max-width: 18ch;
  margin-top: 0.75rem;
}

.product-recap p:last-child {
  max-width: 44rem;
  margin-top: 1.25rem;
  color: color-mix(in srgb, var(--bone) 76%, transparent);
}

.product-recap .button {
  justify-self: end;
}

.product-specifications {
  margin-top: 0;
  color: var(--ink);
}

.product-specifications::before {
  top: -7rem;
  background:
    linear-gradient(to bottom, var(--ink-soft), color-mix(in srgb, var(--parchment) 72%, transparent) 7rem, transparent 15rem),
    var(--bone-surface);
}

.product-specifications .section-intro__note {
  color: var(--ink-soft);
}

.product-specifications .specification-ledger dt {
  color: var(--tobacco);
  font-size: 0.78rem;
}

.product-specifications .specification-ledger dd {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.5;
}

.about-workshop {
  position: relative;
  isolation: isolate;
}

.about-workshop__atmosphere {
  position: absolute;
  z-index: -1;
  top: clamp(22rem, 38vw, 34rem);
  right: calc(50% - 50vw);
  width: min(34rem, 42vw);
  height: clamp(34rem, 58vw, 54rem);
  overflow: hidden;
  opacity: 0.13;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to left, var(--ink), transparent);
  mask-image: linear-gradient(to left, var(--ink), transparent);
}

.about-workshop__atmosphere img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-workshop__image--wide {
  aspect-ratio: 5 / 4;
}

.about-workshop__image--detail {
  aspect-ratio: 4 / 5;
}

.workshop-principles {
  border-top: 1px solid color-mix(in srgb, var(--tobacco) 36%, transparent);
}

.workshop-principles > * {
  padding-top: 2rem;
}

.workshop-principles > * + * {
  border-left: 1px solid color-mix(in srgb, var(--tobacco) 24%, transparent);
  padding-left: var(--gutter);
}

.workshop-principles > * > span {
  display: none;
}

.collection-page__header {
  grid-template-columns: minmax(0, 8fr) minmax(18rem, 4fr);
}

.collection-page__count {
  justify-self: end;
}

.catalogue-layout--single .catalogue-grid {
  grid-template-columns: minmax(0, 1fr);
}

.catalogue-layout--single .tool-card {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(18rem, 4fr);
  gap: var(--gutter);
  align-items: end;
}

.catalogue-layout--single .tool-card__media {
  width: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 4 / 3;
  background: var(--photo-black);
}

.catalogue-layout--single .tool-card__image {
  inset: 10% 16%;
  width: 68%;
  height: 78%;
}

.catalogue-layout--single .tool-card__body {
  padding-bottom: clamp(1rem, 4vw, 4rem);
}

.field-row {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.35rem;
}

.field-row label {
  font-size: 0.78rem;
  font-weight: 600;
}

.field-row input,
.field-row textarea,
.field-row select,
.search-form input {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.85rem 1rem;
  border: 0;
  border-radius: 0;
  background: var(--field-surface);
  transition: background-color 180ms var(--ease-out);
}

.field-row input:hover,
.field-row textarea:hover,
.field-row select:hover,
.field-row input:focus,
.field-row textarea:focus,
.field-row select:focus,
.search-form input:hover,
.search-form input:focus {
  background: var(--field-surface-active);
}

.field-row textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-message {
  margin-bottom: 1.5rem;
}

.form-message--success {
  color: var(--leaf);
}

.form-message--error {
  color: var(--error);
}

.contact-notes {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
}

.contact-note {
  padding-top: 0;
}

.contact-note h2 {
  max-width: 18ch;
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
}

.contact-note .rte {
  margin-top: 0.8rem;
  color: var(--ink-soft);
}

.search-page > h1 {
  margin-bottom: 3rem;
}

.search-form {
  max-width: 52rem;
  margin-bottom: 4rem;
}

.search-form > label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
}

.search-form > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
}

.search-page {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(20rem, 5fr);
  gap: clamp(3rem, 8vw, 8rem) var(--gutter);
  min-height: 70vh;
  align-content: start;
}

.search-page > header {
  grid-column: 1;
}

.search-page > .search-form {
  grid-column: 2;
  align-self: end;
  margin: 0;
}

.search-page > .empty-state,
.search-page > .search-results {
  grid-column: 1 / -1;
}

.search-results {
  margin-top: 4rem;
}

.search-result {
  padding-block: 1.5rem;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(18rem, 4fr);
  gap: var(--gutter);
}

.cart-line {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: start;
  padding-block: 1.5rem;
}

.cart-line__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--parchment);
}

.cart-line__copy h2 {
  font-size: 1.25rem;
}

.cart-line__quantity {
  margin-top: 1rem;
}

.cart-summary {
  position: sticky;
  top: 2rem;
  align-self: start;
  padding-top: 0;
}

.cart-summary > * + * {
  margin-top: 1rem;
}

.not-found {
  min-height: calc(100svh - 5rem);
}

.not-found__art {
  display: none;
}

.not-found__code {
  margin-bottom: 1rem;
  color: var(--tobacco);
  font-size: clamp(5rem, 18vw, 14rem);
  font-weight: 520;
  letter-spacing: -0.06em;
  line-height: 0.75;
}

.not-found p {
  margin-top: 1rem;
  color: var(--ink-soft);
}

/* Material traces */

.atelier-hero__content::before {
  position: absolute;
  top: 20%;
  right: clamp(-13rem, -9vw, -6rem);
  width: clamp(18rem, 29vw, 31rem);
  aspect-ratio: 1;
  border: 1px solid var(--trace-brass);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  content: "";
  opacity: 0.1;
  pointer-events: none;
  transform: rotate(-17deg);
}

.collection-preview::after,
.workshop-story::after {
  position: absolute;
  z-index: 0;
  right: -4%;
  bottom: 4%;
  width: min(48rem, 58vw);
  height: min(32rem, 56%);
  background:
    linear-gradient(112deg, transparent 0 31%, var(--trace-bone) 31.08%, transparent 31.16%),
    linear-gradient(104deg, transparent 0 48%, var(--trace-bone) 48.06%, transparent 48.14%),
    linear-gradient(121deg, transparent 0 67%, var(--trace-bone) 67.05%, transparent 67.12%),
    radial-gradient(ellipse at 68% 54%, var(--trace-tobacco), transparent 62%);
  content: "";
  opacity: 0.24;
  pointer-events: none;
  transform: rotate(-4deg);
}

.workshop-story::after {
  right: auto;
  bottom: 8%;
  left: -7%;
  opacity: 0.2;
  transform: rotate(7deg);
}

.product-workflow::before,
.product-workflow::after {
  position: absolute;
  top: 0;
  content: "";
  pointer-events: none;
}

.product-workflow::before {
  left: var(--gutter);
  width: min(34rem, 42%);
  height: 1px;
  background: linear-gradient(90deg, var(--trace-tobacco) 0 74%, transparent 74% 80%, var(--trace-tobacco) 80%);
}

.product-workflow::after {
  left: min(34rem, calc(42% + var(--gutter)));
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--trace-brass);
  transform: translate(-50%, -2px);
}

.evidence-chapter::after {
  position: absolute;
  z-index: 0;
  top: 12%;
  right: -6%;
  width: min(34rem, 42vw);
  height: 72%;
  background:
    linear-gradient(106deg, transparent 0 34%, var(--trace-bone) 34.04%, transparent 34.1%),
    linear-gradient(111deg, transparent 0 53%, var(--trace-bone) 53.04%, transparent 53.1%),
    linear-gradient(101deg, transparent 0 72%, var(--trace-bone) 72.04%, transparent 72.1%);
  content: "";
  opacity: 0.2;
  pointer-events: none;
  transform: rotate(-6deg);
}

.evidence-chapter:nth-child(even)::after {
  right: auto;
  left: -8%;
  transform: rotate(8deg);
}

.evidence-chapter > * {
  position: relative;
  z-index: 1;
}

.product-specifications::after {
  position: absolute;
  z-index: 0;
  top: clamp(5rem, 9vw, 9rem);
  right: calc(50% - 58vw);
  width: min(28rem, 32vw);
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--brass) 7%, transparent);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  background:
    linear-gradient(114deg, transparent 0 37%, var(--trace-paper) 37.08%, transparent 37.16%),
    linear-gradient(102deg, transparent 0 61%, var(--trace-paper) 61.06%, transparent 61.14%),
    radial-gradient(ellipse at 34% 38%, var(--trace-paper), transparent 66%);
  content: "";
  pointer-events: none;
  transform: rotate(-23deg);
}

.product-specifications > * {
  position: relative;
  z-index: 1;
}

.story-frame figcaption {
  position: relative;
}

.story-frame:nth-child(odd) figcaption::before,
.story-frame:nth-child(odd) figcaption::after {
  position: absolute;
  top: 0;
  content: "";
  pointer-events: none;
}

.story-frame:nth-child(odd) figcaption::before {
  left: 0;
  width: min(12rem, 48%);
  height: 1px;
  background: linear-gradient(90deg, var(--trace-bone) 0 72%, transparent 72% 79%, var(--trace-bone) 79%);
}

.story-frame:nth-child(odd) figcaption::after {
  left: min(12rem, 48%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--trace-brass);
  transform: translate(-50%, -1px);
}

.about-workshop::after {
  position: absolute;
  z-index: -1;
  top: 48%;
  right: calc(50% - 56vw);
  width: min(30rem, 36vw);
  height: min(42rem, 52vw);
  background:
    linear-gradient(84deg, transparent 0 39%, var(--trace-tobacco) 39.06%, transparent 39.14%),
    linear-gradient(96deg, transparent 0 57%, var(--trace-tobacco) 57.05%, transparent 57.13%),
    radial-gradient(ellipse at 66% 45%, var(--trace-paper), transparent 62%);
  content: "";
  opacity: 0.18;
  pointer-events: none;
  transform: rotate(6deg);
}

.contact-page::after {
  position: absolute;
  z-index: 0;
  top: clamp(42rem, 62vw, 58rem);
  right: var(--gutter);
  width: min(16rem, 22vw);
  height: 6px;
  background:
    radial-gradient(circle, var(--trace-brass) 0 2px, transparent 2.5px) 100% 50% / 6px 6px no-repeat,
    linear-gradient(90deg, var(--trace-tobacco) 0 76%, transparent 76% 82%, var(--trace-tobacco) 82% 96%, transparent 96%) 0 50% / calc(100% - 7px) 1px no-repeat;
  content: "";
  pointer-events: none;
}

.route-banner--collection::after,
.route-banner--search::after,
.route-banner--cart::after,
.route-banner--not-found::after {
  position: absolute;
  z-index: 2;
  right: clamp(1.25rem, 3vw, 3rem);
  bottom: clamp(1.25rem, 3vw, 3rem);
  width: min(14rem, 28vw);
  height: 6px;
  background:
    radial-gradient(circle, var(--trace-brass) 0 2px, transparent 2.5px) 100% 50% / 6px 6px no-repeat,
    linear-gradient(90deg, var(--trace-bone) 0 64%, transparent 64% 71%, var(--trace-bone) 71% 96%, transparent 96%) 0 50% / calc(100% - 7px) 1px no-repeat;
  content: "";
  pointer-events: none;
}

.route-banner--search::after {
  right: auto;
  left: clamp(1.25rem, 3vw, 3rem);
  transform: rotate(-4deg);
}

.route-banner--cart::after {
  width: min(10rem, 22vw);
  transform: rotate(5deg);
}

.route-banner--not-found::after {
  width: min(18rem, 32vw);
  transform: rotate(-7deg);
}

.site-footer::after {
  position: absolute;
  z-index: 1;
  top: 0;
  right: var(--gutter);
  left: var(--gutter);
  height: 0.5rem;
  background:
    radial-gradient(circle, var(--trace-brass) 0 2px, transparent 2.5px) 68% 50% / 6px 6px no-repeat,
    linear-gradient(90deg, var(--trace-bone) 0 18%, transparent 18% 22%, var(--trace-bone) 22% 68%, transparent 68%) 0 50% / 100% 1px no-repeat;
  content: "";
  pointer-events: none;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 5.25rem;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu summary {
    display: flex;
    width: auto;
    height: 2.75rem;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem;
    list-style: none;
  }

  .mobile-menu summary::before {
    margin-right: 0.38rem;
    content: "Menu";
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-menu[open] summary::before {
    content: "Close";
  }

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

  .mobile-menu summary span {
    display: block;
    width: 1.35rem;
    height: 1px;
    background: currentColor;
    transition: transform 220ms var(--ease-out);
  }

  .mobile-menu[open] summary span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .mobile-menu[open] summary span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .mobile-menu__panel {
    position: fixed;
    z-index: 110;
    top: 7rem;
    right: 0;
    left: 0;
    min-height: calc(100svh - 7rem);
    padding: 3.5rem var(--gutter);
    border-top: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
    color: var(--ink);
    background:
      linear-gradient(140deg, var(--bone-surface), color-mix(in srgb, var(--parchment) 54%, var(--bone-surface)));
  }

  .template-index .mobile-menu__panel {
    top: 5.25rem;
    min-height: calc(100svh - 5.25rem);
  }

  .mobile-menu__panel nav {
    display: grid;
    counter-reset: mobile-nav;
  }

  .mobile-menu__panel a {
    position: relative;
    display: flex;
    min-height: 4.8rem;
    align-items: center;
    border-bottom: 1px solid color-mix(in srgb, var(--ink) 13%, transparent);
    counter-increment: mobile-nav;
    font-size: clamp(1.5rem, 5vw, 2.4rem);
    font-weight: 520;
    letter-spacing: -0.025em;
    text-decoration: none;
  }

  .mobile-menu__panel a::before {
    width: 2.4rem;
    color: var(--tobacco);
    content: "0" counter(mobile-nav);
    font-size: 0.66rem;
    font-weight: 680;
    letter-spacing: 0.08em;
  }

  .mobile-menu__panel a[aria-current="page"] {
    color: var(--ember);
  }

  .purpose-section__header,
  .workshop-story__header,
  .collection-preview__header,
  .collection-page__header,
  .about-workshop__header,
  .contact-page__header,
  .cart-page__header {
    grid-template-columns: 1fr 1fr;
  }

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

  .purpose-item:nth-child(2) .purpose-item__media {
    margin-top: 0;
  }

  .purpose-item:nth-child(3) {
    grid-column: 2;
  }

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

  .catalogue-layout {
    grid-template-columns: 1fr;
  }

  .catalogue-controls,
  .product-decision,
  .cart-summary {
    position: static;
  }

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

  .product-page {
    grid-template-columns: minmax(0, 6fr) minmax(18rem, 5fr);
  }

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

  .product-hero__media {
    min-height: clamp(32rem, 68vw, 42rem);
  }

  .product-hero__decision {
    max-width: 46rem;
    padding: 3.5rem 0 1rem;
  }

  .evidence-chapter__copy {
    grid-template-columns: minmax(8rem, 2fr) minmax(0, 5fr);
  }

  .evidence-chapter__copy p:last-child {
    grid-column: 2;
  }

  .section-intro {
    grid-template-columns: 1fr 1fr;
  }

  .collection-preview .catalogue-grid--single .tool-card {
    grid-template-columns: minmax(0, 7fr) minmax(16rem, 5fr);
  }

  .collection-page .catalogue-layout--single .tool-card {
    grid-template-columns: minmax(0, 7fr) minmax(16rem, 5fr);
  }
}

@media (max-width: 989px) {
  .product-specifications::after {
    opacity: 0.52;
  }

  .collection-preview::after,
  .workshop-story::after,
  .evidence-chapter::after,
  .about-workshop::after {
    opacity: 0.16;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(2.55rem, 12vw, 3.65rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .site-header {
    min-height: 4.75rem;
  }

  .header-search,
  .cart-link > span:first-child {
    display: none;
  }

  .header-actions {
    gap: 0.75rem;
    padding-left: 0;
    border-left: 0;
  }

  .mobile-menu__panel {
    top: 6.5rem;
    min-height: calc(100svh - 6.5rem);
    padding-top: 2.5rem;
  }

  .template-index .mobile-menu__panel {
    top: 4.75rem;
    min-height: calc(100svh - 4.75rem);
  }

  .atelier-hero,
  .atelier-hero__content {
    min-height: 48rem;
  }

  .atelier-hero__media img {
    object-position: 58% center;
  }

  .atelier-hero__veil {
    background:
      linear-gradient(0deg, color-mix(in srgb, var(--photo-black) 96%, transparent) 0%, color-mix(in srgb, var(--photo-black) 32%, transparent) 68%, transparent 100%),
      linear-gradient(90deg, color-mix(in srgb, var(--photo-black) 38%, transparent), transparent);
  }

  .atelier-hero__content {
    display: flex;
    padding-bottom: 2.5rem;
  }

  .atelier-hero__note {
    display: none;
  }

  .atelier-hero__text {
    max-width: 28rem;
  }

  .ambient-bridge {
    height: 20rem;
  }

  .ambient-bridge--tobacco {
    opacity: 0.42;
  }

  .ambient-bridge--tobacco img {
    object-position: 44% 58%;
  }

  .ambient-bridge--parchment {
    opacity: 0.22;
  }

  .ambient-bridge--parchment img {
    object-position: 58% 44%;
  }

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

  .purpose-section__header,
  .workshop-story__header,
  .collection-preview__header,
  .collection-page__header,
  .about-workshop__header,
  .contact-page__header,
  .cart-page__header {
    display: block;
    margin-bottom: 3rem;
  }

  .purpose-section__header h2,
  .workshop-story__header h2,
  .collection-preview__header h2,
  .collection-page__header h1,
  .about-workshop__header h1,
  .contact-page__header h1,
  .cart-page__header h1 {
    margin-bottom: 1.4rem;
  }

  .purpose-list {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .purpose-list::-webkit-scrollbar {
    display: none;
  }

  .purpose-item,
  .purpose-item:nth-child(3) {
    flex: 0 0 min(82vw, 22rem);
    grid-column: auto;
    scroll-snap-align: start;
  }

  .workshop-story__sequence {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .story-frame--1,
  .story-frame--2,
  .story-frame--3,
  .story-frame--4 {
    grid-column: auto;
    margin-top: 0;
  }

  .story-frame--2,
  .story-frame--4 {
    width: 78%;
    margin-left: auto;
  }

  .story-frame figcaption {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .catalogue-empty {
    grid-template-columns: 1fr;
  }

  .catalogue-empty__copy {
    padding-bottom: 1rem;
  }

  .catalogue-empty__product {
    min-height: 22rem;
  }

  .catalogue-empty__image {
    inset: 12% 16%;
    width: 68%;
    height: 76%;
  }

  .route-banner {
    min-height: 26rem;
  }

  .route-banner figcaption {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .route-banner__line {
    max-width: 18ch;
    justify-self: start;
    text-align: left;
  }

  .trust-notes__list,
  .site-footer__grid,
  .workshop-principles {
    grid-template-columns: 1fr;
  }

  .site-footer__lead {
    display: block;
  }

  .site-footer__lead h2 {
    margin: 2rem 0;
  }

  .site-footer__lead .button {
    justify-self: start;
  }

  .site-footer__grid {
    gap: 2.5rem;
  }

  .site-footer__base {
    display: grid;
  }

  .catalogue-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 0.75rem;
  }

  .collection-page .catalogue-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-controls {
    display: block;
  }

  .product-page,
  .product-hero,
  .contact-layout,
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .search-page {
    display: block;
    min-height: 0;
  }

  .search-page > .search-form {
    margin: 2.5rem 0 0;
  }

  .search-page > .empty-state,
  .search-page > .search-results {
    margin-top: 3rem;
  }

  .empty-state--cart {
    min-height: 30rem;
    padding: 2rem;
  }

  .section-intro {
    display: block;
  }

  .section-intro h2 {
    margin-bottom: 1.25rem;
  }

  .method-steps {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .specification-ledger {
    grid-template-columns: 1fr;
  }

  .collection-preview .catalogue-grid--single .tool-card {
    grid-template-columns: 1fr;
  }

  .collection-page .catalogue-layout--single .tool-card {
    grid-template-columns: 1fr;
  }

  .collection-preview .catalogue-grid--single .tool-card__media {
    aspect-ratio: 4 / 5;
    min-height: 24rem;
  }

  .collection-page .catalogue-layout--single .tool-card__media {
    aspect-ratio: 4 / 5;
    min-height: 24rem;
  }

  .collection-preview .catalogue-grid--single .tool-card__body {
    padding-bottom: 0;
  }

  .product-decision {
    padding-top: 1.25rem;
  }

  .product-showcase {
    padding-top: 1.25rem;
  }

  .product-hero {
    gap: 0;
  }

  .product-hero__media {
    min-height: 28rem;
  }

  .product-hero__decision {
    max-width: none;
    padding: 3rem 0 1rem;
  }

  .product-hero__decision h1 {
    font-size: clamp(2.55rem, 12vw, 3.65rem);
  }

  .product-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-keyfacts,
  .product-workflow {
    grid-template-columns: 1fr;
  }

  .product-keyfacts {
    gap: 0.9rem;
  }

  .product-workflow {
    gap: 1.4rem;
  }

  .evidence-chapter {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .evidence-chapter__copy {
    display: block;
  }

  .evidence-chapter__copy h2 {
    margin-bottom: 1.25rem;
  }

  .evidence-chapter__media {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .evidence-chapter__media .evidence-media--large,
  .evidence-chapter__media .evidence-media--small,
  .evidence-chapter--stop .evidence-chapter__media .evidence-media--large,
  .evidence-chapter--stop .evidence-chapter__media .evidence-media--small {
    grid-column: auto;
    min-height: 24rem;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    margin-top: 0;
  }

  .product-recap {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .product-recap .button {
    justify-self: start;
  }

  .product-media-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product-media--primary,
  .product-media--detail-left,
  .product-media--detail-right,
  .product-media--wide,
  .product-media--closing {
    grid-column: auto;
    margin-top: 0;
  }

  .product-media--detail-right,
  .product-media--closing {
    width: 82%;
    margin-left: auto;
  }

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

  .about-workshop__image--wide,
  .about-workshop__image--detail {
    grid-column: auto;
    margin: 0;
  }

  .about-workshop__image--detail {
    width: 72%;
    margin-top: -2rem;
    margin-left: auto;
  }

  .about-workshop__atmosphere {
    right: calc(var(--gutter) * -1);
    width: 70vw;
    opacity: 0.1;
  }

  .workshop-principles {
    gap: 0;
  }

  .workshop-principles > * {
    padding: 2rem 0;
  }

  .workshop-principles > * + * {
    border-top: 1px solid color-mix(in srgb, var(--tobacco) 24%, transparent);
    border-left: 0;
    padding-left: 0;
  }

  .catalogue-layout--single .tool-card {
    grid-template-columns: 1fr;
  }

  .catalogue-layout--single .tool-card__media {
    min-height: 28rem;
  }

  .cart-line {
    grid-template-columns: 6rem minmax(0, 1fr);
  }

  .cart-line__total {
    grid-column: 2;
  }
}

@media (max-width: 749px) {
  .route-banner--contact {
    min-height: 19rem;
  }

  .atelier-hero__content::before,
  .product-specifications::after,
  .route-banner--collection::after,
  .route-banner--not-found::after {
    display: none;
  }

  .collection-preview::after,
  .workshop-story::after,
  .evidence-chapter::after,
  .about-workshop::after {
    opacity: 0.12;
  }

  .product-workflow::before {
    left: var(--gutter);
    width: 42%;
  }

  .product-workflow::after {
    left: calc(var(--gutter) + 42%);
  }

  .story-frame:nth-child(odd) figcaption::before {
    width: 38%;
  }

  .story-frame:nth-child(odd) figcaption::after {
    left: 38%;
  }

  .contact-page::after,
  .route-banner--search::after,
  .route-banner--cart::after {
    width: 7rem;
  }
}

@media (max-width: 480px) {
  .brand-lockup {
    gap: 0;
  }

  .brand-lockup__descriptor {
    display: none;
  }

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

  .tool-card__media {
    aspect-ratio: 4 / 5;
  }

  .product-hero__media {
    min-height: 24rem;
  }

  .search-form > div {
    grid-template-columns: 1fr;
  }

  .search-form .button {
    width: 100%;
  }
}

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

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