/* Design revision v2 */
:root {
  --color-canvas: #FAFAF9;
  --color-paper: #F5F1EB;
  --color-white: #FFFEFC;
  --color-brown-950: #1E1713;
  --color-brown-900: #251C17;
  --color-brown-800: #30251F;
  --color-brown-700: #42342C;
  --color-ink: #2B2521;
  --color-muted: #6B615A;
  --color-taupe: #8B8179;
  --color-gold: #AD8748;
  --color-gold-soft: #C4A269;
  --color-terracotta: #875945;
  --line-light: rgba(43, 37, 33, .15);
  --line-dark: rgba(250, 250, 249, .22);
  --shadow-soft: 0 18px 50px rgba(37, 28, 23, .07);
  --font-display: "Forum", "Times New Roman", serif;
  --font-body: "El Messiri", Arial, sans-serif;
  --container: 1400px;
  --gutter: clamp(20px, 4.2vw, 60px);
  --section-y: clamp(72px, 9vw, 128px);
  --section-y-compact: clamp(54px, 7vw, 92px);
  --radius: 2px;
  --text-xs: 12px;
  --text-sm: 14px;
  --text-body: 18px;
  --text-lead: 22px;
  --title-section: 56px;
  --title-page: 78px;
  --title-hero: 68px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-canvas);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.75;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.gallery-open {
  overflow: hidden;
}

body.body-dark {
  background: var(--color-brown-900);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: .22em;
}

a:hover {
  color: var(--color-gold);
}

button {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: var(--gutter);
  top: 12px;
  z-index: 30;
  transform: translateY(-160%);
  background: var(--color-canvas);
  border: 1px solid var(--color-gold);
  color: var(--color-ink);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: calc(100% - (var(--gutter) * 2));
  max-width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--color-white);
  transition: background-color 300ms ease, border-color 300ms ease, color 300ms ease, padding 300ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.is-menu-open,
.site-header.site-header--solid {
  background: rgba(250, 250, 249, .92);
  color: var(--color-ink);
  border-bottom-color: var(--line-light);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 96px;
  align-items: center;
  gap: 28px;
}

.brand-mark {
  display: inline-flex;
  width: 38px;
  align-items: center;
}

.brand-mark img {
  width: 38px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 4vw, 46px);
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: currentColor;
  transform: translateX(-50%);
  transition: width 300ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  width: calc(100% - .15em);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 300ms ease, opacity 300ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 160 / 89;
  min-height: 0;
  display: grid;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(30, 23, 19, .98) 0%, rgba(37, 28, 23, .96) 52%, rgba(48, 37, 31, .94) 100%),
    var(--color-brown-900);
  color: var(--color-white);
  border-bottom: 1px solid var(--line-dark);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(37, 28, 23, .94) 0%, rgba(48, 37, 31, .78) 42%, rgba(66, 52, 44, .24) 100%);
  opacity: 0;
  transition: opacity 500ms ease;
}

.hero.is-video-playing::after {
  opacity: 1;
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 500ms ease;
}

.hero.is-video-playing .hero__video {
  opacity: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: end;
  padding-block: clamp(118px, 14vh, 170px) clamp(62px, 9vh, 96px);
}

.hero__brand {
  width: min(310px, 58vw);
  margin-bottom: clamp(26px, 4vw, 42px);
}

.hero__brand img {
  width: 100%;
  height: auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--color-gold-soft);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  line-height: 1.25;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.product-hero h1 {
  margin: 0;
  max-width: 1180px;
  font-family: var(--font-display);
  font-size: var(--title-hero);
  line-height: 1.13;
  font-weight: 400;
  letter-spacing: .055em;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: normal;
}

.hero__title-line {
  display: block;
}

@media (min-width: 901px) {
  .hero__title-line {
    white-space: nowrap;
  }
}

.page-hero h1,
.product-hero h1 {
  font-size: var(--title-page);
}

.hero__text,
.page-hero p,
.product-hero p,
.lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 254, 252, .78);
  font-size: var(--text-lead);
  line-height: 1.7;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  padding: 13px 22px;
  background: transparent;
  color: inherit;
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 300ms ease, color 300ms ease, border-color 300ms ease;
}

.button:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-brown-950);
}

.button--dark {
  background: var(--color-brown-900);
  border-color: var(--color-brown-900);
  color: var(--color-white);
}

