@charset "UTF-8";

:root {
  --ink: #17140f;
  --ink-soft: #2a261f;
  --paper: #f5f1e8;
  --paper-deep: #e9e2d5;
  --white: #fffdf8;
  --gold: #b8923d;
  --gold-dark: #765510;
  --gold-light: #d7bf78;
  --muted: #686158;
  --line: rgba(23, 20, 15, 0.18);
  --line-light: rgba(255, 253, 248, 0.2);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1440px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --header-height: 82px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
::selection { color: var(--ink); background: var(--gold-light); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: -9999px;
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--ink);
}
.skip-link:focus { left: 10px; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.14);
  color: var(--white);
  background: rgba(23, 20, 15, .92);
  transition: background-color .35s var(--ease), border-color .35s var(--ease), height .35s var(--ease);
}
.site-header.is-scrolled {
  height: 68px;
  background: rgba(23, 20, 15, .96);
  border-color: var(--line-light);
}
.brand {
  display: block;
  width: 196px;
  padding: .42rem .58rem;
  background: transparent;
  line-height: 0;
}
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(1.4rem, 2.6vw, 2.75rem); }
.site-nav a {
  position: relative;
  color: inherit;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.5rem;
  left: 0;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  max-height: 980px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero__media { position: absolute; inset: 0 0 0 34%; background: #221e18; }
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-focus, 50%) center;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1s var(--ease), transform 7s linear;
}
.hero__image.is-active { opacity: 1; transform: scale(1); }
/* Each source panorama has an explicit, individually reviewed focal point. */
.hero__panel {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: min(48%, 690px);
  padding: calc(var(--header-height) + 5rem) var(--gutter) 7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
}
.hero__panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: -120px;
  width: 120px;
  height: 100%;
  background: linear-gradient(to right, var(--ink), transparent);
  pointer-events: none;
}
.eyebrow {
  margin: 0 0 1.6rem;
  color: var(--gold-dark);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.3;
  text-transform: uppercase;
}
.hero .eyebrow,
.section--ink .eyebrow,
.content-section--ink .eyebrow,
.project-story--ink .eyebrow,
.related-pages > .eyebrow,
.collection-card--dark .eyebrow { color: var(--gold-light); }
.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .92;
  text-wrap: balance;
}
.hero h1 { font-size: clamp(4.25rem, 7.6vw, 8.75rem); }
.hero__lede {
  max-width: 34rem;
  margin: 2.25rem 0 0;
  color: rgba(255, 253, 248, .72);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.55;
}
.hero__actions { margin-top: 2.6rem; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.button {
  min-height: 48px;
  padding: .9rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s, background .25s, border-color .25s;
}
.button--light { color: var(--ink); background: var(--white); border-color: var(--white); }
.button--light:hover, .button--light:focus-visible { color: var(--white); background: transparent; }
.button--dark { color: var(--white); background: var(--ink); border-color: var(--ink); }
.button--dark:hover, .button--dark:focus-visible { color: var(--ink); background: transparent; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border-bottom: 1px solid currentColor;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 2.1;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span, .text-link:focus-visible span { transform: translate(.18rem, .18rem); }
.text-link--light { color: var(--white); }
.hero__controls {
  position: absolute;
  z-index: 5;
  right: var(--gutter);
  bottom: 2.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
}
.hero__controls p { margin: 0; font-size: .67rem; letter-spacing: .16em; }
.hero__arrow, .lightbox__arrow, .lightbox__close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: color .2s, background .2s, border-color .2s;
}
.hero__arrow { background: rgba(23, 20, 15, .88); }
.hero__pause { width: auto; min-width: 68px; padding-inline: .75rem; border-radius: 24px; font-size: .75rem; }
html:not(.js) .hero__controls { display: none; }
.hero__arrow:hover, .hero__arrow:focus-visible,
.lightbox__arrow:hover, .lightbox__arrow:focus-visible,
.lightbox__close:hover, .lightbox__close:focus-visible { color: var(--ink); background: var(--white); border-color: var(--white); }
.hero__scroll {
  position: absolute;
  z-index: 5;
  bottom: 2.6rem;
  left: var(--gutter);
  color: rgba(255,255,255,.64);
  font-size: .65rem;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}
.hero__scroll span { margin-left: .6rem; color: var(--gold-light); }

.section { position: relative; max-width: var(--max); margin-inline: auto; padding: clamp(6rem, 10vw, 10rem) var(--gutter); }
.section--soft { max-width: none; background: var(--paper-deep); }
.section--ink { max-width: none; color: var(--white); background: var(--ink); }
.section h2 { font-size: clamp(3.6rem, 7vw, 7.75rem); }
.introduction { display: grid; grid-template-columns: minmax(260px, .9fr) 1.1fr; gap: clamp(3rem, 9vw, 10rem); }
.introduction__copy { padding-top: 2rem; }
.lead { margin: 0 0 1.75rem; font-family: var(--serif); font-size: clamp(1.55rem, 2.4vw, 2.45rem); line-height: 1.35; }
.introduction__copy > p:not(.lead), .about__copy > p:not(.lead) { max-width: 38rem; color: var(--muted); font-size: 1rem; line-height: 1.8; }
.fact-line { margin-top: 3rem; padding-top: 1.5rem; display: flex; gap: 1rem 2.5rem; flex-wrap: wrap; border-top: 1px solid var(--line); }
.fact-line span { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

.section-heading { max-width: var(--max); margin: 0 auto clamp(4rem, 8vw, 8rem); display: grid; grid-template-columns: 1.4fr .6fr; gap: 5rem; align-items: end; }
.section-heading > p { max-width: 29rem; margin: 0 0 .7rem; color: var(--muted); line-height: 1.8; }
.section-heading--light > p { color: rgba(255,255,255,.62); }
.collections { padding-inline: var(--gutter); }
.collection-feature {
  max-width: var(--max);
  margin: 0 auto clamp(4rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  background: var(--white);
}
.collection-feature__image { min-height: 640px; }
.collection-feature__image img { width: 100%; height: 100%; object-fit: cover; }
.collection-feature__copy { padding: clamp(3rem, 7vw, 7rem); align-self: center; }
.collection-feature__copy h3 { margin: 0 0 1.6rem; font-family: var(--serif); font-size: clamp(2.45rem, 4vw, 4.5rem); font-weight: 400; line-height: 1.02; }
.collection-feature__copy > p:not(.eyebrow) { margin: 0 0 2.25rem; color: var(--muted); line-height: 1.8; }
.image-button { position: relative; padding: 0; border: 0; background: transparent; cursor: zoom-in; overflow: hidden; }
.image-button img { transition: transform .7s var(--ease); }
.image-button:hover img, .image-button:focus-visible img { transform: scale(1.025); }
.image-button__hint {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  min-width: 48px;
  height: 48px;
  padding: 0 .8rem;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(23,20,15,.8);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.collection-pair { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; }
.collection-card { min-height: 690px; position: relative; display: grid; grid-template-rows: 1fr auto; overflow: hidden; }
.collection-card > img { width: 100%; height: 100%; min-height: 0; object-fit: cover; }
.collection-card > div { padding: 2.3rem; }
.collection-card h3 { max-width: 24rem; margin: 0 0 .85rem; font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.2rem); font-weight: 400; line-height: 1.08; }
.collection-card p:last-child { max-width: 30rem; margin: 0; color: inherit; opacity: .68; }
.collection-card--dark { color: var(--white); background: var(--ink); }
.collection-card--image { background: var(--white); }
.collection-card--image > img { filter: saturate(.8); }
.product-gallery { max-width: var(--max); margin: clamp(5rem, 9vw, 9rem) auto 0; }
.gallery-heading { margin-bottom: 1.5rem; display: flex; justify-content: space-between; align-items: end; border-bottom: 1px solid var(--line); }
.gallery-heading > p:last-child { color: var(--muted); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.gallery-rail, .project-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.gallery-rail:focus-visible, .project-rail:focus-visible { outline: 2px solid var(--gold); outline-offset: 6px; }
.product-card { flex: 0 0 clamp(260px, 27vw, 380px); scroll-snap-align: start; text-align: left; }
.product-card img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #fff; }
.product-card > span { padding: 1.1rem .1rem 2rem; display: flex; justify-content: space-between; gap: 1rem; }
.product-card b, .product-card small { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.product-card small { color: var(--muted); }

.projects { padding-inline: var(--gutter); overflow: hidden; }
.project-rail { max-width: var(--max); margin-inline: auto; padding-bottom: 2rem; scrollbar-color: var(--gold-light) transparent; }
.project-card { flex: 0 0 min(68vw, 540px); scroll-snap-align: start; }
.project-card--wide { flex-basis: min(82vw, 760px); }
.project-card .image-button { width: 100%; }
.project-card img { width: 100%; aspect-ratio: 1.05; object-fit: cover; filter: saturate(.82); }
.project-card--wide img { aspect-ratio: 1.48; }
.project-card > div { padding: 1.35rem 0 3rem; display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: baseline; border-top: 1px solid var(--line-light); }
.project-card span { margin: 0; color: rgba(255,255,255,.48); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; }
.project-card h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 400; }

.craft { max-width: none; padding: 0; display: grid; grid-template-columns: 1.05fr .95fr; background: var(--white); }
.craft__visual { position: sticky; top: 0; height: 100vh; min-height: 680px; }
.craft__visual img { width: 100%; height: 100%; object-fit: cover; }
.craft__visual p { position: absolute; right: 2rem; bottom: 2rem; left: 2rem; margin: 0; color: var(--white); font-size: .63rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.craft__content { padding: clamp(6rem, 9vw, 10rem) var(--gutter); }
.craft__content h2 { font-size: clamp(3.3rem, 5.5vw, 6.5rem); }
.process-list { margin: 4rem 0 0; padding: 0; list-style: none; }
.process-list li { padding: 1.5rem 0; border-top: 1px solid var(--line); }
.process-list li:last-child { border-bottom: 1px solid var(--line); }
.process-list h3 { margin: 0 0 .35rem; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.process-list p { max-width: 34rem; margin: 0; color: var(--muted); }
.craft-notes { max-width: 42rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.craft-notes h3 { margin: 1.75rem 0 .45rem; font-family: var(--serif); font-size: clamp(1.55rem, 2.2vw, 2.15rem); font-weight: 400; }
.craft-notes h3:first-child { margin-top: 0; }
.craft-notes p { margin: 0 0 1rem; color: var(--muted); }

.about { padding-inline: var(--gutter); display: grid; grid-template-columns: 1fr .9fr .65fr; gap: clamp(2rem, 6vw, 7rem); align-items: start; }
.about__heading h2 { font-size: clamp(3.2rem, 5.7vw, 6.6rem); }
.about__copy { padding-top: 3.6rem; }
.about__image { margin: 3.6rem 0 0; }
.about__image img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.about__image figcaption { margin-top: .8rem; color: var(--muted); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }

.visit { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(4rem, 9vw, 10rem); }
.visit__intro > p:not(.eyebrow) { max-width: 34rem; margin: 2rem 0 0; color: var(--muted); }
.visit__actions { margin-top: 2.5rem; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.visit__details { padding-top: 2.5rem; display: grid; grid-template-columns: .8fr 1.2fr; gap: 2rem; border-top: 1px solid var(--line); }
.visit__block + .visit__block { border-left: 1px solid var(--line); padding-left: 2rem; }
.visit__block h3 { margin: 0 0 1.2rem; font-family: var(--serif); font-size: 1.55rem; font-weight: 400; }
.visit__block address, .visit__block p, .visit__block li { color: var(--muted); font-style: normal; line-height: 1.75; }
.visit__block ul { margin: 0; padding: 0; list-style: none; }
.visit__block p { margin-top: 1.5rem; }

.site-footer {
  padding: 3.5rem var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: end;
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid var(--line-light);
}
.brand--footer { width: 170px; }
.source-copy .brand-emblem { width: 96px; height: auto; margin-top: 1.5rem; }
.site-footer > p { margin: 0; color: rgba(255,255,255,.55); font-family: var(--serif); font-size: 1.15rem; text-align: center; }
.site-footer > div { display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; color: rgba(255,255,255,.55); font-size: .64rem; letter-spacing: .08em; }
.site-footer a { text-decoration-thickness: 1px; text-underline-offset: 3px; }

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 2.5rem;
  border: 0;
  color: var(--white);
  background: rgba(10, 9, 7, .97);
}
.lightbox::backdrop { background: rgba(10, 9, 7, .78); }
.lightbox[open] { display: grid; grid-template-columns: 52px 1fr 52px; place-items: center; gap: 1.5rem; }
.lightbox figure { max-width: min(1200px, 82vw); max-height: 88vh; margin: 0; display: grid; place-items: center; }
.lightbox img { max-width: 100%; max-height: 80vh; object-fit: contain; }
.lightbox figcaption { margin-top: 1rem; color: rgba(255,255,255,.65); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.lightbox__close { position: absolute; top: 1.25rem; right: 1.25rem; z-index: 2; font-size: 1.5rem; }

.js .reveal { opacity: 1; transform: none; }
.js .reveal.is-visible { opacity: 1; transform: none; }

.enquiry { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--line); }
.enquiry h3 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 400; }
.enquiry__fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; margin: 2rem 0 1rem; }
.enquiry__wide { grid-column: 1 / -1; }
.enquiry label { display: block; margin-bottom: .5rem; font-size: .9rem; }
.enquiry input, .enquiry textarea { width: 100%; min-height: 48px; padding: .8rem; border: 1px solid #807364; border-radius: 0; color: var(--ink); background: var(--paper); font: inherit; }
.enquiry textarea { resize: vertical; }
.enquiry__note { font-size: .88rem; line-height: 1.65; }
.enquiry [hidden] { display: none !important; }
@media (max-width: 600px) { .enquiry__fields { grid-template-columns: minmax(0, 1fr); } }

:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }

/* Catalogue, project and visit pages */
.site-header--solid { background: rgba(23, 20, 15, .96); border-color: var(--line-light); }
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.page-hero {
  position: relative;
  min-height: min(760px, 86svh);
  padding: calc(var(--header-height) + 6rem) var(--gutter) 5rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,20,15,.94) 0%, rgba(23,20,15,.72) 42%, rgba(23,20,15,.12) 78%); }
.page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero__content { position: relative; z-index: 1; width: min(760px, 70vw); }
.page-hero__content h1 { margin: 0; font-family: var(--serif); font-size: clamp(4.2rem, 8vw, 9rem); font-weight: 400; letter-spacing: -.05em; line-height: .9; text-wrap: balance; }
.page-hero__content > p:last-child { max-width: 40rem; margin: 2rem 0 0; color: rgba(255,255,255,.74); font-family: var(--serif); font-size: clamp(1.1rem, 1.7vw, 1.45rem); line-height: 1.6; }
.section-nav { position: sticky; z-index: 50; top: 68px; padding: 0 var(--gutter); display: flex; justify-content: center; gap: 0; overflow-x: auto; color: var(--ink); background: rgba(245,241,232,.97); border-bottom: 1px solid var(--line); scrollbar-width: none; }
.section-nav::-webkit-scrollbar { display: none; }
.section-nav a { flex: 0 0 auto; padding: 1.15rem 1.35rem; color: inherit; font-size: .66rem; font-weight: 700; letter-spacing: .13em; text-decoration: none; text-transform: uppercase; }
.section-nav a:hover, .section-nav a:focus-visible { background: var(--paper-deep); }
.editorial-intro { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 9vw, 10rem); }
.editorial-intro h2, .content-section h2, .project-story h2, .download-panel h2 { margin: 0; font-family: var(--serif); font-size: clamp(3.6rem, 7vw, 7.5rem); font-weight: 400; letter-spacing: -.045em; line-height: .93; text-wrap: balance; }
.prose { max-width: 46rem; }
.prose p { margin: 0 0 1.35rem; color: var(--muted); line-height: 1.85; }
.prose h3 { margin: 2.7rem 0 1rem; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 400; line-height: 1.05; }
.prose--lead > p:first-child { color: var(--ink); font-family: var(--serif); font-size: clamp(1.55rem, 2.3vw, 2.35rem); line-height: 1.4; }
.prose--wide { max-width: 64rem; margin: 0 auto; }
.prose--spaced { margin-top: 5rem; }
.prose--columns { max-width: none; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 7vw, 7rem); }
.prose blockquote { margin: 2.4rem 0; padding: 0 0 0 1.5rem; border-left: 2px solid var(--gold); color: var(--ink); font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.85rem); line-height: 1.55; }
.content-section { max-width: var(--max); margin-inline: auto; padding: clamp(6rem, 10vw, 10rem) var(--gutter); }
.content-section--soft { max-width: none; background: var(--paper-deep); }
.content-section--ink { max-width: none; color: var(--white); background: var(--ink); }
.content-section__heading { max-width: var(--max); margin: 0 auto clamp(4rem, 7vw, 7rem); }
.content-section--ink .prose p, .project-story--ink .prose p { color: rgba(255,255,255,.72); }
.content-section--ink .prose h3, .content-section--ink .detail-card__meta { color: var(--white); }
.split-feature { max-width: var(--max); margin-inline: auto; display: grid; grid-template-columns: minmax(300px, .9fr) 1.1fr; gap: clamp(3rem, 9vw, 9rem); align-items: center; }
.split-feature--reverse .image-frame { order: 2; }
.image-frame { background: var(--white); overflow: hidden; }
.image-frame img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.detail-grid { max-width: var(--max); margin: 5rem auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.detail-card { display: grid; grid-template-rows: auto 1fr; background: var(--white); }
.detail-card .image-button, .detail-card img { width: 100%; }
.detail-card img { aspect-ratio: 1; object-fit: cover; }
.detail-card > div { padding: 2rem; }
.detail-card h3, .document-grid h3, .outlet-card h3, .contact-panel h3 { margin: 0 0 .85rem; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; line-height: 1.1; }
.detail-card p { color: var(--muted); line-height: 1.75; }
.detail-card__meta { margin-top: 1.5rem; color: var(--gold-dark); font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.image-band { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.4fr .6fr; gap: 1rem; }
.image-band img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }
.spec-grid { max-width: var(--max); margin-inline: auto; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spec-grid article { padding: 2rem; border-right: 1px solid var(--line); }
.spec-grid article:last-child { border-right: 0; }
.spec-grid h3 { margin: 0 0 1rem; font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.spec-grid p { margin: 0; color: var(--muted); line-height: 1.7; }
.download-panel { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 9vw, 10rem); align-items: end; }
.download-panel .button { margin-top: 1rem; }
.project-story { max-width: var(--max); margin-inline: auto; padding: clamp(6rem, 10vw, 10rem) var(--gutter); display: grid; grid-template-columns: .72fr 1.28fr; gap: 2rem clamp(3rem, 8vw, 8rem); }
.project-story--soft { max-width: none; background: var(--paper-deep); }
.project-story--ink { max-width: none; color: var(--white); background: var(--ink); }
.project-story__heading { align-self: end; }
.project-story__gallery { grid-column: 2; display: grid; }
.project-story__gallery--two { grid-template-columns: 1fr 1fr; gap: 1rem; }
.project-story__gallery--four { grid-template-columns: repeat(4, 1fr); gap: .7rem; }
.project-story__gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.project-story__copy { grid-column: 2; margin-top: 2rem; }
.contact-panel { max-width: var(--max); margin: 0 auto 3rem; display: grid; grid-template-columns: 1fr 1fr 1fr; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.contact-panel > div { padding: 2rem; border-right: 1px solid var(--line-light); }
.contact-panel > div:last-child { border-right: 0; }
.contact-panel address, .contact-panel p { margin: 0; color: rgba(255,255,255,.72); font-style: normal; line-height: 1.8; }
.contact-panel a { overflow-wrap: anywhere; }
.outlet-grid { max-width: var(--max); margin-inline: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.outlet-card { background: var(--white); }
.outlet-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.outlet-card > div { padding: 1.7rem; }
.outlet-card address { color: var(--muted); font-style: normal; line-height: 1.7; }
.availability-note { max-width: 52rem; margin: 2rem 0 0; color: var(--muted); font-size: .84rem; line-height: 1.7; }
.document-grid { max-width: var(--max); margin-inline: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.document-grid article { padding: clamp(2rem, 5vw, 5rem); background: var(--white); }
.document-grid article > span { color: var(--gold-dark); font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.document-grid p { color: var(--muted); line-height: 1.75; }
.site-footer nav { display: flex; justify-content: flex-end; gap: .9rem; flex-wrap: wrap; }

/* Detail pages */
.page-hero--detail { min-height: min(680px, 78svh); }
.page-hero--detail .page-hero__content h1 { max-width: 1000px; font-size: clamp(3.8rem, 7vw, 7.8rem); }
.page-hero--compact { min-height: 600px; }
.breadcrumbs { min-height: 62px; padding: 0 var(--gutter); display: flex; align-items: center; gap: .75rem; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.breadcrumbs a { color: var(--ink); text-decoration: none; }

.source-page { display: grid; grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr); gap: clamp(3rem, 8vw, 9rem); align-items: start; }
.source-page > * { min-width: 0; }
.source-page__label { position: sticky; top: 110px; }
.source-page__label h2 { margin: 0; overflow-wrap: normal; word-break: keep-all; hyphens: none; font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 5.2rem); font-weight: 400; letter-spacing: -.045em; line-height: .96; }
.source-copy { max-width: 52rem; }
.source-copy > p { margin: 0 0 1.4rem; color: var(--muted); font-size: 1rem; line-height: 1.85; }
.source-copy > p:first-child:not(.source-data), .source-copy > .lead { color: var(--ink); font-family: var(--serif); font-size: clamp(1.45rem, 2.2vw, 2.15rem); line-height: 1.45; }
.source-copy h2 { margin: 3.8rem 0 1.3rem; max-width: 100%; overflow-wrap: normal; word-break: keep-all; hyphens: none; font-family: var(--serif); font-size: clamp(2rem, 3.6vw, 3.8rem); font-weight: 400; letter-spacing: -.03em; line-height: 1; }
.source-copy h2:first-child { margin-top: 0; }
.source-data { margin: .35rem .35rem .35rem 0 !important; padding: .6rem .8rem; display: inline-block; border: 1px solid var(--line); color: var(--ink) !important; background: rgba(255,255,255,.42); font-size: .75rem !important; font-weight: 700; letter-spacing: .08em; line-height: 1.4 !important; text-transform: uppercase; }
.source-gallery { grid-column: 1 / -1; margin-top: clamp(2rem, 6vw, 6rem); display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.source-gallery__item { width: 100%; background: var(--white); }
.source-gallery__item img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.related-pages { max-width: none; padding: clamp(5rem, 8vw, 8rem) var(--gutter); color: var(--white); background: var(--ink); }
.related-pages > h2 { margin: 0 0 3rem; font-family: var(--serif); font-size: clamp(3rem, 6vw, 6.5rem); font-weight: 400; letter-spacing: -.045em; line-height: .95; }
.related-pages > div { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-light); }
.related-pages a { min-height: 150px; padding: 1.5rem; display: grid; grid-template-columns: 1fr auto; align-content: space-between; border-right: 1px solid var(--line-light); color: var(--white); text-decoration: none; }
.related-pages a:last-child { border-right: 0; }
.related-pages a span { grid-column: 1 / -1; color: rgba(255,255,255,.58); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.related-pages a strong { align-self: end; font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 2rem); font-weight: 400; }
.related-pages a i { align-self: end; color: var(--gold-light); font-style: normal; }
.empty-state { padding: clamp(2rem, 6vw, 5rem); border: 1px solid var(--line); background: var(--white); }
.empty-state p { color: var(--muted); line-height: 1.8; }
.empty-state .lead { color: var(--ink); }
.contact-panel--light { border-color: var(--line); }
.contact-panel--light > div { border-color: var(--line); }
.contact-panel--light address, .contact-panel--light p { color: var(--muted); }
.all-pages { display: grid; gap: clamp(4rem, 8vw, 8rem); }
.all-pages section > div { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.all-pages section a { min-height: 112px; padding: 1.3rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); color: var(--ink); text-decoration: none; }
.all-pages section a:nth-child(3n+1), .all-pages section a:nth-child(3n+2) { margin-right: 2rem; }
.all-pages section strong { font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 2rem); font-weight: 400; }
.all-pages section a span { color: var(--gold-dark); }

/* Catalogue and technical pages */
.collection-navigation { padding-top: clamp(4.5rem, 8vw, 8rem); }
.collection-navigation__group + .collection-navigation__group { margin-top: clamp(5rem, 9vw, 9rem); }
.collection-navigation__heading { margin-bottom: 2.2rem; display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.collection-navigation__heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(3.1rem, 6vw, 6.7rem); font-weight: 400; letter-spacing: -.045em; line-height: .92; }
.collection-navigation__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.project-index-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1rem; }
.project-index-grid .catalogue-card:nth-child(-n+3) { grid-column: span 2; }
.project-index-grid .catalogue-card:nth-child(n+4) { grid-column: span 3; }
.catalogue-card { position: relative; min-height: clamp(310px, 34vw, 500px); padding: 1.25rem; display: flex; align-items: flex-end; overflow: hidden; border: 1px solid rgba(255,255,255,.16); color: var(--white); background: var(--ink); text-decoration: none; isolation: isolate; }
.catalogue-card::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(10,8,5,.03) 25%, rgba(10,8,5,.86) 100%); }
.catalogue-card img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .8s var(--ease); }
.catalogue-card:hover img, .catalogue-card:focus-visible img { transform: scale(1.035); filter: saturate(1.08); }
.catalogue-card[aria-current="page"] { outline: 3px solid var(--gold-light); outline-offset: -3px; }

