:root {
  --navbar-height: 82px;
  --page-x: clamp(20px, 3.5vw, 64px);
  --transition: 260ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #fff;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}


body.no-hero {
  padding-top: var(--navbar-height);
}


.navbar {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 0 var(--page-x);
  justify-items: center;
  color: #fff;
  background: transparent;
  transition:
    background-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}


.navbar.is-scrolled {
  position: fixed;
  top: 0;
  color: #111;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar__side {
  display: flex;
  align-items: center;
}

.navbar__button {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: none;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.navbar__button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.navbar__logo {
  display: block;
  line-height: 0;
}

.navbar__logo img {
  display: block;
  width: clamp(125px, 10vw, 170px);
  height: auto;
  max-height: 42px;
  transition: filter var(--transition);
}


.navbar:not(.is-scrolled) .navbar__logo img {
  filter: brightness(0) invert(1);
}


.hero {
  position: relative;
  overflow: hidden;
  background: #111;
}

.hero__viewport {
  overflow: hidden;
}

.hero__track {
  display: flex;
  transition: transform 600ms cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
  touch-action: pan-y;
}

.hero__slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
  height: min(50vw, 1000px);
  min-height: 520px;
  overflow: hidden;
}

.hero__picture,
.hero__image {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}


.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, .22) 0,
    rgba(0, 0, 0, .05) 30%,
    rgba(0, 0, 0, 0) 55%
  );
}

.hero__arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #151515;
  background: rgba(255, 255, 255, .48);
  display: grid;
  place-items: center;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 180ms ease, transform 180ms ease;
}

.hero__arrow:hover {
  background: rgba(255, 255, 255, .72);
  transform: translateY(-50%) scale(1.04);
}

.hero__arrow--prev {
  left: 28px;
}

.hero__arrow--next {
  right: 28px;
}

.hero__arrow svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.where-buy {
  --where-buy-gap: clamp(28px, 3vw, 44px);
  scroll-margin-top: var(--navbar-height);
  padding: var(--where-buy-gap) var(--page-x);
  color: #111;
  background: #fff;
}

