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

svg {
  max-width: 100%;
  display: block;
  height: auto;
}

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

label {
  display: block;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

::-moz-placeholder {
  color: inherit;
}

::placeholder {
  color: inherit;
}

textarea {
  display: block;
}

input,
textarea,
button,
select {
  font: inherit;
  color: inherit;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
}

ul,
ol {
  list-style-type: none;
}

picture,
img {
  display: inline-block;
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 1.5px solid #333333;
  outline-offset: 0px;
}

html,
body {
  overflow-x: clip;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 25px;
}
@media (prefers-reduced-motion) {
  html {
    scroll-behavior: none;
  }
}

body {
  min-width: 320px;
  font-family: "Source Serif Pro", serif;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.7px;
  color: #636363;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translateX(0px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateX(0px) scale(1);
  }
}
.max-width {
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  width: calc(100% - clamp(16px, 3.125vw, 32px));
}

.header {
  width: 100%;
}

.header__container {
  padding: clamp(16px, 3.125vw, 24px) 0;
}

.header__top {
  margin-bottom: clamp(16px, 3.125vw, 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3.125vw, 24px);
}
@media (min-width: 768px) {
  .header__top {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 1000px) {
  .header__top {
    flex-wrap: nowrap;
  }
}

.header__logo {
  width: 100%;
  height: auto;
  max-width: 349px;
  display: block;
}
@media (min-width: 1000px) {
  .header__logo {
    order: 1;
  }
}

.header__search {
  width: 100%;
  display: grid;
  min-height: 40px;
  grid-template-columns: 1fr 48px;
  max-width: 300px;
  margin: 0 auto;
}
.header__search input,
.header__search button {
  height: 100%;
}
.header__search button {
  background-color: #a28251;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 250ms ease-in-out;
}
.header__search button img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  transform-origin: center;
  transition: transform 250ms ease-in-out;
  will-change: transform;
  transform: scale(1);
}
.header__search button:focus-visible {
  outline: none;
}
.header__search button:hover {
  background-color: #636363;
}
.header__search button:hover img {
  transform: scale(1.05);
}
.header__search input {
  padding-left: 12px;
  border-top: 2px solid #c0c0c0;
  border-left: 2px solid #c0c0c0;
  background: #f8f8f8;
}
.header__search input:focus-visible {
  outline: none;
}
.header__search input::-moz-placeholder {
  color: #c0c0c0;
}
.header__search input::placeholder {
  color: #c0c0c0;
}
@media (min-width: 768px) {
  .header__search {
    margin: 0 0 0 auto;
  }
}
@media (min-width: 1000px) {
  .header__search {
    order: 2;
    margin: 0;
  }
}

.header__phone {
  background-color: #fff;
  border: 1px solid #a28251;
  padding: 8px 20px;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(18px, 2.6041666667vw, 20px);
  width: 100%;
  max-width: 328px;
  color: #a28251;
  transition: box-shadow 250ms ease-in-out;
}
.header__phone:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .header__phone {
    width: -moz-fit-content;
    width: fit-content;
    text-align: right;
  }
}
.header__phone p:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 8px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .header__phone p:last-child {
    margin: 0 0 0 auto;
  }
}
.header__phone p:last-child img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
}
@media (min-width: 1000px) {
  .header__phone {
    order: 3;
  }
}

.header__nav--mobile-button {
  width: 100%;
  display: grid;
  background-color: #ece7e6;
  height: 52px;
  grid-template-columns: 1fr 52px;
}
@media (min-width: 600px) {
  .header__nav--mobile-button {
    display: none;
  }
}
.header__nav--mobile-button p {
  height: 100%;
  line-height: 52px;
  text-align: left;
  padding-left: 12px;
  color: #000;
}

.header__nav--mobile-button-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d1d1d1;
}
.header__nav--mobile-button-icon img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
}

.header__nav-content {
  background-color: #ece7e6;
  display: flex;
  flex-direction: column;
  transform: translateY(-1px);
  opacity: 0;
  overflow: hidden;
  transition: opacity 300ms;
}
@media (min-width: 600px) {
  .header__nav-content {
    transform: translateY(0);
    opacity: 1;
    flex-direction: row;
    padding: 0 24px;
  }
}

.header__nav-link {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem;
  color: #a28251;
  text-transform: uppercase;
  background-color: transparent;
  transition: background-color 250ms ease-in-out, color 250ms ease-in-out;
}
.header__nav-link:hover {
  background-color: #a28251;
  color: #fff;
}
@media (min-width: 600px) {
  .header__nav-link {
    color: #000;
  }
}

.header__nav-content-wrapper {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms;
}
.header__nav-content-wrapper.active {
  grid-template-rows: 1fr;
}
.header__nav-content-wrapper.active .header__nav-content {
  opacity: 1;
}
@media (min-width: 600px) {
  .header__nav-content-wrapper {
    grid-template-rows: 1fr;
  }
  .header__nav-content-wrapper .header__nav-content {
    opacity: 1;
  }
}