.catalogue-card__copy { width: 100%; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: .65rem 1rem; align-items: end; }
.catalogue-card__copy h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.65rem, 2.5vw, 2.8rem); font-weight: 400; line-height: .98; }
.catalogue-card__copy p { grid-column: 1 / -1; max-width: 24rem; margin: 0; color: rgba(255,255,255,.7); font-size: .77rem; line-height: 1.5; }
.catalogue-card__copy i { grid-column: 2; grid-row: 1; color: var(--gold-light); font-style: normal; }
.product-narrative { display: grid; grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr); gap: clamp(3rem, 8vw, 9rem); align-items: start; }
.product-narrative > * { min-width: 0; }
.product-narrative h2 { margin: 0; overflow-wrap: anywhere; font-family: var(--serif); font-size: clamp(3.4rem, 6.5vw, 7rem); font-weight: 400; letter-spacing: -.05em; line-height: .92; }
.product-narrative--compact-title h2,
.technical-chapter--compact-title .technical-chapter__heading h2 { overflow-wrap: normal; word-break: keep-all; hyphens: none; font-size: clamp(2.35rem, 3.5vw, 3.4rem); }
.technical-chapter--compact-title .technical-chapter__heading h2 { max-width: none; }
.product-detail { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(320px,.92fr); gap: clamp(3rem, 7vw, 8rem); align-items: center; border-top: 1px solid var(--line); }
.product-detail--reverse .product-detail__media { order: 2; }
.product-detail__media { min-width: 0; }
.product-detail__copy { max-width: 42rem; }
.product-detail__copy h2 { margin: 0 0 1.8rem; font-family: var(--serif); font-size: clamp(3rem, 5.3vw, 6rem); font-weight: 400; letter-spacing: -.045em; line-height: .95; }
.product-detail__copy > p { margin: 0 0 1.15rem; color: var(--muted); line-height: 1.8; }
.semantic-media { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .8rem; }
.semantic-media:has(> :only-child) { grid-template-columns: minmax(0,1fr); }
.semantic-media__item { width: 100%; align-self: start; background: var(--paper-deep); }
.semantic-media__item img { width: 100%; height: auto; object-fit: contain; }
.product-spec { margin: 2rem 0; padding: 1.15rem 0; display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-spec dt { color: var(--muted); font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.product-spec dd { margin: 0; font-family: var(--serif); font-size: 1.25rem; }
.technical-chapter { display: grid; grid-template-columns: minmax(270px,.72fr) minmax(0,1.28fr); gap: clamp(3rem, 8vw, 9rem); align-items: start; border-top: 1px solid var(--line); }
.technical-chapter__heading { position: sticky; top: 108px; }
.technical-chapter__heading h2 { max-width: none; margin: 0; overflow-wrap: normal; word-break: keep-all; hyphens: none; font-family: var(--serif); font-size: clamp(2.6rem, 4vw, 4.2rem); font-weight: 400; letter-spacing: -.045em; line-height: .93; }
.technical-chapter__body { min-width: 0; }
.technical-chapter__body .semantic-media { margin-bottom: 2.2rem; }
.technical-chapter__body .prose p { margin: 0 0 1.4rem; color: var(--muted); line-height: 1.85; }
.material-palette { margin-top: 2.5rem; padding: 1.4rem; border: 1px solid var(--line); background: var(--white); }
.material-palette ul { margin: 1rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; }
.material-palette li { padding: .55rem .7rem; border: 1px solid var(--line); color: var(--ink); font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.collection-cta { display: grid; grid-template-columns: minmax(250px,.7fr) minmax(0,1.3fr); gap: clamp(2.5rem,7vw,8rem); align-items: end; }
.collection-cta h2 { margin: 0; font-family: var(--serif); font-size: clamp(3.4rem,6.2vw,6.5rem); font-weight: 400; letter-spacing: -.045em; line-height: .92; }
.collection-cta > p:not(.eyebrow) { max-width: 40rem; margin: 0 0 1rem; color: var(--muted); line-height: 1.8; }

@media (max-width: 1050px) {
  :root { --header-height: 72px; }
  .hero__panel { width: 58%; }
  .hero__media { left: 44%; }
  .collection-feature__image { min-height: 540px; }
  .about { grid-template-columns: 1fr 1fr; }
  .about__image { grid-column: 2; max-width: 320px; margin-top: 0; }
  .visit { gap: 4rem; }
  .visit__details { grid-template-columns: 1fr; }
  .visit__block + .visit__block { border-left: 0; border-top: 1px solid var(--line); padding: 1.5rem 0 0; }
  .collection-navigation__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-index-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-index-grid .catalogue-card:nth-child(n) { grid-column: auto; }
  .project-index-grid .catalogue-card:last-child { grid-column: 1 / -1; }
  .catalogue-card { min-height: 430px; }
}

@media (max-width: 780px) {
  :root { --gutter: 1.25rem; }
  .site-header { width: 100vw; max-width: 100vw; height: 68px; background: rgba(23, 20, 15, .94); }
  .site-nav { width: 100vw; max-width: 100vw; }
  .brand { width: 158px; }
  .menu-toggle {
    min-width: 64px;
    min-height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .65rem;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle__label { font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
  .menu-toggle__icon { width: 23px; height: 16px; position: relative; }
  .menu-toggle__icon i { position: absolute; left: 0; width: 100%; height: 1px; background: currentColor; transition: transform .3s, top .3s; }
  .menu-toggle__icon i:first-child { top: 4px; }
  .menu-toggle__icon i:last-child { top: 12px; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child { top: 8px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child { top: 8px; transform: rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 68px 0 0;
    padding: 3rem var(--gutter);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    color: var(--white);
    background: var(--ink);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .25s, transform .25s;
  }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .site-nav a { min-height: 64px; display: flex; align-items: center; border-bottom: 1px solid var(--line-light); font-family: var(--serif); font-size: 2rem; font-weight: 400; letter-spacing: -.02em; text-transform: none; }
  .site-nav a::after { display: none; }
  html:not(.js) .site-header { position: relative; height: auto; min-height: 68px; padding-bottom: .8rem; flex-wrap: wrap; }
  html:not(.js) .menu-toggle { display: none; }
  html:not(.js) .site-nav { position: static; width: 100%; max-width: none; padding: .6rem 0 0; flex-direction: row; flex-wrap: wrap; visibility: visible; opacity: 1; transform: none; background: transparent; }
  html:not(.js) .site-nav a { min-height: 44px; margin-right: 1.1rem; border: 0; font-family: var(--sans); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  html:not(.js) .page-hero { padding-top: 5rem; }
  .hero { min-height: 720px; max-height: none; }
  .hero__media { inset: 68px 0 58%; height: auto; }
  .hero__image { object-position: var(--hero-focus-mobile, var(--hero-focus, 50%)) center; }
  .hero__panel { inset: auto 0 0; width: 100%; height: 58%; padding: 3.25rem var(--gutter) 5.5rem; justify-content: flex-start; }
  .hero__panel::after { top: -32px; right: 0; width: 100%; height: 32px; background: linear-gradient(to top, var(--ink), transparent); }
  .hero h1 { font-size: clamp(3.7rem, 17vw, 5.9rem); }
  .hero__lede { max-width: 31rem; margin-top: 1.4rem; font-size: 1rem; }
  .hero__actions { margin-top: 1.8rem; }
  .hero__controls { right: var(--gutter); bottom: 1.35rem; }
  .hero__scroll { bottom: 1.5rem; }
  .section { padding-top: 6rem; padding-bottom: 6rem; }
  .section h2 { font-size: clamp(3.35rem, 14vw, 5rem); }
  .introduction, .section-heading, .collection-feature, .craft, .about, .visit { grid-template-columns: 1fr; }
  .introduction { gap: 2.75rem; }
  .introduction__copy { padding-top: 0; }
  .section-heading { gap: 2rem; margin-bottom: 3.5rem; }
  .section-heading > p { margin: 0; }
  .collection-feature { display: flex; flex-direction: column; }
  .collection-feature__image { min-height: auto; aspect-ratio: 1; }
  .collection-feature__copy { padding: 2.5rem 1.5rem 3rem; }
  .collection-pair { grid-template-columns: 1fr; }
  .collection-card { min-height: 570px; }
  .collection-card > img { aspect-ratio: 1; min-height: auto; }
  .gallery-heading > p:last-child { display: none; }
  .product-card { flex-basis: min(82vw, 330px); }
  .project-card, .project-card--wide { flex-basis: 84vw; }
  .project-card img, .project-card--wide img { aspect-ratio: 1.08; }
  .project-card > div { grid-template-columns: 1fr; }
  .project-card span { grid-column: 1; }
  .craft__visual { position: relative; height: 66vw; min-height: 400px; }
  .craft__content { padding: 5rem var(--gutter) 6rem; }
  .about { gap: 2.5rem; }
  .about__copy { padding-top: 0; }
  .about__image { grid-column: auto; max-width: 100%; margin: 0; }
  .about__image img { aspect-ratio: 1.4; object-position: center 38%; }
  .visit { gap: 4rem; }
  .site-footer { grid-template-columns: 1fr; align-items: start; }
  .site-footer > p { text-align: left; }
  .site-footer > div { align-items: flex-start; }
  .lightbox { padding: 4rem 1rem 1.5rem; }
  .lightbox[open] { grid-template-columns: 44px 1fr 44px; gap: .5rem; }
  .lightbox figure { max-width: calc(100vw - 112px); }
  .page-hero { min-height: 700px; padding: 9rem var(--gutter) 4rem; }
  .page-hero::after { background: linear-gradient(0deg, rgba(23,20,15,.97) 0%, rgba(23,20,15,.78) 43%, rgba(23,20,15,.12) 82%); }
  .page-hero__content { width: 100%; }
  .page-hero__content h1 { font-size: clamp(3.8rem, 17vw, 6.2rem); }
  .section-nav { top: 68px; justify-content: flex-start; }
  .section-nav a { padding-inline: 1rem; }
  .editorial-intro, .download-panel, .split-feature, .project-story { grid-template-columns: 1fr; }
  .editorial-intro { gap: 2.75rem; }
  .content-section, .project-story { padding-top: 6rem; padding-bottom: 6rem; }
  .content-section h2, .project-story h2, .download-panel h2 { font-size: clamp(3.35rem, 14vw, 5rem); }
  .split-feature--reverse .image-frame { order: 0; }
  .detail-grid, .outlet-grid { grid-template-columns: 1fr; }
  .detail-card { grid-template-columns: .9fr 1.1fr; grid-template-rows: 1fr; }
  .detail-card > div { padding: 1.4rem; }
  .detail-card h3 { font-size: 1.5rem; }
  .image-band { grid-template-columns: 1fr 1fr; }
  .image-band img { min-height: 220px; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .spec-grid article { border-bottom: 1px solid var(--line); }
  .spec-grid article:nth-child(2) { border-right: 0; }
  .prose--columns { grid-template-columns: 1fr; gap: 0; }
  .project-story { gap: 2.5rem; }
  .project-story__gallery, .project-story__copy { grid-column: 1; }
  .project-story__gallery--four { grid-template-columns: 1fr 1fr; }
  .contact-panel { grid-template-columns: 1fr; }
  .contact-panel > div { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .contact-panel > div:last-child { border-bottom: 0; }
  .outlet-card { display: grid; grid-template-columns: 42% 58%; }
  .document-grid { grid-template-columns: 1fr; }
  .site-footer nav { justify-content: flex-start; }
  .page-hero--detail { min-height: 640px; }
  .page-hero--detail .page-hero__content h1 { font-size: clamp(3.4rem, 15vw, 5.6rem); }
  .breadcrumbs { min-height: 54px; padding-block: .7rem; flex-wrap: wrap; }

  .source-page { grid-template-columns: minmax(0, 1fr); gap: 2.8rem; }
  .source-page__label { position: static; }
  .source-gallery { grid-template-columns: 1fr 1fr; }
  .related-pages > div { grid-template-columns: 1fr; }
  .related-pages a { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .all-pages section > div { grid-template-columns: 1fr; }
  .all-pages section a:nth-child(n) { margin-right: 0; }
  .collection-navigation__heading { align-items: flex-start; flex-direction: column; }
  .collection-navigation__grid { grid-template-columns: minmax(0, 1fr); }
  .project-index-grid { grid-template-columns: minmax(0, 1fr); }
  .project-index-grid .catalogue-card:nth-child(n) { grid-column: auto; }
  .catalogue-card { min-height: min(118vw, 470px); }
  .product-narrative, .product-detail, .technical-chapter, .collection-cta { grid-template-columns: minmax(0, 1fr); gap: 2.75rem; }
  .product-narrative h2 { overflow-wrap: normal; word-break: keep-all; hyphens: none; font-size: clamp(2rem, 10vw, 4rem); }
  .technical-chapter__heading h2,
  .technical-chapter--compact-title .technical-chapter__heading h2 { overflow-wrap: normal; word-break: keep-all; hyphens: none; max-width: none; font-size: clamp(2rem, 10vw, 3.6rem); }
  .product-detail--reverse .product-detail__media { order: 0; }
  .product-detail__copy { max-width: none; }
  .technical-chapter__heading { position: static; }
  .technical-chapter__heading h2 { max-width: none; }
  .product-spec { grid-template-columns: 1fr; gap: .4rem; }
  .semantic-media { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 420px) {
  .hero { min-height: 760px; }
  .hero__media { bottom: 62%; height: auto; }
  .hero__panel { height: 62%; padding-top: 2.6rem; }
  .hero__actions { gap: 1.2rem; }
  .button { width: 100%; }
  .hero__actions .text-link { margin-inline: auto; }
  .hero__scroll { display: none; }
  .fact-line { display: grid; grid-template-columns: 1fr; gap: .75rem; }
  .collection-card { min-height: 510px; }
  .project-card, .project-card--wide { flex-basis: 88vw; }
  .visit__actions .text-link { margin-inline: auto; }
  .lightbox[open] { grid-template-columns: 1fr; }
  .lightbox figure { max-width: 100%; }
  .lightbox__arrow { position: absolute; bottom: 1.2rem; }
  .lightbox__arrow--prev { left: 1rem; }
  .lightbox__arrow--next { right: 1rem; }
  .page-hero { min-height: 650px; }
  .page-hero__content > p:last-child { font-size: 1rem; }
  .detail-card, .outlet-card { display: block; }
  .spec-grid { grid-template-columns: 1fr; }
  .spec-grid article { border-right: 0; }
  .image-band { grid-template-columns: 1fr; }
  .project-story__gallery--two, .project-story__gallery--four { grid-template-columns: 1fr; }
  .source-gallery { grid-template-columns: 1fr; }
}

/* Compact related navigation follows, rather than delays, page content. */
.collection-navigation--related { padding-top: 3rem; padding-bottom: 4rem; border-top: 1px solid var(--line); }
.collection-navigation--related h2 { font-size: clamp(2.1rem, 4vw, 3.8rem); }
.collection-navigation--related .catalogue-card { min-height: 290px; }
.collection-navigation--related .catalogue-card__copy h3 { font-size: clamp(1.45rem, 2.1vw, 2.2rem); }
.material-palette { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.8rem; }
.material-palette h3 { margin: 0; font-family: var(--sans); font-size: 1rem; font-weight: 600; line-height: 1.4; }
.material-palette li { font-size: .75rem; letter-spacing: .02em; text-transform: none; }
.quality-process dl { margin: 1.8rem 0 0; }
.quality-process dl > div { border-top: 1px solid var(--line); padding-block: 1.1rem; }
.quality-process dt { margin-bottom: .45rem; font-weight: 600; }
.quality-process dd { margin: 0; color: var(--muted); line-height: 1.75; }
#quality { padding-top: 3rem; }
.page-hero .eyebrow { color: var(--gold-light); }
@media (max-width: 680px) {
  .hero__controls { top: 84px; bottom: auto; display: flex; }
  .material-palette { grid-template-columns: 1fr; }
  .collection-navigation--related .catalogue-card { min-height: 160px; padding: 1rem; }
  .collection-navigation--related .catalogue-card img { width: 36%; }
  .collection-navigation--related .catalogue-card__copy { margin-left: 38%; width: 62%; gap: .6rem; }
  .collection-navigation--related .catalogue-card::after { background: linear-gradient(90deg, transparent 20%, var(--ink) 39%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: 0s !important; }
  .hero__image { transform: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}