.button--light {
  color: var(--color-white);
  border-color: rgba(255, 254, 252, .68);
}

.button--plain {
  color: var(--color-ink);
  border-color: var(--line-light);
}

.hero__actions,
.page-actions,
.contact-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.section {
  padding-block: var(--section-y);
  background: var(--color-canvas);
}

.section--paper {
  background: var(--color-canvas);
}

.section--compact {
  padding-block: var(--section-y-compact);
}

.section--dark {
  background: var(--color-brown-900);
  color: var(--color-white);
}

.section__head {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(280px, .68fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 64px);
}

.section__head h2,
.not-found h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--title-section);
  line-height: 1.14;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-wrap: balance;
}

.section__head p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.75;
}

.section--dark .section__head p,
.section--dark .lead {
  color: rgba(255, 254, 252, .74);
}

.intro-editorial {
  max-width: 1030px;
}

.intro-editorial h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--title-page);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.intro-editorial p {
  max-width: 900px;
  margin: 34px 0 0;
  color: var(--color-muted);
  font-size: var(--text-lead);
  line-height: 1.8;
}

.editorial-media {
  max-width: 760px;
  margin: clamp(42px, 6vw, 72px) 0 0 auto;
  background: var(--color-paper);
}

.editorial-media img,
.product-card__media img,
.product-gallery__stage img,
.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}

.category-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 32px;
  gap: clamp(22px, 3vw, 42px);
  align-items: start;
  min-height: 142px;
  padding: 34px 0;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--line-dark);
}

.category-row:nth-child(odd) {
  padding-right: clamp(24px, 5vw, 70px);
}

.category-row:nth-child(even) {
  padding-left: clamp(24px, 5vw, 70px);
  border-left: 1px solid var(--line-dark);
}

.category-row__num,
.collection-row__num,
.related-row__num {
  color: var(--color-gold-soft);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .14em;
}

.category-row h3,
.collection-row h3,
.product-card h3,
.related-row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.category-row h3 {
  font-size: 36px;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.category-row p,
.collection-row p,
.product-card p,
.related-row p {
  margin: 14px 0 0;
  color: inherit;
  opacity: .72;
}

.category-row__arrow,
.product-card__link span,
.collection-row__link span,
.related-row__link span {
  display: inline-block;
  transition: transform 300ms ease;
}

.category-row:hover .category-row__arrow,
.product-card:hover .product-card__link span,
.collection-row:hover .collection-row__link span,
.related-row:hover .related-row__link span {
  transform: translateX(4px);
}

.split-editorial {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.split-editorial h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--title-section);
  line-height: 1.14;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.split-editorial p {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-lead);
  line-height: 1.8;
}

.term-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 34px;
}

.term-list span {
  border-bottom: 1px solid var(--line-light);
  color: var(--color-muted);
  padding: 4px 0;
}

.collection-list {
  border-top: 1px solid var(--line-light);
}

.collection-row {
  display: grid;
  grid-template-columns: minmax(220px, .35fr) minmax(0, .65fr);
  gap: clamp(40px, 7vw, 96px);
  padding: clamp(32px, 5vw, 54px) 0;
  border-bottom: 1px solid var(--line-light);
}

.collection-row__title {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
}

.collection-row h3 {
  font-size: 48px;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.collection-row__link,
.product-card__link,
.related-row__link,
.text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 20px;
  align-items: center;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
}

.contact-band {
  background: var(--color-brown-900);
  color: var(--color-white);
}

.contact-band__grid {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(280px, .5fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: start;
}

.contact-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--title-section);
  line-height: 1.14;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-band p {
  color: rgba(255, 254, 252, .76);
}

.contact-lines {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.contact-lines a,
.contact-lines span {
  display: block;
  border-top: 1px solid var(--line-dark);
  padding-top: 16px;
  color: var(--color-white);
  text-decoration: none;
}

.page-hero,
.product-hero,
.not-found {
  background: var(--color-brown-900);
  color: var(--color-white);
  padding-block: clamp(150px, 20vh, 220px) clamp(70px, 10vh, 120px);
  border-bottom: 1px solid var(--line-dark);
}

.catalog-tools {
  position: sticky;
  top: 72px;
  z-index: 8;
  background: rgba(250, 250, 249, .94);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(14px);
}

.catalog-tools__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-block: 16px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.chip {
  flex: 0 0 auto;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--color-muted);
  padding: 8px 0;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

.chip:hover,
.chip.is-active {
  color: var(--color-ink);
  border-bottom-color: currentColor;
}

.catalog-section {
  scroll-margin-top: 142px;
}

.catalog-section + .catalog-section {
  border-top: 1px solid var(--line-light);
}

.catalog-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.catalog-section__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 58px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.catalog-section__count {
  color: var(--color-muted);
}

.product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
}