.footer__copyright {
  background-color: #ece7e6;
  padding: clamp(16px, 3.125vw, 24px) 0;
}

.footer__copyright-content {
  color: #828282;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 2.0833333333vw, 16px);
}

.footer__banner {
  padding: clamp(24px, 4.1666666667vw, 32px) 24px;
  border: 1px solid #e9e9e9;
  background: #f8f8f8;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: clamp(24px, 4.1666666667vw, 32px);
  margin-bottom: clamp(24px, 4.1666666667vw, 32px);
}
.footer__banner img {
  width: 100%;
  height: auto;
  max-width: 349px;
}

.footer__nav {
  padding: clamp(24px, 4.1666666667vw, 32px) 0 clamp(48px, 8.3333333333vw, 64px);
}

.footer__nav-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: 24px;
}

.footer__nav-col {
  width: 100%;
  max-width: 401px;
}
.footer__nav-col h2 {
  color: #a28251;
  font-weight: 400;
  width: 100%;
  font-size: 14px;
  padding: 8px clamp(16px, 2.6041666667vw, 20px);
  border-bottom: 2px solid #e9e9e9;
}

.footer__nav-links {
  width: 100%;
  margin-top: clamp(12px, 2.0833333333vw, 16px);
  padding: 0 clamp(16px, 2.6041666667vw, 20px);
  display: flex;
  flex-direction: column;
}
.footer__nav-links a {
  width: -moz-fit-content;
  width: fit-content;
  color: #636363;
  text-transform: uppercase;
  font-size: 12px;
  padding: 8px 0;
  transition: color 200ms;
}
.footer__nav-links a:hover {
  color: #a28251;
}

.btn {
  border-radius: 4px;
  border: 2px solid #fff;
  background: #a28251;
  color: #fff;
  padding: clamp(16px, 2.6041666667vw, 20px) clamp(24px, 4.1666666667vw, 32px);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.2px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  transition: background-color 250ms ease-in-out, color 250ms ease-in-out;
}
.btn:hover {
  background-color: #fff;
  color: #60546a;
}

.btn--secondary {
  padding: 14px;
  border: 1px solid #fff;
  background: #a28251;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  transition: background-color 250ms ease-in-out;
}
.btn--secondary:hover {
  background-color: #636363;
}

.link {
  position: relative;
  white-space: nowrap;
}
.link::before {
  content: "";
  width: 100%;
  height: 1px;
  border-radius: 100vmax;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: currentColor;
  transform-origin: center;
  will-change: transform;
  backface-visibility: hidden;
  transform: scaleX(0);
  transition: transform 200ms ease-in-out;
}
.link:hover::before {
  transform: scaleX(1);
}

@property --button-gradient-color-1 {
  syntax: "<color>";
  inherits: false;
  initial-value: #767676;
}
@property --button-gradient-color-2 {
  syntax: "<color>";
  inherits: false;
  initial-value: #414141;
}
.collection-page {
  padding: clamp(48px, 8.3333333333vw, 64px) 0;
}

.collection-container {
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  padding: clamp(24px, 4.1666666667vw, 32px) 0 clamp(32px, 6.25vw, 48px);
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media (min-width: 1000px) {
  .collection-container {
    flex-direction: row;
    align-items: flex-start;
  }
}

.collection-content {
  max-width: 584px;
  width: 100%;
}
@media (min-width: 1000px) {
  .collection-content {
    min-width: 584px;
  }
}

.collection-gallery {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  flex: 1;
  gap: clamp(16px, 3.125vw, 24px);
}
@media (min-height: 575px) and (min-width: 1000px) {
  .collection-gallery {
    position: sticky;
    top: 20px;
  }
}

.collection-active-image {
  width: 265px;
  height: 265px;
  cursor: pointer;
}
.collection-active-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}

.collection-thumbnails h3 {
  color: #636363;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.collection-thumbnails .collection-thumbnails-images {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
}
.collection-thumbnails .collection-thumbnail-image {
  width: 62px;
  height: 62px;
  cursor: pointer;
  overflow: hidden;
  transition: box-shadow 380ms cubic-bezier(0.23, 1, 0.32, 1), border-color 380ms cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid transparent;
}
.collection-thumbnails .collection-thumbnail-image.active {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-color: #a28251;
}
.collection-thumbnails .collection-thumbnail-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}
.collection-thumbnails .collection-thumbnail-image:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.collection-modal {
  position: fixed;
  inset: 0;
  z-index: -10;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 350ms cubic-bezier(0.23, 1, 0.32, 1), visibility 0ms 350ms, z-index 0ms 350ms;
}
.collection-modal.show {
  transition: opacity 350ms 200ms cubic-bezier(0.23, 1, 0.32, 1), visibility 0ms 0ms, z-index 0ms 0ms;
  opacity: 1;
  z-index: 500;
  visibility: visible;
  pointer-events: auto;
}