.where-buy__inner {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.where-buy__heading {
  margin: 0 0 var(--where-buy-gap);
  text-align: center;
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -.04em;
}

.shops {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.shop-link {
  min-width: 0;
  padding: 26px 14px;
  color: #111;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid #e7e7e7;
  background: #fff;
  transition: background-color 180ms ease;
}

.shop-link:hover {
  background: #f7f7f7;
}

.shop-link:focus-visible {
  outline: 1px solid #111;
  outline-offset: -1px;
}

.shop-link__icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}

.shop-link__icon img,
.shop-link__icon svg {
  display: block;
  width: 48px;
  height: 48px;
}

.shop-link__yv {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #111;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.04em;
}

.shop-link__content {
  min-width: 0;
}

.shop-link__title {
  margin: 0 0 5px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
}

.shop-link__text {
  margin: 0;
  color: #666;
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 991.98px) {
  .shops {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  :root {
    --navbar-height: 66px;
    --page-x: 18px;
  }

  .navbar__logo img {
    width: 116px;
  }

  .hero__slide {
    height: 125vw;
    min-height: 520px;
    max-height: 760px;
  }

  .hero__arrow {
    width: 46px;
    height: 46px;
  }

  .hero__arrow--prev {
    left: 14px;
  }

  .hero__arrow--next {
    right: 14px;
  }
}

@media (max-width: 575.98px) {

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

  .shop-link,
  .shop-link:nth-child(2) {
    padding: 24px 0;
    border: 1px solid #e7e7e7;
    padding-left: 12px;
    padding-right: 12px;
  }

  .shop-link:hover {
    background: transparent;
  }
}



.site-footer {
  padding: clamp(48px, 6vw, 84px) var(--page-x) 28px;
  color: #fff;
  background: #111;
}

.site-footer__inner {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.site-footer__contact-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  margin-bottom: clamp(52px, 7vw, 84px);
  padding: clamp(24px, 3vw, 38px) 0;
  border-top: 1px solid #2d2d2d;
  border-bottom: 1px solid #2d2d2d;
  color: #fff;
  text-decoration: none;
}

.site-footer__contact-banner-text {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.site-footer__contact-banner-label {
  color: #8f8f8f;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer__contact-banner-title {
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -.02em;
}

.site-footer__contact-banner-email {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.3;
  white-space: nowrap;
}

.site-footer__contact-banner-email-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer__copy-email {
  display: inline-flex;
  width: 28px;
  height: 28px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #8f8f8f;
  background: none;
  cursor: pointer;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-footer__copy-email svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__check-icon {
  display: none;
}

.site-footer__copy-email.is-copied .site-footer__copy-icon {
  display: none;
}

.site-footer__copy-email.is-copied .site-footer__check-icon {
  display: block;
}

.site-footer__copy-email:hover {
  color: #fff;
}

.site-footer__copy-email.is-copied {
  color: #fff;
  opacity: .65;
}

.site-footer__contact-banner-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 180ms ease;
}

.site-footer__contact-banner-arrow svg {
  display: block;
  width: 22px;
  height: 22px;
}

.site-footer__contact-banner:hover .site-footer__contact-banner-arrow {
  transform: translate(4px, -4px);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(180px, 1.15fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  padding-bottom: clamp(48px, 6vw, 78px);
}

.site-footer__logo {
  display: inline-block;
  line-height: 0;
}

.site-footer__logo img {
  display: block;
  width: clamp(105px, 9vw, 140px);
  height: auto;
  filter: brightness(0) invert(1);
}

.site-footer__title {
  margin: 0 0 18px;
  color: #8f8f8f;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.site-footer__link,
.site-footer__contact-button {
  padding: 0;
  border: 0;
  color: #fff;
  background: none;
  font: inherit;
  font-size: 15px;
  line-height: 1.4;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 180ms ease;
}

.site-footer__link:hover,
.site-footer__contact-button:hover {
  opacity: .55;
}

.site-footer__bottom {
  padding-top: 24px;
  border-top: 1px solid #2d2d2d;
  color: #999;
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .site-footer__top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .site-footer {
    padding-top: 44px;
  }

  .site-footer__contact-banner {
    grid-template-columns: 1fr auto;
    gap: 20px;
    margin-bottom: 46px;
    padding: 24px 0;
  }

  .site-footer__contact-banner-email-wrap {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-wrap: wrap;
  }

  .site-footer__contact-banner-arrow {
    grid-column: 2;
    grid-row: 1;
  }

.site-footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 44px;
  }

  .site-footer__logo img {
    width: 112px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__track,
  .navbar,
  .navbar__logo img {
    transition: none;
  }
}


.wholesale-banner { padding: 0 var(--page-x) clamp(32px, 4vw, 52px); background:#fff; }
.wholesale-banner__inner {
  width:min(1320px,100%); margin:0 auto; padding:clamp(34px,5vw,62px);
  display:flex; align-items:center; justify-content:space-between; gap:36px;
  background:#dfff55; color:#111;
}
.wholesale-banner__content { max-width:760px; }
.wholesale-banner__label { margin:0 0 14px; font-size:12px; font-weight:600; letter-spacing:.09em; text-transform:uppercase; }
.wholesale-banner__title { margin:0; font-size:clamp(30px,4vw,56px); line-height:1.04; font-weight:400; letter-spacing:-.04em; }
.wholesale-banner__text { max-width:650px; margin:18px 0 0; font-size:15px; line-height:1.6; }
.wholesale-banner__button {
  flex:0 0 auto; padding:17px 25px; border:1px solid #111; color:#111;
  background:transparent; text-decoration:none; font-size:14px; transition:.18s ease;
}
.wholesale-banner__button:hover { background:#111; color:#fff; }


.contact-modal {
  width:min(620px, calc(100% - 40px)); max-height:calc(100vh - 40px); max-height:calc(100dvh - 40px);
  margin:auto; padding:0; border:0; overflow-y:auto; color:#111; background:#fff;
}
.contact-modal:focus { outline:none; }
.contact-modal::backdrop { background:rgba(0,0,0,.62); }
.contact-modal__body { position:relative; padding:clamp(30px,4vw,48px); }
.contact-modal__close { position:absolute; top:14px; right:18px; padding:0; border:0; background:none; font-size:34px; cursor:pointer; }
.contact-modal__title { margin:0 45px 34px 0; font-size:clamp(28px,4vw,42px); line-height:1.08; font-weight:400; }
.contact-modal__section + .contact-modal__section { margin-top:30px; padding-top:26px; border-top:1px solid #e5e5e5; }
.contact-modal__heading { margin:0 0 14px; color:#666; font-size:11px; letter-spacing:.09em; text-transform:uppercase; }
.contact-modal__line { margin:7px 0; font-size:14px; line-height:1.55; }
.contact-modal__line a { color:inherit; }
.site-footer__contact-button { padding:0; border:0; color:#fff; background:none; font:inherit; cursor:pointer; text-align:left; }
.site-footer__contact-button:hover { opacity:.55; }
body.modal-open { overflow:hidden; }

@media (max-width:767.98px) {
  .wholesale-banner__inner { padding:32px 24px; flex-direction:column; align-items:stretch; gap:28px; }
  .wholesale-banner__button { text-align:center; }
}



.hero__content {
  position: absolute;
  z-index: 4;
  left: var(--page-x);
  bottom: clamp(42px, 6vw, 92px);
  color: #fff;
  pointer-events: none;
}

.hero__title {
  margin: 0;
  font-size: clamp(48px, 5vw, 82px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.hero__cta {
  display: inline-block;
  margin-top: 28px;
  padding: 16px 28px;
  border: 1px solid #fff;
  color: #111;
  background: #fff;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  pointer-events: auto;
  transition: color 180ms ease, background-color 180ms ease;
}

.hero__cta:hover {
  color: #fff;
  background: transparent;
}

.hero__cta:focus-visible {
  outline-color: #fff;
}

.hero__subtitle {
  margin: 20px 0 0;
  font-size: clamp(18px, 1.7vw, 28px);
  line-height: 1.25;
  font-weight: 400;
}

@media (max-width: 767.98px) {
  .hero__content {
    left: var(--page-x);
    right: var(--page-x);
    bottom: 34px;
  }
  .hero__title { font-size: clamp(38px, 11vw, 54px); }
  .hero__subtitle { margin-top: 12px; font-size: 17px; }
  .hero__cta { margin-top: 22px; padding: 15px 24px; }
}




.hero__slide::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48%;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, .38) 0%,
    rgba(0, 0, 0, .22) 32%,
    rgba(0, 0, 0, .08) 62%,
    rgba(0, 0, 0, 0) 100%
  );
}

@media (max-width: 767.98px) {
  .hero__slide::before {
    height: 44%;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, .42) 0%,
      rgba(0, 0, 0, .22) 42%,
      rgba(0, 0, 0, 0) 100%
    );
  }
}



.cookie-notice {
  position: fixed;
  z-index: 1000;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px var(--page-x);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #111;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 -1px 0 rgba(0, 0, 0, .08), 0 -8px 30px rgba(0, 0, 0, .08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cookie-notice.is-visible {
  display: flex;
}

.cookie-notice__text {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #555;
}

.cookie-notice__text strong {
  color: #111;
  font-weight: 500;
}

.cookie-notice__button {
  flex: 0 0 auto;
  padding: 10px 15px;
  border: 1px solid #111;
  color: #fff;
  background: #111;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

@media (max-width: 575.98px) {
  .cookie-notice {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    padding: 10px 12px;
    gap: 12px;
    justify-content: space-between;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
  }

  .cookie-notice__text {
    font-size: 11px;
    line-height: 1.4;
  }

  .cookie-notice__button {
    min-height: 40px;
    padding: 0 14px;
  }
}



.brand-facts {
  padding: clamp(54px, 6vw, 88px) var(--page-x);
  color: #111;
  background: #f5f5f3;
  margin-bottom: clamp(32px, 4vw, 52px);
}

.brand-facts__inner {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.brand-facts__title {
  margin: 0 0 clamp(42px, 5vw, 68px);
  text-align: center;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -.04em;
}

.brand-facts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #d9d9d5;
  border-bottom: 1px solid #d9d9d5;
}

.brand-fact {
  min-height: 180px;
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #d9d9d5;
}

.brand-fact:last-child {
  border-right: 0;
}

.brand-fact__value {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 68px);
  line-height: .95;
  font-weight: 300;
  letter-spacing: -.045em;
}

.brand-fact__label {
  margin: 28px 0 0;
  color: #666;
  font-size: 13px;
  line-height: 1.45;
}

.brand-fact--russia .brand-fact__value {
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1;
}

@media (max-width: 767.98px) {
  .brand-facts {
    padding-top: 48px;
    padding-bottom: 48px;
  }

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

  .brand-fact {
    min-height: 150px;
    padding: 26px 18px;
  }

  .brand-fact:nth-child(2) {
    border-right: 0;
  }

  .brand-fact:nth-child(-n + 2) {
    border-bottom: 1px solid #d9d9d5;
  }

  .brand-fact:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .brand-fact {
    min-height: 138px;
    padding: 22px 14px;
  }

  .brand-fact__value {
    font-size: 36px;
  }

  .brand-fact--russia .brand-fact__value {
    font-size: 27px;
  }
}



.social-blocks {
  padding: 0 var(--page-x) clamp(32px, 4vw, 52px);
  background: #fff;
}

.social-blocks__inner {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.social-block {
  aspect-ratio: 1 / 1;
  padding: clamp(28px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #111;
  background: #f3f3f1;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
}

.social-block:hover {
  color: #fff;
  background: #111;
}

.social-block__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.social-block__name {
  font-size: 13px;
  font-weight: 500;
}

.social-block__arrow {
  font-size: 25px;
  line-height: 1;
  font-weight: 300;
}

.social-block__title {
  max-width: 560px;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: .98;
  font-weight: 300;
  letter-spacing: -.045em;
}

@media (max-width: 767.98px) {
  .social-blocks__inner {
    grid-template-columns: 1fr;
  }

  .social-block {
    aspect-ratio: 1 / .72;
    padding: 26px 22px;
  }

  .social-block__title {
    font-size: clamp(34px, 10vw, 48px);
  }
}



.social-block--vk {
  color: #fff;
  background: #0077ff;
}

.social-block--telegram {
  color: #fff;
  background: #229ed9;
}

.social-block--vk:hover {
  color: #fff;
  background: #0069e0;
}

.social-block--telegram:hover {
  color: #fff;
  background: #168bc3;
}

.social-block__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-block__icon {
  width: clamp(42px, 4vw, 58px);
  height: clamp(42px, 4vw, 58px);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.social-block__icon svg {
  width: 62%;
  height: 62%;
  display: block;
  fill: currentColor;
}

.social-block--vk .social-block__icon svg {
  width: 58%;
  height: 58%;
  transform: translateX(-1px);
}

.social-block__name {
  color: rgba(255,255,255,.86);
}

.social-block__arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  transition: transform .2s ease, background-color .2s ease;
}

.social-block:hover .social-block__arrow {
  transform: translate(3px, -3px);
  background: rgba(255,255,255,.12);
}

.social-block::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -22%;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  pointer-events: none;
}

.social-block {
  position: relative;
  overflow: hidden;
}

.social-block__top,
.social-block__title {
  position: relative;
  z-index: 1;
}





.shops {
  gap: 14px;
}

.shop-link {
  position: relative;
  min-height: 230px;
  padding: 28px;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 36px;
  overflow: hidden;
  border: 0;
  background: #f3f3f1;
  transition: transform 180ms ease, background-color 180ms ease;
}

.shop-link:hover {
  background: #ededeb;
  transform: translateY(-3px);
}

.shop-link::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 28px;
  right: 28px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #d7d7d3;
  border-radius: 50%;
  font-size: 19px;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease;
}

.shop-link:hover::after {
  transform: translate(2px, -2px);
  border-color: #aaa;
}

.shop-link__icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
}

.shop-link__icon img,
.shop-link__icon svg {
  width: 54px;
  height: 54px;
}

.shop-link__yv {
  width: 54px;
  height: 54px;
  font-size: 23px;
  border: 1px solid #d9d9d5;
}

.shop-link__content {
  padding-right: 10px;
}

.shop-link__title {
  margin: 0 0 8px;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -.025em;
}

.shop-link__text {
  max-width: 230px;
  font-size: 12px;
  line-height: 1.45;
  color: #666;
}

@media (max-width: 575.98px) {
  .shop-link,
  .shop-link:nth-child(2) {
    min-height: 190px;
    padding: 22px;
    border: 0;
  }

  .shop-link:hover {
    background: #f3f3f1;
    transform: none;
  }

  .shop-link::after {
    top: 22px;
    right: 22px;
  }
}



.about-brand {
  padding: clamp(58px, 7vw, 104px) var(--page-x);
  background: #111;
  color: #fff;
}

.about-brand__inner {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 9vw, 150px);
  align-items: start;
}

.about-brand__eyebrow {
  margin: 4px 0 0;
  color: #777;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-brand__content {
  max-width: 850px;
}

.about-brand__title {
  margin: 0;
  font-size: clamp(42px, 5.7vw, 82px);
  line-height: .98;
  font-weight: 300;
  letter-spacing: -.05em;
}

.about-brand__text {
  max-width: 680px;
  margin: clamp(32px, 4vw, 54px) 0 0 auto;
  color: #aaa;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.6;
}

.about-brand__text strong {
  color: #fff;
  font-weight: 400;
}

.about-brand__meta {
  margin-top: clamp(44px, 6vw, 76px);
  padding-top: 20px;
  border-top: 1px solid #303030;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #777;
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 767.98px) {
  .about-brand {
    padding-top: 52px;
    padding-bottom: 58px;
  }

  .about-brand__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-brand__text {
    margin-left: 0;
  }

  .about-brand__meta {
    flex-direction: column;
    gap: 8px;
  }
}



.about-brand__inner {
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1.18fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: stretch;
}

.about-brand__story {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-brand__content {
  max-width: none;
}

.about-brand__visual {
  position: relative;
  min-height: clamp(480px, 48vw, 680px);
  overflow: hidden;
  background: #1b1b1b;
}

.about-brand__visual img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
}

.about-brand__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.18), transparent 38%);
}

.about-brand__visual-label {
  position: absolute;
  z-index: 1;
  left: 24px;
  bottom: 22px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .about-brand__inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-brand__visual {
    min-height: 0;
    aspect-ratio: 4 / 5;
    order: 2;
  }
}



.about-brand {
  padding-top: 0;
  padding-bottom: 0;
}

.about-brand__inner {
  align-items: stretch;
}

.about-brand__story {
  padding-top: clamp(58px, 7vw, 104px);
  padding-bottom: clamp(58px, 7vw, 104px);
}

.about-brand__visual {
  align-self: stretch;
  height: auto;
  min-height: 100%;
}

@media (max-width: 767.98px) {
  .about-brand {
    padding-bottom: 0;
  }

  .about-brand__story {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .about-brand__visual {
    margin-bottom: 0;
  }
}



.collections-showcase {
  padding: clamp(58px, 7vw, 96px) var(--page-x);
  color: #111;
  background: #fff;
}

.collections-showcase__inner {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.collections-showcase__head {
  margin-bottom: clamp(30px, 4vw, 48px);
}

.collections-showcase__all { color:#111; text-decoration:none; font-size:14px; border-bottom:1px solid #111; padding-bottom:2px; }

.collections-showcase__footer {
  margin-top: 28px;
}

.collections-showcase__title {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -.045em;
}

.collections-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.collection-card {
  display: block;
  min-width: 0;
  color: #111;
  text-decoration: none;
}

.collection-card__image {
  position: relative;
  overflow: hidden;
  background: #f1f1ef;
}

.collection-card__image picture,
.collection-card__image img {
  display: block;
  width: 100%;
}

.collection-card__image img {
  height: auto;
  object-fit: contain;
  transition: transform .55s cubic-bezier(.2,.65,.3,1);
}

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

.collection-card__title {
  margin: 14px 0 0;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -.02em;
}

@media (max-width: 991.98px) {
  .collections-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .collections-showcase {
    padding-left: 0;
    padding-right: 0;
  }

  .collections-showcase__head {
    padding: 0 var(--page-x);
  }

  .collections-showcase__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0;
  }

  .collection-card {
    width: 100%;
  }

  .collection-card__image {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .collection-card__image picture,
  .collection-card__image img {
    width: 100%;
    height: 100%;
  }

  .collection-card__image img {
    object-fit: contain;
  }

  .collection-card__title {
    padding: 0 var(--page-x);
  }

  .collections-showcase__footer {
    margin-top: 34px;
    padding: 0 var(--page-x);
  }
}


.lookbook {
  padding: clamp(20px, 3vw, 40px) var(--page-x) clamp(58px, 7vw, 96px);
  background: #fff;
  color: #111;
}

.lookbook__inner {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.lookbook__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: clamp(30px, 4vw, 48px);
}

.lookbook__eyebrow {
  margin: 0 0 10px;
  color: #888;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.lookbook__title {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -.045em;
}

.lookbook__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.lookbook__swipe-hint {
  display: none;
}

.lookbook__item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f1f1ef;
}

.lookbook__item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .55s cubic-bezier(.2,.65,.3,1);
}

.lookbook__item:hover img {
  transform: scale(1.025);
}

@media (max-width: 991.98px) {
  .lookbook__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .lookbook {
    padding-left: 0;
    padding-right: 0;
  }

  .lookbook__head {
    margin-bottom: 14px;
    padding: 0 var(--page-x);
  }

  .lookbook__swipe-hint {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 0 var(--page-x);
    color: #777;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .02em;
  }

  .lookbook__swipe-hint svg {
    width: 34px;
    height: 16px;
  }

  .lookbook__grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 0 8px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    scrollbar-width: none;
  }

  .lookbook__grid::-webkit-scrollbar {
    display: none;
  }

  .lookbook__item {
    flex: 0 0 78vw;
    scroll-snap-align: start;
  }
}



a:focus-visible,
button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}



.social-block--vk,
.social-block--telegram {
  color: #111;
  background: #f3f3f1;
}

.social-block--vk:hover,
.social-block--telegram:hover {
  color: #fff;
  background: #111;
}

.social-block__name {
  color: #666;
}

.social-block__icon {
  border-color: #d8d8d4;
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.social-block__arrow {
  border-color: #c9c9c5;
}

.social-block::after {
  border-color: rgba(17,17,17,.08);
}

.social-block:hover .social-block__name {
  color: rgba(255,255,255,.72);
}

.social-block:hover .social-block__icon {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
}

.social-block:hover .social-block__arrow {
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
}

.social-block:hover::after {
  border-color: rgba(255,255,255,.12);
}

.wholesale-banner__inner {
  background: #111;
  color: #fff;
}

.wholesale-banner__label {
  color: #888;
}

.wholesale-banner__text {
  color: #aaa;
}

.wholesale-banner__button {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.wholesale-banner__button:hover {
  color: #111;
  background: #fff;
}



.social-block--vk,
.social-block--telegram {
  transition: transform .25s ease, box-shadow .25s ease;
}

.social-block--vk:hover,
.social-block--telegram:hover {
  color: #111;
  background: #f3f3f1;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

.social-block:hover .social-block__name {
  color: #666;
}

.social-block:hover .social-block__icon {
  border-color: #d8d8d4;
  background: #fff;
}

.social-block:hover .social-block__arrow {
  border-color: #c9c9c5;
  background: transparent;
}

.social-block:hover::after {
  border-color: rgba(17,17,17,.08);
}



.hero__arrow svg,
.shop-card__arrow svg,
.social-block__arrow svg,
.purchase-card__arrow svg {
  display: block;
  flex: 0 0 auto;
  pointer-events: none;
}

.hero__arrow svg {
  width: 22px;
  height: 22px;
}

.shop-card__arrow svg,
.social-block__arrow svg,
.purchase-card__arrow svg {
  width: 20px;
  height: 20px;
}



.buy-card__arrow,
.shop-card__arrow,
.purchase-card__arrow,
.where-buy__arrow {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.buy-card__arrow svg,
.shop-card__arrow svg,
.purchase-card__arrow svg,
.where-buy__arrow svg {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  overflow: visible;
  color: inherit;
  opacity: 1;
}

.buy-card__arrow svg path,
.shop-card__arrow svg path,
.purchase-card__arrow svg path,
.where-buy__arrow svg path {
  stroke: currentColor !important;
}


.purchase-methods a svg,
.shops a svg,
.where-buy a svg {
  display: block;
  flex: 0 0 auto;
}



.shop-link::after {
  display: none !important;
  content: none !important;
}

.shop-link__arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid #d7d7d3;
  border-radius: 50%;
  color: currentColor;
  transition: transform 180ms ease, border-color 180ms ease;
  z-index: 2;
}

.shop-link__arrow svg {
  display: block;
  width: 19px;
  height: 19px;
  overflow: visible;
}

.shop-link__arrow path {
  stroke: currentColor;
}

.shop-link:hover .shop-link__arrow {
  transform: translate(2px, -2px);
  border-color: #aaa;
}

/* Collection archive and collection detail pages */
.collection-page { min-height:100vh; display:flex; flex-direction:column; color:#111; background:#fff; }
.collection-page main { flex:1 0 auto; }
.collection-page .nav, .error-page .nav { height:78px; display:flex; align-items:center; justify-content:space-between; padding:0 clamp(24px,4vw,64px); border-bottom:1px solid #eee; background:#fff; }
.collection-page .nav img, .error-page .nav img { width:132px; height:auto; }
.collection-page .nav a, .error-page .nav a { color:#111; text-decoration:none; }
.collection-page .nav__links { display:flex; gap:24px; align-items:center; }
.collection-page .page { padding:0 clamp(24px,4vw,64px) 70px; }
.collection-page .hero { margin:28px 0 46px; }
.collection-page .hero picture, .collection-page .hero img { display:block; width:100%; }
.collection-page .hero img { height:auto; object-fit:contain; }
.collection-page .title { font-size:clamp(38px,5vw,72px); font-weight:400; line-height:1.02; margin:0 0 32px; }
.collection-page .grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:38px 16px; }
.collection-page .product img { display:block; width:100%; aspect-ratio:3/4; object-fit:cover; background:#f5f5f5; }
.collection-page .product h2 { font-size:17px; line-height:1.35; margin:14px 0 12px; font-weight:500; }
.collection-page .buy { display:flex; flex-wrap:wrap; gap:7px; }
.collection-page .buy a { display:inline-flex; align-items:center; min-height:36px; padding:8px 11px; border:1px solid #111; color:#111; text-decoration:none; font-size:13px; }
.collection-page .buy a:hover { background:#111; color:#fff; }
.collection-page .empty { padding:80px 0; color:#777; }
.collection-page .archive { padding:64px clamp(24px,4vw,64px) 80px; }
.collection-page .archive__head { margin-bottom:42px; }
.collection-page .archive__title { font-size:clamp(42px,5vw,72px); font-weight:400; line-height:1; margin:0; }
.collection-page .archive__grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:42px 18px; }
.collection-page .archive-card { display:block; color:#111; text-decoration:none; }
.collection-page .archive-card__image { overflow:hidden; background:#f4f4f4; }
.collection-page .archive-card__image picture,
.collection-page .archive-card__image img { display:block; width:100%; }
.collection-page .archive-card__image img { height:auto; object-fit:contain; transition:transform .35s ease; }
.collection-page .archive-card:hover .archive-card__image img { transform:scale(1.02); }
.collection-page .archive-card__title { font-size:20px; font-weight:400; margin:14px 0 0; }

/* Error pages */
.error-page { min-height:100vh; display:flex; flex-direction:column; color:#111; background:#fff; }
.error-page main { flex:1 0 auto; display:flex; align-items:center; }
.error-page .error { width:100%; padding:80px clamp(24px,4vw,64px); }
.error-page .error-code { margin:0 0 14px; color:#777; font-size:14px; font-weight:600; letter-spacing:.08em; }
.error-page .error h1 { font-size:clamp(38px,5vw,64px); font-weight:400; line-height:1.05; margin:0 0 20px; }
.error-page .error p { max-width:620px; margin:0 0 30px; color:#666; font-size:17px; line-height:1.55; }
.error-page .error .button { display:inline-flex; align-items:center; justify-content:center; min-height:44px; padding:10px 16px; border:1px solid #111; color:#111; text-decoration:none; font-size:14px; }
.error-page .error .button:hover { background:#111; color:#fff; }

@media (max-width:900px) {
  .collection-page .grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .collection-page .archive__grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:560px) {
  .collection-page .nav, .error-page .nav { height:64px; padding-left:16px; padding-right:16px; }
  .collection-page .nav img, .error-page .nav img { width:110px; }
  .collection-page .nav__links { gap:14px; font-size:14px; }
  .collection-page .page, .collection-page .archive { padding-left:16px; padding-right:16px; }
  .collection-page .archive { padding-top:42px; }
  .collection-page .hero { margin:16px 0 30px; }
  .collection-page .title { font-size:38px; }
  .collection-page .grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:28px 8px; }
  .collection-page .product h2 { font-size:14px; }
  .collection-page .buy { display:grid; }
  .collection-page .buy a { font-size:12px; padding:7px 8px; }
  .collection-page .archive__grid { grid-template-columns:1fr; gap:32px; }
  .collection-page .archive-card__title { font-size:18px; }
  .error-page .error { padding:60px 16px; }
  .error-page .error p { font-size:16px; }
}

/* Footer QR */
.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
}

.site-footer__qr {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 310px;
}

.site-footer__qr-code {
  flex: 0 0 112px;
  width: 112px;
  height: 112px;
  padding: 8px;
  background: #fff;
}

.site-footer__qr-code img {
  display: block;
  width: 100%;
  height: 100%;
}

.site-footer__qr-text {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.site-footer__qr-title {
  color: #fff;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
}

.site-footer__qr-description {
  color: #8f8f8f;
  font-size: 11px;
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  .site-footer__brand {
    gap: 0;
  }

  .site-footer__qr {
    display: none;
  }
}

/* Wholesale modal */
.wholesale-modal {
  width: min(860px, calc(100% - 40px));
  max-height: calc(100dvh - 40px);
  margin: auto;
  padding: 0;
  border: 0;
  overflow-y: auto;
  color: #111;
  background: #fff;
}
.wholesale-modal:focus { outline: none; }
.wholesale-modal::backdrop { background: rgba(0,0,0,.62); }
.wholesale-modal__body { position: relative; padding: clamp(30px, 5vw, 56px); }
.wholesale-modal__close { position: absolute; top: 14px; right: 18px; padding: 0; border: 0; color: #111; background: none; font-size: 34px; line-height: 1; cursor: pointer; }
.wholesale-modal__eyebrow { margin: 0 44px 14px 0; color: #777; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.wholesale-modal__title { max-width: 650px; margin: 0; font-size: clamp(32px, 4vw, 50px); line-height: 1.02; font-weight: 400; letter-spacing: -.04em; }
.wholesale-modal__intro { max-width: 690px; margin: 24px 0 34px; color: #666; font-size: 15px; line-height: 1.6; }
.wholesale-modal__benefits { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); border-top: 1px solid #e3e3e0; border-left: 1px solid #e3e3e0; }
.wholesale-modal__benefit { min-height: 150px; padding: 24px; border-right: 1px solid #e3e3e0; border-bottom: 1px solid #e3e3e0; }
.wholesale-modal__benefit--wide { grid-column: 1 / -1; min-height: 0; }
.wholesale-modal__benefit h3, .wholesale-modal__contact h3 { margin: 0 0 10px; font-size: 17px; line-height: 1.3; font-weight: 500; }
.wholesale-modal__benefit p, .wholesale-modal__contact p { margin: 0; color: #666; font-size: 13px; line-height: 1.55; }
.wholesale-modal__contact { margin-top: 34px; padding-top: 28px; border-top: 1px solid #e3e3e0; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 28px; align-items: end; }
.wholesale-modal__contact > div { max-width: 520px; }
.wholesale-modal__email { display: inline-flex; min-height: 46px; padding: 0 18px; align-items: center; justify-content: center; border: 1px solid #111; color: #fff; background: #111; text-decoration: none; font-size: 14px; white-space: nowrap; transition: color .18s ease, background-color .18s ease; }
.wholesale-modal__email:hover { color: #111; background: #fff; }
.wholesale-banner__button { cursor: pointer; font: inherit; }
@media (max-width: 575.98px) {
  .wholesale-modal { width: calc(100% - 24px); max-height: calc(100dvh - 24px); }
  .wholesale-modal__body { padding: 30px 22px; }
  .wholesale-modal__benefits { grid-template-columns: 1fr; }
  .wholesale-modal__benefit--wide { grid-column: auto; }
  .wholesale-modal__benefit { min-height: 0; padding: 20px; }
  .wholesale-modal__contact { grid-template-columns: 1fr; gap: 20px; }
  .wholesale-modal__email { width: 100%; }
}


/* Collection detail: full-width banner on all screen sizes */
.collection-page .page {
  padding-left: 0;
  padding-right: 0;
}

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

.collection-page .page > .title,
.collection-page .page > .grid,
.collection-page .page > .empty {
  margin-left: clamp(24px, 4vw, 64px);
  margin-right: clamp(24px, 4vw, 64px);
}

@media (max-width: 575.98px) {
  .collection-page .page > .title,
  .collection-page .page > .grid,
  .collection-page .page > .empty {
    margin-left: var(--page-x);
    margin-right: var(--page-x);
  }
}


/* Collection archive: edge-to-edge images on mobile */
@media (max-width: 575.98px) {
  .collection-page .archive {
    padding-left: 0;
    padding-right: 0;
  }

  .collection-page .archive__head {
    padding-left: var(--page-x);
    padding-right: var(--page-x);
  }

  .collection-page .archive-card__image {
    width: 100%;
  }

  .collection-page .archive-card__title {
    padding-left: var(--page-x);
    padding-right: var(--page-x);
  }
}