.product-card {
  min-width: 0;
  padding: clamp(30px, 4vw, 40px) clamp(0px, 3vw, 34px);
  border-bottom: 1px solid var(--line-light);
  text-decoration: none;
  transition: background-color 300ms ease;
}

.product-card:nth-child(odd) {
  padding-right: clamp(24px, 4vw, 50px);
}

.product-card:nth-child(even) {
  padding-left: clamp(24px, 4vw, 50px);
  border-left: 1px solid var(--line-light);
}

.product-card:hover {
  background: var(--color-paper);
}

.product-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  margin-bottom: 26px;
  background: var(--color-canvas);
  overflow: hidden;
  text-decoration: none;
}

.product-card__media img {
  padding: 8px;
  transition: transform 300ms ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.018);
}

.product-card--text {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-start;
}

.product-card__meta,
.product-meta {
  margin: 0 0 14px;
  color: var(--color-muted);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  line-height: 1.35;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.product-card h3 {
  color: var(--color-ink);
  font-size: 36px;
  letter-spacing: .04em;
}

.product-card__collection {
  color: var(--color-muted);
}

.product-card__description {
  max-width: 560px;
  min-height: 86px;
}

.product-card__details,
.product-facts {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.product-card__details li,
.product-facts li {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line-light);
  padding-block: 12px;
}

.product-card__details span,
.product-facts span {
  color: var(--color-muted);
}

.product-card__price {
  margin-top: 16px;
  color: var(--color-terracotta);
  font-family: var(--font-display);
  font-size: clamp(28px, 2vw, 34px);
  line-height: 1.1;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 4fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.product-media-section {
  padding-top: clamp(104px, 12vw, 150px);
}

.product-media-layout {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(340px, 4fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: start;
}

.product-gallery {
  align-self: start;
  min-width: 0;
}

.product-gallery__shell {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: clamp(16px, 2vw, 22px);
  align-items: stretch;
}

.product-gallery__main {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.product-gallery__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--color-canvas);
  overflow: hidden;
}

.product-gallery__open {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: zoom-in;
}

.product-gallery__open img {
  padding: clamp(8px, 1.2vw, 14px);
}

.product-gallery__nav,
.gallery-lightbox__nav,
.gallery-lightbox__close {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(43, 37, 33, .22);
  border-radius: var(--radius);
  background: rgba(250, 250, 249, .82);
  color: var(--color-ink);
  cursor: pointer;
}

.product-gallery__controls {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 12px;
  color: var(--color-ink);
  font-family: var(--font-display);
  letter-spacing: .08em;
}

.product-gallery__nav {
  position: static;
  width: 40px;
  height: 36px;
  border-color: transparent;
  background: transparent;
  color: inherit;
  font-size: 18px;
  transform: none;
  transition: border-color 220ms ease, color 220ms ease;
}

.product-gallery__nav:hover {
  border-color: rgba(173, 135, 72, .45);
  color: var(--color-gold);
}

.product-gallery__counter {
  min-width: 58px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .08em;
}

.product-gallery__thumbs {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  align-content: start;
  gap: 12px;
  max-height: min(62svh, 520px);
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 2px;
  scrollbar-width: none;
}

.product-gallery__thumbs::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.product-gallery-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--color-canvas);
  padding: 5px;
  cursor: pointer;
  opacity: .62;
  transition: border-color 220ms ease, opacity 220ms ease, background 220ms ease;
}

.product-gallery-thumb.is-active,
.product-gallery-thumb:hover {
  border-color: var(--color-gold);
  opacity: 1;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  background: rgba(30, 23, 19, .86);
  padding: 48px 60px;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: zoom-out;
}