.collection-modal-close {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-bottom: 6px;
  padding: 4px;
  text-transform: uppercase;
  transition: color 250ms ease-in-out;
}
.collection-modal-close:hover {
  color: #a28251;
}
.collection-modal-close:focus-visible {
  outline: none;
}

.collection-modal-image-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 250ms ease-in-out, transform 250ms ease-in-out;
}
.collection-modal-image-button:hover {
  background-color: #c2d5f7;
}
.collection-modal-image-button:focus-visible {
  outline: none;
}
.collection-modal-image-button:active {
  transform: scale(0.9);
}
.collection-modal-image-button img {
  width: 100%;
  height: 100%;
}
.collection-modal-image-button:disabled {
  opacity: 0.25;
  pointer-events: none;
  cursor: auto;
}
.collection-modal-image-button:disabled:hover, .collection-modal-image-button:disabled:active {
  background-color: transparent;
}

.collection-modal-image-button--next {
  transform: rotate(180deg);
}
.collection-modal-image-button--next:active {
  transform: rotate(180deg) scale(0.9);
}

.collection-modal-content {
  width: 90%;
  max-width: 80vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 510;
  background-color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  padding: clamp(8px, 1.5625vw, 12px) 8px clamp(16px, 3.125vw, 24px);
}

.collection-modal-image {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.collection-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 505;
}

.collection-content {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4.1666666667vw, 32px);
}
.collection-content h1 {
  color: #636363;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.7px;
}

.collection-info-buttons {
  position: relative;
  display: none;
  gap: 2px;
  align-items: stretch;
  z-index: 10;
  transform: translateY(1px);
}
@media (min-width: 1000px) {
  .collection-info-buttons {
    display: flex;
  }
}
.collection-info-buttons button {
  --button-gradient-color-1: #767676;
  --button-gradient-color-2: #414141;
  padding: 2px 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border: 1px solid #636363;
  border-bottom: none;
  background-image: linear-gradient(180deg, var(--button-gradient-color-1) 0%, var(--button-gradient-color-2) 100%);
  color: #fff;
  transition: --button-gradient-color-1 250ms ease-in-out, --button-gradient-color-2 250ms ease-in-out, color 250ms ease-in-out, border-color 250ms ease-in-out;
}
.collection-info-buttons button.active {
  color: #191919;
  --button-gradient-color-1: #fff;
  --button-gradient-color-2: #fff;
  border-color: #e9e9e9;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .collection-info-buttons button:hover {
    --button-gradient-color-1: #afafaf;
    --button-gradient-color-2: #636363;
  }
}

.collection-info-button--mobile {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  padding: 4px 12px 2px;
  border-bottom: 1px solid #e9e9e9;
  background: #f3f3f3;
}
@media (min-width: 1000px) {
  .collection-info-button--mobile {
    display: none;
  }
}
.collection-info-button--mobile span {
  text-align: left;
  color: #191919;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1px;
}
.collection-info-button--mobile img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  transform-origin: center;
  transition: transform 250ms ease-in-out;
}
.collection-info-button--mobile.active img {
  transform: rotate(180deg);
}

.collection-info-tab {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 350ms ease;
}
@media (min-width: 1000px) {
  .collection-info-tab {
    display: none;
    transition: none;
    grid-template-rows: 1fr;
  }
}
.collection-info-tab.active {
  grid-template-rows: 1fr;
}
@media (min-width: 1000px) {
  .collection-info-tab.active {
    display: block;
    grid-template-rows: 1fr;
  }
}
.collection-info-tab .collection-info-tab-wrapper {
  overflow: hidden;
  padding: 0 12px;
  border: 1px solid #e9e9e9;
  border-top: none;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3.125vw, 24px);
}
.collection-info-tab .collection-info-tab-wrapper.collection-info-tab-wrapper--technical {
  gap: 1px;
}
@media (min-width: 1000px) {
  .collection-info-tab .collection-info-tab-wrapper {
    border-top: 1px solid #e9e9e9;
  }
}
.collection-info-tab .collection-info-tab-wrapper > *:first-child {
  padding-top: clamp(24px, 3.6458333333vw, 28px);
}
.collection-info-tab .collection-info-tab-wrapper > *:last-child {
  padding-bottom: clamp(24px, 4.1666666667vw, 32px);
}
.collection-info-tab .collection-info-tab-wrapper h3,
.collection-info-tab .collection-info-tab-wrapper h4 {
  color: #636363;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.7px;
}

.technical-list {
  list-style: disc;
  display: flex;
  flex-direction: column;
  padding-left: 28px;
}

.collection-info-list h4 {
  margin-bottom: 16px;
}
.collection-info-list ul {
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 16px;
}/*# sourceMappingURL=collection.css.map */