:root {
  --ink: #1d201d;
  --ink-soft: #64675f;
  --paper: #f3f0e9;
  --paper-light: #faf9f6;
  --line: #d9d5cb;
  --forest: #20251f;
  --forest-soft: #30372f;
  --sand: #b99a68;
  --sand-light: #d9c5a2;
  --white: #fff;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Segoe UI", Inter, Arial, sans-serif;
  --shadow: 0 24px 70px rgba(24, 26, 23, 0.13);
  --shell: 1420px;
  --radius: 3px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper-light);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]),
body.menu-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

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

button {
  color: inherit;
}

button:not(:disabled),
a,
summary,
select {
  cursor: pointer;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 4.2vw, 66px);
}

.shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: 126px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest);
  transform: translateY(-150%);
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: #846a44;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 27px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: var(--sand-light);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 27px;
  border: 1px solid var(--forest);
  border-radius: 0;
  color: var(--white);
  background: var(--forest);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.045em;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: #343b33;
  border-color: #343b33;
}

.button:active {
  transform: translateY(1px);
}

.button:focus-visible,
.text-button:focus-visible,
.chip:focus-visible,
.icon-button:focus-visible,
.menu-button:focus-visible,
.collection-card:focus-visible,
.product-card button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid #b98a48;
  outline-offset: 3px;
}

.button--small {
  min-height: 42px;
  padding-inline: 20px;
  font-size: 12px;
}

.button--light {
  color: var(--forest);
  background: var(--paper-light);
  border-color: var(--paper-light);
}

.button--light:hover {
  color: var(--forest);
  background: var(--sand-light);
  border-color: var(--sand-light);
}

.button--outline {
  color: var(--ink);
  background: transparent;
  border-color: #aaa69c;
}

.button--outline:hover {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

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

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid rgba(29, 32, 29, 0.45);
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.035em;
}

.text-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  transition: transform 180ms ease;
}

.text-button:hover svg {
  transform: translateX(4px);
}

.text-button--light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(250, 249, 246, 0.96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(23, 25, 22, 0.05);
}

.site-header__inner {
  display: grid;
  min-height: 78px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  display: inline-flex;
  width: 178px;
  align-items: center;
  gap: 10px;
}

.brand__logo {
  display: block;
  width: 100%;
  height: auto;
}

.brand__name {
  font-family: var(--serif);
  font-size: 29px;
  letter-spacing: 0.19em;
  line-height: 1;
}

.brand__descriptor {
  color: #777970;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.desktop-nav a {
  position: relative;
  padding-block: 28px;
  color: #464a44;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.045em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
}

.header-messenger {
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid #678b69;
  color: #315f3d;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.header-messenger:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.icon-button,
.menu-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
}

.icon-button {
  position: relative;
}

.icon-button svg,
.mobile-cta__secondary svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
}

.favorites-count {
  position: absolute;
  top: 1px;
  right: 0;
  display: grid;
  min-width: 17px;
  height: 17px;
  place-items: center;
  padding: 0 4px;
  border-radius: 20px;
  color: var(--white);
  background: #9c7544;
  font-size: 9px;
  font-weight: 700;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  display: grid;
  min-height: 692px;
  margin-top: 24px;
  grid-template-columns: minmax(420px, 0.84fr) minmax(0, 1.36fr);
  overflow: hidden;
  background: var(--forest);
}

.hero__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px 54px;
  color: var(--white);
}

.hero h1 {
  max-width: 620px;
  margin-bottom: 27px;
  font-size: clamp(55px, 5.4vw, 83px);
}

.hero__lead {
  max-width: 530px;
  margin-bottom: 34px;
  color: #c8ccc4;
  font-size: 16px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero__proof {
  display: grid;
  margin-top: auto;
  padding-top: 48px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__proof div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right: 20px;
}

.hero__proof div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.hero__proof strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.hero__proof span {
  color: #aeb4aa;
  font-size: 10px;
  letter-spacing: 0.05em;
}

.hero__visual {
  position: relative;
  min-height: 692px;
  overflow: hidden;
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(32, 37, 31, 0.14), transparent 26%), linear-gradient(0deg, rgba(17, 20, 17, 0.18), transparent 30%);
  content: "";
  pointer-events: none;
}

.hero__slide {
  position: absolute;
  visibility: hidden;
  inset: 0;
  opacity: 0;
  transition: opacity 650ms ease, visibility 650ms ease;
}

