@font-face {
  font-family: Manrope;
  src: url("fonts/Manrope.960ab9e4114d.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Cormorant;
  src: url("fonts/CormorantGaramond-Italic.e9fa353adef1.woff2") format("woff2");
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}
:root {
  --paper: #f4f3ec;
  --white: #fff;
  --ink: #1d2922;
  --muted: #59645d;
  --line: #cfd3c9;
  --green: #18271e;
  --deep: #101b15;
  --lime: #dce6aa;
  --serif: Cormorant, Georgia, serif;
  --sans: Manrope, Arial, sans-serif;
  --gutter: clamp(22px, 4.5vw, 88px);
  --ease: cubic-bezier(0.22, 0.68, 0, 1.05);
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--lime);
  color: var(--deep);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
figure,
p,
h1,
h2,
h3,
blockquote {
  margin: 0;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
button {
  color: inherit;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid #74813d;
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
.container {
  width: min(100% - var(--gutter) * 2, 1480px);
  margin-inline: auto;
}
.section {
  padding-block: clamp(76px, 9vw, 152px);
}
.eyebrow {
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow:before {
  content: "";
  display: block;
  width: 23px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.section-title {
  font-size: clamp(36px, 4.5vw, 72px);
  font-weight: 450;
  line-height: 1.1;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 55px;
}
.section-heading .eyebrow {
  margin-bottom: 24px;
}
.section-heading > div {
  max-width: 740px;
}
.section-heading > p {
  max-width: 330px;
  color: var(--muted);
  line-height: 1.8;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 58px;
  padding: 18px 23px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 650;
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.3s;
}
.button span {
  font-size: 22px;
  line-height: 1;
  transition: transform 0.35s;
}
.button:hover span {
  transform: translate(3px, -3px);
}
.button-lime {
  background: var(--lime);
  color: var(--deep);
}
.button-lime:hover {
  background: #eff4d6;
}
.button-dark {
  background: var(--ink);
  color: var(--paper);
}
.button-dark:hover {
  background: #324c3c;
}
.button-light {
  background: var(--paper);
  color: var(--ink);
}
.button-outline {
  background: transparent;
  border-color: var(--ink);
}
.button-outline:hover {
  background: var(--ink);
  color: var(--paper);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  min-height: 44px;
  font-size: 12px;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
}
.text-link span {
  font-size: 20px;
  transition: transform 0.35s;
}
.text-link:hover span {
  transform: translate(3px, -3px);
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 20px;
  z-index: 1000;
  padding: 15px;
  background: var(--paper);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lime);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 100;
}
.site-header {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-inline: var(--gutter);
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--paper);
  transition:
    background 0.35s,
    height 0.35s,
    transform 0.35s;
}
.site-header.is-fixed {
  position: fixed;
  height: 78px;
  background: rgba(20, 32, 25, 0.97);
  backdrop-filter: blur(16px);
  animation: headerEnter 0.4s var(--ease);
}
@keyframes headerEnter {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: none;
  }
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}
.brand-emblem {
  width: 48px;
  max-height: 56px;
  object-fit: contain;
}
.brand-word {
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -1.2px;
  line-height: 1.05;
}
.brand-word small {
  display: block;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.32em;
  margin-top: 9px;
}
.desktop-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.desktop-nav a {
  font-size: 11px;
  letter-spacing: 0.015em;
  position: relative;
  padding-block: 16px;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 9px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.desktop-nav a:hover:after,
.desktop-nav a[aria-current]:after {
  transform: scaleX(1);
}
.header-action {
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-block: 10px;
  white-space: nowrap;
}
.header-action span {
  font-size: 22px;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  gap: 16px;
  align-items: center;
  font-size: 11px;
  min-height: 44px;
  padding: 8px;
  color: inherit;
}
.menu-icon {
  display: grid;
  gap: 6px;
  width: 24px;
}
.menu-icon i {
  height: 1px;
  width: 24px;
  background: currentColor;
}
.site-menu {
  width: 100%;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 26px var(--gutter);
  border: 0;
  background: var(--green);
  color: var(--paper);
  z-index: 100;
}
.site-menu::backdrop {
  background: var(--green);
}
.menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8vh;
}
.menu-top > span {
  font-size: 22px;
  font-weight: 650;
}
.menu-top button {
  display: flex;
  align-items: center;
  gap: 15px;
  background: none;
  border: 0;
  color: inherit;
  padding: 10px;
  font-size: 12px;
}
.menu-top button span {
  font-size: 30px;
}
.site-menu nav {
  max-width: 900px;
  margin: auto;
}
.site-menu nav a {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 16px 0;
  border-bottom: 1px solid #617166;
  font-size: clamp(24px, 4vw, 48px);
  line-height: 1.3;
  letter-spacing: -0.04em;
}
.site-menu nav a > span {
  margin-left: auto;
}
.site-menu nav small {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--lime);
}
.menu-bottom {
  max-width: 900px;
  margin: 5vh auto 0;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.no-js-nav {
  padding: 120px var(--gutter) 20px;
  background: var(--green);
  color: var(--paper);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.is-home .no-js-nav + .hero {
  padding-top: 0;
}
body:not(.is-home) .site-header:not(.is-fixed) {
  background: var(--green);
}
.hero {
  min-height: 820px;
  height: 100svh;
  max-height: 1250px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--deep);
  color: var(--paper);
}
.hero-picture,
.hero-picture picture,
.hero-picture img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-picture {
  inset: -5% 0;
  height: 110%;
  z-index: -3;
}
.hero-picture img {
  object-fit: cover;
  object-position: 50% 48%;
}
.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 21, 12, 0.56), rgba(9, 21, 12, 0.12) 75%),
    linear-gradient(0deg, rgba(9, 21, 12, 0.87), transparent 70%);
}
.hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 180px;
  padding-bottom: 58px;
}
.hero-eyebrow {
  margin-bottom: 25px;
  font-size: 10px;
  letter-spacing: 0.2em;
}
.hero-eyebrow:before {
  display: none;
}
.live-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 4px #dce6aa20;
}
.hero h1 {
  font-size: clamp(72px, 7.3vw, 132px);
  font-weight: 450;
  letter-spacing: -0.065em;
  line-height: 1.03;
  max-width: 850px;
  margin-bottom: 44px;
}
.hero h1 em {
  font: italic 1.18em/0.96 var(--serif);
  display: block;
  letter-spacing: -0.045em;
  color: var(--lime);
}
.hero-title {
  display: block;
}
.hero-bottom {
  display: flex;
  gap: 60px;
  align-items: flex-end;
  justify-content: space-between;
}
.hero-intro {
  max-width: 410px;
  font-size: 13px;
  line-height: 1.8;
  color: #e4e9df;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 28px;
}
.hero-caption {
  display: grid;
  gap: 25px;
  text-align: right;
  width: 230px;
  font-size: 10px;
  color: #d9ded7;
}
.scroll-cue {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.scroll-cue span {
  width: 36px;
  height: 50px;
  border: 1px solid #829082;
  border-radius: 25px;
  display: grid;
  place-items: center;
  font-size: 21px;
  animation: scrollNudge 2s ease-in-out infinite;
}
.hero-coordinate {
  position: absolute;
  top: 50%;
  right: var(--gutter);
  writing-mode: vertical-rl;
  font-size: 9px;
  letter-spacing: 0.16em;
  opacity: 0.7;
}
@keyframes scrollNudge {
  50% {
    transform: translateY(6px);
  }
}
.hero-eyebrow,
.hero h1,
.hero-intro,
.hero-actions,
.hero-caption {
  animation: heroEnter 1.1s both var(--ease);
}
.hero h1 {
  animation-delay: 0.12s;
}
.hero-intro {
  animation-delay: 0.22s;
}
.hero-actions {
  animation-delay: 0.32s;
}
.hero-caption {
  animation-delay: 0.4s;
}
@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.trust-strip {
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-right: 1px solid var(--line);
}
.trust-grid > div:last-child {
  border: 0;
}
.trust-value {
  font-size: 24px;
  letter-spacing: -0.05em;
  font-weight: 550;
}
.trust-label {
  font-size: 10px;
  max-width: 125px;
  line-height: 1.7;
  color: var(--muted);
}
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
  align-items: center;
}
.editorial-left .editorial-copy {
  order: 2;
}
.editorial-left .editorial-figure {
  order: 1;
}
.editorial-copy .eyebrow {
  margin-bottom: 32px;
}
.editorial-copy .section-title {
  margin-bottom: 28px;
}
.editorial-text {
  color: var(--muted);
  font-size: 14px;
  max-width: 480px;
}
.editorial-copy .text-link {
  margin-top: 35px;
}
.editorial-figure {
  min-width: 0;
  position: relative;
}
.image-window {
  overflow: hidden;
  background: #e2e4d9;
}
.editorial-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 1.5s var(--ease);
}
.editorial-figure:hover .editorial-image {
  transform: scale(1.025);
}
.image-number {
  font-size: 8px;
  letter-spacing: 0.15em;
  display: block;
  margin-top: 15px;
  color: var(--muted);
}
.prose {
  line-height: 1.9;
  font-size: 16px;
}
.prose p + p {
  margin-top: 1.4em;
}
.prose h2 {
  font-size: clamp(27px, 3vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.035em;
  margin: 1.5em 0 0.7em;
  font-weight: 500;
}
.prose h3 {
  font-size: 22px;
  margin: 1.5em 0 0.5em;
}
.prose ul,
.prose ol {
  padding-left: 1.4em;
  margin: 1.2em 0;
}
.prose li + li {
  margin-top: 0.5em;
}
.prose a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.prose-section {
  padding-block: 40px 80px;
}
.prose-section .prose {
  width: min(100% - var(--gutter) * 2, 800px);
  margin: auto;
}
.collection {
  padding-top: 40px;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 24px;
}
.collection-card {
  min-width: 0;
}
.collection-image {
  aspect-ratio: 1/1.06;
  position: relative;
  background: #e9ebe2;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10%;
  transition: transform 1.1s var(--ease);
}
.collection-image:hover img {
  transform: scale(1.055) rotate(-1deg);
}
.card-number {
  position: absolute;
  left: 24px;
  top: 22px;
  font-size: 10px;
  color: var(--muted);
}
.round-arrow {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #9eaa96;
  border-radius: 50%;
  font-size: 22px;
  transition:
    background 0.35s,
    color 0.35s,
    transform 0.35s;
}
.collection-image:hover .round-arrow {
  transform: rotate(45deg);
  background: var(--green);
  color: white;
}
.collection-card-copy {
  padding: 22px 0 0;
}
.collection-card-copy h3 {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.035em;
}
.collection-card-copy p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 8px;
  max-width: 340px;
}
.collection-card-copy .text-link {
  font-size: 10px;
  margin-top: 14px;
  min-height: 35px;
  border-bottom: 0;
  gap: 18px;
}
.collection-card-copy .text-link span {
  font-size: 16px;
}
.process {
  background: #e9ece2;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 13%;
}
.process-heading {
  position: sticky;
  top: 140px;
  align-self: start;
}
.process-heading .eyebrow {
  margin-bottom: 30px;
}
.process-heading > p:not(.eyebrow) {
  font-size: 13px;
  color: var(--muted);
  max-width: 340px;
  margin-top: 25px;
}
.process-orbit {
  width: 125px;
  height: 125px;
  border: 1px solid #a9b39d;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 45px;
  position: relative;
}
.process-orbit:before,
.process-orbit:after {
  content: "";
  width: 90px;
  height: 125px;
  border: 1px solid #a9b39d;
  border-radius: 50%;
  position: absolute;
}
.process-orbit:after {
  transform: rotate(60deg);
}
.process-orbit:before {
  transform: rotate(-60deg);
}
.process-orbit span {
  font: italic 30px var(--serif);
  z-index: 1;
}
.process-list {
  list-style: none;
}
.process-list li {
  padding: 38px 0 42px;
  display: flex;
  align-items: start;
  gap: 27px;
  border-top: 1px solid #b8c1ae;
}
.process-list li:last-child {
  border-bottom: 1px solid #b8c1ae;
}
.step-number {
  font-size: 10px;
  margin-top: 5px;
  color: #667159;
}
.process-list h3 {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.035em;
  margin-bottom: 15px;
}
.process-list p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 420px;
}
.step-mark {
  margin-left: auto;
  font-size: 24px;
  transition: transform 0.6s;
}
.process-list li.is-active .step-mark {
  transform: rotate(45deg);
}
.quote-section {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.quote-section .container {
  max-width: 1050px;
}
.quote-symbol {
  font: italic 160px/0.7 var(--serif);
  color: #a0ac88;
  display: block;
  height: 75px;
}
blockquote > p {
  font-size: clamp(32px, 4.1vw, 62px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.05em;
}
blockquote footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 35px;
}
blockquote footer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
blockquote footer div {
  display: grid;
  text-align: left;
  gap: 4px;
}
blockquote footer strong {
  font-size: 12px;
  font-weight: 650;
}
blockquote footer span {
  font-size: 10px;
  color: var(--muted);
}
.image-story {
  height: 75svh;
  min-height: 540px;
  max-height: 880px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--paper);
  display: flex;
  align-items: center;
}
.story-image {
  position: absolute;
  inset: -10% 0;
  height: 120%;
  z-index: -2;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}