.gallery-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: calc(100vw - 120px);
  max-height: calc(100svh - 96px);
  background: transparent;
  display: grid;
  place-items: center;
  overflow: visible;
}

.gallery-lightbox__dialog:focus {
  outline: none;
}

.gallery-lightbox__image {
  width: auto;
  height: auto;
  max-width: calc(100vw - 120px);
  max-height: calc(100svh - 96px);
  object-fit: contain;
  background: rgba(250, 250, 249, .96);
  box-shadow: 0 24px 80px rgba(12, 9, 7, .28);
}

.gallery-lightbox__close {
  position: fixed;
  top: 22px;
  right: 24px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-color: rgba(255, 254, 252, .32);
  background: rgba(30, 23, 19, .18);
  color: var(--color-white);
  font-size: 24px;
}

.gallery-lightbox__nav {
  position: fixed;
  top: 50%;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-color: rgba(255, 254, 252, .28);
  background: rgba(30, 23, 19, .18);
  color: var(--color-white);
  font-size: 22px;
  transform: translateY(-50%);
}

.gallery-lightbox__nav--prev {
  left: 24px;
}

.gallery-lightbox__nav--next {
  right: 24px;
}

.gallery-lightbox__counter {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  color: rgba(255, 254, 252, .88);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .08em;
  transform: translateX(-50%);
}

.product-copy--media {
  position: sticky;
  top: 112px;
  align-self: start;
  min-width: 0;
  border-top: 1px solid var(--line-light);
  padding-top: 28px;
}

.product-copy h2,
.product-aside h2,
.product-copy h1,
.product-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.product-copy h2 {
  font-size: var(--title-section);
}

.product-copy h2.product-copy__materials-title {
  margin-top: 36px;
  font-size: 1.17em;
}

.product-copy h1 {
  color: var(--color-ink);
  font-size: var(--title-page);
}

.product-copy p {
  max-width: 780px;
  color: var(--color-muted);
  font-size: var(--text-lead);
  line-height: 1.82;
}

.product-summary {
  color: var(--color-ink);
}

.product-aside {
  position: sticky;
  top: 112px;
  border-top: 1px solid var(--line-light);
}

.product-aside h2 {
  padding-top: 24px;
  font-size: 28px;
}

.materials-list {
  display: grid;
  margin: 28px 0 0;
}

.materials-list div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line-light);
  padding-block: 16px;
}

.materials-list dt {
  color: var(--color-muted);
}

.materials-list dd {
  margin: 0;
}

.product-cta {
  background: var(--color-brown-900);
  color: var(--color-white);
}

.product-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(260px, .5fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.product-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--title-section);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.related-list {
  border-top: 1px solid var(--line-light);
}

.related-row {
  display: grid;
  grid-template-columns: 56px minmax(180px, .32fr) minmax(0, 1fr) 120px;
  gap: 24px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-light);
}

.related-row h3 {
  font-size: 30px;
  letter-spacing: .04em;
}

.related-row__type {
  margin: 0;
  color: var(--color-muted);
}

.site-footer {
  background: var(--color-canvas);
  color: var(--color-ink);
  border-top: 2px solid var(--color-brown-900);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(220px, .5fr) minmax(220px, .5fr);
  gap: clamp(34px, 6vw, 80px);
  padding-block: clamp(52px, 7vw, 84px);
}

.site-footer__brand img {
  width: min(360px, 74vw);
  height: auto;
}

.site-footer__brand p,
.site-footer__nav,
.site-footer__contacts {
  margin: 24px 0 0;
  color: var(--color-muted);
}

.site-footer h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-footer__nav,
.site-footer__contacts {
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer__meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  color: var(--color-muted);
  font-size: 14px;
  border-top: 1px solid var(--line-light);
  padding-top: 22px;
}