.hero__slide.is-active {
  visibility: visible;
  opacity: 1;
}

.hero__slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6.5s cubic-bezier(0.2, 0.7, 0, 1);
}

.hero__slide.is-active > img {
  transform: scale(1.018);
}

.hero__product {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 26px;
  display: grid;
  width: 220px;
  min-height: 94px;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 17px 19px;
  border: 0;
  color: var(--ink);
  background: rgba(250, 249, 246, 0.94);
  text-align: left;
  backdrop-filter: blur(10px);
}

.hero__product span {
  grid-column: 1 / -1;
  color: #777970;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__product strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.hero__product svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  transition: transform 180ms ease;
}

.hero-gallery__controls {
  position: absolute;
  z-index: 3;
  bottom: 32px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  color: var(--white);
  background: rgb(20 24 20 / 62%);
  backdrop-filter: blur(9px);
}

.hero-gallery__controls > button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: 17px;
}

.hero-gallery__dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-gallery__dots button {
  width: 19px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgb(255 255 255 / 42%);
}

.hero-gallery__dots button.is-active {
  background: var(--white);
}

.hero__product:hover svg {
  transform: translateX(4px);
}

.trust-bar {
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
}

.trust-bar__grid {
  display: grid;
  min-height: 122px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item svg {
  width: 27px;
  flex: 0 0 auto;
  fill: none;
  stroke: #9a7b4c;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.trust-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.trust-item strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.trust-item span {
  color: #7a7d75;
  font-size: 10px;
}

.section-heading {
  margin-bottom: 55px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 70px;
}

.section-heading--split > p,
.section-heading--center > p {
  max-width: 485px;
  margin: 0 0 4px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.section-heading--center {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.section-heading--center > p {
  margin-top: 25px;
}

.collection-grid {
  display: grid;
  height: 680px;
  grid-template-columns: 1.38fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 14px;
}

.collection-card {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #d8d4ca;
  text-align: left;
}

.collection-card--large {
  grid-row: 1 / span 2;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0, 1);
}

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

.collection-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 21, 18, 0.74), transparent 58%);
}

.collection-card__content {
  position: absolute;
  z-index: 2;
  right: 35px;
  bottom: 31px;
  left: 35px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  color: var(--white);
}

.collection-card__content small {
  grid-column: 1 / -1;
  margin-bottom: 6px;
  color: #d0d4cd;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.collection-card__content strong {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.1;
}

