@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("fonts/newsreader-latin-variable.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Newsreader";
  font-style: italic;
  font-display: swap;
  font-weight: 200 800;
  src: url("fonts/newsreader-latin-variable-italic.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("fonts/manrope-latin-variable.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #171814;
  --ink-soft: #34362f;
  --paper: #f4f0e8;
  --paper-2: #e9e2d6;
  --cream: #fbf8f2;
  --sage: #a8ae9d;
  --sage-deep: #596052;
  --brass: #a98754;
  --brass-light: #d1b98d;
  --line: rgba(23, 24, 20, 0.17);
  --white-line: rgba(255, 255, 255, 0.2);
  --shadow: 0 28px 80px rgba(28, 26, 20, 0.16);
  --serif: "Newsreader", "Iowan Old Style", "Baskerville", Georgia, serif;
  --sans: "Manrope", "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  --page: min(92vw, 1480px);
  --header-h: 86px;
  --radius: 7px;
  --radius-soft: 7px;
  --cabinet-colour: #73816c;
  --cursor-x: 50%;
  --cursor-y: 50%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

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

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

p {
  margin: 0 0 1.4rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 400;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--cream);
  background: var(--ink);
  transform: translateY(-140%);
}

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

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

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

.narrow {
  width: min(90vw, 900px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(84px, 10vw, 170px) 0;
}

.section-sm {
  padding: clamp(58px, 7vw, 100px) 0;
}

.dark {
  color: var(--cream);
  background: var(--ink);
}

.cream {
  background: var(--cream);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.55;
}

.display-xl,
.display-lg,
.display-md {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-wrap: balance;
}

.display-xl {
  font-size: clamp(4rem, 8vw, 9.4rem);
}

.display-lg {
  font-size: clamp(3.2rem, 6vw, 7.1rem);
}

.display-md {
  font-size: clamp(2.45rem, 4.3vw, 5.1rem);
  line-height: 1;
}

.italic {
  font-style: italic;
}

.lede {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.7;
}

.dark .lede {
  color: rgba(251, 248, 242, 0.7);
}

.micro {
  color: rgba(23, 24, 20, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.text-center { text-align: center; }
.mt-12 { margin-top: 12px; }
.mt-25 { margin-top: 25px; }
.mt-28 { margin-top: 28px; }
.mt-30 { margin-top: 30px; }
.mt-32 { margin-top: 32px; }
.mt-80 { margin-top: 80px; }
.mx-auto-top-30 { margin: 30px auto 0; }
.mx-auto-top-32 { margin: 32px auto 0; }
.justify-center { justify-content: center; }
.muted-light { color: rgba(251, 248, 242, 0.5); }
.form-note { margin: 20px 0 0; color: rgba(23, 24, 20, 0.5); font-size: 0.68rem; }
.form-note-strong { margin-top: 25px; color: rgba(23, 24, 20, 0.55); font-size: 0.72rem; }
.fieldset-reset { margin: 12px 0 0; border: 0; padding: 0; }
.gallery-fade { transition: opacity 180ms ease; }

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 100px;
  padding: 0 25px;
  color: var(--cream);
  background: var(--ink);
  cursor: pointer;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 350ms ease, background 350ms ease, border-color 350ms ease, transform 200ms ease;
}

.button::after {
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

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

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

.button.secondary:hover {
  color: var(--cream);
  background: var(--ink);
}

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

.button.light:hover {
  color: var(--cream);
  background: transparent;
}

.button.ghost-light {
  border-color: rgba(251, 248, 242, 0.5);
  color: var(--cream);
  background: transparent;
}

.button.ghost-light:hover {
  border-color: var(--cream);
  color: var(--ink);
  background: var(--cream);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: gap 250ms ease;
}

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

.text-link:hover {
  gap: 19px;
}

.text-link::after {
  content: "→";
  font-size: 1rem;
  font-weight: 400;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: height 300ms ease, background 300ms ease, border-color 300ms ease, color 300ms ease;
}

.site-header.is-scrolled,
.site-header.solid {
  height: 72px;
  border-color: var(--line);
  background: rgba(244, 240, 232, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  width: var(--page);
  height: 100%;
  align-items: center;
  margin-inline: auto;
  grid-template-columns: 1fr auto 1fr;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-grid;
  justify-self: center;
  text-align: center;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.32rem;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-note {
  margin-top: 5px;
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.primary-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
}

.primary-nav a,
.login-link {
  position: relative;
  padding: 9px 0;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.login-link {
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.primary-nav a::after,
.login-link::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

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

.header-actions {
  justify-self: end;
}

.header-apply {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 100px;
  padding: 0 18px;
  background: transparent;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 250ms ease, background 250ms ease;
}

.header-apply:hover {
  color: var(--cream);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before {
  display: block;
  width: 23px;
  height: 1px;
  content: "";
  background: currentColor;
  transition: transform 250ms ease;
}

.menu-toggle span::before {
  transform: translateY(6px);
}

.menu-open .menu-toggle span {
  transform: rotate(45deg);
}

.menu-open .menu-toggle span::before {
  transform: rotate(-90deg);
}

.mobile-menu {
  position: fixed;
  z-index: 850;
  inset: 0;
  display: grid;
  visibility: hidden;
  align-content: center;
  padding: 110px 5vw 60px;
  color: var(--cream);
  background: var(--ink);
  opacity: 0;
  transform: translateY(-15px);
  transition: opacity 350ms ease, transform 350ms ease, visibility 350ms;
}

.menu-open .mobile-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.menu-open .site-header {
  border-color: transparent;
  color: var(--cream);
  background: transparent;
  backdrop-filter: none;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  padding: 8px 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 9vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.mobile-menu-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--white-line);
}

/* Opening reveal and cursor */
.page-reveal {
  position: fixed;
  z-index: 1600;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--ink);
  pointer-events: none;
  transition: transform 900ms cubic-bezier(0.77, 0, 0.175, 1) 150ms;
}

.page-reveal span {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 3rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: opacity 250ms ease;
}

.is-ready .page-reveal {
  transform: translateY(-100%);
}

.is-ready .page-reveal span {
  opacity: 0;
}

.scroll-progress {
  position: fixed;
  z-index: 1100;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
}

.cursor-halo {
  position: fixed;
  z-index: 1500;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(23, 24, 20, 0.35);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: width 200ms ease, height 200ms ease, background 200ms ease, opacity 200ms ease;
}

.cursor-halo.visible {
  opacity: 1;
}

.cursor-halo.active {
  width: 58px;
  height: 58px;
  background: rgba(169, 135, 84, 0.14);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding-top: var(--header-h);
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.75), transparent 35%),
    linear-gradient(120deg, #e7e0d4 0%, #f5f1e9 48%, #d7d1c5 100%);
}

.hero::after {
  position: absolute;
  z-index: 0;
  inset: auto 0 0;
  height: 38%;
  content: "";
  background: linear-gradient(to top, rgba(69, 62, 50, 0.08), transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - var(--header-h));
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding: clamp(60px, 8vw, 130px) 0;
}

.hero-copy .display-xl {
  max-width: 900px;
}

.hero-copy .display-xl span {
  display: block;
}

.hero-copy .hero-line-2 {
  margin-left: clamp(25px, 6vw, 110px);
  font-style: italic;
}

.hero-copy .lede {
  max-width: 500px;
  margin-top: 32px;
  margin-left: clamp(25px, 6vw, 110px);
}

.hero-copy .button-row {
  margin-left: clamp(25px, 6vw, 110px);
}

.hero-visual {
  position: absolute;
  z-index: 1;
  top: 8%;
  right: -3%;
  width: min(58vw, 930px);
  height: 86%;
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
  transition: transform 120ms linear;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: 1%;
  right: 8%;
  width: 61%;
  height: 90%;
  border: 1px solid rgba(23, 24, 20, 0.13);
  border-radius: 50% 50% 5px 5px;
  content: "";
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 40px 45px rgba(40, 35, 28, 0.2));
}

.hero-index {
  position: absolute;
  z-index: 3;
  right: 4vw;
  bottom: 4vh;
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-index span {
  font-family: var(--serif);
  font-size: 1.7rem;
}

.hero-index i {
  display: block;
  width: 90px;
  height: 1px;
  background: var(--ink);
  opacity: 0.35;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  bottom: 4vh;
  left: 4vw;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-scroll::before {
  width: 1px;
  height: 44px;
  content: "";
  background: currentColor;
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.35); transform-origin: top; opacity: 0.3; }
  50% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
  background: var(--cream);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.marquee-track span::after {
  color: var(--brass);
  content: "✦";
  font-size: 0.7rem;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Intro */
.intro-grid {
  display: grid;
  align-items: start;
  gap: 8vw;
  grid-template-columns: 0.72fr 1.28fr;
}

.intro-stat {
  position: sticky;
  top: 120px;
  padding-top: 9px;
}

.intro-stat strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.intro-statement {
  max-width: 900px;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.3vw, 5.3rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-wrap: balance;
}

.intro-statement em {
  color: var(--sage-deep);
  font-style: italic;
}

.intro-copy {
  display: grid;
  max-width: 760px;
  margin-top: 54px;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
}

/* Collection rail */
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}

.section-head .display-md {
  max-width: 820px;
}

.drag-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(23, 24, 20, 0.55);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.drag-note::before {
  content: "←";
}

.drag-note::after {
  content: "→";
}

.drag-viewport {
  overflow: hidden;
  cursor: grab;
}

.drag-viewport.is-dragging {
  cursor: grabbing;
}

.drag-track {
  display: flex;
  width: max-content;
  gap: 20px;
  padding: 0 4vw 35px;
  user-select: none;
}

.product-card {
  width: clamp(300px, 38vw, 590px);
}

.product-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.12 / 1;
  background: #ded8cc;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

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

.product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(251, 248, 242, 0.86);
  backdrop-filter: blur(8px);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-card-info {
  display: grid;
  align-items: start;
  gap: 24px;
  padding: 20px 2px 0;
  grid-template-columns: 1fr auto;
}

.product-card-info h2,
.product-card-info h3 {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.product-card-info p {
  color: rgba(23, 24, 20, 0.58);
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.round-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color 250ms ease, background 250ms ease;
}

.product-card:hover .round-arrow {
  color: var(--cream);
  background: var(--ink);
}

/* Colour studio */
.colour-studio {
  overflow: hidden;
}

.colour-studio-grid {
  display: grid;
  align-items: center;
  gap: clamp(45px, 7vw, 120px);
  grid-template-columns: 1.1fr 0.9fr;
}

.colour-stage {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px),
    #24251f;
  background-size: 68px 68px;
}

.colour-stage::after {
  position: absolute;
  right: 6%;
  bottom: 4%;
  left: 6%;
  height: 25%;
  content: "";
  background: radial-gradient(ellipse, rgba(0,0,0,0.35), transparent 65%);
  filter: blur(10px);
}

.stage-note {
  position: absolute;
  z-index: 5;
  top: 25px;
  left: 25px;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stage-note::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--brass-light);
  content: "";
}

.css-vanity {
  position: absolute;
  z-index: 2;
  right: 8%;
  bottom: 11%;
  left: 8%;
  height: 56%;
  transform: perspective(900px) rotateX(0.5deg) rotateY(var(--tilt-y, 0deg));
  transform-origin: center bottom;
  transition: transform 220ms ease;
}

.css-vanity .mirror {
  position: absolute;
  bottom: 110%;
  left: 50%;
  width: 35%;
  height: 58%;
  border: 7px solid rgba(248, 244, 236, 0.93);
  border-radius: 100px 100px 2px 2px;
  background: linear-gradient(135deg, #b9c0bd, #edf0eb 45%, #9ca39f);
  box-shadow: 0 0 24px rgba(255, 247, 224, 0.25);
  transform: translateX(-50%);
}

.css-vanity .tap {
  position: absolute;
  z-index: 8;
  bottom: 104%;
  left: 50%;
  width: 4px;
  height: 51px;
  border-radius: 5px;
  background: linear-gradient(90deg, #8d7249, #dcc9a1, #7a603c);
  transform: translateX(-50%);
}

.css-vanity .tap::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 4px;
  border-radius: 4px;
  background: inherit;
  content: "";
}

.css-vanity .basin {
  position: absolute;
  z-index: 6;
  bottom: 91%;
  left: 50%;
  width: 27%;
  height: 24%;
  border-radius: 12% 12% 45% 45% / 10% 10% 70% 70%;
  background: linear-gradient(#fdfdfc 0 45%, #d8d8d4 85%);
  box-shadow: inset 0 10px 8px rgba(0,0,0,0.08), 0 12px 15px rgba(0,0,0,0.12);
  transform: translateX(-50%);
}

.css-vanity .top {
  position: absolute;
  z-index: 5;
  right: -2%;
  bottom: 89%;
  left: -2%;
  height: 5%;
  background: linear-gradient(#fff, #d8d7d1);
  box-shadow: 0 8px 12px rgba(0,0,0,0.18);
}

.css-vanity .cabinet {
  position: absolute;
  z-index: 3;
  inset: 11% 0 4%;
  overflow: hidden;
  border-radius: 1px 1px 10px 10px;
  background: var(--cabinet-colour);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 26px 30px rgba(0,0,0,0.32);
  transition: background 650ms cubic-bezier(.2,.7,.2,1);
}

.css-vanity .doors {
  position: absolute;
  inset: 7% 5% 8%;
  display: grid;
  gap: 2%;
  grid-template-columns: 1fr 1fr;
}

.css-vanity .door {
  position: relative;
  border: 1px solid rgba(18,18,15,0.26);
  box-shadow: inset 0 0 0 9px rgba(255,255,255,0.045), inset 0 0 0 10px rgba(20,20,18,0.15);
}

.css-vanity .door::after {
  position: absolute;
  top: 8%;
  width: 18%;
  height: 4px;
  border-radius: 4px;
  content: "";
  background: linear-gradient(90deg, #79603d, #d7bd89, #735936);
}

.css-vanity .door:first-child::after { right: 8%; }
.css-vanity .door:last-child::after { left: 8%; }

.css-vanity .feet {
  position: absolute;
  right: 4%;
  bottom: 0;
  left: 4%;
  height: 8%;
}

.css-vanity .feet::before,
.css-vanity .feet::after {
  position: absolute;
  bottom: 0;
  width: 5%;
  height: 100%;
  background: var(--cabinet-colour);
  content: "";
  transition: background 650ms cubic-bezier(.2,.7,.2,1);
}

.css-vanity .feet::before { left: 2%; }
.css-vanity .feet::after { right: 2%; }

.material-reveal {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 250ms ease;
}

.colour-stage:hover .material-reveal {
  opacity: 1;
}

.material-reveal .cabinet {
  background:
    repeating-linear-gradient(91deg, rgba(68,43,20,0.10) 0 1px, transparent 1px 7px),
    linear-gradient(100deg, #be9364, #e1bb87 46%, #a8784d);
  clip-path: circle(120px at var(--cursor-x) var(--cursor-y));
}

.colour-copy .display-md {
  margin-bottom: 30px;
}

.colour-name {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 38px 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--white-line);
}

.colour-name strong {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}

.colour-name span {
  color: rgba(251,248,242,0.5);
  font-size: 0.63rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.swatch {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  padding: 4px;
  background: transparent;
  cursor: pointer;
}

.swatch::before {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--swatch);
  content: "";
}

.swatch-pigeon { --swatch: #73816c; }
.swatch-stiffkey { --swatch: #18334a; }
.swatch-black { --swatch: #171814; }
.swatch-pink { --swatch: #b58f88; }
.swatch-dropcloth { --swatch: #d8d0bd; }
.swatch-redearth { --swatch: #764c36; }

.swatch[aria-pressed="true"] {
  border-color: var(--cream);
}

.swatch[aria-pressed="true"]::after {
  position: absolute;
  right: -2px;
  bottom: -2px;
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--cream);
  content: "✓";
  font-size: 0.58rem;
}

/* Benefits */
.benefit-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.benefit {
  min-height: 300px;
  padding: clamp(25px, 3vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 350ms ease, background 350ms ease;
}

.benefit:hover {
  color: var(--cream);
  background: var(--ink);
}

.benefit-no {
  display: block;
  margin-bottom: 75px;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 1rem;
}

.benefit h3 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.benefit p {
  margin: 0;
  color: rgba(23,24,20,0.63);
  font-size: 0.9rem;
}

.benefit:hover p {
  color: rgba(251,248,242,0.65);
}

/* Craft story */
.craft-grid {
  display: grid;
  min-height: 800px;
  align-items: center;
  gap: 7vw;
  grid-template-columns: 1fr 1fr;
}

.craft-image {
  position: relative;
  height: min(72vw, 760px);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.2), transparent 30%),
    repeating-linear-gradient(96deg, rgba(68,43,20,0.15) 0 1px, transparent 1px 11px),
    linear-gradient(120deg, #8c6546, #c19568 55%, #6e4c35);
}

.craft-image::before {
  position: absolute;
  top: 8%;
  right: 10%;
  bottom: 8%;
  left: 10%;
  border: 1px solid rgba(255,255,255,0.27);
  content: "";
}

.craft-image::after {
  position: absolute;
  right: -15%;
  bottom: 14%;
  width: 80%;
  height: 40%;
  border-radius: 50%;
  content: "";
  background: rgba(30,22,15,0.18);
  filter: blur(30px);
  transform: rotate(-15deg);
}

.craft-mark {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  color: rgba(255,255,255,0.78);
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 9rem);
  font-style: italic;
  letter-spacing: -0.09em;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.craft-list {
  margin-top: 45px;
  border-top: 1px solid var(--line);
}

.craft-item {
  display: grid;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  gap: 20px;
  grid-template-columns: 45px 1fr auto;
}

.craft-item span:first-child {
  color: var(--brass);
  font-family: var(--serif);
}

.craft-item strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.craft-item small {
  color: rgba(23,24,20,0.55);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Trade conversion */
.trade-cta {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background: var(--sage-deep);
}

.trade-cta::before {
  position: absolute;
  top: -40%;
  right: -9%;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 50%;
  content: "";
}

.trade-cta::after {
  position: absolute;
  right: 13%;
  bottom: -40%;
  width: 25vw;
  height: 25vw;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  content: "";
}

.trade-cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: end;
  gap: 8vw;
  grid-template-columns: 1.15fr 0.85fr;
}

.trade-cta .display-lg {
  max-width: 900px;
}

.trade-benefits {
  display: grid;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.25);
}

.trade-benefits span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trade-benefits span::after {
  color: var(--brass-light);
  content: "✦";
}

/* Footer */
.site-footer {
  color: var(--cream);
  background: #11120f;
}

.footer-top {
  display: grid;
  gap: 6vw;
  padding: clamp(70px, 9vw, 135px) 0 70px;
  grid-template-columns: 1.15fr 0.85fr;
}

.footer-title {
  max-width: 790px;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 6.6rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.footer-title em {
  color: var(--brass-light);
  font-style: italic;
}

.footer-nav-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}

.footer-col h3 {
  margin-bottom: 24px;
  color: rgba(251,248,242,0.4);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.28rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 34px;
  flex-wrap: wrap;
  padding: 24px 0 30px;
  border-top: 1px solid var(--white-line);
  color: rgba(251,248,242,0.45);
  font-size: 0.59rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Reveals */
[data-reveal] {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 800ms cubic-bezier(.2,.65,.2,1), transform 800ms cubic-bezier(.2,.65,.2,1);
}

[data-reveal="left"] {
  transform: translateX(-35px);
}

[data-reveal="right"] {
  transform: translateX(35px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Inner pages */
.page-hero {
  position: relative;
  display: grid;
  min-height: 72svh;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-h) + 80px) 0 clamp(70px, 9vw, 130px);
  background:
    radial-gradient(circle at 80% 25%, rgba(255,255,255,0.8), transparent 32%),
    linear-gradient(125deg, #e1dacd, #f5f1e9 58%, #d2cabe);
}

.page-hero.compact {
  min-height: 55svh;
}

.page-hero.dark-hero {
  color: var(--cream);
  background:
    radial-gradient(circle at 75% 25%, rgba(169,135,84,0.18), transparent 33%),
    var(--ink);
}

.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: end;
  gap: 8vw;
  grid-template-columns: 1.3fr 0.7fr;
}

.page-hero-copy .display-lg {
  max-width: 1000px;
}

.page-hero-aside {
  padding-bottom: 12px;
}

.page-hero-index {
  position: absolute;
  right: 3vw;
  bottom: 2vw;
  color: rgba(23,24,20,0.25);
  font-family: var(--serif);
  font-size: clamp(5rem, 16vw, 14rem);
  letter-spacing: -0.07em;
  line-height: 0.7;
}

.dark-hero .page-hero-index {
  color: rgba(255,255,255,0.06);
}

.crumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 25px;
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.crumbs span {
  opacity: 0.35;
}

/* Collection page */
.filter-bar {
  position: sticky;
  z-index: 25;
  top: 72px;
  border-bottom: 1px solid var(--line);
  background: rgba(244,240,232,0.92);
  backdrop-filter: blur(18px);
}

.filter-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.filters {
  display: flex;
  align-items: center;
  gap: 9px;
}

.filter-button {
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 9px 15px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.filter-button[aria-pressed="true"],
.filter-button:hover {
  color: var(--cream);
  background: var(--ink);
}

.result-count {
  color: rgba(23,24,20,0.54);
  font-size: 0.64rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.collection-grid {
  display: grid;
  gap: clamp(50px, 7vw, 110px) 20px;
  grid-template-columns: repeat(2, 1fr);
}

.collection-grid .product-card {
  width: auto;
}

.collection-grid .product-card:nth-child(3n) {
  grid-column: 1 / -1;
  width: 72%;
  margin-inline: auto;
}

.collection-grid .product-card.is-hidden {
  display: none;
}

/* Product page */
.product-main {
  padding-top: calc(var(--header-h) + 35px);
}

.product-layout {
  display: grid;
  align-items: start;
  gap: clamp(40px, 6vw, 90px);
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
}

.product-gallery {
  display: grid;
  gap: 18px;
}

.gallery-main,
.gallery-secondary {
  position: relative;
  overflow: hidden;
  background: #e4ded2;
}

.gallery-main {
  aspect-ratio: 1.03 / 1;
}

.gallery-secondary {
  aspect-ratio: 1.25 / 1;
}

.gallery-main img,
.gallery-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-main img {
  transition: opacity 180ms ease;
}

.gallery-main img.is-changing {
  opacity: 0.28;
}

.gallery-note {
  position: absolute;
  right: 20px;
  bottom: 18px;
  padding: 7px 10px;
  background: rgba(251,248,242,0.84);
  backdrop-filter: blur(8px);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-view-switcher {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.gallery-view-switcher button {
  border: 1px solid rgba(23,24,20,0.18);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--ink);
  background: rgba(251,248,242,0.84);
  backdrop-filter: blur(8px);
  cursor: pointer;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-view-switcher button[aria-pressed="true"] {
  color: var(--cream);
  background: var(--ink);
}

.product-panel {
  position: sticky;
  top: 110px;
  padding: 25px 0 60px;
}

.product-panel h1 {
  margin-bottom: 15px;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 5vw, 6rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.product-subtitle {
  color: rgba(23,24,20,0.58);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-price {
  margin: 26px 0 30px;
  font-family: var(--serif);
  font-size: 1.5rem;
}

.product-price span {
  display: block;
  margin-top: 6px;
  color: rgba(23,24,20,0.5);
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.dr-account-discount {
  display: block;
  margin-top: 4px;
  color: rgba(23,24,20,0.58);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.configurator {
  border-top: 1px solid var(--line);
}

.config-group {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.config-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 15px;
}

.config-head h3 {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.config-value {
  color: rgba(23,24,20,0.55);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-button {
  min-width: 58px;
  border: 1px solid var(--line);
  padding: 10px 13px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 0.65rem;
  transition: color 200ms ease, background 200ms ease;
}

.option-button span {
  display: block;
}

.option-button small {
  display: block;
  margin-top: 3px;
  color: inherit;
  font-size: 0.52rem;
  opacity: 0.62;
}

.option-button[aria-pressed="true"],
.option-button:hover {
  color: var(--cream);
  background: var(--ink);
}

.option-button.colour-option {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.colour-dot {
  width: 13px;
  height: 13px;
  border: 1px solid rgba(23,24,20,0.25);
  border-radius: 50%;
  background: var(--swatch, var(--dot));
}

.dot-pigeon { --dot: #73816c; }
.dot-stiffkey { --dot: #18334a; }
.dot-black { --dot: #171814; }
.dot-pink { --dot: #b58f88; }

.config-loading,
.config-error {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(23,24,20,0.62);
  font-size: 0.78rem;
}

.config-error {
  color: #8a332d;
}

.summary-box {
  margin: 28px 0 18px;
  padding: 20px;
  background: var(--paper-2);
}

.summary-box h3 {
  margin-bottom: 15px;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 7px;
  font-size: 0.78rem;
}

.summary-row span:first-child {
  color: rgba(23,24,20,0.55);
}

.product-actions {
  display: grid;
  gap: 10px;
}

.product-actions .button {
  width: 100%;
}

.product-meta {
  display: grid;
  margin-top: 22px;
  gap: 8px;
  color: rgba(23,24,20,0.6);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-meta span::before {
  margin-right: 8px;
  color: var(--brass);
  content: "✦";
}

/* Forms */
.form-shell {
  display: grid;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: 0.75fr 1.25fr;
}

.form-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.form-intro .display-md {
  margin-bottom: 27px;
}

.form-card {
  padding: clamp(28px, 5vw, 70px);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.form-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 45px;
}

.form-progress i {
  height: 2px;
  flex: 1;
  background: var(--line);
  transition: background 300ms ease;
}

.form-progress i.active {
  background: var(--brass);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: step-in 450ms ease both;
}

@keyframes step-in {
  from { opacity: 0; transform: translateY(15px); }
}

.form-step h2 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.form-step > p {
  color: rgba(23,24,20,0.58);
  margin-bottom: 35px;
}

.field-grid {
  display: grid;
  gap: 24px 18px;
  grid-template-columns: repeat(2, 1fr);
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 0;
  color: var(--ink);
  background: transparent;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brass);
  outline: none;
}

.choice-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}

.choice-card {
  position: relative;
}

.choice-card input {
  position: absolute;
  opacity: 0;
}

.choice-card label {
  display: grid;
  min-height: 105px;
  align-content: space-between;
  border: 1px solid var(--line);
  padding: 17px;
  cursor: pointer;
  font-size: 0.75rem;
}

.choice-card label::after {
  width: 16px;
  height: 16px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.choice-card input:checked + label {
  border-color: var(--ink);
  background: var(--paper-2);
}

.choice-card input:checked + label::after {
  border: 5px solid var(--ink);
}

.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 38px;
}

.form-nav .back-button {
  border: 0;
  color: rgba(23,24,20,0.6);
  background: transparent;
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-success {
  display: none;
  min-height: 400px;
  place-items: center;
  text-align: center;
}

.form-success.active {
  display: grid;
}

.success-mark {
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  margin: 0 auto 25px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 2rem;
}

/* Specifications and accordions */
.spec-layout {
  display: grid;
  align-items: start;
  gap: 8vw;
  grid-template-columns: 0.65fr 1.35fr;
}

.spec-nav {
  position: sticky;
  top: 120px;
  display: grid;
}

.spec-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec-block {
  padding: 0 0 70px;
  scroll-margin-top: 120px;
}

.spec-block h2 {
  margin-bottom: 25px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  letter-spacing: -0.04em;
}

.spec-table {
  border-top: 1px solid var(--line);
}

.spec-row {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  gap: 30px;
  grid-template-columns: 0.8fr 1.2fr;
}

.spec-row dt {
  color: rgba(23,24,20,0.55);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.spec-row dd {
  margin: 0;
  font-size: 0.9rem;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-button {
  display: flex;
  width: 100%;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.accordion-button::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1rem;
  transition: transform 250ms ease;
}

.accordion-button[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 350ms ease;
}

.accordion-panel > div {
  overflow: hidden;
}

.accordion-button[aria-expanded="true"] + .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-panel p {
  max-width: 720px;
  padding: 0 40px 28px 0;
  color: rgba(23,24,20,0.65);
}

/* Story */
.story-lead {
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.75fr 1.25fr;
}

.story-lead .display-md {
  max-width: 900px;
}

.story-number {
  color: var(--brass);
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 13rem);
  letter-spacing: -0.08em;
  line-height: 0.72;
}

.story-visual {
  position: relative;
  min-height: 72svh;
  overflow: hidden;
  background:
    repeating-linear-gradient(92deg, rgba(58,38,22,0.12) 0 1px, transparent 1px 13px),
    linear-gradient(115deg, #6d4d36, #b68a63 48%, #74513a);
}

.story-visual::before {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255,255,255,0.24);
  content: "";
}

.story-visual-copy {
  position: absolute;
  z-index: 2;
  right: 7%;
  bottom: 9%;
  max-width: 620px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 6rem);
  font-style: italic;
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: right;
}

/* Modal and toast */
.modal {
  position: fixed;
  z-index: 1300;
  inset: 0;
  display: grid;
  visibility: hidden;
  place-items: center;
  padding: 20px;
  background: rgba(17,18,15,0.72);
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 250ms ease, visibility 250ms;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal-panel {
  position: relative;
  width: min(100%, 560px);
  max-height: 92svh;
  overflow: auto;
  padding: clamp(32px, 6vw, 68px);
  background: var(--cream);
  box-shadow: var(--shadow);
  transform: translateY(20px) scale(0.98);
  transition: transform 300ms ease;
}

.modal.is-open .modal-panel {
  transform: none;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.modal-panel h2 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.modal-panel > p {
  color: rgba(23,24,20,0.6);
  margin-bottom: 32px;
}

.sample-modal .modal-panel {
  width: min(760px, calc(100vw - 36px));
}

.sample-modal .modal-panel h2 em {
  font-style: italic;
  font-weight: 400;
}

.sample-request-form {
  margin-top: 30px;
}

.sample-request-form .button {
  margin-top: 24px;
}

.sample-privacy {
  margin-top: 18px;
  color: rgba(17,19,15,0.58);
  font-size: 0.7rem;
  line-height: 1.55;
}

.sample-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.login-form {
  display: grid;
  gap: 22px;
}

.login-help {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.7rem;
}

.login-help a {
  border-bottom: 1px solid var(--line);
}

.toast {
  position: fixed;
  z-index: 1400;
  right: 22px;
  bottom: 22px;
  max-width: 380px;
  padding: 17px 22px;
  color: var(--cream);
  background: var(--ink);
  box-shadow: var(--shadow);
  font-size: 0.78rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 250ms ease, transform 250ms ease;
}

.toast.show {
  opacity: 1;
  transform: none;
}

/* Contact */
.contact-cards {
  display: grid;
  gap: 1px;
  background: var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.contact-card {
  min-height: 250px;
  padding: clamp(25px, 3vw, 45px);
  background: var(--cream);
}

.contact-card span {
  display: block;
  margin-bottom: 60px;
  color: var(--brass);
  font-family: var(--serif);
}

.contact-card h2,
.contact-card h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 1.8rem;
}

.form-success h2 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.contact-card p,
.contact-card a {
  color: rgba(23,24,20,0.62);
  font-size: 0.86rem;
}

/* Responsive */
@media (max-width: 1100px) {
  :root { --page: min(91vw, 1480px); }
  .primary-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto 1fr; }
  .menu-toggle { display: grid; justify-self: start; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { right: -18%; width: 76vw; opacity: 0.78; }
  .hero-copy { width: 80%; }
  .hero-copy .display-xl { font-size: clamp(4.4rem, 10.5vw, 8.2rem); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .product-layout { grid-template-columns: 1fr 0.9fr; gap: 40px; }
  .colour-stage { min-height: 590px; }
}

@media (max-width: 820px) {
  :root { --header-h: 72px; }
  .header-actions .login-link,
  .header-apply { display: none; }
  .brand-name { font-size: 1.08rem; }
  .brand-note { display: none; }
  .section { padding: 80px 0; }
  .section-sm { padding: 55px 0; }
  .hero { min-height: 900px; }
  .hero-grid { min-height: 825px; align-items: start; }
  .hero-copy { width: 100%; padding-top: 120px; }
  .hero-copy .display-xl { font-size: clamp(3.6rem, 13vw, 6.8rem); }
  .hero-copy .hero-line-2,
  .hero-copy .lede,
  .hero-copy .button-row { margin-left: 0; }
  .hero-copy .lede { max-width: 70%; }
  .hero-visual { top: 34%; right: -16%; width: 98vw; height: 65%; opacity: 0.9; }
  .hero-scroll { display: none; }
  .intro-grid,
  .colour-studio-grid,
  .craft-grid,
  .trade-cta-grid,
  .footer-top,
  .page-hero-grid,
  .form-shell,
  .spec-layout,
  .story-lead { grid-template-columns: 1fr; }
  .intro-stat,
  .form-intro,
  .spec-nav { position: static; }
  .intro-copy { grid-template-columns: 1fr; gap: 15px; }
  .colour-stage { min-height: 620px; order: 2; }
  .colour-copy { order: 1; }
  .craft-grid { min-height: 0; }
  .craft-image { height: 90vw; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .benefit { min-height: 250px; }
  .benefit-no { margin-bottom: 45px; }
  .trade-cta-grid { gap: 45px; }
  .footer-top { gap: 65px; }
  .page-hero { min-height: 68svh; }
  .page-hero-aside { max-width: 580px; }
  .product-layout { grid-template-columns: 1fr; }
  .product-panel { position: static; }
  .collection-grid .product-card:nth-child(3n) { width: 100%; }
  .spec-nav { display: flex; overflow-x: auto; gap: 20px; }
  .spec-nav a { flex: 0 0 auto; }
}

@media (max-width: 580px) {
  :root { --page: 90vw; }
  .cursor-halo { display: none; }
  .display-lg { font-size: clamp(3rem, 15vw, 5rem); }
  .display-md { font-size: clamp(2.55rem, 12vw, 4rem); }
  .hero { min-height: 820px; }
  .hero-grid { min-height: 748px; }
  .hero-copy { padding-top: 78px; }
  .hero-copy .display-xl { font-size: clamp(3.4rem, 16.5vw, 5.5rem); }
  .hero-copy .lede { max-width: 95%; font-size: 0.96rem; }
  .hero-copy .button-row { margin-top: 25px; }
  .hero-copy .button { min-height: 49px; padding: 0 18px; }
  .hero-visual { top: 42%; right: -25%; width: 122vw; height: 56%; }
  .hero-index { right: 5vw; bottom: 20px; }
  .hero-index i { width: 55px; }
  .intro-grid { gap: 45px; }
  .intro-statement { font-size: clamp(2.25rem, 11vw, 3.2rem); }
  .section-head { display: block; }
  .section-head .drag-note { margin-top: 25px; }
  .drag-track { gap: 14px; }
  .product-card { width: 82vw; }
  .product-card-info h3 { font-size: 2rem; }
  .colour-stage { min-height: 470px; margin-inline: -5vw; }
  .css-vanity { right: 5%; bottom: 10%; left: 5%; height: 50%; }
  .material-reveal { display: none; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit { min-height: 220px; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-nav-grid { gap: 45px; }
  .footer-bottom { display: grid; gap: 8px; }
  .page-hero { min-height: 620px; padding-bottom: 65px; }
  .page-hero-index { font-size: 7rem; }
  .filter-inner { align-items: start; flex-direction: column; padding: 15px 0; }
  .filters { width: 100%; overflow-x: auto; padding-bottom: 2px; }
  .filter-button { flex: 0 0 auto; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-grid .product-card:nth-child(3n) { grid-column: auto; }
  .field-grid,
  .choice-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-card { margin-inline: -2vw; }
  .form-nav { align-items: stretch; flex-direction: column-reverse; }
  .form-nav .button { width: 100%; }
  .spec-row { grid-template-columns: 1fr; gap: 8px; }
  .story-number { font-size: 7rem; }
  .login-help { flex-direction: column; }
}

@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;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .page-reveal { display: none; }
  .cursor-halo { display: none; }
}

/* Cinematic homepage */
.home-page .site-header:not(.is-scrolled) {
  color: var(--cream);
}

.home-page .site-header:not(.is-scrolled) .header-apply {
  border-color: currentColor;
}

.home-page .site-header:not(.is-scrolled) .header-apply:hover {
  color: var(--ink);
  background: var(--cream);
}

.home-page .site-header.is-scrolled {
  color: var(--ink);
}

.home-page .page-reveal {
  display: block;
  color: var(--cream);
  background: transparent;
  transform: none;
  transition: visibility 0s linear 3.2s;
}

.reveal-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc(50% + 1px);
  background: var(--ink);
  transition: transform 1150ms cubic-bezier(0.77, 0, 0.175, 1) 1.9s;
}

.reveal-panel-left { left: 0; }
.reveal-panel-right { right: 0; }

.reveal-lockup {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(78vw, 430px);
  justify-items: center;
  transform: translate(-50%, -50%);
  transition: opacity 320ms ease 1.7s, transform 600ms ease 1.62s;
}

.reveal-symbol {
  font-family: var(--serif);
  font-size: clamp(5.5rem, 13vw, 10.5rem);
  font-style: italic;
  letter-spacing: -0.12em;
  line-height: 0.8;
}

.reveal-lockup i {
  width: 100%;
  height: 1px;
  margin: 36px 0 18px;
  background: rgba(251, 248, 242, 0.48);
  transform: scaleX(0);
  animation: reveal-rule 620ms cubic-bezier(0.65, 0, 0.35, 1) 80ms forwards;
}

.reveal-label,
.reveal-count {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.reveal-count {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 4vh;
  transition: opacity 220ms ease 1.76s;
}

.is-ready .home-page .page-reveal {
  visibility: hidden;
  transform: none;
}

.is-ready .reveal-panel-left { transform: translateX(-100%); }
.is-ready .reveal-panel-right { transform: translateX(100%); }

.is-ready .reveal-lockup {
  opacity: 0;
  transform: translate(-50%, -58%);
}

.is-ready .reveal-count { opacity: 0; }

.is-ready .home-page .reveal-lockup span {
  opacity: 1;
}

.is-ready .home-page .reveal-count {
  opacity: 0;
}

@keyframes reveal-rule {
  to { transform: scaleX(1); }
}

.hero-cinematic {
  min-height: max(900px, 100svh);
  padding-top: 0;
  color: var(--cream);
  background: var(--ink);
  isolation: isolate;
}

.hero-cinematic::after {
  z-index: 1;
  height: 45%;
  background: linear-gradient(to top, rgba(8, 9, 7, 0.78), transparent);
}

.hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  clip-path: inset(13% 7% 15% 54% round 2px);
  transform: scale(1.055) translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
  transform-origin: 73% 50%;
  transition: clip-path 1.25s cubic-bezier(0.77, 0, 0.175, 1) 760ms, transform 1.5s cubic-bezier(0.2, 0.75, 0.2, 1) 760ms;
}

.is-ready .hero-media {
  clip-path: inset(0);
  transform: scale(1) translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
}

.hero-cinematic.is-settled .hero-media {
  transition: transform 160ms linear;
}

.hero-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(0.82) contrast(1.04);
  transform: scale(calc(1 + var(--hero-progress, 0) * 0.045));
  transform-origin: center;
}

.hero-media-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 14, 11, 0.91) 0%, rgba(13, 14, 11, 0.71) 32%, rgba(13, 14, 11, 0.16) 64%, rgba(13, 14, 11, 0.06) 100%),
    linear-gradient(180deg, rgba(13, 14, 11, 0.32), transparent 34%, rgba(13, 14, 11, 0.22));
}

.hero-ghost-mark {
  position: absolute;
  top: 8%;
  right: -2.5vw;
  color: transparent;
  font-family: var(--serif);
  font-size: clamp(15rem, 35vw, 38rem);
  font-style: italic;
  letter-spacing: -0.13em;
  line-height: 0.75;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.17);
}

.hero-media-caption {
  position: absolute;
  top: 50%;
  right: 1.4vw;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.hero-cinematic .hero-grid {
  z-index: 3;
  min-height: max(900px, 100svh);
  align-items: start;
  padding: clamp(155px, 17vh, 205px) 0 255px;
  grid-template-columns: 1fr;
}

.hero-cinematic .hero-copy {
  width: min(89%, 1280px);
  padding: 0;
  opacity: calc(1 - var(--hero-progress, 0) * 0.72);
  transform: translateY(calc(var(--hero-progress, 0) * -52px));
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: clamp(28px, 4vh, 48px);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 550ms ease 1s, transform 550ms ease 1s;
}

.hero-kicker i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  font-family: var(--serif);
  font-style: normal;
  letter-spacing: 0;
}

.is-ready .hero-kicker {
  opacity: 1;
  transform: translateY(0);
}

.hero-cinematic .display-xl {
  max-width: 1260px;
  font-family: var(--sans);
  font-size: clamp(4.5rem, 8.9vw, 9.25rem);
  letter-spacing: -0.068em;
  line-height: 0.87;
}

.hero-title-line {
  display: block;
  overflow: hidden;
  padding: 0.04em 0 0.09em;
}

.hero-title-line > span {
  display: block;
  transform: translateY(115%);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.is-ready .hero-title-line:nth-child(1) > span { transform: translateY(0); transition-delay: 1.02s; }
.is-ready .hero-title-line:nth-child(2) > span { transform: translateY(0); transition-delay: 1.14s; }
.is-ready .hero-title-line:nth-child(3) > span { transform: translateY(0); transition-delay: 1.26s; }

.hero-cinematic .hero-copy .hero-line-2 {
  margin-left: clamp(25px, 7vw, 110px);
  font-style: normal;
}

.hero-cinematic .hero-copy .hero-line-3 {
  margin-left: clamp(90px, 24vw, 360px);
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: -0.045em;
}

.hero-cinematic .hero-copy .lede {
  max-width: 520px;
  margin: clamp(25px, 4vh, 42px) 0 0 clamp(25px, 7vw, 110px);
  color: rgba(251, 248, 242, 0.74);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease 1.42s, transform 650ms ease 1.42s;
}

.hero-cinematic .hero-copy .button-row {
  margin-left: clamp(25px, 7vw, 110px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease 1.52s, transform 650ms ease 1.52s;
}

.hero-cinematic .button {
  border-color: var(--cream);
  color: var(--ink);
  background: var(--cream);
}

.hero-cinematic .button:hover {
  color: var(--cream);
  background: transparent;
}

.hero-cinematic .button.secondary {
  color: var(--cream);
  background: rgba(15, 16, 13, 0.2);
  backdrop-filter: blur(12px);
}

.hero-cinematic .button.secondary:hover {
  color: var(--ink);
  background: var(--cream);
}

.hero-heritage {
  margin: 28px 0 0 clamp(25px, 7vw, 110px);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 650ms ease 1.62s, transform 650ms ease 1.62s;
}

.hero-heritage strong {
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.is-ready .hero-cinematic .hero-copy .lede,
.is-ready .hero-cinematic .hero-copy .button-row,
.is-ready .hero-heritage {
  opacity: 1;
  transform: translateY(0);
}

.hero-choice-dock {
  position: absolute;
  z-index: 5;
  right: 4vw;
  bottom: 0;
  left: 15vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  opacity: 0;
  transform: translateY(70%);
  transition: opacity 450ms ease 1.45s, transform 900ms cubic-bezier(0.16, 1, 0.3, 1) 1.45s;
}

.is-ready .hero-choice-dock {
  opacity: 1;
  transform: translateY(0);
}

.hero-choice {
  --card-x: 50%;
  --card-y: 50%;
  position: relative;
  display: grid;
  min-height: 178px;
  align-content: end;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 24px;
  background:
    radial-gradient(circle at var(--card-x) var(--card-y), rgba(255, 255, 255, 0.24), transparent 35%),
    rgba(229, 224, 214, 0.16);
  backdrop-filter: blur(20px) saturate(0.8);
  transition: min-height 400ms cubic-bezier(0.2, 0.8, 0.2, 1), background 350ms ease;
}

.hero-choice:first-child { border-left: 1px solid rgba(255, 255, 255, 0.2); }

.hero-choice:hover,
.hero-choice:focus-visible {
  min-height: 205px;
  background:
    radial-gradient(circle at var(--card-x) var(--card-y), rgba(255, 255, 255, 0.34), transparent 38%),
    rgba(214, 193, 157, 0.24);
}

.hero-choice span,
.hero-choice small {
  font-size: 0.59rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-choice span {
  position: absolute;
  top: 21px;
  left: 24px;
  color: rgba(255, 255, 255, 0.68);
}

.hero-choice strong {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.1vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-choice small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
}

.hero-choice i {
  position: absolute;
  top: 19px;
  right: 22px;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-style: normal;
  transition: color 250ms ease, background 250ms ease, transform 250ms ease;
}

.hero-choice:hover i {
  color: var(--ink);
  background: var(--cream);
  transform: rotate(45deg);
}

.hero-cinematic .hero-scroll {
  z-index: 6;
  right: 2vw;
  bottom: 205px;
  left: auto;
  display: grid;
  justify-items: center;
  gap: 12px;
  writing-mode: vertical-rl;
}

.hero-cinematic .hero-scroll::before {
  order: 2;
  height: 62px;
}

.home-page .marquee {
  position: relative;
  z-index: 7;
  border: 0;
  padding: 18px 0;
  background: #d2b886;
}

.home-page .marquee-track {
  animation-duration: 34s;
}

.home-page .marquee-track span::after {
  color: var(--ink);
}

.manifesto {
  min-height: 110svh;
  overflow: hidden;
  background: var(--paper);
}

.manifesto-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: start;
  gap: clamp(55px, 8vw, 135px);
  grid-template-columns: minmax(190px, 0.38fr) minmax(0, 1.62fr);
}

.manifesto-aside {
  position: sticky;
  top: 130px;
  padding-top: 8px;
}

.manifesto-index {
  display: block;
  margin: clamp(80px, 11vh, 130px) 0 22px;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.8rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.manifesto-aside p {
  color: rgba(23, 24, 20, 0.56);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  line-height: 1.8;
  text-transform: uppercase;
}

.manifesto-content {
  padding-top: 2px;
}

.manifesto-title {
  font-family: var(--sans);
  font-size: clamp(4.2rem, 8.6vw, 9.4rem);
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.manifesto-title span {
  display: block;
}

.manifesto-title span + span {
  margin: 0 0 0 clamp(10px, 5vw, 75px);
}

.manifesto-title em {
  color: var(--sage-deep);
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: -0.045em;
}

.manifesto-copy {
  display: grid;
  max-width: 850px;
  margin: clamp(55px, 7vw, 105px) 0 0 auto;
  gap: 42px;
  grid-template-columns: repeat(2, 1fr);
}

.manifesto-copy p {
  color: rgba(23, 24, 20, 0.68);
}

.manifesto-proof {
  display: grid;
  margin-top: clamp(65px, 8vw, 120px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.manifesto-proof article {
  min-height: 220px;
  padding: clamp(22px, 2.4vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 240, 232, 0.48);
  transition: color 320ms ease, background 320ms ease, transform 320ms ease;
}

.manifesto-proof article:hover {
  color: var(--cream);
  background: var(--ink);
  transform: translateY(-10px);
}

.manifesto-proof span {
  display: block;
  margin-bottom: 65px;
  color: var(--brass);
  font-family: var(--serif);
}

.manifesto-proof strong,
.manifesto-proof small {
  display: block;
}

.manifesto-proof strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.1;
}

.manifesto-proof small {
  margin-top: 14px;
  color: rgba(23, 24, 20, 0.56);
  font-size: 0.76rem;
  line-height: 1.5;
}

.manifesto-proof article:hover small {
  color: rgba(251, 248, 242, 0.64);
}

.manifesto-orbit {
  position: absolute;
  right: -18vw;
  bottom: -20vw;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(23, 24, 20, 0.11);
  border-radius: 50%;
  transform: rotate(calc(var(--scene-progress, 0) * 160deg));
  pointer-events: none;
}

.manifesto-orbit::before,
.manifesto-orbit::after {
  position: absolute;
  border: 1px solid rgba(23, 24, 20, 0.1);
  border-radius: 50%;
  content: "";
}

.manifesto-orbit::before { inset: 12%; }
.manifesto-orbit::after { inset: 28%; }

.manifesto-orbit span {
  position: absolute;
  top: 4%;
  left: 50%;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 8rem);
  font-style: italic;
  transform: translateX(-50%);
}

.manifesto-orbit i {
  position: absolute;
  right: 5%;
  bottom: 28%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brass);
}

.kinetic-band {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 28px 0 38px;
  color: var(--cream);
  background: var(--ink);
}

.kinetic-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 34px;
  animation: kinetic-run 42s linear infinite;
  will-change: transform;
}

.kinetic-track span {
  font-family: var(--serif);
  font-size: clamp(4rem, 8.2vw, 9rem);
  font-style: italic;
  letter-spacing: -0.055em;
  line-height: 0.9;
  white-space: nowrap;
}

.kinetic-track span:nth-of-type(2n) {
  color: transparent;
  font-family: var(--sans);
  font-style: normal;
  -webkit-text-stroke: 1px rgba(251, 248, 242, 0.7);
}

.kinetic-track i {
  color: var(--brass-light);
  font-size: clamp(1.2rem, 2.2vw, 2.5rem);
  font-style: normal;
}

@keyframes kinetic-run {
  to { transform: translateX(-50%); }
}

.choice-lab {
  overflow: hidden;
  background: #d8d4ca;
}

.choice-lab::before {
  position: absolute;
  top: -24vw;
  left: -20vw;
  width: 55vw;
  height: 55vw;
  border: 1px solid rgba(23, 24, 20, 0.1);
  border-radius: 50%;
  content: "";
}

.choice-lab-grid {
  display: grid;
  align-items: start;
  gap: clamp(55px, 7vw, 115px);
  grid-template-columns: minmax(280px, 0.72fr) minmax(560px, 1.28fr);
}

.choice-lab-copy {
  position: sticky;
  top: 120px;
  padding-top: 10px;
}

.choice-lab-copy .lede {
  margin-top: 34px;
}

.choice-instruction {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 46px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.choice-instruction span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.choice-console {
  --choice-accent: #a8ae9d;
  border: 1px solid rgba(23, 24, 20, 0.24);
  background: var(--ink);
  box-shadow: 0 45px 100px rgba(35, 32, 26, 0.18);
}

.choice-screen {
  position: relative;
  min-height: clamp(520px, 55vw, 720px);
  overflow: hidden;
  color: var(--ink);
  background: var(--choice-accent);
  transition: background 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.choice-screen::after {
  position: absolute;
  right: -22%;
  bottom: -38%;
  width: 78%;
  height: 78%;
  border: 1px solid rgba(23, 24, 20, 0.17);
  border-radius: 50%;
  content: "";
  transition: transform 700ms ease;
}

.choice-screen.is-changing::after {
  transform: scale(1.2) rotate(35deg);
}

.choice-screen-head {
  position: absolute;
  z-index: 4;
  top: 28px;
  right: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(23, 24, 20, 0.28);
  padding-bottom: 18px;
}

.choice-screen-head span {
  font-family: var(--serif);
  font-size: 1.55rem;
}

.choice-screen-head small,
.choice-screen-copy small {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.choice-object {
  position: absolute;
  z-index: 2;
  top: 7%;
  right: -4%;
  width: 76%;
  height: 76%;
  transition: transform 750ms cubic-bezier(0.16, 1, 0.3, 1);
}

.choice-screen.is-changing .choice-object {
  transform: scale(0.94) rotate(-1.5deg);
}

.choice-object img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 25px rgba(23, 24, 20, 0.22));
  mix-blend-mode: multiply;
}

.choice-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(23, 24, 20, 0.18);
  border-radius: 50%;
  animation: choice-spin 15s linear infinite;
}

.choice-orbit::before {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.choice-orbit-one { inset: 12%; }
.choice-orbit-two { inset: 25%; animation-direction: reverse; animation-duration: 10s; }

@keyframes choice-spin {
  to { transform: rotate(360deg); }
}

.choice-screen-copy {
  position: absolute;
  z-index: 4;
  right: 31px;
  bottom: 30px;
  left: 31px;
  max-width: 470px;
}

.choice-screen-copy strong {
  display: block;
  margin: 5px 0 14px;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.5vw, 6.4rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.choice-screen-copy p {
  max-width: 430px;
  margin: 0;
  font-size: 0.88rem;
}

.choice-screen-copy > * {
  transition: opacity 180ms ease, transform 180ms ease;
}

.choice-screen.is-changing .choice-screen-copy > * {
  opacity: 0;
  transform: translateY(12px);
}

.choice-controls {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.choice-controls button {
  position: relative;
  display: grid;
  min-height: 128px;
  align-content: end;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  padding: 22px;
  color: rgba(251, 248, 242, 0.56);
  background: transparent;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.35rem;
  text-align: left;
  transition: color 280ms ease, background 280ms ease;
}

.choice-controls button:last-child { border-right: 0; }

.choice-controls button:hover,
.choice-controls button[aria-pressed="true"] {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
}

.choice-controls button span {
  position: absolute;
  top: 19px;
  left: 22px;
  font-family: var(--sans);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.choice-controls button i {
  position: absolute;
  top: 17px;
  right: 19px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-style: normal;
  transition: transform 260ms ease;
}

.choice-controls button:hover i,
.choice-controls button[aria-pressed="true"] i {
  transform: rotate(45deg);
}

.home-page .product-card-media {
  background: #d5d0c6;
}

.home-page .product-card:nth-child(2) {
  margin-top: clamp(25px, 5vw, 70px);
}

.home-page .product-card:nth-child(3) {
  margin-top: clamp(8px, 2vw, 28px);
}

.home-page .benefit {
  transform-origin: center;
}

.home-page .benefit:hover {
  transform: translateY(-10px);
}

.home-page .trade-cta {
  background: #222720;
}

.home-page .trade-cta::before {
  top: -63%;
  right: -5%;
  width: 70vw;
  height: 70vw;
}

.home-page .trade-cta::after {
  right: auto;
  bottom: -55%;
  left: -10%;
  width: 48vw;
  height: 48vw;
}

@media (max-width: 1100px) {
  .hero-cinematic .hero-copy { width: 100%; }
  .hero-cinematic .display-xl { font-size: clamp(4.2rem, 10.3vw, 7.3rem); }
  .hero-choice-dock { left: 6vw; }
  .choice-lab-grid { grid-template-columns: minmax(250px, 0.65fr) minmax(480px, 1.35fr); gap: 55px; }
  .choice-screen { min-height: 590px; }
}

@media (max-width: 820px) {
  .hero-cinematic { min-height: 1040px; }
  .hero-cinematic .hero-grid {
    min-height: 1040px;
    padding: 138px 0 335px;
  }
  .hero-media img { object-position: 60% 52%; }
  .hero-media-wash {
    background:
      linear-gradient(90deg, rgba(13, 14, 11, 0.9) 0%, rgba(13, 14, 11, 0.55) 58%, rgba(13, 14, 11, 0.16) 100%),
      linear-gradient(180deg, rgba(13, 14, 11, 0.2), transparent 42%, rgba(13, 14, 11, 0.65));
  }
  .hero-cinematic .display-xl { font-size: clamp(3.7rem, 12.4vw, 6.2rem); }
  .hero-cinematic .hero-copy .hero-line-2 { margin-left: 4vw; }
  .hero-cinematic .hero-copy .hero-line-3 { margin-left: 18vw; }
  .hero-cinematic .hero-copy .lede,
  .hero-cinematic .hero-copy .button-row,
  .hero-heritage { margin-left: 4vw; }
  .hero-cinematic .hero-copy .lede { max-width: 70%; }
  .hero-choice-dock {
    right: 5vw;
    left: 5vw;
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-choice { min-height: 138px; border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
  .hero-choice:hover,
  .hero-choice:focus-visible { min-height: 150px; }
  .hero-cinematic .hero-scroll { display: none; }
  .manifesto { min-height: 0; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-aside { position: static; display: grid; grid-template-columns: 1fr auto; align-items: start; }
  .manifesto-aside .eyebrow { grid-column: 1 / -1; }
  .manifesto-index { margin: 25px 0 0; }
  .manifesto-aside p { margin: 25px 0 0; text-align: right; }
  .manifesto-title { font-size: clamp(3.9rem, 12vw, 6rem); }
  .manifesto-copy { margin-top: 55px; }
  .manifesto-proof { grid-template-columns: 1fr; }
  .manifesto-proof article { min-height: 180px; }
  .manifesto-proof span { margin-bottom: 38px; }
  .choice-lab-grid { grid-template-columns: 1fr; }
  .choice-lab-copy { position: static; }
  .choice-console { margin-top: 15px; }
  .choice-screen { min-height: 650px; }
}

@media (max-width: 580px) {
  .reveal-lockup { width: 74vw; }
  .reveal-count { right: 5vw; bottom: 3vh; }
  .hero-cinematic { min-height: 950px; }
  .hero-cinematic .hero-grid {
    min-height: 950px;
    padding: 112px 0 320px;
  }
  .hero-media img { object-position: 64% 50%; }
  .hero-media-wash {
    background:
      linear-gradient(90deg, rgba(13, 14, 11, 0.86), rgba(13, 14, 11, 0.35)),
      linear-gradient(180deg, rgba(13, 14, 11, 0.17), rgba(13, 14, 11, 0.05) 44%, rgba(13, 14, 11, 0.84) 78%);
  }
  .hero-ghost-mark { top: 22%; right: -10vw; }
  .hero-media-caption { display: none; }
  .hero-kicker { max-width: 270px; margin-bottom: 27px; line-height: 1.5; }
  .hero-cinematic .display-xl { font-size: clamp(3.15rem, 14.9vw, 5rem); }
  .hero-cinematic .hero-copy .hero-line-2 { margin-left: 0; }
  .hero-cinematic .hero-copy .hero-line-3 { margin-left: 13vw; }
  .hero-cinematic .hero-copy .lede,
  .hero-cinematic .hero-copy .button-row,
  .hero-heritage { margin-left: 0; }
  .hero-cinematic .hero-copy .lede { max-width: 95%; font-size: 0.92rem; line-height: 1.55; }
  .hero-cinematic .hero-copy .button-row { display: grid; margin-top: 25px; }
  .hero-cinematic .hero-copy .button { width: 100%; }
  .hero-heritage { margin-top: 20px; }
  .hero-choice-dock { right: 0; left: 5vw; overflow-x: auto; grid-template-columns: repeat(4, 52vw); scrollbar-width: none; }
  .hero-choice-dock::-webkit-scrollbar { display: none; }
  .hero-choice { min-height: 145px; }
  .hero-choice:hover,
  .hero-choice:focus-visible { min-height: 145px; }
  .home-page .marquee { padding: 15px 0; }
  .manifesto-grid { gap: 52px; }
  .manifesto-aside { display: block; }
  .manifesto-index { font-size: 3.4rem; }
  .manifesto-aside p { text-align: left; }
  .manifesto-title { font-size: clamp(3.35rem, 15vw, 4.7rem); }
  .manifesto-title span + span { margin-left: 0; }
  .manifesto-copy { grid-template-columns: 1fr; gap: 12px; }
  .manifesto-orbit { right: -45vw; bottom: -25vw; width: 95vw; height: 95vw; }
  .kinetic-band { padding: 23px 0 28px; }
  .kinetic-track { gap: 22px; }
  .kinetic-track span { font-size: 3.8rem; }
  .choice-instruction { margin-top: 32px; }
  .choice-console { margin-inline: -1vw; }
  .choice-screen { min-height: 500px; }
  .choice-screen-head { top: 21px; right: 21px; left: 21px; }
  .choice-object { top: 11%; right: -16%; width: 104%; height: 70%; }
  .choice-screen-copy { right: 22px; bottom: 23px; left: 22px; }
  .choice-screen-copy strong { font-size: 3.65rem; }
  .choice-screen-copy p { font-size: 0.78rem; }
  .choice-controls { grid-template-columns: repeat(2, 1fr); }
  .choice-controls button { min-height: 105px; border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
  .choice-controls button:nth-child(2) { border-right: 0; }
  .home-page .product-card:nth-child(2),
  .home-page .product-card:nth-child(3) { margin-top: 0; }
  .home-page .trade-cta .button-row { display: grid; }
  .home-page .trade-cta .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .page-reveal { display: none; }
  .hero-media,
  .is-ready .hero-media {
    clip-path: inset(0);
    transform: none;
  }
  .hero-kicker,
  .hero-title-line > span,
  .hero-cinematic .hero-copy .lede,
  .hero-cinematic .hero-copy .button-row,
  .hero-heritage,
  .hero-choice-dock {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .kinetic-track,
  .choice-orbit { animation: none; }
  .manifesto-orbit { transform: none; }
}

/* Award direction: The Defining Line */
.award-home {
  --definition-paper: #eee9df;
  --definition-ink: #11130f;
  --definition-green: #90988a;
  --definition-clay: #b58f88;
  background: var(--definition-paper);
}

.award-home .defining-site {
  position: relative;
  overflow: clip;
}

.defining-spine {
  position: fixed;
  z-index: 980;
  top: 0;
  bottom: 0;
  left: 4vw;
  width: 1px;
  background: rgba(255, 255, 255, 0.17);
  mix-blend-mode: difference;
  pointer-events: none;
}

.defining-spine span {
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleY(var(--page-progress, 0));
  transform-origin: top;
  will-change: transform;
}

.award-home .scroll-progress {
  display: none;
}

.award-home .page-reveal {
  background: transparent;
}

.award-home .reveal-lockup {
  width: min(78vw, 620px);
}

.award-home .reveal-symbol {
  font-size: clamp(6.5rem, 15vw, 12rem);
}

.award-home .reveal-lockup i {
  position: relative;
  height: 1px;
  background: transparent;
}

.award-home .reveal-lockup i::before,
.award-home .reveal-lockup i::after {
  position: absolute;
  top: 0;
  width: 50%;
  height: 1px;
  content: "";
  background: rgba(251, 248, 242, 0.58);
  animation: defining-loader-line 900ms cubic-bezier(0.65, 0, 0.35, 1) 180ms both;
}

.award-home .reveal-lockup i::before { right: 50%; transform-origin: right; }
.award-home .reveal-lockup i::after { left: 50%; transform-origin: left; }

@keyframes defining-loader-line {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Hero */
.definition-hero {
  --definition-progress: 0;
  --hero-x: 0px;
  --hero-y: 0px;
  position: relative;
  min-height: max(820px, 100svh);
  overflow: hidden;
  color: var(--cream);
  background: var(--definition-ink);
  isolation: isolate;
}

.definition-grid {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 8.333vw 8.333vw;
  mask-image: linear-gradient(90deg, transparent, #000 38%, #000);
  animation: definition-grid-drift 24s linear 3.5s infinite;
  will-change: background-position;
}

@keyframes definition-grid-drift {
  to { background-position: 8.333vw 8.333vw; }
}

.definition-frame {
  position: absolute;
  z-index: 1;
  top: 9.5vh;
  right: 4vw;
  bottom: 7vh;
  width: 62vw;
  min-height: 610px;
  overflow: hidden;
  border-radius: var(--radius-soft);
  background: #cbc7bd;
  clip-path: inset(8% 8% 8% 58%);
  opacity: 0.4;
  transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(1.035);
  transform-origin: right center;
  transition:
    clip-path 1.45s cubic-bezier(0.77, 0, 0.175, 1) 1.72s,
    opacity 900ms ease 1.72s,
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1) 1.72s;
}

.is-ready .definition-frame {
  clip-path: inset(0);
  opacity: 1;
  transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(1);
}

.definition-frame::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(17, 19, 15, 0.82), rgba(17, 19, 15, 0.15) 40%, transparent 70%),
    linear-gradient(180deg, rgba(17, 19, 15, 0.2), transparent 28%, rgba(17, 19, 15, 0.28));
  pointer-events: none;
}

.definition-frame img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 56% 52%;
  filter: saturate(0.78) contrast(1.03);
  transform: scale(calc(1.015 + var(--definition-progress) * 0.075));
  transform-origin: center;
  will-change: transform;
}

.definition-reflection {
  position: absolute;
  z-index: 3;
  top: -25%;
  bottom: -25%;
  left: -35%;
  width: 21%;
  opacity: 0.5;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
  filter: blur(12px);
  transform: skewX(-15deg);
  animation: definition-reflect 8s ease-in-out 4s infinite;
  pointer-events: none;
}

@keyframes definition-reflect {
  0%, 18% { transform: translateX(0) skewX(-15deg); }
  52%, 100% { transform: translateX(620%) skewX(-15deg); }
}

.definition-frame-label,
.definition-frame-corner {
  position: absolute;
  z-index: 4;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.definition-frame-label {
  top: 25px;
  right: 27px;
}

.definition-frame-corner {
  right: 27px;
  bottom: 25px;
}

.definition-rule {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.48);
  transform-origin: left top;
  transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1) 1.9s;
  pointer-events: none;
}

.definition-rule-horizontal {
  top: 53.5%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
}

.definition-rule-vertical {
  top: 0;
  left: 62.5%;
  width: 1px;
  height: 100%;
  transform: scaleY(0);
}

.is-ready .definition-rule-horizontal { transform: scaleX(1); }
.is-ready .definition-rule-vertical { transform: scaleY(1); transition-delay: 2.05s; }

.definition-hero-inner {
  position: relative;
  z-index: 4;
  height: max(820px, 100svh);
}

.definition-kicker {
  position: absolute;
  top: clamp(125px, 15vh, 165px);
  left: 0;
  display: grid;
  width: min(520px, 48vw);
  gap: 4px;
  margin: 0;
  padding: 0 0 0 24px;
  color: var(--cream);
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 550ms ease 1.98s, transform 550ms ease 1.98s;
}

.definition-kicker::before {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 2px;
  content: "";
  background: linear-gradient(var(--brass-light), rgba(209,185,141,0.2));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1) 2.12s;
}

.definition-kicker span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brass-light);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.definition-kicker span::after {
  width: 52px;
  height: 1px;
  content: "";
  background: currentColor;
  transform-origin: left;
  animation: definition-trade-signal 3.2s ease-in-out 3.4s infinite;
}

@keyframes definition-trade-signal {
  0%, 100% { opacity: 0.35; transform: scaleX(0.25); }
  50% { opacity: 1; transform: scaleX(1); }
}

.definition-kicker strong {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  font-weight: 650;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
}

.definition-kicker small {
  color: rgba(251,248,242,0.62);
  font-size: 0.52rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.definition-hero h1 {
  position: absolute;
  z-index: 3;
  top: clamp(195px, 24vh, 260px);
  left: 0;
  width: 100%;
  color: var(--cream);
  font-family: var(--sans);
  font-size: clamp(6rem, 12.4vw, 12.8rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.86;
}

.definition-title-line {
  display: block;
  overflow: hidden;
  margin: -0.08em -0.16em -0.2em -0.04em;
  padding: 0.08em 0.16em 0.2em 0.04em;
}

.definition-hero.is-settled .definition-title-line { overflow: visible; }

.definition-title-line > span {
  display: block;
  white-space: nowrap;
  transform: translateY(115%);
  transition: transform 1.05s cubic-bezier(0.16, 1, 0.3, 1) 2.02s;
}

.definition-title-last {
  margin-top: 0.035em;
  margin-left: clamp(90px, 21vw, 340px);
  font-family: var(--serif);
  font-size: 0.92em;
  font-style: italic;
  letter-spacing: -0.018em;
}

.definition-title-last > span { transition-delay: 2.15s; }

.is-ready .definition-title-line > span { transform: translateY(0); }
.is-ready .definition-kicker { opacity: 1; transform: none; }
.is-ready .definition-kicker::before { transform: scaleY(1); }

.definition-intro {
  position: absolute;
  z-index: 4;
  bottom: clamp(100px, 15vh, 145px);
  left: clamp(28px, 8.5vw, 135px);
  width: min(390px, 30vw);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease 2.4s, transform 650ms ease 2.4s;
}

.is-ready .definition-intro { opacity: 1; transform: none; }

.definition-intro > p {
  color: rgba(251, 248, 242, 0.76);
  font-size: 0.92rem;
  line-height: 1.7;
}

.definition-intro .button-row {
  align-items: center;
  margin-top: 26px;
}

.definition-intro .button {
  min-height: 50px;
}

.definition-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid rgba(251, 248, 242, 0.48);
  padding: 5px 0 7px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.definition-text-link span { transition: transform 260ms ease; }
.definition-text-link:hover span { transform: translate(3px, -3px); }
.definition-text-link.dark-link { border-color: rgba(17, 19, 15, 0.36); color: var(--definition-ink); }
.definition-text-link.light-link { border-color: rgba(251, 248, 242, 0.48); color: var(--cream); }

.definition-credentials {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 25px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 17px;
  opacity: 0;
  transition: opacity 500ms ease 2.62s;
}

.is-ready .definition-credentials { opacity: 1; }

.definition-credentials span {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.definition-credentials span:nth-child(2) { justify-self: center; }
.definition-credentials span:nth-child(3) { justify-self: end; }
.definition-credentials i { color: var(--brass-light); font-family: var(--serif); font-style: normal; }

.definition-scroll {
  position: absolute;
  z-index: 5;
  right: 1.9vw;
  bottom: 30px;
  display: grid;
  justify-items: center;
  gap: 15px;
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.definition-scroll i {
  width: 1px;
  height: 48px;
  overflow: hidden;
  background: rgba(255,255,255,0.25);
}

.definition-scroll i::after {
  display: block;
  width: 1px;
  height: 50%;
  content: "";
  background: var(--cream);
  animation: definition-scroll 1.8s ease-in-out infinite;
}

@keyframes definition-scroll {
  from { transform: translateY(-100%); }
  to { transform: translateY(220%); }
}

/* Point of view */
/* Compact commercial proof directly after the cinematic hero. */
.trade-facts {
  position: relative;
  z-index: 6;
  border-top: 1px solid rgba(17,19,15,0.2);
  border-bottom: 1px solid rgba(17,19,15,0.2);
  color: var(--definition-ink);
  background: #ebe6da;
}

.trade-facts-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.trade-facts-grid > div {
  display: grid;
  min-height: 142px;
  align-content: start;
  gap: 10px;
  border-right: 1px solid rgba(17,19,15,0.16);
  padding: 25px clamp(14px, 1.5vw, 25px) 28px;
}

.trade-facts-grid > div:last-child { border-right: 0; }

.trade-facts-grid span {
  color: #8c7654;
  font-family: var(--serif);
  font-size: 0.72rem;
}

.trade-facts-grid strong {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.trade-facts-grid small {
  color: rgba(17,19,15,0.58);
  font-size: 0.62rem;
  line-height: 1.55;
}

.point-of-view {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: clamp(100px, 11vw, 165px) 0 clamp(90px, 11vw, 165px);
  color: var(--definition-ink);
  background: var(--definition-paper);
}

.point-index {
  position: absolute;
  top: 5vw;
  right: -0.04em;
  color: transparent;
  font-family: var(--sans);
  font-size: clamp(13rem, 32vw, 34rem);
  font-weight: 600;
  letter-spacing: -0.12em;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(17, 19, 15, 0.1);
  transform: translateX(calc(var(--scene-progress, 0) * -7vw));
}

.point-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: start;
  gap: clamp(50px, 8vw, 130px);
  grid-template-columns: minmax(210px, 0.42fr) minmax(0, 1.58fr);
}

.point-aside {
  position: sticky;
  top: 125px;
}

.point-aside p {
  margin-top: clamp(65px, 9vh, 105px);
  color: rgba(17, 19, 15, 0.54);
  font-size: 0.67rem;
  letter-spacing: 0.13em;
  line-height: 2;
  text-transform: uppercase;
}

.point-copy h2 {
  max-width: 1020px;
  font-family: var(--sans);
  font-size: clamp(4.2rem, 8vw, 8.7rem);
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.point-copy h2 span,
.point-copy h2 em { display: block; }

.point-copy h2 span { margin-left: 8vw; }

.point-copy h2 em {
  margin-left: 21vw;
  color: var(--sage-deep);
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: -0.04em;
}

.point-notes {
  display: grid;
  max-width: 790px;
  margin: clamp(55px, 6vw, 90px) 0 0 auto;
  gap: 45px;
  grid-template-columns: repeat(2, 1fr);
}

.point-notes p {
  color: rgba(17, 19, 15, 0.65);
  line-height: 1.75;
}

.point-line {
  position: absolute;
  right: 0;
  bottom: 2.5vw;
  left: 0;
  height: 1px;
  background: rgba(17,19,15,0.15);
}

.point-line span {
  display: block;
  width: calc(var(--scene-progress, 0) * 100%);
  height: 1px;
  background: var(--definition-ink);
}

.palette-ribbon {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.16);
  border-bottom: 1px solid rgba(255,255,255,0.16);
  padding: 16px 0;
  color: var(--cream);
  background: var(--definition-ink);
  contain: paint;
}

.palette-ribbon-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: palette-ribbon-run 32s linear infinite;
  will-change: transform;
}

.palette-ribbon-track.is-js-controlled {
  animation: none;
}

.palette-ribbon-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
}

.palette-ribbon span {
  font-size: 0.57rem;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.palette-ribbon i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brass-light);
}

@keyframes palette-ribbon-run {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

/* Low-friction trade lead: the physical colour sample set. */
.sample-invite {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-bottom: 1px solid rgba(17,19,15,0.2);
  padding: clamp(38px, 4.4vw, 68px) 0;
  color: var(--definition-ink);
  background: #d9cdb8;
}

.sample-invite::after {
  position: absolute;
  right: -0.04em;
  bottom: -0.19em;
  content: "DR15";
  color: transparent;
  font-family: var(--serif);
  font-size: clamp(8rem, 18vw, 18rem);
  font-style: italic;
  letter-spacing: -0.11em;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(17,19,15,0.1);
  pointer-events: none;
}

.sample-invite-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: end;
  gap: clamp(28px, 5vw, 80px);
  grid-template-columns: minmax(280px, 0.95fr) minmax(330px, 1.15fr) auto;
}

.sample-invite h2 {
  margin-top: 12px;
  font-family: var(--sans);
  font-size: clamp(2.8rem, 4.8vw, 5rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.sample-invite h2 em {
  display: block;
  margin-left: 2.8vw;
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: -0.035em;
}

.sample-invite-copy p {
  max-width: 590px;
  line-height: 1.7;
}

.sample-invite-copy small {
  display: block;
  margin-top: 12px;
  color: rgba(17,19,15,0.58);
  font-size: 0.64rem;
  letter-spacing: 0.04em;
}

.sample-invite-action {
  align-self: center;
  justify-self: end;
}

.sample-invite-action .button { white-space: nowrap; }

/* Spatial fixed-CGI gallery */
.vanity-field-section {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 9vw, 135px) 0 clamp(70px, 8vw, 120px);
  color: var(--definition-ink);
  background: #bfc2b5;
}

.vanity-field-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(17, 19, 15, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 15, 0.13) 1px, transparent 1px);
  background-size: 8.333vw 8.333vw;
  pointer-events: none;
}

.vanity-field-section::after {
  position: absolute;
  z-index: 1;
  top: -35%;
  bottom: -35%;
  left: -28%;
  width: 12%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  filter: blur(8px);
  opacity: 0.22;
  transform: skewX(-14deg);
  animation: vanity-light-sweep 14s ease-in-out 2s infinite;
  pointer-events: none;
}

@keyframes vanity-light-sweep {
  0%, 18% { transform: translateX(0) skewX(-14deg); }
  58%, 100% { transform: translateX(1050%) skewX(-14deg); }
}

.field-heading {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.field-heading h2,
.render-atlas-copy h2,
.specification-story-head h2 {
  font-family: var(--sans);
  font-size: clamp(4rem, 8vw, 8.6rem);
  letter-spacing: -0.075em;
  line-height: 0.86;
}

.field-heading h2 em,
.render-atlas-copy h2 em,
.specification-story-head h2 em {
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: -0.045em;
}

.field-heading h2 em { margin-left: 9vw; }

.field-instruction {
  display: grid;
  align-items: center;
  gap: 9px;
  grid-template-columns: auto auto auto;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field-instruction button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(17,19,15,0.35);
  border-radius: 50%;
  padding: 0;
  color: var(--definition-ink);
  background: transparent;
  cursor: pointer;
  font-family: var(--sans);
  font-style: normal;
  transition: color 180ms ease, background 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.field-instruction button:hover,
.field-instruction button:focus-visible {
  color: var(--cream);
  background: var(--definition-ink);
  transform: translateY(-2px);
}

.field-instruction button:disabled {
  cursor: default;
  opacity: 0.28;
  transform: none;
}

.field-instruction small {
  grid-column: 1 / -1;
  color: rgba(17,19,15,0.48);
  font-size: 0.5rem;
  text-align: right;
}

.vanity-field-viewport {
  position: relative;
  z-index: 2;
  margin-top: clamp(55px, 6vw, 85px);
  padding-bottom: 45px;
  scrollbar-color: rgba(17,19,15,0.45) transparent;
  scrollbar-width: thin;
  user-select: none;
}

.vanity-field-viewport img { -webkit-user-drag: none; }

.vanity-field-viewport::-webkit-scrollbar { height: 2px; }
.vanity-field-viewport::-webkit-scrollbar-track { background: rgba(17,19,15,0.12); }
.vanity-field-viewport::-webkit-scrollbar-thumb { background: var(--definition-ink); }

.vanity-field {
  display: flex;
  width: max-content;
  min-height: 720px;
  align-items: flex-start;
  gap: clamp(35px, 5vw, 85px);
  margin-left: 4vw;
  padding-right: 10vw;
}

.field-card {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: min(52vw, 780px);
}

.field-card figure {
  position: relative;
  height: min(54vw, 760px);
  overflow: hidden;
  border-radius: var(--radius-soft);
  margin: 0;
  background: #d5d1c8;
}

.field-card figure::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background: radial-gradient(circle 210px at var(--card-x, 50%) var(--card-y, 50%), rgba(255,255,255,0.25), transparent 72%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 350ms ease;
  pointer-events: none;
}

.field-card:hover figure::before { opacity: 1; }

.field-card figure::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.35);
  content: "";
  pointer-events: none;
}

.field-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: saturate(0.78);
  transition: filter 550ms ease, transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.field-card:hover img { filter: saturate(1); transform: scale(1.035); }

.field-card > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 17px;
}

.field-card strong {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.field-card small,
.field-card-number {
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.field-card-number {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 23px;
  color: var(--cream);
}

.field-card-richmond {
  width: min(31vw, 460px);
  margin-top: 105px;
}

.field-card-richmond figure { height: min(46vw, 680px); }
.field-card-richmond img { object-position: center; }

.field-card-middleham {
  width: min(48vw, 710px);
  margin-top: 42px;
}

.field-fragment {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: var(--radius-soft);
  color: var(--cream);
  background: var(--definition-ink);
}

[data-motion-visual] {
  opacity: 0.2;
  clip-path: inset(0 0 62% 0 round var(--radius-soft));
  transform: translateY(24px) scale(0.985);
  transform-origin: center bottom;
  transition:
    clip-path 1.15s cubic-bezier(0.77, 0, 0.175, 1),
    opacity 650ms ease,
    transform 1.15s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: clip-path, transform;
}

[data-motion-visual].is-motion-visible {
  opacity: 1;
  clip-path: inset(0 round var(--radius-soft));
  transform: none;
}

.field-card figure[data-motion-visual] img { transform: scale(1.075); }
.field-card figure[data-motion-visual].is-motion-visible img { transform: scale(1); }
.field-card:hover figure[data-motion-visual].is-motion-visible img { transform: scale(1.035); }

.field-fragment img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: grayscale(0.3) brightness(0.55);
  transform: scale(1.75);
}

.field-fragment span,
.field-fragment small {
  position: absolute;
  z-index: 2;
  left: 20px;
}

.field-fragment span {
  bottom: 48px;
  font-family: var(--serif);
  font-size: 3rem;
  font-style: italic;
  line-height: 1;
}

.field-fragment small {
  bottom: 20px;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field-fragment-one {
  width: min(18vw, 270px);
  height: 400px;
  margin-top: 210px;
}

.field-fragment-one img { object-position: 56% 79%; }

.field-fragment-two {
  width: min(22vw, 330px);
  height: 510px;
  margin-top: 125px;
}

.field-fragment-two img { object-position: 76% 65%; }

.field-quote {
  display: grid;
  flex: 0 0 auto;
  width: min(27vw, 400px);
  min-height: 570px;
  align-items: center;
  border-right: 1px solid rgba(17,19,15,0.25);
  border-left: 1px solid rgba(17,19,15,0.25);
  padding: 35px;
}

.field-quote span {
  font-family: var(--sans);
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.field-quote em { font-family: var(--serif); font-style: italic; }
.field-footer { position: relative; z-index: 2; margin-top: 35px; text-align: right; }

/* Interactive portrait atlas */
.render-atlas {
  --render-tone: #899181;
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: clamp(90px, 10vw, 155px) 0;
  color: var(--cream);
  background: #161713;
  transition: background 700ms ease;
}

.render-atlas::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.46;
  background: radial-gradient(circle at 72% 48%, var(--render-tone), transparent 45%);
  transition: background 700ms ease;
  pointer-events: none;
}

.render-atlas-backdrop {
  position: absolute;
  z-index: 1;
  right: -0.04em;
  bottom: 3vh;
  left: -0.04em;
  overflow: hidden;
  color: transparent;
  font-family: var(--sans);
  font-size: clamp(9rem, 23vw, 24rem);
  font-weight: 600;
  letter-spacing: -0.11em;
  line-height: 0.72;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(255,255,255,0.13);
  transform: translateX(calc(var(--scene-progress, 0) * -6vw));
  will-change: transform;
  pointer-events: none;
}

.render-atlas-backdrop span {
  display: block;
  transition: opacity 230ms ease, transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.render-atlas.is-changing .render-atlas-backdrop span {
  opacity: 0;
  transform: translateY(20%);
}

.render-atlas-grid {
  position: relative;
  z-index: 3;
  display: grid;
  align-items: center;
  gap: clamp(55px, 7vw, 120px);
  grid-template-columns: minmax(310px, 0.75fr) minmax(560px, 1.25fr);
}

.render-atlas-copy h2 {
  margin-top: 8px;
  font-size: clamp(3.6rem, 6.3vw, 6.9rem);
}

.render-atlas-copy h2 > span,
.render-atlas-copy h2 em,
.render-atlas-copy h2 em span {
  display: block;
}

.render-atlas-copy h2 em span {
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.render-atlas-copy > p {
  max-width: 470px;
  margin-top: 38px;
  color: rgba(251,248,242,0.66);
  line-height: 1.75;
}

.render-tabs {
  margin-top: clamp(40px, 5vw, 65px);
  border-top: 1px solid rgba(255,255,255,0.24);
}

.render-tabs button {
  display: grid;
  width: 100%;
  align-items: center;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.24);
  padding: 21px 0;
  color: rgba(251,248,242,0.55);
  background: transparent;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.1vw, 2.2rem);
  text-align: left;
  grid-template-columns: 58px 1fr;
  transition: color 280ms ease, padding 280ms ease;
}

.render-tabs button span {
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.render-tabs button::after {
  justify-self: end;
  content: "↗";
  font-family: var(--sans);
  font-size: 0.85rem;
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: opacity 250ms ease, transform 250ms ease;
}

.render-tabs button:hover,
.render-tabs button[aria-pressed="true"] { padding-left: 10px; color: var(--cream); }
.render-tabs button[aria-pressed="true"]::after { opacity: 1; transform: none; }

.render-stage {
  --stage-x: 50%;
  --stage-y: 50%;
  position: relative;
  min-height: min(72vw, 810px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-soft);
  background: rgba(255,255,255,0.04);
}

.render-image-mask {
  position: absolute;
  top: 8%;
  right: 7%;
  bottom: 12%;
  left: 7%;
  overflow: hidden;
  border-radius: var(--radius-soft);
  background: #d1cdc4;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 86% 100%, 0 100%);
}

.render-image-mask img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.8) contrast(1.03);
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 420ms ease, transform 850ms cubic-bezier(0.16, 1, 0.3, 1), filter 500ms ease;
}

.render-image-mask img.is-active { opacity: 1; }

.render-stage:hover .render-image-mask img { filter: saturate(1); transform: scale(1.055); }
.render-atlas.is-changing .render-image-mask img { opacity: 0; transform: scale(1.08); }

.render-sheen {
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background:
    radial-gradient(circle 135px at var(--stage-x) var(--stage-y), rgba(255,255,255,0.28), transparent 75%),
    linear-gradient(115deg, transparent 25%, rgba(255,255,255,0.17) 47%, transparent 65%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.render-stage-rules i {
  position: absolute;
  z-index: 3;
  display: block;
  background: rgba(255,255,255,0.45);
  pointer-events: none;
}

.render-stage-rules i:first-child { top: 0; bottom: 0; left: 50%; width: 1px; }
.render-stage-rules i:last-child { top: 51%; right: 0; left: 0; height: 1px; }

.render-stage-top,
.render-stage-meta {
  position: absolute;
  z-index: 4;
  display: flex;
  right: 22px;
  left: 22px;
  justify-content: space-between;
  font-size: 0.51rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.render-stage-top { top: 18px; }
.render-stage-meta { bottom: 17px; align-items: baseline; }

.render-stage-meta strong {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  text-transform: none;
  transition: opacity 180ms ease;
}

.render-stage-meta span { transition: opacity 180ms ease; }
.render-atlas.is-changing .render-stage-meta > * { opacity: 0; }

/* Specification sequence */
.specification-story {
  position: relative;
  padding: clamp(90px, 10vw, 150px) 0 0;
  color: var(--definition-ink);
  background: var(--definition-paper);
}

.specification-story-head h2 { max-width: 1050px; }
.specification-story-head h2 em { margin-left: 12vw; }

.specification-steps {
  display: grid;
  margin-top: clamp(55px, 6vw, 90px);
  overflow: hidden;
  border: 1px solid rgba(17,19,15,0.25);
  border-radius: var(--radius-soft);
  grid-template-columns: repeat(4, 1fr);
}

.specification-steps a {
  position: relative;
  display: grid;
  min-height: 330px;
  align-content: space-between;
  overflow: hidden;
  border-right: 1px solid rgba(17,19,15,0.25);
  padding: clamp(24px, 3vw, 45px);
  transition: color 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.specification-steps a:last-child { border-right: 0; }

.specification-steps a::before {
  position: absolute;
  z-index: 0;
  inset: 100% 0 0;
  content: "";
  background: var(--definition-ink);
  transition: inset 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.specification-steps a:hover { color: var(--cream); }
.specification-steps a:hover::before { inset: 0; }
.specification-steps a > * { position: relative; z-index: 1; }

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

.specification-steps small {
  align-self: end;
  margin-top: auto;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.specification-steps strong {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.specification-steps i {
  margin-top: 15px;
  color: rgba(17,19,15,0.52);
  font-size: 0.57rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 350ms ease;
}

.specification-steps a:hover i { color: rgba(251,248,242,0.58); }

.specification-note {
  display: flex;
  justify-content: space-between;
  padding: 38px 0 clamp(80px, 8vw, 125px);
  color: rgba(17,19,15,0.57);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-style: italic;
}

/* Trade proof */
.proof-story {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 10vw, 150px) 0;
  color: var(--definition-ink);
  background: #d6cec2;
}

.proof-monogram {
  position: absolute;
  right: -4vw;
  bottom: -0.22em;
  color: transparent;
  font-family: var(--serif);
  font-size: clamp(18rem, 46vw, 48rem);
  font-style: italic;
  letter-spacing: -0.15em;
  line-height: 0.7;
  -webkit-text-stroke: 1px rgba(17,19,15,0.1);
  transform: translate3d(calc(var(--scene-progress, 0) * -5vw), calc(var(--scene-progress, 0) * -2vw), 0);
  will-change: transform;
  pointer-events: none;
}

.proof-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(60px, 9vw, 150px);
  grid-template-columns: minmax(330px, 0.8fr) minmax(520px, 1.2fr);
}

.proof-heading {
  position: sticky;
  top: 125px;
  align-self: start;
}

.proof-heading h2 {
  max-width: 620px;
  font-family: var(--sans);
  font-size: clamp(3.5rem, 5.2vw, 5.8rem);
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.proof-heading h2 > span,
.proof-heading h2 em span {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.proof-heading h2 em {
  display: block;
  margin: 0.1em 0 0 4vw;
  font-family: var(--serif);
  font-size: 0.9em;
  font-style: italic;
  letter-spacing: -0.04em;
}

.proof-heading .definition-text-link { margin-top: 45px; }

.proof-list {
  border-top: 1px solid rgba(17,19,15,0.25);
}

.proof-list article {
  display: grid;
  min-height: 165px;
  align-items: center;
  gap: 27px;
  border-bottom: 1px solid rgba(17,19,15,0.25);
  grid-template-columns: 36px 1fr auto;
}

.proof-list article > span {
  font-family: var(--serif);
  font-size: 0.9rem;
}

.proof-list strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.proof-list p {
  max-width: 480px;
  margin: 14px 0 0;
  color: rgba(17,19,15,0.6);
  font-size: 0.82rem;
}

.proof-list i {
  color: rgba(17,19,15,0.45);
  font-size: 0.54rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Collection naming story */
.naming-story {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 9vw, 145px) 0;
  color: #f2eee5;
  background: #11130f;
}

.naming-story::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(242,238,229,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,238,229,0.08) 1px, transparent 1px);
  background-size: 12.5vw 12.5vw;
  pointer-events: none;
}

.naming-story-mark {
  position: absolute;
  right: -0.04em;
  bottom: -0.18em;
  color: rgba(204,180,118,0.08);
  font-family: var(--serif);
  font-size: clamp(15rem, 33vw, 38rem);
  font-style: italic;
  letter-spacing: -0.11em;
  line-height: 0.8;
  pointer-events: none;
}

.naming-story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  gap: clamp(55px, 9vw, 145px);
  grid-template-columns: minmax(360px, 0.95fr) minmax(480px, 1.05fr);
}

.naming-story-heading h2 {
  max-width: 760px;
  margin-top: 28px;
  font-family: var(--sans);
  font-size: clamp(3.6rem, 6vw, 6.8rem);
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.naming-story-heading h2 em {
  display: block;
  margin: 0.13em 0 0 3vw;
  color: var(--brass);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.naming-story-copy {
  padding-top: clamp(16px, 4vw, 58px);
  border-top: 1px solid rgba(242,238,229,0.24);
}

.naming-story-copy > p {
  max-width: 650px;
  color: rgba(242,238,229,0.64);
  font-size: 0.9rem;
  line-height: 1.8;
}

.naming-story-copy > p + p { margin-top: 22px; }

.naming-story-copy .naming-story-lede {
  color: #f2eee5;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.65vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.naming-story-values {
  display: grid;
  margin-top: 50px;
  border-top: 1px solid rgba(242,238,229,0.2);
  grid-template-columns: repeat(3, 1fr);
}

.naming-story-values span {
  display: grid;
  gap: 9px;
  min-height: 132px;
  padding: 22px 20px 18px 0;
  border-right: 1px solid rgba(242,238,229,0.16);
}

.naming-story-values span + span { padding-left: 20px; }
.naming-story-values span:last-child { border-right: 0; }

.naming-story-values i {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 0.72rem;
  font-style: normal;
}

.naming-story-values strong {
  align-self: end;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.8vw, 2rem);
  font-weight: 400;
}

.naming-story-values small {
  color: rgba(242,238,229,0.48);
  font-size: 0.52rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.family-name-grid {
  display: grid;
  overflow: hidden;
  margin-top: 32px;
  border: 1px solid rgba(242,238,229,0.17);
  border-radius: 6px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.family-name-grid a {
  position: relative;
  display: grid;
  gap: 7px;
  min-height: 96px;
  align-content: center;
  padding: 20px 46px 20px 22px;
  border-right: 1px solid rgba(242,238,229,0.14);
  border-bottom: 1px solid rgba(242,238,229,0.14);
  color: #f2eee5;
  transition: background 260ms ease, color 260ms ease, padding 260ms ease;
}

.family-name-grid a:nth-child(2n) { border-right: 0; }
.family-name-grid a:nth-last-child(-n+2) { border-bottom: 0; }

.family-name-grid a::after {
  position: absolute;
  top: 50%;
  right: 20px;
  content: "↗";
  color: var(--brass);
  transform: translateY(-50%);
  transition: transform 260ms ease;
}

.family-name-grid a:hover,
.family-name-grid a:focus-visible {
  padding-left: 28px;
  color: #f2eee5;
  background: rgba(242,238,229,0.08);
}

.family-name-grid a:hover::after,
.family-name-grid a:focus-visible::after { transform: translate(3px, calc(-50% - 3px)); }

.family-name-grid strong {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
}

.family-name-grid small {
  color: rgba(242,238,229,0.48);
  font-size: 0.5rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.family-story-list {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(242,238,229,0.17);
  border-radius: 6px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.family-story-list article {
  min-height: 245px;
  padding: 25px 24px 28px;
  border-right: 1px solid rgba(242,238,229,0.14);
  border-bottom: 1px solid rgba(242,238,229,0.14);
}

.family-story-list article:nth-child(4n) { border-right: 0; }
.family-story-list article:nth-last-child(-n+4) { border-bottom: 0; }

.family-story-list span {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 0.7rem;
}

.family-story-list h3 {
  margin-top: 34px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.family-story-list strong {
  display: block;
  margin-top: 8px;
  color: var(--brass);
  font-size: 0.52rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.family-story-list p {
  margin-top: 22px;
  color: rgba(242,238,229,0.56);
  font-size: 0.72rem;
  line-height: 1.65;
}

.naming-story-page { border-top: 1px solid rgba(242,238,229,0.12); }

/* Maker evidence */
.maker-proof {
  position: relative;
  overflow: hidden;
  padding: clamp(85px, 8vw, 125px) 0;
  color: var(--definition-ink);
  background: var(--definition-paper);
}

.maker-proof::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(17,19,15,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,19,15,0.08) 1px, transparent 1px);
  background-size: 12.5vw 12.5vw;
  pointer-events: none;
}

.maker-proof-line {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 42%;
  width: 1px;
  background: rgba(17,19,15,0.18);
}

.maker-proof-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: start;
  gap: clamp(60px, 9vw, 145px);
  grid-template-columns: minmax(350px, 0.86fr) minmax(520px, 1.14fr);
}

.maker-proof-intro h2 {
  max-width: 680px;
  margin-top: 28px;
  font-family: var(--sans);
  font-size: clamp(3.5rem, 5.8vw, 6.5rem);
  letter-spacing: -0.075em;
  line-height: 0.89;
}

.maker-proof-intro h2 em {
  display: inline-block;
  margin: 0.13em 0 0 3vw;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.maker-proof-intro > p {
  max-width: 510px;
  margin: 38px 0 0;
  color: rgba(17,19,15,0.65);
  font-size: 0.9rem;
  line-height: 1.8;
}

.maker-proof-intro .definition-text-link { margin-top: 35px; }

.maker-proof-evidence {
  border-top: 1px solid rgba(17,19,15,0.28);
}

.maker-rating {
  display: grid;
  gap: 8px;
  padding: 30px 0 38px;
  border-bottom: 1px solid rgba(17,19,15,0.22);
}

.maker-stars {
  color: var(--brass);
  font-size: 0.92rem;
  letter-spacing: 0.28em;
}

.maker-rating strong {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.maker-rating small,
.maker-proof-evidence blockquote footer {
  color: rgba(17,19,15,0.5);
  font-size: 0.55rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.maker-proof-evidence blockquote {
  margin: 0;
  padding: 48px 0 46px;
  border-bottom: 1px solid rgba(17,19,15,0.22);
}

.maker-proof-evidence blockquote p {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.15rem, 3.9vw, 4.25rem);
  font-style: italic;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.maker-proof-evidence blockquote footer { margin-top: 24px; }

.maker-proof-facts {
  display: grid;
}

.maker-proof-facts span {
  display: grid;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(17,19,15,0.18);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  grid-template-columns: 28px 1fr;
  text-transform: uppercase;
}

.maker-proof-facts i {
  color: var(--brass);
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
}

/* Trade entry */
.trade-entry {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--cream);
  background: #151712;
  isolation: isolate;
}

.trade-entry::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  opacity: 0.3;
  background:
    radial-gradient(circle at 75% 70%, rgba(144,152,138,0.7), transparent 33%),
    radial-gradient(circle at 16% 20%, rgba(181,143,136,0.34), transparent 28%);
}

.trade-entry-line {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,0.28);
}

.trade-entry-mark {
  position: absolute;
  z-index: 1;
  right: -0.06em;
  bottom: -0.05em;
  color: transparent;
  font-family: var(--serif);
  font-size: clamp(20rem, 53vw, 55rem);
  font-style: italic;
  letter-spacing: -0.16em;
  line-height: 0.65;
  -webkit-text-stroke: 1px rgba(255,255,255,0.14);
  transform: translateX(calc(var(--scene-progress, 0) * -5vw));
  will-change: transform;
}

.trade-entry-inner {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 100svh;
  align-content: center;
  padding-top: 110px;
  padding-bottom: 90px;
}

.trade-entry h2 {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  font-family: var(--sans);
  font-size: clamp(4.5rem, 9vw, 9.8rem);
  letter-spacing: -0.08em;
  line-height: 0.82;
}

.trade-entry h2 em {
  display: block;
  margin-left: 14vw;
  font-family: var(--serif);
  font-size: 0.8em;
  font-style: italic;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.trade-entry-action {
  display: grid;
  width: 48%;
  margin: clamp(55px, 8vw, 110px) 0 0 auto;
  gap: 28px;
}

.trade-entry-action p {
  max-width: 570px;
  color: rgba(251,248,242,0.66);
  line-height: 1.75;
}

.trade-entry-action .button-row { align-items: center; margin: 0; }

.trade-entry-foot {
  position: absolute;
  right: 0;
  bottom: 27px;
  left: 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.23);
  padding-top: 17px;
  color: rgba(251,248,242,0.58);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Soft geometry shared by the prototype and the future WordPress build. */
.product-card-media,
.colour-stage,
.craft-image,
.gallery-main,
.gallery-secondary,
.summary-box,
.form-card,
.choice-card label,
.story-visual,
.modal-panel,
.toast,
.contact-cards,
.benefit-grid,
.choice-console,
.product-badge,
.gallery-note,
.option-button {
  border-radius: var(--radius-soft);
}

.contact-cards,
.benefit-grid,
.choice-console {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .definition-frame { width: 68vw; }
  .definition-hero h1 { font-size: clamp(5.6rem, 13.5vw, 9.5rem); }
  .definition-intro { width: min(390px, 40vw); }
  .point-layout { grid-template-columns: 210px 1fr; }
  .render-atlas-grid { grid-template-columns: minmax(270px, 0.72fr) minmax(470px, 1.28fr); gap: 55px; }
  .proof-grid { grid-template-columns: minmax(290px, 0.75fr) minmax(440px, 1.25fr); gap: 65px; }
  .maker-proof-grid { grid-template-columns: minmax(290px, 0.82fr) minmax(440px, 1.18fr); gap: 65px; }
  .trade-facts-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trade-facts-grid > div { border-bottom: 1px solid rgba(17,19,15,0.16); }
  .trade-facts-grid > div:nth-child(3n) { border-right: 0; }
  .trade-facts-grid > div:nth-child(n+4) { border-bottom: 0; }
  .sample-invite-grid { grid-template-columns: minmax(260px, 0.9fr) minmax(340px, 1.1fr); }
  .sample-invite-action { justify-self: start; grid-column: 2; }
}

@media (max-width: 820px) {
  .defining-spine { left: 4.5vw; }
  .definition-hero { min-height: 980px; }
  .definition-hero-inner { height: 980px; }
  .definition-frame { top: 82px; right: 0; bottom: 235px; width: 84vw; min-height: 0; }
  .definition-frame img { object-position: 57% 52%; }
  .definition-frame::before { background: linear-gradient(180deg, rgba(17,19,15,0.3), transparent 35%, rgba(17,19,15,0.58)); }
  .definition-rule-horizontal { top: 49%; }
  .definition-rule-vertical { left: 68%; }
  .definition-kicker { top: 108px; width: min(440px, 70vw); }
  .definition-hero h1 { top: 215px; font-size: clamp(5.1rem, 14.8vw, 7.5rem); line-height: 0.88; }
  .definition-title-last { margin-left: 13vw; }
  .definition-intro { bottom: 112px; left: 0; width: min(470px, 66vw); }
  .definition-credentials { bottom: 22px; }
  .definition-scroll { display: none; }
  .point-of-view { min-height: 0; }
  .point-layout { grid-template-columns: 1fr; }
  .point-aside { position: static; display: flex; justify-content: space-between; }
  .point-aside p { margin-top: 0; text-align: right; }
  .point-copy h2 { font-size: clamp(4rem, 11vw, 6rem); }
  .point-copy h2 span { margin-left: 5vw; }
  .point-copy h2 em { margin-left: 16vw; }
  .field-heading h2,
  .specification-story-head h2 { font-size: clamp(4rem, 11vw, 6.3rem); }
  .field-instruction small { display: none; }
  .vanity-field { min-height: 600px; }
  .field-card { width: 72vw; }
  .field-card figure { height: 72vw; }
  .field-card-richmond { width: 48vw; }
  .field-card-richmond figure { height: 68vw; }
  .field-card-middleham { width: 67vw; }
  .field-fragment-one { width: 28vw; height: 330px; margin-top: 155px; }
  .field-fragment-two { width: 31vw; height: 410px; }
  .field-quote { width: 40vw; min-height: 500px; }
  .render-atlas-grid,
  .proof-grid,
  .maker-proof-grid,
  .naming-story-grid { grid-template-columns: 1fr; }
  .render-atlas-copy { display: grid; grid-template-columns: 1fr 0.8fr; column-gap: 45px; }
  .render-atlas-copy .eyebrow,
  .render-atlas-copy h2 { grid-column: 1 / -1; }
  .render-atlas-copy > p { align-self: end; }
  .render-tabs { margin-top: 38px; }
  .render-stage { min-height: 82vw; }
  .specification-steps { grid-template-columns: repeat(2, 1fr); }
  .specification-steps a { min-height: 310px; border-bottom: 1px solid rgba(17,19,15,0.25); }
  .specification-steps a:nth-child(2) { border-right: 0; }
  .proof-heading { position: static; }
  .naming-story-copy { max-width: 700px; }
  .family-story-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .family-story-list article:nth-child(4n) { border-right: 1px solid rgba(242,238,229,0.14); }
  .family-story-list article:nth-child(2n) { border-right: 0; }
  .family-story-list article:nth-last-child(-n+4) { border-bottom: 1px solid rgba(242,238,229,0.14); }
  .family-story-list article:nth-last-child(-n+2) { border-bottom: 0; }
  .maker-proof-line { left: 68%; }
  .maker-proof-intro > p { max-width: 620px; }
  .trade-entry-line { left: 68%; }
  .trade-entry-action { width: 62%; }
  .sample-invite-grid { align-items: start; gap: 30px; grid-template-columns: 1fr; }
  .sample-invite-action { grid-column: auto; }
}

@media (max-width: 580px) {
  .defining-spine { display: none; }
  .award-home .reveal-lockup { width: 76vw; }
  .award-home .reveal-symbol { font-size: 6.5rem; }
  .definition-hero { min-height: 900px; }
  .definition-hero-inner { height: 900px; }
  .definition-grid { background-size: 25vw 25vw; }
  .definition-frame { top: 74px; right: -18vw; bottom: 275px; width: 112vw; }
  .definition-frame img { object-position: 58% 52%; }
  .definition-frame-label { top: auto; right: 20vw; bottom: 18px; }
  .definition-frame-corner { display: none; }
  .definition-rule-horizontal { top: 46%; }
  .definition-rule-vertical { left: 73%; }
  .definition-kicker {
    top: 92px;
    width: min(88%, 340px);
    gap: 3px;
    padding: 0 0 0 17px;
  }
  .definition-kicker span { gap: 9px; font-size: 0.5rem; }
  .definition-kicker span::after { width: 38px; }
  .definition-kicker strong { font-size: 0.78rem; letter-spacing: 0.11em; }
  .definition-kicker small { font-size: 0.43rem; letter-spacing: 0.08em; }
  .definition-hero h1 { top: 202px; font-size: clamp(3.9rem, 18vw, 5.25rem); line-height: 0.9; }
  .definition-title-last { margin-top: 0.06em; margin-left: 3vw; font-size: 0.94em; }
  .definition-intro { right: 0; bottom: 100px; width: 100%; }
  .definition-intro > p { max-width: 90%; font-size: 0.84rem; }
  .definition-intro .button-row { display: grid; justify-items: start; }
  .definition-intro .button { width: auto; }
  .definition-credentials { grid-template-columns: 1fr 1fr; gap: 10px; }
  .definition-credentials span { font-size: 0.48rem; }
  .definition-credentials span:nth-child(2) { justify-self: end; }
  .definition-credentials span:nth-child(3) { display: none; }
  .trade-facts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trade-facts-grid > div { min-height: 150px; border-right: 1px solid rgba(17,19,15,0.16); border-bottom: 1px solid rgba(17,19,15,0.16); padding: 21px 13px 24px; }
  .trade-facts-grid > div:nth-child(3n) { border-right: 1px solid rgba(17,19,15,0.16); }
  .trade-facts-grid > div:nth-child(2n) { border-right: 0; }
  .trade-facts-grid > div:nth-child(n+4) { border-bottom: 1px solid rgba(17,19,15,0.16); }
  .trade-facts-grid > div:nth-child(n+5) { border-bottom: 0; }
  .trade-facts-grid strong { font-size: 0.62rem; }
  .trade-facts-grid small { font-size: 0.58rem; }
  .point-of-view { padding: 85px 0 100px; }
  .point-index { top: 18vw; font-size: 15rem; }
  .point-layout { gap: 65px; }
  .point-aside { display: block; }
  .point-aside p { margin-top: 25px; text-align: left; }
  .point-copy h2 { font-size: clamp(3.25rem, 15.2vw, 4.65rem); }
  .point-copy h2 span { margin-left: 0; }
  .point-copy h2 em { margin-left: 10vw; }
  .point-notes { margin-top: 45px; gap: 8px; grid-template-columns: 1fr; }
  .point-line { bottom: 38px; }
  .palette-ribbon { padding: 13px 0; }
  .palette-ribbon-track { animation-duration: 28s; }
  .palette-ribbon-group { gap: 16px; padding-right: 16px; }
  .palette-ribbon span { font-size: 0.5rem; }
  .sample-invite { padding: 48px 0 55px; }
  .sample-invite h2 { font-size: clamp(3rem, 15vw, 4.2rem); }
  .sample-invite h2 em { margin-left: 0; }
  .sample-invite-action,
  .sample-invite-action .button { width: 100%; }
  .sample-modal .modal-panel { padding: 36px 22px 30px; }
  .sample-request-form .field-grid { grid-template-columns: 1fr; }
  .vanity-field-section { padding: 78px 0 70px; }
  .vanity-field-section::before { background-size: 25vw 25vw; }
  .field-heading { display: block; }
  .field-heading h2 { font-size: clamp(3.5rem, 15.5vw, 4.7rem); }
  .field-heading h2 em { margin-left: 0; }
  .field-instruction { width: max-content; margin: 35px 0 0 auto; }
  .vanity-field-viewport { margin-top: 45px; }
  .vanity-field { min-height: 515px; gap: 24px; margin-left: 5vw; }
  .field-card { width: 82vw; }
  .field-card figure { height: 96vw; }
  .field-card > div { display: grid; gap: 4px; }
  .field-card strong { font-size: 2.4rem; }
  .field-card-richmond { width: 65vw; margin-top: 65px; }
  .field-card-richmond figure { height: 90vw; }
  .field-card-middleham { width: 78vw; margin-top: 20px; }
  .field-fragment-one { width: 43vw; height: 280px; margin-top: 135px; }
  .field-fragment-two { width: 45vw; height: 330px; margin-top: 85px; }
  .field-quote { width: 66vw; min-height: 430px; padding: 25px; }
  .field-quote span { font-size: 3.15rem; }
  .render-atlas { min-height: 0; padding: 85px 0; }
  .render-atlas-copy { display: block; }
  .render-atlas-copy h2 { font-size: clamp(3.25rem, 14.5vw, 4.5rem); }
  .render-atlas-copy > p { margin-top: 28px; }
  .render-tabs { margin-top: 45px; }
  .render-tabs button { font-size: 1.55rem; }
  .render-stage { min-height: 120vw; margin-top: 10px; }
  .render-image-mask { top: 9%; right: 5%; bottom: 15%; left: 5%; }
  .render-stage-top span:last-child { display: none; }
  .render-stage-meta { display: grid; gap: 5px; }
  .render-stage-meta span { line-height: 1.4; }
  .specification-story { padding-top: 85px; }
  .specification-story-head h2 { font-size: clamp(3.4rem, 15.5vw, 4.8rem); }
  .specification-story-head h2 em { margin-left: 0; }
  .specification-steps { margin-top: 50px; grid-template-columns: 1fr; }
  .specification-steps a { min-height: 245px; border-right: 0; }
  .specification-note { display: grid; gap: 10px; padding: 32px 0 80px; font-size: 1.3rem; }
  .proof-story { padding: 85px 0; }
  .proof-heading h2 { font-size: clamp(3.2rem, 14.6vw, 4.5rem); }
  .proof-heading h2 em { margin-left: 0; }
  .proof-list article { min-height: 180px; grid-template-columns: 28px 1fr; }
  .proof-list article > i { display: none; }
  .proof-list p { font-size: 0.76rem; }
  .naming-story { padding: 82px 0; }
  .naming-story::before { background-size: 25vw 25vw; }
  .naming-story-heading h2 { font-size: clamp(3.2rem, 14vw, 4.5rem); }
  .naming-story-heading h2 em { margin-left: 0; }
  .naming-story-copy { padding-top: 30px; }
  .naming-story-copy .naming-story-lede { font-size: clamp(1.8rem, 8.8vw, 2.65rem); }
  .naming-story-values { grid-template-columns: 1fr; }
  .naming-story-values span,
  .naming-story-values span + span {
    min-height: 0;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(242,238,229,0.16);
    grid-template-columns: 28px 1fr;
  }
  .naming-story-values span:last-child { border-bottom: 0; }
  .naming-story-values strong { align-self: auto; }
  .naming-story-values small { grid-column: 2; }
  .family-name-grid { grid-template-columns: 1fr; }
  .family-name-grid a,
  .family-name-grid a:nth-child(2n),
  .family-name-grid a:nth-last-child(-n+2) {
    min-height: 84px;
    border-right: 0;
    border-bottom: 1px solid rgba(242,238,229,0.14);
  }
  .family-name-grid a:last-child { border-bottom: 0; }
  .family-story-list { grid-template-columns: 1fr; }
  .family-story-list article,
  .family-story-list article:nth-child(2n),
  .family-story-list article:nth-child(4n),
  .family-story-list article:nth-last-child(-n+4),
  .family-story-list article:nth-last-child(-n+2) {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid rgba(242,238,229,0.14);
  }
  .family-story-list article:last-child { border-bottom: 0; }
  .naming-story-mark { right: -0.22em; font-size: 18rem; }
  .maker-proof { padding: 78px 0; }
  .maker-proof::before { background-size: 25vw 25vw; }
  .maker-proof-line { left: 78%; }
  .maker-proof-intro h2 { font-size: clamp(3.25rem, 14.5vw, 4.55rem); }
  .maker-proof-intro h2 em { margin-left: 0; }
  .maker-proof-intro > p { margin-top: 28px; font-size: 0.83rem; }
  .maker-proof-evidence blockquote { padding: 40px 0; }
  .maker-proof-evidence blockquote p { font-size: clamp(2.2rem, 10.5vw, 3.25rem); }
  .maker-rating { padding-top: 25px; }
  .trade-entry { min-height: 900px; }
  .trade-entry-inner { min-height: 900px; align-content: start; padding-top: 130px; }
  .trade-entry-line { left: 78%; }
  .trade-entry h2 { font-size: clamp(4rem, 18vw, 5.7rem); }
  .trade-entry h2 em { margin-left: 0; white-space: normal; }
  .trade-entry-action { width: 100%; margin-top: 70px; }
  .trade-entry-action .button-row { display: grid; justify-items: start; }
  .trade-entry-foot { display: grid; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  .definition-frame,
  .is-ready .definition-frame {
    clip-path: inset(0);
    opacity: 1;
    transform: none;
  }
  .definition-title-line > span,
  .definition-kicker,
  .definition-intro,
  .definition-credentials {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .definition-rule-horizontal { transform: scaleX(1); }
  .definition-rule-vertical { transform: scaleY(1); }
  .definition-reflection,
  .definition-grid,
  .definition-kicker span::after,
  .definition-scroll i::after,
  .vanity-field-section::after,
  .palette-ribbon-track { animation: none; }
  [data-motion-visual],
  [data-motion-visual].is-motion-visible {
    opacity: 1;
    clip-path: inset(0 round var(--radius-soft));
    transform: none;
    transition: none;
  }
  .render-atlas-backdrop,
  .proof-monogram,
  .trade-entry-mark { transform: none; }
  .render-image-mask img { transition: opacity 0.01ms; }
}

/* Elementor seed shell: preserve the prototype's true edge-to-edge canvas. */
body.dr-home-seeded,
body.dr-page-seeded {
  margin: 0;
}

.dr-home-elementor-shell,
.dr-home-elementor-shell > .e-con-inner,
.dr-home-elementor-shell .elementor-widget-shortcode,
.dr-home-elementor-shell .elementor-widget-shortcode > .elementor-widget-container,
.dr-home-seed,
.dr-page-elementor-shell,
.dr-page-elementor-shell > .e-con-inner,
.dr-page-elementor-shell .elementor-widget-shortcode,
.dr-page-elementor-shell .elementor-widget-shortcode > .elementor-widget-container,
.dr-page-seed {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.dr-home-seed,
.dr-page-seed {
  position: relative;
  overflow: clip;
}

/* Prevent the active theme/Elementor globals from recolouring prototype type. */
body.dr-home-seeded .dr-home-seed h1,
body.dr-home-seeded .dr-home-seed h2,
body.dr-home-seeded .dr-home-seed h3,
body.dr-home-seeded .dr-home-seed h4,
body.dr-page-seeded .dr-page-seed h1,
body.dr-page-seeded .dr-page-seed h2,
body.dr-page-seeded .dr-page-seed h3,
body.dr-page-seeded .dr-page-seed h4 {
  color: inherit;
}

/* Blocksy gives every blockquote a blue brand rule; this testimonial uses its
   own quiet editorial divider instead. */
body.dr-home-seeded .dr-home-seed .maker-proof-evidence blockquote {
  border: 0;
  border-bottom: 1px solid rgba(17, 19, 15, 0.22);
  padding-left: 0;
}

body.dr-home-seeded .dr-home-seed .field-card:hover,
body.dr-home-seeded .dr-home-seed .field-card:focus-visible {
  color: var(--ink-soft);
}

.dr-home-missing {
  margin: 0;
  padding: 40px;
  color: #f4efe5;
  background: #11120f;
  font-family: var(--sans);
}

.dr-page-missing {
  margin: 0;
  padding: 40px;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
}

.dr-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.dr-shop-filters {
  align-items: center;
  border-bottom: 1px solid rgba(24, 25, 21, 0.18);
  border-top: 1px solid rgba(24, 25, 21, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 2.5rem;
  padding: 1rem 0;
}

.dr-shop-filters__label {
  color: rgba(24, 25, 21, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  margin-right: 0.35rem;
  text-transform: uppercase;
}

.dr-shop-filters a {
  border: 1px solid rgba(24, 25, 21, 0.3);
  border-radius: 999px;
  color: #181915;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  padding: 0.55rem 0.82rem;
  text-decoration: none;
}

.dr-shop-filters a:hover,
.dr-shop-filters a:focus-visible,
.dr-shop-filters a.is-active {
  background: #181915;
  border-color: #181915;
  color: #f4efe4;
}