.not-found p {
  color: rgba(255, 254, 252, .78);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1040px) {
  :root {
    --title-hero: 60px;
    --title-page: 66px;
    --title-section: 48px;
  }

  .hero__inner,
  .section__head,
  .split-editorial,
  .contact-band__grid,
  .product-layout,
  .product-media-layout,
  .product-cta__inner {
    grid-template-columns: 1fr;
  }

  .product-aside {
    position: static;
  }

  .product-copy--media {
    position: static;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  :root {
    --text-body: 17px;
    --text-lead: 20px;
  }

  .hero {
    aspect-ratio: auto;
    min-height: 72svh;
  }

  .hero__video {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: 80px minmax(0, 1fr) 80px;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    gap: 0;
    background: rgba(250, 250, 249, .96);
    border-bottom: 1px solid var(--line-light);
    color: var(--color-ink);
    padding: 18px var(--gutter) 26px;
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 300ms ease, visibility 300ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    border-top: 1px solid var(--line-light);
    padding-block: 18px;
  }

  .nav-toggle {
    display: block;
  }

  .category-list,
  .product-list {
    grid-template-columns: 1fr;
  }

  .category-row:nth-child(even),
  .product-card:nth-child(even) {
    border-left: 0;
    padding-left: 0;
  }

  .category-row:nth-child(odd),
  .product-card:nth-child(odd) {
    padding-right: 0;
  }

  .collection-row,
  .related-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-gallery {
    order: 1;
  }

  .product-gallery__shell {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .product-gallery__main {
    grid-column: 1;
    grid-row: 1;
  }

  .product-gallery__thumbs {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    gap: 10px;
    max-height: none;
    margin-top: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-right: 0;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .product-gallery-thumb {
    flex: 0 0 104px;
    width: auto;
    aspect-ratio: 4 / 3;
  }

  .product-gallery__controls {
    justify-content: center;
  }

  .product-copy--media {
    order: 2;
  }

  .category-row h3,
  .product-card h3 {
    font-size: 32px;
  }

  .collection-row h3,
  .catalog-section__head h2 {
    font-size: 44px;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 20px;
    --text-body: 16px;
    --text-lead: 19px;
    --title-hero: 40px;
    --title-page: 46px;
    --title-section: 34px;
  }

  .site-header__inner {
    min-height: 68px;
    grid-template-columns: 60px minmax(0, 1fr) 60px;
  }

  .brand-mark,
  .brand-mark img {
    width: 32px;
  }

  .hero {
    aspect-ratio: auto;
    min-height: 70svh;
  }

  .hero__inner {
    padding-block: 110px 56px;
  }

  .hero__brand {
    width: min(320px, 82vw);
    margin-bottom: 30px;
  }

  .hero h1,
  .page-hero h1,
  .product-hero h1,
  .section__head h2,
  .intro-editorial h2,
  .split-editorial h2,
  .contact-band h2,
  .product-cta h2 {
    letter-spacing: .045em;
  }

  .page-hero,
  .product-hero,
  .not-found {
    padding-block: 120px 72px;
  }

  .category-row {
    grid-template-columns: 28px minmax(0, 1fr) 20px;
    gap: 13px;
    min-height: 0;
  }

  .category-row__arrow {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .category-row h3,
  .product-card h3,
  .related-row h3 {
    font-size: 24px;
  }

  .category-row h3 {
    letter-spacing: .035em;
  }

  .collection-row h3,
  .catalog-section__head h2 {
    font-size: 32px;
    letter-spacing: .035em;
  }

  .collection-row__title {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .catalog-tools {
    top: 68px;
  }

  .catalog-tools__inner {
    flex-wrap: nowrap;
    gap: 22px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .chip {
    font-size: 12px;
    white-space: nowrap;
  }

  .catalog-section {
    scroll-margin-top: 136px;
  }

  .catalog-section__head {
    align-items: start;
    flex-direction: column;
  }

  .product-card__details li,
  .product-facts li,
  .materials-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .product-card__description {
    min-height: 0;
  }

  .product-media-section {
    padding-top: 92px;
  }

  .gallery-lightbox {
    padding: 20px;
  }

  .gallery-lightbox__dialog,
  .gallery-lightbox__image {
    max-width: calc(100vw - 40px);
    max-height: calc(100svh - 96px);
  }

  .gallery-lightbox__close {
    top: 14px;
    right: 14px;
  }

  .gallery-lightbox__nav {
    width: 46px;
    height: 46px;
  }

  .gallery-lightbox__nav--prev {
    left: 10px;
  }

  .gallery-lightbox__nav--next {
    right: 10px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__meta {
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  .category-row {
    grid-template-columns: 26px minmax(0, 1fr) 18px;
    gap: 10px;
  }

  .category-row h3 {
    font-size: 18px;
    letter-spacing: .01em;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__video {
    display: none;
  }
}