.collection-card__content > span {
  padding-bottom: 6px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.catalog-section {
  background: var(--paper);
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
  padding-block: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.filter-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  scrollbar-width: none;
}

.filter-chips::-webkit-scrollbar {
  display: none;
}

.chip {
  min-height: 40px;
  padding: 0 17px;
  border: 1px solid #cbc6bb;
  border-radius: 30px;
  color: #5f625b;
  background: transparent;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.025em;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.chip span {
  margin-left: 5px;
  opacity: 0.65;
}

.chip:hover,
.chip.is-active {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.catalog-tools {
  display: flex;
  align-items: center;
  gap: 13px;
}

.search-field {
  position: relative;
}

.search-field svg {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 17px;
  fill: none;
  stroke: #777970;
  stroke-width: 1.5;
  transform: translateY(-50%);
}

.search-field input,
.sort-field select {
  height: 42px;
  border: 1px solid #cbc6bb;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.36);
  font-size: 11px;
  outline: 0;
}

.search-field input {
  width: 172px;
  padding: 0 14px 0 40px;
}

.sort-field select {
  min-width: 178px;
  padding: 0 36px 0 13px;
}

.search-field input:focus-visible,
.sort-field select:focus-visible {
  border-color: #8e7148;
  outline: 2px solid #b98a48;
  outline-offset: 2px;
}

.catalog-status {
  min-height: 25px;
  margin-bottom: 18px;
  color: #7a7d75;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 52px 16px;
}

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

.product-card__visual {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #dfdcd4;
}

.product-card__visual > button.product-card__open {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
}

.product-card__visual img {
  width: 100%;
  height: 100%;
  filter: saturate(0.88) contrast(0.97) brightness(1.02);
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0, 1);
}

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

.product-card__badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  color: #4f504b;
  background: rgba(250, 249, 246, 0.9);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.favorite-toggle {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(250, 249, 246, 0.9);
  backdrop-filter: blur(8px);
}

.favorite-toggle svg {
  width: 17px;
  fill: transparent;
  stroke: #30332f;
  stroke-width: 1.5;
  transition: fill 160ms ease, stroke 160ms ease, transform 160ms ease;
}

.favorite-toggle:hover svg {
  transform: scale(1.08);
}

.favorite-toggle.is-active svg {
  fill: #9c7544;
  stroke: #9c7544;
}

.product-card__quick {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  left: 16px;
  min-height: 43px;
  border: 0;
  color: var(--white);
  background: rgba(30, 35, 29, 0.92);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.product-card:hover .product-card__quick,
.product-card:focus-within .product-card__quick {
  opacity: 1;
  transform: translateY(0);
}

.product-card__quick:hover {
  background: #111411;
}

.product-card__body {
  padding: 18px 5px 0;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
  color: #7b7d76;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card__name-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 15px;
}

.product-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.product-card__price {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 700;
}

.product-card__features {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 11px;
  color: #73766e;
  font-size: 9px;
}

.product-card__features span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.product-card__features span + span::before {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #a1845a;
  content: "";
}

.catalog-more {
  display: flex;
  justify-content: center;
  margin-top: 58px;
}

.catalog-more .button {
  min-width: 250px;
}

.catalog-more span {
  color: #777970;
  font-size: 10px;
}

.catalog-more .button:hover span {
  color: #cccfc9;
}

.catalog-empty {
  padding: 70px 20px;
  text-align: center;
}

.catalog-empty h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}

.catalog-empty p {
  color: var(--ink-soft);
}

.selector-section {
  padding-bottom: 0;
}

.selector-card {
  display: grid;
  min-height: 575px;
  grid-template-columns: 0.86fr 1.14fr;
  color: var(--white);
  background: var(--forest);
  box-shadow: var(--shadow);
}

.selector-card__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px;
  background: linear-gradient(145deg, #293028 0%, #1d211d 100%);
}

.selector-card__intro h2 {
  margin-bottom: 26px;
  font-size: clamp(45px, 4.4vw, 64px);
}

.selector-card__intro > p {
  max-width: 450px;
  margin-bottom: 42px;
  color: #b9beb5;
  font-size: 14px;
  line-height: 1.75;
}

.selector-progress {
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.17);
}

.selector-progress span {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--sand-light);
  transition: width 250ms ease;
}

.selector-card__intro > small {
  margin-top: 11px;
  color: #8f958b;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.selector-card__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 72px;
}

.selector-step {
  display: grid;
  margin: 0;
  padding: 0;
  border: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.selector-step[hidden] {
  display: none;
}

.selector-step legend {
  width: 100%;
  margin-bottom: 28px;
  padding: 0;
  grid-column: 1 / -1;
  font-family: var(--serif);
  font-size: 32px;
}

.option-card,
.choice-row {
  position: relative;
  cursor: pointer;
}

.option-card input,
.choice-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card > span {
  display: flex;
  min-height: 185px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease;
}

.option-card svg {
  width: 42px;
  margin-bottom: 20px;
  fill: none;
  stroke: #c9b48e;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.option-card strong,
.choice-row strong {
  font-size: 12px;
  letter-spacing: 0.025em;
}

.option-card small,
.choice-row small {
  margin-top: 5px;
  color: #92988f;
  font-size: 9px;
}

.option-card input:checked + span,
.option-card:hover > span {
  border-color: var(--sand-light);
  background: rgba(255, 255, 255, 0.055);
}

.option-card input:focus-visible + span,
.choice-row input:focus-visible + span {
  outline: 2px solid var(--sand-light);
  outline-offset: 3px;
}

.selector-step[data-step="2"],
.selector-step[data-step="3"] {
  grid-template-columns: 1fr;
}

.choice-row > span {
  position: relative;
  display: flex;
  min-height: 70px;
  flex-direction: column;
  justify-content: center;
  padding: 13px 55px 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: border-color 160ms ease, background 160ms ease;
}

.choice-row > span::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 16px;
  height: 16px;
  border: 1px solid #757b72;
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.choice-row input:checked + span {
  border-color: var(--sand-light);
  background: rgba(255, 255, 255, 0.055);
}

.choice-row input:checked + span::after {
  border: 5px solid var(--sand-light);
}

.selector-actions {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-top: 31px;
}

.selector-actions .button {
  min-width: 156px;
}

.selector-actions .button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.atelier {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 112px;
}

.atelier__visual {
  position: relative;
  min-height: 680px;
  padding-right: 80px;
}

.atelier__image-main {
  width: 100%;
  height: 590px;
  object-fit: cover;
}

.atelier__image-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 300px;
  height: 340px;
  border: 10px solid var(--paper-light);
  object-fit: cover;
}

.atelier__note {
  position: absolute;
  bottom: 40px;
  left: -17px;
  padding: 12px 17px;
  color: var(--white);
  background: var(--forest);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}

.atelier__content {
  max-width: 550px;
}

.atelier__content h2 {
  margin-bottom: 30px;
}

.atelier__lead {
  margin-bottom: 38px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.material-list {
  margin-bottom: 34px;
  border-top: 1px solid var(--line);
}

.material-list > div {
  display: grid;
  padding: 20px 0;
  grid-template-columns: 42px 1fr;
  border-bottom: 1px solid var(--line);
}

.projects-section {
  background: #efede7;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.825fr 0.825fr;
  gap: 14px;
}

.project-card {
  position: relative;
  min-height: 510px;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: var(--white);
  background: var(--forest);
  text-align: left;
  cursor: pointer;
  appearance: none;
}

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

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0, 1);
}