.story-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #102016b5, #10201615),
    linear-gradient(0deg, #10201690, transparent 60%);
  z-index: -1;
}
.story-copy {
  padding-block: 70px;
}
.story-copy h2 {
  font-size: clamp(48px, 7vw, 112px);
  font-weight: 450;
  letter-spacing: -0.06em;
  line-height: 1.07;
  max-width: 810px;
  margin-top: 30px;
}
.story-copy > p:not(.eyebrow) {
  max-width: 370px;
  font-size: 13px;
  margin-top: 26px;
  color: #e6ece0;
}
.story-copy .button {
  margin-top: 35px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 10%;
}
.faq-grid .eyebrow {
  margin-bottom: 25px;
}
.faq-list details {
  border-top: 1px solid var(--line);
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 27px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 550;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  font-size: 25px;
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list .prose {
  font-size: 13px;
  padding: 0 32px 28px 0;
  color: var(--muted);
}
.cta-section {
  padding-block: 0 100px;
}
.cta-panel {
  background: var(--lime);
  padding: 70px clamp(30px, 6vw, 100px);
  position: relative;
  overflow: hidden;
}
.cta-panel h2 {
  max-width: 860px;
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 450;
  letter-spacing: -0.055em;
  line-height: 1.1;
  margin: 25px 0;
}
.cta-panel p:not(.eyebrow) {
  max-width: 530px;
  color: #39482b;
  font-size: 13px;
}
.cta-panel .button {
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
.cta-watermark {
  position: absolute;
  right: -25px;
  bottom: -100px;
  font: italic 330px var(--serif);
  color: #b4c079;
  opacity: 0.32;
  pointer-events: none;
}
.site-footer {
  background: var(--deep);
  color: var(--paper);
  padding-top: 85px;
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 70px;
  border-bottom: 1px solid #3e4a40;
}
.footer-top > .eyebrow {
  align-self: start;
  margin-top: 10px;
}
.footer-top h2 {
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 450;
  line-height: 1.1;
  letter-spacing: -0.055em;
  max-width: 720px;
}
.footer-top .button {
  margin-top: 30px;
}
.footer-grid {
  padding-block: 60px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 0.65fr;
  gap: 45px;
}
.footer-brand {
  font-size: 26px;
  letter-spacing: -1px;
  font-weight: 600;
}
.footer-about p {
  font-size: 11px;
  line-height: 1.9;
  max-width: 260px;
  color: #c2cbbf;
  margin-top: 15px;
}
.footer-grid nav,
.footer-grid > div:not(.footer-about) {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 13px;
  font-size: 11px;
}
.footer-grid a {
  transition: color 0.25s;
}
.footer-grid a:hover,
.footer-bottom a:hover {
  color: var(--lime);
}
.footer-grid address {
  font-style: normal;
  color: #c2cbbf;
  font-size: 11px;
  line-height: 1.9;
  margin-top: 5px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  border-top: 1px solid #3e4a40;
  padding-block: 25px;
  font-size: 9px;
  color: #c2cbbf;
}
.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.back-top {
  width: 38px;
  height: 38px;
  border: 1px solid #778570;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}
.page-heading {
  padding-top: 170px;
  padding-bottom: 70px;
  min-height: 450px;
  display: grid;
  gap: 9%;
  align-items: center;
}
.page-heading.with-image {
  grid-template-columns: 1.08fr 1fr;
}
.page-heading h1 {
  font-size: clamp(52px, 6vw, 95px);
  font-weight: 450;
  letter-spacing: -0.06em;
  line-height: 1.06;
  max-width: 800px;
  text-wrap: balance;
}
.page-heading .eyebrow {
  margin-bottom: 26px;
}
.page-intro {
  font-size: 15px;
  line-height: 1.9;
  max-width: 560px;
  color: var(--muted);
  margin-top: 25px;
}
.page-heading .button {
  margin-top: 30px;
}
.page-heading-image {
  min-width: 0;
}
.page-heading-image img {
  width: 100%;
  aspect-ratio: 1/0.98;
  object-fit: cover;
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 10px;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 35px;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.trainer-location {
  font-size: 12px;
  margin-top: 20px;
  color: var(--muted);
}
.trainer-heading .text-link {
  margin-top: 25px;
}
.catalogue-heading {
  padding-top: 155px;
  padding-bottom: 65px;
}
.catalogue-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
}
.catalogue-intro .eyebrow {
  margin-bottom: 25px;
}
.catalogue-intro h1 {
  font-size: clamp(52px, 6.5vw, 104px);
  font-weight: 450;
  letter-spacing: -0.06em;
  line-height: 1.05;
  max-width: 780px;
}
.catalogue-intro > p {
  max-width: 380px;
  font-size: 13px;
  color: var(--muted);
  padding-bottom: 7px;
  line-height: 1.9;
}
.catalogue {
  padding-bottom: 90px;
}
.catalogue-filters {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-block: 25px;
}
.catalogue-filters label {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
  font-weight: 650;
}
.search-field > div {
  display: flex;
  border-bottom: 1px solid #818d78;
}
.catalogue-filters input,
.catalogue-filters select {
  width: 100%;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  padding: 10px 0;
  min-height: 44px;
  font-size: 13px;
}
.catalogue-filters select {
  border-bottom: 1px solid #818d78;
}
.catalogue-filters input::placeholder {
  color: #616f62;
  opacity: 1;
}
.search-field button {
  border: 0;
  background: none;
  font-size: 23px;
  padding-inline: 10px;
  min-width: 44px;
}
.catalogue-toolbar {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  padding-block: 30px;
  color: var(--muted);
}
.catalogue-toolbar a {
  min-height: 30px;
}
.catalogue-toolbar a span {
  margin-left: 12px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 25px;
}
.product-card {
  min-width: 0;
}
.product-image {
  display: block;
  position: relative;
  aspect-ratio: 1/1.05;
  background: #e8eae1;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12%;
  transition: transform 1s var(--ease);
}
.product-image:hover img {
  transform: scale(1.075) rotate(-1deg);
}
.product-category {
  position: absolute;
  left: 20px;
  top: 18px;
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}
.product-arrow {
  position: absolute;
  right: 20px;
  bottom: 18px;
  font-size: 23px;
}
.product-meta {
  padding-top: 20px;
}
.product-meta > span {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.product-meta h2 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-top: 5px;
}
.product-meta p {
  font-size: 10px;
  margin-top: 9px;
  color: var(--muted);
}
.catalogue-empty {
  padding: 50px 0;
  text-align: center;
  color: var(--muted);
}
.load-more {
  margin: 50px auto 0;
  display: flex;
}
.load-more[aria-disabled="true"] {
  opacity: 0.65;
  cursor: default;
}
.product-breadcrumb {
  padding-top: 150px;
}
.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 8%;
  padding-bottom: 95px;
  align-items: start;
}
.product-copy {
  grid-column: 2;
  grid-row: 1;
  padding-top: 40px;
}
.product-copy h1 {
  font-size: clamp(38px, 4.4vw, 70px);
  line-height: 1.1;
  letter-spacing: -0.05em;
  font-weight: 450;
  margin-top: 20px;
  overflow-wrap: anywhere;
}
.product-description {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
  margin-top: 25px;
  max-width: 520px;
}
.product-price {
  font-size: 16px;
  margin-top: 22px;
  font-weight: 500;
}
.product-copy > .button {
  margin-top: 30px;
}
.model-code {
  font-size: 10px;
  margin-top: 15px;
  color: var(--muted);
}
.product-gallery {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  position: sticky;
  top: 105px;
}
.product-stage {
  background: #e8eae1;
  width: 100%;
  border: 0;
  padding: 10%;
  aspect-ratio: 4/5;
  position: relative;
  cursor: zoom-in;
}
.product-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.zoom-label {
  position: absolute;
  bottom: 23px;
  left: 25px;
  right: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
}
.zoom-label > span {
  font-size: 20px;
}
.gallery-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.gallery-thumbnails button {
  flex: 0 0 83px;
  height: 83px;
  padding: 9px;
  background: #e8eae1;
  border: 1px solid transparent;
}
.gallery-thumbnails button[aria-pressed="true"] {
  border-color: var(--ink);
}
.gallery-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-facts {
  margin-top: 45px;
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.product-facts h2 {
  font-size: 16px;
  font-weight: 550;
  margin-bottom: 15px;
}
.product-facts dl {
  margin: 0;
}
.product-facts dl > div {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 25px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}
.product-facts dt {
  color: var(--muted);
}
.product-facts dd {
  margin: 0;
}
.lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 6vh 6vw;
  background: #e8eae1;
  border: 0;
}
.lightbox::backdrop {
  background: #e8eae1;
}
.lightbox > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lightbox > button {
  position: absolute;
  top: 20px;
  right: 25px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  font-size: 28px;
  z-index: 1;
}
.motion-ready [data-reveal] {
  transition:
    opacity 0.9s var(--ease),
    transform 1.1s var(--ease);
  opacity: 0.22;
  transform: translateY(35px);
}
.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
.collection-card:nth-child(3n + 2) {
  transition-delay: 0.07s;
}
.collection-card:nth-child(3n + 3) {
  transition-delay: 0.14s;
}
@media (min-width: 1600px) {
  .hero h1 {
    font-size: clamp(120px, 7.3vw, 160px);
    max-width: 1050px;
  }
  .hero-intro {
    font-size: 15px;
    max-width: 460px;
  }
  .hero-content {
    padding-bottom: 70px;
  }
}
@media (max-width: 1150px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .header-action {
    margin-left: auto;
  }
  .hero {
    min-height: 800px;
  }
  .hero h1 {
    font-size: clamp(70px, 9vw, 108px);
    max-width: 730px;
  }
  .hero-caption {
    max-width: 175px;
  }
  .editorial-grid {
    gap: 7%;
  }
  .section-title {
    font-size: clamp(36px, 5vw, 60px);
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .footer-social {
    grid-column: 2/4;
    flex-direction: row !important;
  }
  .product-detail {
    gap: 6%;
  }
  .product-copy {
    padding-top: 15px;
  }
}
@media (max-width: 800px) {
  .section {
    padding-block: 75px;
  }
  .site-header {
    height: 86px;
  }
  .brand-word {
    font-size: 23px;
  }
  .brand-emblem {
    width: 39px;
  }
  .header-action {
    display: none;
  }
  .hero {
    min-height: 800px;
    max-height: 1100px;
  }
  .hero-content {
    padding-top: 150px;
    padding-bottom: 45px;
  }
  .hero h1 {
    font-size: clamp(65px, 10.5vw, 90px);
    max-width: 670px;
  }
  .hero-intro {
    max-width: 390px;
  }
  .hero-caption {
    display: none;
  }
  .hero-coordinate {
    display: none;
  }
  .hero-bottom {
    gap: 25px;
  }
  .hero-actions {
    gap: 26px;
  }
  .trust-grid > div {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
  .trust-label {
    font-size: 9px;
    max-width: 150px;
  }
  .trust-value {
    font-size: 22px;
  }
  .section-heading {
    gap: 30px;
    margin-bottom: 35px;
  }
  .section-heading > p {
    max-width: 240px;
    font-size: 12px;
  }
  .editorial-grid {
    gap: 35px;
  }
  .editorial-copy .section-title {
    font-size: 39px;
  }
  .editorial-copy .eyebrow {
    margin-bottom: 25px;
  }
  .editorial-text {
    font-size: 12px;
  }
  .editorial-image {
    aspect-ratio: 3/4;
  }
  .collection-grid {
    gap: 32px 16px;
  }
  .collection-card-copy h3 {
    font-size: 19px;
  }
  .collection-card-copy p {
    font-size: 11px;
  }
  .card-number {
    left: 15px;
    top: 15px;
  }
  .round-arrow {
    width: 33px;
    height: 33px;
    right: 14px;
    bottom: 14px;
    font-size: 18px;
  }
  .process-grid {
    gap: 7%;
    grid-template-columns: 1fr 1.15fr;
  }
  .process-heading .section-title {
    font-size: 38px;
  }
  .process-list li {
    gap: 15px;
  }
  .process-list h3 {
    font-size: 21px;
  }
  .process-list p {
    font-size: 12px;
  }
  .step-mark {
    display: none;
  }
  .image-story {
    min-height: 500px;
    height: 65svh;
  }
  .story-copy h2 {
    max-width: 600px;
  }
  .faq-grid {
    gap: 35px;
  }
  .faq-grid .section-title {
    font-size: 38px;
  }
  .cta-section {
    padding-block: 0 65px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .footer-grid {
    gap: 35px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 22px;
  }
  .footer-bottom nav {
    gap: 12px;
  }
  .footer-bottom .back-top {
    margin-left: auto;
  }
  .page-heading {
    padding-top: 145px;
    gap: 35px;
  }
  .page-heading h1 {
    font-size: 48px;
  }
  .page-intro {
    font-size: 13px;
  }
  .page-heading-image img {
    aspect-ratio: 3/4;
  }
  .catalogue-intro {
    gap: 35px;
    align-items: start;
  }
  .catalogue-intro h1 {
    font-size: 64px;
  }
  .catalogue-intro > p {
    max-width: 230px;
    margin-top: 40px;
    font-size: 12px;
  }
  .catalogue-filters {
    gap: 22px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-detail {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .product-copy h1 {
    font-size: 40px;
  }
  .product-copy .eyebrow {
    font-size: 8px;
    gap: 8px;
  }
  .product-description {
    font-size: 12px;
  }
  .product-copy > .button {
    gap: 15px;
    padding: 15px;
    min-height: 52px;
    font-size: 11px;
  }
  .product-facts dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .product-stage {
    aspect-ratio: 3/4;
  }
  .product-gallery {
    top: 108px;
  }
}
@media (max-width: 600px) {
  .container {
    width: calc(100% - var(--gutter) * 2);
  }
  .section {
    padding-block: 62px;
  }
  .section-title {
    font-size: 39px;
  }
  .site-header {
    height: 78px;
    gap: 15px;
  }
  .site-header.is-fixed {
    height: 68px;
  }
  .brand-emblem {
    width: 34px;
    max-height: 44px;
  }
  .brand-word {
    font-size: 21px;
  }
  .brand-word small {
    font-size: 7px;
    letter-spacing: 0.25em;
    margin-top: 7px;
  }
  .brand {
    gap: 9px;
  }
  .menu-toggle {
    font-size: 10px;
    gap: 10px;
  }
  .site-menu {
    padding-top: 18px;
  }
  .menu-top {
    margin-bottom: 5vh;
  }
  .site-menu nav a {
    font-size: 29px;
    padding: 18px 0;
    gap: 20px;
  }
  .menu-bottom {
    flex-direction: column;
    align-items: stretch;
    margin-top: 35px;
    gap: 24px;
  }
  .menu-bottom > .button {
    min-height: 54px;
  }
  .menu-bottom > a:last-child {
    font-size: 12px;
  }
  .hero {
    height: calc(100svh - 0px);
    min-height: 760px;
    max-height: 1050px;
  }
  .hero-picture img {
    object-position: 58% 33%;
  }
  .hero-shade {
    background: linear-gradient(
      0deg,
      #0b1b0ff0 0%,
      #0b1b0f85 45%,
      #0b1b0f10 100%
    );
  }
  .hero-content {
    padding-top: 260px;
    padding-bottom: 35px;
    justify-content: flex-end;
  }
  .hero-eyebrow {
    font-size: 8px;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(53px, 13vw, 73px);
    line-height: 1.04;
    margin-bottom: 25px;
    max-width: 470px;
    letter-spacing: -0.06em;
  }
  .hero h1 em {
    font-size: 1.17em;
  }
  .hero-intro {
    font-size: 11px;
    line-height: 1.85;
    max-width: 320px;
  }
  .hero-actions {
    gap: 22px;
    margin-top: 23px;
    flex-wrap: wrap;
  }
  .hero-actions .button {
    min-height: 51px;
    padding: 15px 18px;
    font-size: 10px;
    gap: 25px;
  }
  .hero-actions .text-link {
    font-size: 10px;
    gap: 15px;
  }
  .hero-actions .text-link span {
    font-size: 17px;
  }
  .trust-strip {
    padding-block: 24px;
  }
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-grid > div {
    padding-inline: 8px;
  }
  .trust-value {
    font-size: 16px;
    letter-spacing: -0.04em;
  }
  .trust-label {
    font-size: 8px;
    line-height: 1.6;
    max-width: 90px;
  }
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .editorial-left .editorial-copy,
  .editorial-left .editorial-figure {
    order: initial;
  }
  .editorial-copy .section-title {
    font-size: 40px;
    margin-bottom: 22px;
  }
  .editorial-text {
    font-size: 13px;
    max-width: none;
  }
  .editorial-copy .text-link {
    margin-top: 25px;
  }
  .editorial-image {
    aspect-ratio: 5/5.5;
    object-position: 50% 37%;
  }
  .image-number {
    font-size: 7px;
    margin-top: 11px;
  }
  .section-heading {
    display: block;
  }
  .section-heading .eyebrow {
    margin-bottom: 20px;
  }
  .section-heading > p {
    font-size: 12px;
    max-width: 380px;
    margin-top: 20px;
  }
  .collection {
    padding-top: 15px;
  }
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 13px;
  }
  .collection-image {
    aspect-ratio: 3/4;
  }
  .collection-image img {
    padding: 9%;
  }
  .card-number {
    font-size: 8px;
    left: 12px;
    top: 12px;
  }
  .round-arrow {
    right: 10px;
    bottom: 10px;
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
  .collection-card-copy {
    padding-top: 15px;
  }
  .collection-card-copy h3 {
    font-size: 18px;
    line-height: 1.3;
  }
  .collection-card-copy p {
    font-size: 10px;
    line-height: 1.7;
  }
  .collection-card-copy .text-link {
    font-size: 9px;
    gap: 10px;
    margin-top: 8px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .process-heading {
    position: relative;
    top: 0;
  }
  .process-heading .section-title {
    font-size: 42px;
    max-width: 350px;
  }
  .process-orbit {
    display: none;
  }
  .process-heading > p:not(.eyebrow) {
    font-size: 12px;
    max-width: 350px;
  }
  .process-list li {
    padding: 26px 0 30px;
    gap: 23px;
  }
  .process-list h3 {
    font-size: 23px;
    margin-bottom: 10px;
  }
  .process-list p {
    font-size: 12px;
  }
  .step-mark {
    display: block;
    font-size: 20px;
  }
  .step-number {
    font-size: 9px;
  }
  .quote-section {
    padding-block: 80px;
  }
  .quote-symbol {
    height: 50px;
    font-size: 115px;
  }
  blockquote > p {
    font-size: 32px;
  }
  blockquote footer {
    margin-top: 25px;
  }
  blockquote footer strong {
    font-size: 11px;
  }
  blockquote footer span {
    font-size: 9px;
  }
  .image-story {
    height: 600px;
    min-height: 0;
    max-height: 85svh;
  }
  .story-copy h2 {
    font-size: 52px;
    margin-top: 23px;
  }
  .story-copy .eyebrow {
    font-size: 9px;
  }
  .story-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .story-copy .button {
    min-height: 51px;
    padding: 15px 18px;
    font-size: 10px;
  }
  .story-image img {
    object-position: 55% 40%;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .faq-list summary {
    font-size: 13px;
    padding-block: 23px;
  }
  .faq-list .prose {
    font-size: 12px;
    padding-right: 0;
  }
  .cta-section {
    padding-top: 0;
  }
  .cta-panel {
    padding: 42px 28px;
  }
  .cta-panel .eyebrow {
    font-size: 8px;
  }
  .cta-panel h2 {
    font-size: 39px;
    margin-block: 20px;
  }
  .cta-panel p:not(.eyebrow) {
    font-size: 12px;
  }
  .cta-panel .button {
    font-size: 10px;
    min-height: 50px;
  }
  .cta-watermark {
    font-size: 220px;
    bottom: -50px;
  }
  .site-footer {
    padding-top: 60px;
  }
  .footer-top {
    padding-bottom: 45px;
    gap: 23px;
  }
  .footer-top h2 {
    font-size: 43px;
  }
  .footer-top .button {
    font-size: 11px;
    min-height: 54px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    padding-block: 40px;
    gap: 35px 25px;
  }
  .footer-about {
    grid-column: 1/-1;
  }
  .footer-about p {
    max-width: 340px;
  }
  .footer-social {
    grid-column: 1/-1;
  }
  .footer-bottom {
    font-size: 8px;
    padding-bottom: 30px;
    gap: 20px;
  }
  .footer-bottom > span {
    width: 100%;
  }
  .footer-bottom nav {
    max-width: calc(100% - 55px);
    row-gap: 13px;
  }
  .page-heading {
    padding-top: 118px;
    padding-bottom: 40px;
    min-height: 0;
  }
  .page-heading.with-image {
    grid-template-columns: 1fr;
  }
  .page-heading h1 {
    font-size: 49px;
  }
  .page-heading .eyebrow {
    font-size: 9px;
    margin-bottom: 20px;
  }
  .page-intro {
    font-size: 13px;
    margin-top: 20px;
  }
  .page-heading .button {
    min-height: 52px;
    font-size: 11px;
  }
  .page-heading-image img {
    aspect-ratio: 4/4.5;
    object-position: 50% 38%;
  }
  .breadcrumb {
    font-size: 8px;
    gap: 8px;
    margin-bottom: 28px;
  }
  .prose {
    font-size: 14px;
  }
  .prose-section {
    padding-block: 25px 50px;
  }
  .catalogue-heading {
    padding-top: 115px;
    padding-bottom: 35px;
  }
  .catalogue-intro {
    display: block;
  }
  .catalogue-intro h1 {
    font-size: 56px;
  }
  .catalogue-intro .eyebrow {
    font-size: 9px;
    margin-bottom: 18px;
  }
  .catalogue-intro > p {
    font-size: 12px;
    margin-top: 20px;
    max-width: 350px;
  }
  .catalogue-filters {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding-block: 20px;
  }
  .search-field {
    grid-column: 1/-1;
  }
  .catalogue-filters label {
    font-size: 8px;
    margin-bottom: 3px;
  }
  .catalogue-filters input,
  .catalogue-filters select {
    font-size: 12px;
  }
  .catalogue-toolbar {
    font-size: 9px;
    padding-block: 24px;
  }
  .product-grid {
    gap: 27px 13px;
  }
  .product-image {
    aspect-ratio: 3/4;
  }
  .product-category {
    font-size: 6px;
    left: 12px;
    top: 13px;
    max-width: calc(100% - 20px);
  }
  .product-arrow {
    right: 14px;
    bottom: 13px;
    font-size: 20px;
  }
  .product-image img {
    padding: 12% 8%;
  }
  .product-meta {
    padding-top: 13px;
  }
  .product-meta > span {
    font-size: 7px;
    letter-spacing: 0.09em;
  }
  .product-meta h2 {
    font-size: 16px;
    line-height: 1.35;
  }
  .product-meta p {
    font-size: 9px;
    margin-top: 6px;
  }
  .catalogue {
    padding-bottom: 65px;
  }
  .load-more {
    min-height: 50px;
    font-size: 11px;
    margin-top: 35px;
  }
  .product-breadcrumb {
    padding-top: 110px;
  }
  .product-detail {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 50px;
  }
  .product-copy {
    padding-top: 0;
    width: 100%;
  }
  .product-copy h1 {
    font-size: 45px;
    margin-top: 16px;
  }
  .product-description {
    font-size: 13px;
    margin-top: 20px;
  }
  .product-price {
    font-size: 15px;
  }
  .product-copy > .button {
    font-size: 11px;
    padding: 17px 21px;
    gap: 40px;
  }
  .product-gallery {
    position: static;
    width: 100%;
    order: 2;
  }
  .product-stage {
    aspect-ratio: 1/1.12;
    padding: 10%;
  }
  .product-facts {
    margin-top: 30px;
    padding-top: 20px;
  }
  .product-facts dl > div {
    grid-template-columns: 1fr 1.3fr;
    gap: 20px;
    font-size: 11px;
  }
  .product-facts h2 {
    font-size: 15px;
  }
  .gallery-thumbnails button {
    flex-basis: 72px;
    height: 72px;
  }
  .motion-ready [data-reveal] {
    transform: translateY(24px);
  }
  .no-js-nav {
    padding-top: 100px;
    font-size: 12px;
  }
}
.dialog-open {
  overflow: hidden;
}
.product-stage {
  display: block;
}
.catalogue[aria-busy="true"] .product-grid {
  opacity: 0.45;
  pointer-events: none;
}
.product-grid {
  transition: opacity 0.2s;
}
.menu-toggle {
  visibility: hidden;
}
.js .menu-toggle {
  visibility: visible;
}
@media (min-width: 801px) {
  .hero {
    min-height: 680px;
  }
  .hero-content {
    padding-bottom: 48px;
  }
}
@media (max-width: 600px) {
  .hero-picture img {
    object-position: 20% 33%;
  }
}
@media (max-width: 900px) {
  .hero-shade {
    background:
      linear-gradient(180deg, #0b1b0fbb 0%, transparent 24%),
      linear-gradient(0deg, #0b1b0ff0 0%, #0b1b0f85 45%, #0b1b0f10 100%);
  }
}
.product-detail > .product-facts {
  grid-column: 2;
  grid-row: 2;
  margin-top: 25px;
}
.product-detail > .product-gallery {
  grid-row: 1 / span 2;
}
.product-detail {
  row-gap: 0;
}
.gallery-thumbnails > a {
  display: block;
  flex: 0 0 83px;
  height: 83px;
  padding: 9px;
  background: #e8eae1;
  border: 1px solid transparent;
}
.gallery-thumbnails > a[aria-current] {
  border-color: var(--ink);
}
.page-actions {
  display: flex;
  gap: 25px;
  align-items: baseline;
  flex-wrap: wrap;
  margin-top: 30px;
}
.page-actions .button {
  margin-top: 0;
}
.page-actions .text-link {
  margin-top: 0;
}
.product-secondary {
  display: flex;
  width: fit-content;
  margin-top: 20px;
  gap: 22px;
  font-size: 12px;
}
.enquiry-copy > h2 {
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin-bottom: 22px;
}
.enquiry-copy > .prose {
  font-size: 14px;
  color: var(--muted);
}
.enquiry-preview {
  background: var(--lime);
  padding: 24px;
  margin-top: 30px;
  font-size: 13px;
  color: var(--ink);
}
.enquiry-preview h3 {
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 12px;
}
.enquiry-preview p {
  font-size: 13px;
}
.form-required-note,
.form-help {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 22px;
}
.form-help {
  margin: 8px 0 0;
}
.enquiry-policy {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}
.enquiry-form .button:disabled {
  opacity: 0.45;
}
.enquiry-errors {
  padding: 20px;
  background: #f2ddd6;
  margin-bottom: 25px;
  font-size: 14px;
  color: #8b281e;
}
.enquiry-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
.enquiry-fields .form-field:has(textarea),
.enquiry-fields .form-field-group,
.enquiry-fields .form-field-checkbox {
  grid-column: 1/-1;
}
.form-field legend {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .enquiry-fields {
    grid-template-columns: 1fr;
  }
  .enquiry-copy > h2 {
    font-size: 34px;
  }
}
.collection-image.fit-cover img {
  padding: 0;
  object-fit: cover;
}
.collection-image.fit-cover .card-number {
  background: var(--paper);
  padding: 4px 7px;
  color: var(--ink);
}
.collection-image.fit-cover .round-arrow {
  background: var(--paper);
}
.fit-contain .editorial-image {
  object-fit: contain;
  padding: 7%;
  background: #e9ebe2;
}
.editorial-text-only .editorial-grid {
  display: block;
  max-width: 900px;
}
.editorial-text-only .editorial-text {
  max-width: 800px;
}
.material-story {
  padding-block: 45px;
}
.material-story > img {
  max-height: 800px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
}
.material-story > .text-link {
  margin-top: 24px;
}
.enquiry-section {
  padding-block: 10px 100px;
}
.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 10%;
}
.enquiry-form {
  min-width: 0;
}
.form-field {
  margin-bottom: 24px;
}
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 9px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid #b4beae;
  background: #ffffff50;
  padding: 13px 16px;
  border-radius: 2px;
  box-shadow: none;
}
.form-field textarea {
  min-height: 130px;
  resize: vertical;
}
.form-field input[type="checkbox"],
.form-field input[type="radio"] {
  width: 20px;
  min-height: 20px;
  margin-right: 10px;
  accent-color: var(--green);
}
.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"],
.form-field select[aria-invalid="true"] {
  border-color: #a33320;
}
.errorlist {
  list-style: none;
  font-size: 12px;
  color: #9a281b;
  margin-top: 8px;
}
.form-field .helptext {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-top: 7px;
}
.form-note {
  padding: 22px;
  background: var(--lime);
  font-size: 13px;
  line-height: 1.8;
  border-radius: 2px;
  margin-bottom: 30px;
}
.form-note a {
  text-decoration: underline;
}
.enquiry-form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
.enquiry-form fieldset:disabled {
  opacity: 0.7;
}
.enquiry-form .button {
  margin-top: 15px;
}
.form-privacy {
  font-size: 12px;
  color: var(--muted);
  margin-top: 22px;
}
.form-honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
@media (max-width: 800px) {
  .enquiry-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .enquiry-section {
    padding-bottom: 65px;
  }
}
@media (max-width: 600px) {
  .product-detail {
    gap: 30px;
  }
  .product-detail > .product-gallery {
    order: 0;
  }
  .product-detail > .product-facts {
    margin: 0;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .hero-intro {
    font-size: 14px;
    line-height: 1.7;
  }
  .hero-eyebrow {
    font-size: 9px;
  }
  .hero-actions .button,
  .hero-actions .text-link {
    font-size: 12px;
  }
  .hero-actions {
    gap: 18px;
  }
  .trust-label {
    font-size: 10px;
  }
  .eyebrow,
  .story-copy .eyebrow,
  .page-heading .eyebrow,
  .catalogue-intro .eyebrow {
    font-size: 10px;
  }
  .editorial-text,
  .section-heading > p,
  .process-list p,
  .process-heading > p:not(.eyebrow),
  .story-copy > p:not(.eyebrow),
  .faq-list .prose,
  .cta-panel p:not(.eyebrow),
  .page-intro,
  .catalogue-intro > p,
  .product-description {
    font-size: 14px;
    line-height: 1.8;
  }
  .collection-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .collection-image {
    aspect-ratio: 1/1.08;
  }
  .collection-card-copy h3 {
    font-size: 24px;
  }
  .collection-card-copy p {
    font-size: 13px;
    max-width: none;
  }
  .collection-card-copy .text-link {
    font-size: 12px;
    min-height: 44px;
  }
  .card-number {
    font-size: 10px;
  }
  .round-arrow {
    width: 40px;
    height: 40px;
    font-size: 21px;
  }
  .faq-list summary {
    font-size: 15px;
  }
  .footer-grid a,
  .footer-grid p,
  .footer-grid address,
  .footer-bottom {
    font-size: 12px;
  }
  .footer-bottom nav {
    gap: 10px 16px;
  }
  .breadcrumb {
    font-size: 11px;
  }
  .catalogue-filters label {
    font-size: 10px;
  }
  .catalogue-filters input,
  .catalogue-filters select {
    font-size: 16px;
  }
  .catalogue-toolbar {
    font-size: 12px;
    gap: 18px;
  }
  .product-category {
    font-size: 9px;
    letter-spacing: 0.025em;
  }
  .product-meta > span {
    font-size: 10px;
    letter-spacing: 0.04em;
  }
  .product-meta p {
    font-size: 12px;
  }
  .product-meta h2 {
    font-size: 18px;
  }
  .product-copy .eyebrow {
    font-size: 10px;
  }
  .product-copy > .button,
  .load-more {
    font-size: 13px;
  }
  .product-facts dl > div {
    font-size: 12px;
  }
  .zoom-label {
    font-size: 12px;
  }
  .menu-toggle {
    font-size: 12px;
  }
  .enquiry-form input,
  .enquiry-form select,
  .enquiry-form textarea {
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  @view-transition {
    navigation: auto;
  }
  ::view-transition-old(root) {
    animation: pageFadeOut 0.2s ease both;
  }
  ::view-transition-new(root) {
    animation: pageFadeIn 0.4s ease both;
  }
  @keyframes pageFadeOut {
    to {
      opacity: 0;
    }
  }
  @keyframes pageFadeIn {
    from {
      opacity: 0;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .hero-picture,
  .story-image {
    transform: none !important;
  }
}