.project-card:hover img {
  transform: scale(1.025);
}

.project-card::after {
  position: absolute;
  inset: 34% 0 0;
  background: linear-gradient(0deg, rgb(14 18 14 / 86%), transparent);
  content: '';
}

.project-card > div {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 25px;
  left: 24px;
}

.project-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: #d9c7a7;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-card h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: clamp(25px, 2vw, 38px);
  font-weight: 400;
}

.project-card p {
  max-width: 370px;
  color: #d4d7d1;
  font-size: 12px;
  line-height: 1.55;
}

.wholesale-section {
  padding-top: 0;
}

.wholesale-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 90px;
  padding: 74px 76px;
  color: var(--white);
  background: var(--forest);
}

.wholesale-card h2 {
  max-width: 720px;
  font-size: clamp(44px, 4.2vw, 67px);
}

.wholesale-card > div:last-child > p {
  max-width: 540px;
  margin-bottom: 28px;
  color: #c5cbc2;
  font-size: 15px;
  line-height: 1.7;
}

.wholesale-card__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.material-list > div > span {
  color: #9c8055;
  font-family: var(--serif);
  font-size: 15px;
}

.material-list strong {
  font-size: 12px;
  letter-spacing: 0.02em;
}

.material-list p {
  margin: 5px 0 0;
  color: #74776f;
  font-size: 11px;
}

.process-section {
  background: var(--paper);
}

.process-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  counter-reset: process;
}

.process-grid li {
  position: relative;
  min-height: 325px;
  padding: 31px 32px 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.25);
}

.process-grid li + li {
  border-left: 0;
}

.process-grid li > span {
  position: absolute;
  top: 19px;
  right: 21px;
  color: #a29d92;
  font-family: var(--serif);
  font-size: 13px;
}

.process-icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin: 52px 0 42px;
  place-items: center;
  border-radius: 50%;
  background: #e8e2d7;
}

.process-icon svg {
  width: 29px;
  fill: none;
  stroke: #856b45;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.process-grid h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.process-grid p {
  margin-bottom: 0;
  color: #6d7069;
  font-size: 11px;
  line-height: 1.7;
}

.faq {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 110px;
}

.faq__heading {
  position: sticky;
  top: 122px;
  align-self: start;
}

.faq__heading h2 {
  margin-bottom: 28px;
}

.faq__heading p {
  max-width: 430px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

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

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

.accordion summary {
  position: relative;
  display: flex;
  min-height: 83px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px 20px 0;
  font-family: var(--serif);
  font-size: 22px;
  list-style: none;
}

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

.accordion summary span,
.accordion summary span::after {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 18px;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease;
}

.accordion summary span::after {
  right: 0;
  transform: rotate(90deg);
}

.accordion details[open] summary span::after {
  transform: rotate(0);
}

.accordion details > div {
  overflow: hidden;
}

.accordion details p {
  max-width: 680px;
  margin: -4px 0 29px;
  color: #696c65;
  font-size: 13px;
  line-height: 1.75;
}

.consultation {
  padding-block: 105px;
  color: var(--white);
  background: var(--forest);
}

.consultation__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 120px;
}

.consultation__copy h2 {
  max-width: 650px;
  margin-bottom: 25px;
  font-size: clamp(44px, 4.2vw, 64px);
}

.consultation__copy > p:last-child {
  max-width: 530px;
  margin-bottom: 0;
  color: #b8bdb4;
  font-size: 14px;
  line-height: 1.7;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
}

.lead-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field span,
.contact-choice legend {
  color: #aeb4aa;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  height: 51px;
  padding: 0 2px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  color: var(--white);
  background: transparent;
  outline: 0;
}

.field input::placeholder {
  color: #777e75;
}

.field input:focus,
.field select:focus {
  border-bottom-color: var(--sand-light);
}

.field select option {
  color: var(--ink);
  background: var(--white);
}

.lead-form small,
.lead-modal__form > small {
  color: #747b72;
  font-size: 9px;
  text-align: center;
}

.site-footer {
  padding-top: 75px;
  color: #d6dad3;
  background: #151915;
}

.site-footer__top {
  display: grid;
  padding-bottom: 66px;
  grid-template-columns: 1.25fr 0.72fr 0.72fr 1fr;
  gap: 65px;
}

.brand--footer .brand__descriptor {
  color: #858c82;
}

.brand--footer .brand__logo {
  filter: invert(1);
}

.brand--footer {
  width: 200px;
}

.site-footer__top > div:first-child > p {
  max-width: 300px;
  margin: 22px 0 0;
  color: #777e75;
  font-size: 11px;
  line-height: 1.7;
}

.footer-links,
.footer-contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.footer-links strong,
.footer-contact strong {
  margin-bottom: 8px;
  color: #aeb4aa;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links button {
  padding: 0;
  border: 0;
  color: #858c82;
  background: transparent;
  font-size: 11px;
  transition: color 150ms ease;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--white);
}

.footer-contact p {
  margin-bottom: 6px;
  color: #7b8278;
  font-size: 11px;
  line-height: 1.7;
}

.site-footer__bottom {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #636a61;
  font-size: 9px;
  letter-spacing: 0.03em;
}

.mobile-cta {
  display: none;
}

.modal {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
}

.modal::backdrop {
  background: rgba(14, 17, 14, 0.76);
  backdrop-filter: blur(5px);
  animation: fade-in 180ms ease both;
}

.modal__surface {
  position: relative;
  background: var(--paper-light);
  box-shadow: var(--shadow);
}

.modal__close {
  position: absolute;
  z-index: 5;
  top: 17px;
  right: 17px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(250, 249, 246, 0.9);
  backdrop-filter: blur(8px);
}

.modal__close svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.product-modal[open] {
  display: grid;
  place-items: center;
}

.product-modal__surface {
  display: grid;
  width: min(calc(100% - 48px), 1220px);
  max-height: min(850px, calc(100vh - 48px));
  grid-template-columns: 1.15fr 0.85fr;
  overflow: auto;
  animation: modal-up 220ms ease both;
}

.product-modal__gallery {
  display: grid;
  min-height: 650px;
  grid-template-rows: 1fr auto;
  padding: 16px;
  background: #e5e1d8;
}

.product-modal__image-wrap {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  background: #d8d5ce;
}

.product-modal__image-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease;
}

.gallery-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 41px;
  height: 41px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(250, 249, 246, 0.88);
  transform: translateY(-50%);
  backdrop-filter: blur(7px);
}

.gallery-arrow--prev {
  left: 15px;
}

.gallery-arrow--next {
  right: 15px;
}

.product-modal__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 10px;
}

.product-modal__thumbs button {
  height: 82px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  opacity: 0.62;
  background: transparent;
}

.product-modal__thumbs button.is-active {
  border-color: var(--forest);
  opacity: 1;
}

.product-modal__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 65px 52px 48px;
}

.product-modal__content h2 {
  margin-bottom: 13px;
  font-size: 57px;
}

.product-modal__price {
  margin-bottom: 22px;
  font-size: 15px;
  font-weight: 700;
}

.product-modal__description {
  margin-bottom: 22px;
  color: #64675f;
  font-size: 12px;
  line-height: 1.75;
}

.product-modal__features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 27px;
}

.product-modal__features span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  color: #666960;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-modal__specs {
  display: grid;
  margin-bottom: 26px;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.product-modal__specs > div {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.product-modal__specs > div:nth-child(odd) {
  padding-right: 16px;
}

.product-modal__specs > div:nth-child(even) {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.product-modal__specs span {
  display: block;
  color: #878980;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-modal__specs strong {
  display: block;
  margin-top: 3px;
  font-size: 10px;
}

.swatches-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 25px;
}

.swatches-block > div:first-child {
  display: flex;
  flex-direction: column;
}

.swatches-block strong {
  font-size: 10px;
}

.swatches-block span {
  color: #85877f;
  font-size: 8px;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  width: min(100%, 390px);
}

.swatches button {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 4px 4px 7px;
  border: 1px solid #d6d1c6;
  border-radius: 10px;
  outline: 0;
  background: #fff;
  text-align: left;
}

.swatches button:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.swatches button.is-active {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}

.swatches button img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.swatches button span {
  display: flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
  margin-top: 6px;
  color: var(--ink);
  font-size: 9px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.swatches button span::before {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border: 1px solid rgb(0 0 0 / 14%);
  border-radius: 50%;
  background: var(--swatch);
  content: '';
}

.swatches button.swatches__more {
  display: grid;
  width: 30px;
  place-items: center;
  border: 0;
  border-radius: 0;
  color: #686b63;
  outline: 0;
  background: transparent;
  font-size: 8px;
}

.color-preview-note {
  margin: -13px 0 21px;
  color: #8a8c84;
  font-size: 8px;
  line-height: 1.45;
}

.product-modal__note {
  margin: 11px 0 0;
  color: #8a8c84;
  font-size: 8px;
  text-align: center;
}

.lead-modal[open] {
  display: grid;
  place-items: center;
}

.lead-modal__surface {
  width: min(calc(100% - 40px), 670px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 58px 64px 52px;
  animation: modal-up 220ms ease both;
}

.lead-modal__header {
  margin-bottom: 30px;
}

.lead-modal__header h2 {
  margin-bottom: 18px;
  font-size: 49px;
}

.lead-modal__header > p:last-child {
  margin-bottom: 0;
  color: #6c6f67;
  font-size: 12px;
}

.lead-modal__form {
  display: grid;
  gap: 19px;
}

.field--dark span,
.contact-choice legend {
  color: #686b63;
}

.field--dark input,
.field--dark select {
  color: var(--ink);
  border-bottom-color: var(--line);
}

.field--dark input::placeholder {
  color: #a2a39d;
}

.contact-choice {
  display: flex;
  margin: 1px 0 4px;
  padding: 0;
  border: 0;
  gap: 7px;
}

.contact-choice legend {
  margin-bottom: 9px;
}

.contact-choice label {
  position: relative;
  flex: 1;
}

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

.contact-choice label span {
  display: grid;
  min-height: 39px;
  place-items: center;
  border: 1px solid var(--line);
  color: #686b63;
  font-size: 9px;
  font-weight: 650;
}

.contact-choice input:checked + span {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.contact-choice input:focus-visible + span {
  outline: 2px solid #b98a48;
  outline-offset: 3px;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: min(calc(100% - 48px), 390px);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 17px 18px;
  color: var(--white);
  background: #242a23;
  box-shadow: var(--shadow);
  animation: toast-in 220ms ease both;
}

.toast[hidden] {
  display: none;
}

.toast > svg {
  width: 23px;
  fill: none;
  stroke: var(--sand-light);
  stroke-width: 2;
}

.toast div {
  display: flex;
  flex-direction: column;
}

.toast strong {
  font-size: 11px;
}

.toast span {
  color: #aeb4aa;
  font-size: 9px;
}

.toast button {
  padding: 4px;
  border: 0;
  color: #aeb4aa;
  background: transparent;
  font-size: 20px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes modal-up {
  from { opacity: 0; transform: translateY(18px) scale(0.99); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
  .shell {
    width: min(calc(100% - 44px), var(--shell));
  }

  .desktop-nav {
    gap: 24px;
  }

  .hero {
    min-height: 620px;
    grid-template-columns: minmax(390px, 0.9fr) minmax(0, 1.1fr);
  }

  .hero__content {
    padding: 58px 43px 46px;
  }

  .hero__visual {
    min-height: 620px;
  }

  .hero__proof div + div {
    padding-left: 15px;
  }

  .trust-item {
    padding-inline: 15px;
  }

  .atelier {
    gap: 65px;
  }

  .projects-grid {
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
  }

  .wholesale-card {
    gap: 48px;
    padding: 64px 52px;
  }

  .selector-card__intro,
  .selector-card__form {
    padding: 54px 45px;
  }

  .faq {
    gap: 70px;
  }

  .consultation__inner {
    gap: 65px;
  }

  .site-footer__top {
    gap: 35px;
  }
}

@media (max-width: 960px) {
  html {
    scroll-padding-top: 78px;
  }

  .section {
    padding-block: 92px;
  }

  .site-header__inner {
    min-height: 68px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    position: relative;
    display: grid;
  }

  .menu-button span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-button span:first-child {
    transform: translate(-50%, -4px);
  }

  .menu-button span:last-child {
    transform: translate(-50%, 4px);
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translate(-50%, 0) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translate(-50%, 0) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    z-index: 49;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    height: calc(100dvh - 68px);
    padding: 46px 22px 90px;
    background: var(--paper-light);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    padding: 19px 4px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 28px;
  }

  .mobile-nav .button {
    margin-top: auto;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero__content {
    min-height: 560px;
    padding: 66px 54px 44px;
  }

  .hero__visual {
    min-height: 580px;
  }

  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(3) {
    border-left: 0;
  }

  .trust-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .collection-grid {
    height: 620px;
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-chips {
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .catalog-tools {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .search-field input,
  .sort-field select {
    width: 100%;
  }

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

  .product-card__quick {
    display: none;
  }

  .selector-card {
    grid-template-columns: 1fr;
  }

  .selector-card__intro {
    min-height: 420px;
  }

  .selector-card__form {
    min-height: 420px;
  }

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

  .atelier__content {
    max-width: 680px;
  }

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

  .project-card--wide {
    grid-column: 1 / -1;
  }

  .project-card {
    min-height: 440px;
  }

  .wholesale-card {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid li:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .process-grid li:nth-child(n + 3) {
    border-top: 0;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq__heading {
    position: static;
  }

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

  .site-footer__top {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .product-modal__surface {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
  }

  .product-modal__gallery {
    min-height: 560px;
  }

  .product-modal__content {
    padding: 54px 45px;
  }
}

@media (max-width: 640px) {
  :root {
    --mobile-padding: 18px;
  }

  body {
    padding-bottom: 68px;
  }

  h2 {
    font-size: 41px;
  }

  .shell {
    width: calc(100% - 36px);
  }

  .section {
    padding-block: 76px;
  }

  .brand__name {
    font-size: 26px;
  }

  .brand__logo {
    width: 100%;
  }

  .brand {
    width: 140px;
  }

  .brand__descriptor {
    display: none;
  }

  .site-header__inner {
    min-height: 64px;
  }

  .site-header .favorites-button {
    display: none;
  }

  .mobile-nav {
    height: calc(100dvh - 64px);
  }

  .hero {
    width: 100%;
    margin-top: 0;
  }

  .hero__content {
    min-height: 535px;
    padding: 58px 24px 35px;
  }

  .hero h1 {
    max-width: 520px;
    margin-bottom: 23px;
    font-size: clamp(51px, 15vw, 67px);
  }

  .hero__lead {
    margin-bottom: 27px;
    font-size: 13px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 19px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-button {
    align-self: center;
  }

  .hero__proof {
    padding-top: 32px;
  }

  .hero__proof strong {
    font-size: 23px;
  }

  .hero__proof span {
    font-size: 8px;
    line-height: 1.3;
  }

  .hero__visual {
    min-height: 440px;
  }

  .hero__product {
    right: 16px;
    bottom: 16px;
    width: 190px;
  }

  .hero-gallery__controls {
    top: 16px;
    bottom: auto;
    left: 16px;
  }

  .trust-bar__grid {
    width: 100%;
  }

  .trust-item {
    min-height: 103px;
    padding: 16px 13px;
    gap: 10px;
  }

  .trust-item svg {
    width: 22px;
  }

  .trust-item strong {
    font-size: 9px;
  }

  .trust-item span {
    font-size: 8px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading--split {
    gap: 20px;
  }

  .section-heading--split > p,
  .section-heading--center > p {
    font-size: 12px;
  }

  .collection-grid {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .collection-card,
  .collection-card--large {
    height: 360px;
    grid-row: auto;
  }

  .collection-card__content {
    right: 23px;
    bottom: 23px;
    left: 23px;
  }

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

  .project-card--wide {
    grid-column: auto;
  }

  .project-card {
    min-height: 410px;
  }

  .wholesale-card {
    padding: 48px 24px;
  }

  .wholesale-card h2 {
    font-size: 41px;
  }

  .wholesale-card__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .header-messenger {
    font-size: 9px;
  }

  .collection-card__content > span {
    display: none;
  }

  .catalog-section {
    padding-top: 76px;
  }

  .catalog-toolbar {
    margin-inline: -18px;
    padding-inline: 18px;
  }

  .filter-chips {
    margin-right: -18px;
    padding-right: 18px;
  }

  .chip {
    flex: 0 0 auto;
  }

  .catalog-tools {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .product-card__visual {
    aspect-ratio: 3 / 2;
  }

  .product-card__meta {
    font-size: 8px;
  }

  .product-card h3 {
    font-size: 30px;
  }

  .product-card__price {
    font-size: 13px;
  }

  .selector-section {
    width: 100%;
    padding-top: 0;
  }

  .selector-card__intro,
  .selector-card__form {
    min-height: auto;
    padding: 52px 23px;
  }

  .selector-card__intro h2 {
    font-size: 43px;
  }

  .selector-card__form {
    padding-top: 45px;
  }

  .selector-step {
    grid-template-columns: 1fr;
  }

  .option-card > span {
    min-height: 105px;
    align-items: center;
    flex-flow: row wrap;
    justify-content: flex-start;
    padding: 18px;
    text-align: left;
  }

  .option-card svg {
    width: 38px;
    margin: 0 17px 0 0;
  }

  .option-card small {
    width: 100%;
    margin-left: 55px;
    margin-top: -19px;
  }

  .selector-actions {
    justify-content: space-between;
  }

  .selector-actions .button {
    min-width: 145px;
  }

  .atelier {
    gap: 52px;
  }

  .atelier__visual {
    min-height: 510px;
    padding-right: 35px;
  }

  .atelier__image-main {
    height: 445px;
  }

  .atelier__image-detail {
    width: 180px;
    height: 220px;
    border-width: 7px;
  }

  .atelier__note {
    bottom: 23px;
    left: -5px;
    font-size: 14px;
  }

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

  .process-grid li + li,
  .process-grid li:nth-child(3) {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .process-grid li {
    min-height: 280px;
  }

  .process-icon {
    margin: 38px 0 30px;
  }

  .faq {
    gap: 45px;
  }

  .accordion summary {
    min-height: 76px;
    font-size: 19px;
    line-height: 1.25;
  }

  .consultation {
    padding-block: 76px;
  }

  .consultation__inner {
    gap: 40px;
  }

  .lead-form {
    margin-inline: -3px;
    padding: 28px 20px;
  }

  .lead-form__row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 60px;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__top > div:first-child,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    min-height: 84px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 45;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 68px;
    padding: 8px 12px max(8px, env(safe-area-inset-bottom));
    grid-template-columns: 48px 1fr;
    gap: 8px;
    background: rgba(250, 249, 246, 0.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
  }

  .mobile-cta .button {
    min-height: 50px;
  }

  .mobile-cta__secondary {
    position: relative;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    background: transparent;
  }

  .mobile-cta__secondary .favorites-count {
    top: 3px;
    right: 2px;
  }

  .product-modal[open],
  .lead-modal[open] {
    align-items: end;
  }

  .product-modal__surface,
  .lead-modal__surface {
    width: 100%;
    max-height: calc(100vh - 18px);
  }

  .product-modal__gallery {
    min-height: 425px;
    padding: 8px;
  }

  .product-modal__image-wrap {
    min-height: 340px;
  }

  .product-modal__thumbs button {
    height: 65px;
  }

  .product-modal__content {
    padding: 42px 23px 32px;
  }

  .product-modal__content h2 {
    font-size: 48px;
  }

  .swatches-block {
    align-items: flex-start;
    flex-direction: column;
  }

  .lead-modal__surface {
    padding: 45px 22px 32px;
  }

  .lead-modal__header h2 {
    font-size: 42px;
  }

  .contact-choice {
    flex-wrap: wrap;
  }

  .contact-choice legend {
    width: 100%;
  }

  .toast {
    right: 12px;
    bottom: 80px;
    width: calc(100% - 24px);
  }
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
