@charset "UTF-8";
:root {
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --ink-mute: #8a8a8a;
  --line: #e5e5e5;
  --line-soft: #f1f1f1;
  --paper: #ffffff;
  --paper-warm: #fafaf8;
  --accent: #1a1a1a;
  --font-sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --container: 1400px;
  --gutter: 80px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0.02em;
}

body.is-locked {
  overflow: hidden;
  padding-right: var(--scrollbar-gutter, 0px);
}

body.is-locked .site-header.is-scrolled {
  padding-right: var(--scrollbar-gutter, 0px);
}

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

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

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  color: inherit;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

input, select, textarea, button {
  font-family: inherit;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
}

.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  padding: 8px 16px;
  background: #fff;
}
.skip-link:focus {
  top: 0;
}

.display-h1,
.display-h2,
.display-h3 {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--ink);
  margin: 0;
  letter-spacing: 0;
}
.display-h1 em,
.display-h2 em,
.display-h3 em {
  font-style: italic;
  font-weight: 300;
}

.display-h1 {
  font-size: 64px;
  line-height: 1.05;
}

.display-h2 {
  font-size: 36px;
  line-height: 1.1;
}

.display-h3 {
  font-size: 26px;
  line-height: 1.2;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
}
.eyebrow--center {
  text-align: center;
}

.lede {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn--solid {
  background: var(--ink);
  color: #fff;
}
.btn--solid:hover {
  background: #000;
  opacity: 1;
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: #fff;
  opacity: 1;
}
.btn--block {
  display: flex;
  width: 100%;
}

.form-stack {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.form-row {
  display: grid;
  gap: 6px;
}
.form-row__label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.form-row input,
.form-row textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  font-size: 13px;
  background: transparent;
  resize: vertical;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.form-row--checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 11px;
  color: var(--ink-soft);
}

.search-form {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.cards-grid {
  display: grid;
  gap: 26px;
}
.cards-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.cards-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  display: block;
  color: inherit;
}
.product-card__media {
  display: block;
  height: 600px;
  overflow: hidden;
  background: var(--paper-warm);
}
.product-card__media img, .product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card__media img, .product-card:hover .product-card__img {
  transform: scale(1.02);
}
.product-card__meta {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card .add_to_featured {
  width: 22px;
  height: 22px;
}
.product-card .add_to_featured svg {
  width: 100%;
  height: 100%;
}
.product-card__name {
  display: block;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
}
.product-card__price {
  display: flex;
  align-items: start;
  margin-top: 10px;
  color: #1B1B1B;
  text-align: right;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.product-card__price .amount {
  color: #1B1B1B;
  text-align: right;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.mood-grid {
  position: relative;
  width: 700px;
  height: 770px;
  margin: 80px auto 0;
}
.mood-grid__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 36px;
  font-style: italic;
  color: var(--ink);
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  z-index: 1;
}
.mood-grid__center a {
  text-decoration: none;
  color: inherit;
}

.mood-dot {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background 0.25s var(--ease);
}
.mood-dot:hover {
  background: #d4d4d4;
  opacity: 1;
}
.mood-dot__label {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.mood-dot--1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.mood-dot--2 {
  top: 130px;
  left: 0;
}
.mood-dot--3 {
  top: 130px;
  right: 0;
}
.mood-dot--4 {
  top: 440px;
  left: 0;
}
.mood-dot--5 {
  top: 440px;
  right: 0;
}
.mood-dot--6 {
  top: 570px;
  left: 50%;
  transform: translateX(-50%);
}

.faq {
  margin-top: 50px;
  max-width: 880px;
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #1E1E1E;
  text-align: justify;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 134%; /* 20.1px */
}
.faq__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  margin-left: 16px;
}
.faq__icon svg {
  display: block;
  width: 15px;
  height: 15px;
}
.faq__icon-v {
  transition: opacity 0.2s var(--ease);
}
.faq__item.is-open .faq__icon-v {
  opacity: 0;
}
.faq__a {
  padding: 0 0 30px;
  color: #1E1E1E;
  text-align: justify;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 125%; /* 16.25px */
  max-width: 529px;
}

@media (max-width: 768px) {
  .faq {
    margin-top: 30px;
    max-width: 100%;
  }
  .faq__q {
    font-size: 13px;
    gap: 16px;
  }
  .faq__a {
    font-size: 12px;
    max-width: 100%;
    padding-bottom: 24px;
  }
  .faq__item {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
}
.product-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.product-drawer[hidden] {
  display: none;
}
.product-drawer[aria-hidden=false] {
  pointer-events: auto;
  opacity: 1;
}
.product-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(3px);
}
.product-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50vw;
  max-width: 445px;
  background: #fff;
  border-left: 1px solid var(--line);
  padding: 50px 30px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}
.product-drawer[aria-hidden=false] .product-drawer__panel {
  transform: translateX(0);
}
.product-drawer__close {
  position: absolute;
  top: 30px;
  right: 22px;
  width: 20px;
  height: 20px;
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.product-drawer__close svg {
  width: 100%;
  height: 100%;
}
.product-drawer__eyebrow {
  margin: 0 0 20px;
  color: #1B1B1B;
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.product-drawer__section {
  margin-bottom: 40px;
}
.product-drawer__section:last-child {
  margin-bottom: 0;
}
.product-drawer__title {
  margin: 0 0 20px;
  color: #1B1B1B;
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
}
.product-drawer__body {
  color: #1B1B1B;
  text-align: justify;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.product-drawer__body p {
  margin: 0 0 12px;
  color: #1B1B1B;
  text-align: justify;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.product-drawer__body p:last-child {
  margin-bottom: 0;
}
.product-drawer__body ul {
  padding-left: 18px;
  margin: 0;
}
.product-drawer__body li {
  margin-bottom: 6px;
}
.product-drawer__meta {
  margin: 0;
  display: flex;
  flex-direction: column;
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

@media (max-width: 768px) {
  .product-drawer__panel {
    width: 100%;
    max-width: none;
    border-left: 0;
    padding: 56px 20px 40px;
  }
  .product-drawer__close {
    top: 18px;
    right: 18px;
  }
  .product-drawer__eyebrow {
    font-size: 12px;
    letter-spacing: 0.04em;
  }
  .product-drawer__section {
    margin-bottom: 36px;
  }
}
.lang-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
}
.lang-modal[hidden] {
  display: none;
}
.lang-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(2px);
}
.lang-modal__panel {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  width: 480px;
  max-width: calc(100% - 32px);
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: 27px;
  padding-right: 27px;
}
.lang-modal__close {
  position: absolute;
  top: 35px;
  right: 27px;
  font-size: 22px;
}
.lang-modal__title {
  margin: 0 0 50px;
  color: #1B1B1B;
  font-family: "Cormorant Garamond";
  font-size: 27px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}
.lang-modal__title em {
  font-style: italic;
}
.lang-modal__form {
  display: grid;
  gap: 50px;
}
.lang-modal .btn {
  color: #FFF;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.28px;
  text-transform: uppercase;
}

.lang-row {
  display: grid;
  gap: 6px;
}
.lang-row__select {
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  background: transparent;
  appearance: none;
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  padding-top: 0;
}

@media (max-width: 768px) {
  .lang-modal {
    place-items: end stretch;
  }
  .lang-modal__panel {
    width: 100%;
    max-width: none;
    border: 0;
    border-top: 1px solid var(--line);
    padding: 28px 20px 28px;
  }
  .lang-modal__title {
    font-size: 22px;
  }
  .lang-modal .btn {
    width: 100%;
  }
}
.site-main {
  padding-bottom: 50px;
}

.shop-head,
.legal,
.home-section,
.home-quote,
.home-closing,
.shop-toolbar,
.shop-grid,
.shop-pagination {
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}

.site-header {
  z-index: 30;
  position: absolute;
  border-bottom: 1px solid transparent;
  width: 100%;
}
.site-header__inner {
  display: grid;
  grid-template-columns: 21px 1fr auto;
  align-items: center;
  gap: 22px;
  padding-left: 22px;
  padding-right: 22px;
  padding-top: 20px;
}
.site-header__nav {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.burger {
  width: 21px;
  height: 21px;
  overflow: visible;
}
.burger svg {
  width: 100%;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.brand__name {
  color: #FFF;
  leading-trim: both;
  text-edge: cap;
  font-family: Cinzel;
  font-size: 28.804px;
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: 0.576px;
  text-transform: uppercase;
}
.brand__sub {
  color: #FFF;
  leading-trim: both;
  text-edge: cap;
  font-family: "Cormorant Garamond";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.28px;
  text-transform: lowercase;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font: inherit;
  padding: 0;
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.24px;
  text-transform: uppercase;
}
.lang-trigger__caret {
  font-size: 10px;
}

.header-link {
  color: #fff;
  white-space: nowrap;
  color: #FFF;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.24px;
  text-transform: uppercase;
}

.js-cart-count {
  margin-left: 4px;
}

.has-dark-header .site-header .burger svg rect {
  fill: var(--ink);
}
.has-dark-header .site-header .brand__name,
.has-dark-header .site-header .brand__sub {
  color: var(--ink);
}
.has-dark-header .site-header .lang-trigger,
.has-dark-header .site-header .header-link,
.has-dark-header .site-header .js-cart-count {
  color: var(--ink);
}
.has-dark-header .site-header .lang-trigger__caret svg line {
  stroke: currentColor;
}

.has-light-header .site-header .burger svg rect {
  fill: #fff;
}
.has-light-header .site-header .brand__name,
.has-light-header .site-header .brand__sub,
.has-light-header .site-header .lang-trigger,
.has-light-header .site-header .header-link,
.has-light-header .site-header .js-cart-count {
  color: #fff;
}
.has-light-header .site-header .lang-trigger__caret svg line {
  stroke: currentColor;
}

.site-header {
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
}
.site-header.is-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--line);
  backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  animation: tsuyu-header-drop 0.35s var(--ease);
}
.site-header.is-scrolled .site-header__inner {
  padding-top: 20px;
  padding-bottom: 20px;
}
.site-header.is-scrolled .burger svg rect {
  fill: var(--ink);
}
.site-header.is-scrolled .brand__name,
.site-header.is-scrolled .brand__sub,
.site-header.is-scrolled .lang-trigger,
.site-header.is-scrolled .header-link,
.site-header.is-scrolled .js-cart-count {
  color: var(--ink);
}
.site-header.is-scrolled .lang-trigger__caret svg line {
  stroke: currentColor;
}

@keyframes tsuyu-header-drop {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.is-product .site-header,
.has-dark-header.is-product .site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  backdrop-filter: none;
}

.site-header .site-header__left {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}
.site-header .burger {
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-header .header-link__icon {
  display: none;
  align-items: center;
  justify-content: center;
  color: currentColor;
  line-height: 0;
}
.site-header .header-link__icon svg {
  display: block;
}
.site-header .search-trigger {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  cursor: pointer;
}
.site-header .cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.site-header .cart-link__badge {
  display: none;
}

@media (max-width: 768px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 0;
    padding: 14px 18px;
    align-items: center;
  }
  .site-header .brand {
    justify-self: center;
    gap: 6px;
  }
  .site-header .brand__name {
    font-size: 17px;
    line-height: 1;
    letter-spacing: 0.04em;
  }
  .site-header .brand__sub {
    display: none;
  }
  .site-header__left {
    gap: 18px;
  }
  .site-header__left .burger {
    width: 21px;
    height: 12px;
  }
  .site-header__left .burger svg {
    width: 21px;
    height: 12px;
  }
  .site-header .search-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 18px;
  }
  .site-header .search-trigger .header-link__icon {
    display: inline-flex;
  }
  .site-header .search-trigger svg {
    width: 16px;
    height: 18px;
  }
  .site-header__nav {
    gap: 13px;
  }
  .site-header__nav .lang-trigger,
  .site-header__nav .header-link__text,
  .site-header__nav .header-link__count {
    display: none;
  }
  .site-header .wishlist-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 16px;
    padding: 0;
  }
  .site-header .wishlist-link .header-link__icon {
    display: inline-flex;
    width: 18px;
    height: 16px;
  }
  .site-header .wishlist-link .header-link__icon svg {
    width: 18px;
    height: 16px;
  }
  .site-header .cart-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    padding: 0;
  }
  .site-header .cart-link .cart-link__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 13px;
    height: 17px;
  }
  .site-header .cart-link .cart-link__icon svg {
    width: 13px;
    height: 17px;
  }
  .site-header .cart-link .cart-link__badge {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 400;
    line-height: 1;
  }
  .site-header .cart-link .cart-link__badge span {
    margin: 0;
    color: #FFF;
    leading-trim: both;
    text-edge: cap;
    font-family: Montserrat;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.2px;
  }
  .site-header .cart-link--has-items .cart-link__icon {
    display: none;
  }
  .site-header .cart-link--has-items .cart-link__badge {
    display: inline-flex;
  }
  .site-header .search-trigger {
    color: inherit;
  }
  .site-header.is-scrolled .site-header__inner {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
.site-footer {
  background: #000;
  color: #fff;
  padding: 50px 144px 50px;
}
.site-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
}
.site-footer__cols {
  display: grid;
  grid-template-columns: 1.85fr 1.32fr 1fr 1fr auto;
  gap: 32px;
}
.site-footer__col {
  display: flex;
  flex-direction: column;
}
.site-footer__col--region {
  align-items: flex-end;
  justify-content: flex-start;
}
.site-footer__heading {
  margin: 0 0 25px;
  color: #FFF;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.site-footer__list a,
.site-footer__list span {
  color: #FFF;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
}
.site-footer__list a:hover {
  opacity: 0.65;
}
.site-footer__base {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-top: 48px;
}
.site-footer__legal, .site-footer__disclaimer {
  margin: 0;
  color: #949494;
  font-family: Montserrat;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.site-footer__legal {
  max-width: 250px;
}
.site-footer__disclaimer {
  max-width: 330px;
}
.site-footer__region {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 0;
  color: #FFF;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: opacity 0.2s var(--ease);
}
.site-footer__region:hover {
  opacity: 0.65;
}
.site-footer__region-value {
  color: #fff;
  font-weight: 300;
}
.site-footer__region-caret {
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
}
.site-footer__region-caret svg {
  display: block;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 22px 30px;
  }
  .site-footer__cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .site-footer__col--region {
    align-items: flex-start;
  }
  .site-footer__heading {
    margin-bottom: 22px;
  }
  .site-footer__base {
    flex-direction: column;
    gap: 22px;
    margin-top: 32px;
  }
  .site-footer__legal, .site-footer__disclaimer {
    margin: 0;
    max-width: 100%;
  }
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 100;
  padding: 20px 22px 60px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.menu-overlay[aria-hidden=false] {
  opacity: 1;
  pointer-events: auto;
}
.menu-overlay__top {
  display: grid;
  grid-template-columns: 21px 1fr auto;
  align-items: center;
  gap: 22px;
}
.menu-overlay__close {
  width: 21px;
  height: 21px;
  padding: 0;
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
  background: none;
  border: 0;
  cursor: pointer;
}
.menu-overlay__close:hover {
  opacity: 0.65;
}
.menu-overlay__search {
  width: 140px;
  justify-self: end;
}
.menu-overlay__search input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  background: transparent;
  text-align: right;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 10px;
}
.menu-overlay__search input::placeholder {
  color: var(--ink);
  opacity: 1;
}
.menu-overlay__search input:focus {
  outline: none;
}
.menu-overlay__body {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(280px, 1.4fr) minmax(280px, 380px);
  gap: 64px;
  margin-top: 101px;
  align-items: stretch;
}
.menu-overlay__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-overlay__col li {
  padding: 0;
}
.menu-overlay__col a {
  display: inline-block;
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 0;
  transition: opacity 0.15s var(--ease);
}
.menu-overlay__col a:hover {
  opacity: 0.55;
}
.menu-overlay__col a.is-active {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.menu-overlay__col--primary ul li {
  padding: 4px 0;
}
.menu-overlay__col--middle {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.menu-overlay__spacer {
  height: 28px;
}
.menu-overlay__group {
  margin: 0;
  list-style: none;
  padding: 0;
  transition: margin-top 0.2s var(--ease);
}
.menu-overlay__group[data-submenu-id]:not([hidden]) {
  animation: tsuyu-menu-submenu-in 0.25s var(--ease);
}
.menu-overlay__group li {
  padding: 4px 0;
}
@keyframes tsuyu-menu-submenu-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.menu-overlay__col--feature {
  justify-self: end;
  max-width: 280px;
}
.menu-overlay__feature {
  display: block;
  color: var(--ink);
  text-decoration: none;
}
.menu-overlay__feature img {
  width: 100%;
  object-fit: cover;
  display: block;
  width: 229.119px;
  height: 271.668px;
}
.menu-overlay__feature span {
  display: block;
  margin-top: 8.4px;
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 10.92px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.218px;
  text-transform: uppercase;
}
.menu-overlay__feature:hover img {
  opacity: 0.92;
}
.menu-overlay__chev, .menu-overlay__search-icon, .menu-overlay__meta, .menu-overlay__back-row {
  display: none;
}
.menu-overlay__label {
  display: inline;
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.24px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .menu-overlay {
    padding: 0;
    overflow-y: auto;
  }
  .menu-overlay__top {
    grid-template-columns: auto 1fr auto;
    gap: 0;
    padding: 15px 20px;
    align-items: center;
  }
  .menu-overlay .brand {
    justify-self: center;
    gap: 6px;
  }
  .menu-overlay .brand__name {
    font-size: 17px;
    line-height: 1;
    letter-spacing: 0.04em;
  }
  .menu-overlay .brand__sub {
    display: none;
  }
  .menu-overlay__close {
    width: 17px;
    height: 17px;
  }
  .menu-overlay__search {
    width: auto;
    justify-self: end;
    position: static;
  }
  .menu-overlay__search input {
    display: none;
  }
  .menu-overlay__search.is-search-open input {
    display: block;
    position: absolute;
    top: 48px;
    left: 20px;
    right: 20px;
    width: auto;
    text-align: left;
    background: #fff;
    z-index: 3;
    padding-bottom: 10px;
  }
  .menu-overlay__search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 17px;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--ink);
  }
  .menu-overlay__search-icon svg {
    display: block;
  }
  .menu-overlay__body {
    display: block;
    grid-template-columns: none;
    margin-top: 0;
    gap: 0;
  }
  .menu-overlay__col--feature {
    display: none;
  }
  .menu-overlay__lang-item {
    display: none;
  }
  .menu-overlay__col--primary ul {
    padding: 36px 0 0;
  }
  .menu-overlay__col--primary ul li {
    padding: 0;
  }
  .menu-overlay__col--primary a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    font-size: 12px;
    letter-spacing: 0.18em;
  }
  .menu-overlay__col--primary a:hover {
    opacity: 1;
  }
  .menu-overlay__spacer {
    height: 40px;
  }
  .menu-overlay__chev {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    flex: 0 0 auto;
  }
  .menu-overlay__chev svg {
    display: block;
  }
  .menu-overlay__meta {
    display: block;
    padding: 28px 0 0;
  }
  .menu-overlay__meta-link {
    display: block;
    width: 100%;
    padding: 14px 20px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    background: none;
    border: 0;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
  }
  .menu-overlay__meta-link .js-wishlist-count {
    margin-left: 4px;
  }
  .menu-overlay__region-value {
    font-weight: 400;
  }
  .menu-overlay.is-submenu-open .menu-overlay__col--primary {
    display: none;
  }
  .menu-overlay__col--middle {
    display: block;
  }
  .menu-overlay__group {
    padding: 36px 0 0;
  }
  .menu-overlay__group li {
    padding: 0;
  }
  .menu-overlay__group a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    font-size: 12px;
    letter-spacing: 0.18em;
  }
  .menu-overlay__group a:hover {
    opacity: 1;
  }
  .menu-overlay__back-row {
    display: block;
    border-bottom: 1px solid var(--line);
    margin-bottom: 6px;
  }
  .menu-overlay__back {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 0 20px 16px;
    background: none;
    border: 0;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
  }
  .menu-overlay__back-chev {
    display: inline-flex;
    align-items: center;
  }
  .menu-overlay__back-chev svg {
    display: block;
  }
}

.filter-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
}
.filter-overlay[hidden] {
  display: none;
}
.filter-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
}
.filter-overlay__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 445px;
  background: #fff;
  border-left: 1px solid var(--line);
  padding: 50px 26px;
  display: flex;
  flex-direction: column;
  overflow: auto;
}
.filter-overlay__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.filter-overlay__title {
  color: #1B1B1B;
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.filter-overlay__close {
  top: 30px;
  right: 26px;
}
.filter-overlay__form {
  display: grid;
  gap: 32px;
  flex: 1;
}

.filter-group {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: start;
}
.filter-group__label {
  color: #1B1B1B;
  font-family: Montserrat;
  font-size: 11px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
}
.filter-group__opts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.filter-group__opt {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #1B1B1B;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
}
.filter-group__opt input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.filter-group__opt:has(input:checked) {
  color: var(--ink);
  font-weight: 400;
}

.filter-range {
  width: 100%;
}
.filter-range__track {
  position: relative;
  height: 16px;
  display: flex;
  align-items: center;
}
.filter-range__line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--ink);
  transform: translateY(-50%);
}
.filter-range input[type=range] {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 16px;
  margin: 0;
  padding: 0;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: none;
}
.filter-range input[type=range]::-webkit-slider-runnable-track {
  background: transparent;
  border: 0;
}
.filter-range input[type=range]::-moz-range-track {
  background: transparent;
  border: 0;
}
.filter-range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink);
  border: 0;
  cursor: pointer;
  pointer-events: auto;
}
.filter-range input[type=range]::-moz-range-thumb {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink);
  border: 0;
  cursor: pointer;
  pointer-events: auto;
}
.filter-range__values {
  margin-top: 20px;
  color: #1B1B1B;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
}

.filter-overlay__actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding-top: 32px;
}

.filter-overlay__submit {
  width: 100%;
  height: 40px;
  background: #fff;
  border: 1px solid var(--ink);
  color: #1B1B1B;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.filter-overlay__submit:hover {
  background: var(--ink);
  color: #fff;
}

.filter-overlay__clear {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #1B1B1B;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink);
}
.filter-overlay__clear:hover {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .filter-overlay__panel {
    width: 100%;
    max-width: none;
    border-left: 0;
    padding: 20px 20px 36px;
  }
  .filter-overlay__head {
    margin-bottom: 40px;
  }
  .filter-overlay__title {
    font-size: 15px;
  }
  .filter-overlay__close {
    width: 17px;
    height: 17px;
    font-size: 22px;
    line-height: 1;
  }
  .filter-overlay__form {
    gap: 36px;
  }
  .wl-share-modal {
    place-items: end stretch;
  }
  .wl-share-modal__panel {
    width: 100%;
    max-width: none;
    border: 0;
    border-top: 1px solid var(--line);
    padding: 28px 20px 28px;
  }
}
.menu-overlay .brand__name,
.menu-overlay .brand__sub,
.menu-overlay .menu-overlay__close {
  color: var(--ink);
}

.home-hero {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  max-width: none;
  padding: 0;
}
.home-hero__media img {
  width: 100%;
  height: 712px;
  object-fit: cover;
}

.home-section {
  margin-top: 80px;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}
.section-head--centered {
  display: block;
  text-align: center;
  margin-bottom: 40px;
}
.section-head__link {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.frontpage-product-list .section-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 42px;
}
.frontpage-product-list .section-head h2 {
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
  margin: 0;
}
.frontpage-product-list .section-head a {
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
}

.home-about-us-link {
  margin-top: 80px;
  display: flex;
  align-items: center;
}
.home-about-us-link .section-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 25px;
  margin: 0 auto;
}
.home-about-us-link .section-content h2 {
  color: #1B1B1B;
  text-align: center;
  font-family: "Cormorant Garamond";
  font-size: 35px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
  max-width: 477px;
}
.home-about-us-link .section-content a {
  color: #1B1B1B;
  text-align: center;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: 25%; /* 3px */
  text-underline-position: from-font;
  text-transform: uppercase;
}

.home-still {
  margin-top: 80px;
  max-width: none;
  padding: 0;
}
.home-still img {
  width: 100%;
  height: 800px;
  object-fit: cover;
}

.home-section--mood {
  margin-top: 80px;
  text-align: center;
}
.home-section--mood > a {
  display: block;
  margin-top: 70px;
  color: #1B1B1B;
  text-align: center;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: 25%; /* 3px */
  text-underline-position: from-font;
  text-transform: uppercase;
}
.home-section--mood .section-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.home-section--mood .section-head p {
  color: #1B1B1B;
  text-align: center;
  font-family: "Cormorant Garamond";
  font-size: 35px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
  margin: 0;
}
.home-section--mood .section-head h2 {
  color: #1B1B1B;
  text-align: center;
  font-family: "Cormorant Garamond";
  font-size: 35px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.home-section--mood .section-head h2 span {
  color: #1B1B1B;
  text-align: center;
  font-family: "Cormorant Garamond";
  font-size: 35px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 2%; /* 0.7px */
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-transform: capitalize;
}
.home-section--mood .mood-grid {
  margin-top: 80px;
}
.home-section--mood .mood-picker li {
  width: 178.101px;
  height: 178.101px;
  border-radius: 100%;
  background: #D9D9D9;
  overflow: hidden;
}
.home-section--mood .mood-picker li a {
  width: 178.101px;
  height: 178.101px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: capitalize;
}
.home-section--mood .mood-picker .mood-grid__center {
  color: #1B1B1B;
  text-align: center;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
}

.home-section__center-label {
  font-size: 18px;
  font-style: italic;
  color: var(--ink-mute);
}

@media (max-width: 768px) {
  .home-hero__media {
    width: 100%;
  }
  .home-hero__media img {
    width: 100%;
    height: 567px;
    max-width: none;
    object-fit: cover;
  }
  .home-section {
    margin-top: 40px;
  }
  .frontpage-product-list {
    padding: 0;
  }
  .frontpage-product-list .section-head {
    margin: 0 10px 25px;
    align-items: baseline;
  }
  .frontpage-product-list .section-head h2 {
    font-size: 28px;
    line-height: 1;
  }
  .frontpage-product-list .section-head a {
    color: #1B1B1B;
    leading-trim: both;
    text-edge: cap;
    font-family: Montserrat;
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: 25%; /* 2.5px */
    text-underline-position: from-font;
    text-transform: uppercase;
  }
  .frontpage-product-list .cards-grid--3 {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 0 10px;
    margin: 0;
    scrollbar-width: none;
  }
  .frontpage-product-list .cards-grid--3::-webkit-scrollbar {
    display: none;
  }
  .frontpage-product-list .cards-grid--3 > * {
    scroll-snap-align: start;
  }
  .frontpage-product-list .cards-grid--3 .product-card__media {
    height: auto;
    aspect-ratio: 244/327;
  }
  .frontpage-product-list .cards-grid--3 .product-card__name,
  .frontpage-product-list .cards-grid--3 .product-card__price {
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  .frontpage-product-list .cards-grid--3 > * {
    width: 244px;
    min-width: 244px;
  }
  .home-about-us-link {
    margin-top: 50px;
    padding: 0 10px;
  }
  .home-about-us-link .section-content {
    gap: 25px;
  }
  .home-about-us-link .section-content h2 {
    font-size: 24px;
    max-width: 100%;
    min-width: 100%;
    line-height: 1.4;
    color: #1B1B1B;
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
  }
  .home-about-us-link .section-content a {
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .home-still {
    margin-top: 52px;
  }
  .home-still img {
    height: 300px;
  }
  .home-section--mood {
    margin-top: 50px;
    padding: 0 20px;
  }
  .home-section--mood .section-head {
    gap: 30px;
  }
  .home-section--mood .section-head p {
    color: #1B1B1B;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "Cormorant Garamond";
    font-size: 24px;
    font-style: italic;
    font-weight: 300;
    line-height: normal;
  }
  .home-section--mood .section-head h2 {
    color: #1B1B1B;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "Cormorant Garamond";
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
  }
  .home-section--mood .section-head h2 span {
    color: #1B1B1B;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "Cormorant Garamond";
    font-size: 24px;
    font-style: italic;
    font-weight: 300;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: 2%; /* 0.48px */
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: capitalize;
  }
  .home-section--mood .mood-grid {
    margin: 50px auto 0;
    width: 302px;
    height: 329px;
  }
  .home-section--mood .mood-dot {
    width: 100px;
    height: 100px;
  }
  .home-section--mood .mood-dot__label {
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .home-section--mood .mood-dot--1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }
  .home-section--mood .mood-dot--2 {
    top: 64px;
    right: 0;
    left: auto;
    transform: none;
  }
  .home-section--mood .mood-dot--3 {
    top: 178px;
    right: 0;
    left: auto;
    transform: none;
  }
  .home-section--mood .mood-dot--4 {
    top: 228px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }
  .home-section--mood .mood-dot--5 {
    top: 178px;
    left: 0;
    right: auto;
    transform: none;
  }
  .home-section--mood .mood-dot--6 {
    top: 64px;
    left: 0;
    right: auto;
    transform: none;
  }
  .home-section--mood .mood-grid__center {
    color: #1B1B1B;
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 28px;
    font-style: italic;
    font-weight: 300;
    line-height: normal;
  }
  .home-section--mood .mood-picker li, .home-section--mood .mood-picker li a {
    width: 100px;
    height: 100px;
  }
  .home-section--mood .mood-picker li a {
    font-size: 11px;
  }
  .home-section--mood .mood-picker .mood-grid__center {
    font-size: 22px;
  }
  .home-section--mood > a {
    margin-top: 50px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }
  .home-closing {
    margin-top: 50px;
    gap: 50px;
    padding: 0 10px;
  }
  .home-closing__media img {
    height: auto;
    aspect-ratio: 382/479;
  }
  .home-closing__copy h2 {
    font-size: 24px;
    margin-bottom: 50px;
    max-width: 270px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
  }
  .home-closing__copy .home-closing__text {
    width: 100%;
    max-width: 362px;
    margin: 0 auto;
    gap: 14px;
  }
  .home-closing__copy .home-closing__text p {
    font-size: 13px;
    line-height: 1.55;
    text-align: justify;
  }
  .home-closing__copy a {
    margin-top: 50px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }
}
.home-closing {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.home-closing__media img {
  width: 100%;
  height: 585px;
  object-fit: cover;
}
.home-closing__copy h2 {
  color: #1B1B1B;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "Cormorant Garamond";
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  line-height: 100%; /* 28px */
  margin-bottom: 50px;
}
.home-closing__copy .home-closing__text {
  width: 765px;
  display: flex;
  flex-direction: column;
  color: #1B1B1B;
  text-align: center;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  gap: 20px;
}
.home-closing__copy .home-closing__text p {
  margin: 0;
  color: #1B1B1B;
  text-align: justify;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.home-closing__copy a {
  display: block;
  margin-top: 50px;
  color: #1B1B1B;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 10px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: 25%; /* 2.5px */
  text-underline-position: from-font;
  text-transform: uppercase;
}

.shop-head {
  padding: 130px 22px 0;
}
.shop-head__title {
  margin: 0;
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
}
.shop-head__title em {
  font-style: italic;
}

.shop-hero {
  margin-top: 24px;
  padding: 0;
}
.shop-hero img {
  width: 100%;
  height: 728px;
  object-fit: cover;
  display: block;
}

.shop-intro {
  max-width: 720px;
  margin: 56px auto 0;
  padding: 0 22px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  text-align: center;
}
.shop-intro p {
  margin: 0 0 12px;
}
.shop-intro p:last-child {
  margin-bottom: 0;
}

.shop-mood {
  margin-top: 56px;
  padding: 0 22px;
  text-align: center;
}
.shop-mood__eyebrow {
  margin: 0 0 24px;
  color: #000;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "Cormorant Garamond";
  font-size: 28.358px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
}
.shop-mood__eyebrow em {
  font-style: italic;
}
.shop-mood__list {
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.shop-mood__dot {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: #000;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: capitalize;
}
.shop-mood__dot:hover {
  opacity: 0.85;
}
.shop-mood__dot.is-active .shop-mood__circle {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
}
.shop-mood__circle {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #d9d9d9;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.shop-mood__dot:hover .shop-mood__circle {
  transform: scale(1.06);
}
.shop-mood__label {
  color: #000;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: capitalize;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
  padding: 0 22px;
}
.shop-toolbar__btn {
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  padding: 0;
}
.shop-toolbar__btn:hover {
  opacity: 0.65;
}

.shop-grid {
  margin-top: 25px;
  padding: 0 22px;
}
.shop-grid .cards-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.shop-pagination {
  margin: 72px auto 96px;
  display: flex;
  justify-content: center;
  padding: 0 22px;
}
.shop-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.shop-pagination .page-numbers li {
  padding: 0;
  margin: 0;
}
.shop-pagination .page-numbers a,
.shop-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-decoration: none;
  background: none;
  border: 0;
  transition: opacity 0.2s var(--ease);
}
.shop-pagination .page-numbers a:hover {
  opacity: 0.55;
}
.shop-pagination .page-numbers .current {
  font-weight: 400;
  position: relative;
}
.shop-pagination .page-numbers .current::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 1px;
  background: var(--ink);
}
.shop-pagination .page-numbers .dots {
  opacity: 0.55;
}
.shop-pagination .page-numbers .prev,
.shop-pagination .page-numbers .next {
  min-width: 24px;
  padding: 0 6px;
  font-size: 14px;
}

.shop-empty {
  text-align: center;
  padding: 120px 22px;
  color: var(--ink-mute);
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .shop-head {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }
  .shop-hero {
    margin-top: 0;
  }
  .shop-hero img {
    height: 421px;
  }
  body.is-shop .site-header:not(.is-scrolled) .burger svg rect,
  body.is-shop .site-header:not(.is-scrolled) .burger svg path {
    fill: #fff;
  }
  body.is-shop .site-header:not(.is-scrolled) .brand__name,
  body.is-shop .site-header:not(.is-scrolled) .brand__sub,
  body.is-shop .site-header:not(.is-scrolled) .header-link,
  body.is-shop .site-header:not(.is-scrolled) .search-trigger {
    color: #fff;
  }
  .shop-mood {
    margin-top: 25px;
    padding: 0 16px;
  }
  .shop-mood__eyebrow {
    color: #000;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "Cormorant Garamond";
    font-size: 25.128px;
    font-style: italic;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 27px;
  }
  .shop-mood__list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 8px;
    margin: 0;
  }
  .shop-mood__dot {
    gap: 18px;
    flex: 1 1 0;
    min-width: 0;
  }
  .shop-mood__circle {
    width: 44px;
    height: 44px;
  }
  .shop-mood__label {
    color: #000;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: Montserrat;
    font-size: 10.633px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: capitalize;
    white-space: nowrap;
  }
  .shop-toolbar {
    margin-top: 36px;
    padding: 0 10px;
  }
  .shop-toolbar__btn {
    color: #1B1B1B;
    text-align: center;
    font-family: Montserrat;
    font-size: 11px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
  }
  .shop-grid {
    margin-top: 18px;
    padding: 0 10px;
  }
  .shop-grid .cards-grid--3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
  .shop-grid .product-card__media {
    height: auto;
    aspect-ratio: 186/248;
  }
  .shop-grid .product-card__meta {
    margin-top: 14px;
  }
  .shop-grid .product-card__name,
  .shop-grid .product-card__price,
  .shop-grid .product-card__price .amount {
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  .shop-grid .product-card__price {
    margin-top: 6px;
  }
  .shop-grid .product-card .add_to_featured {
    width: 16px;
    height: 16px;
  }
  .shop-pagination {
    margin: 44px auto 60px;
  }
}
.product-single {
  padding-top: 64px;
}

.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 871px;
}
.product-hero__media {
  background: linear-gradient(180deg, #f3d4c8 0%, #e9c5b8 100%);
  overflow: hidden;
}
.product-hero__media img, .product-hero__media__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-hero__info {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
}
.product-hero__inner {
  width: 100%;
  max-width: 310px;
  text-align: center;
}
.product-hero__eyebrow {
  margin: 0 0 44px;
  color: #1B1B1B;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.product-hero__title {
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Cinzel;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 0;
}
.product-hero__sub {
  margin: 20px 0 0;
  color: #1B1B1B;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: lowercase;
}
.product-hero__desc {
  margin: 20px 0 0;
}
.product-hero__desc p {
  color: #1B1B1B;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.product-hero__volume {
  margin: 30px 0 30px;
  color: #1B1B1B;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.24px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 3%; /* 0.36px */
  text-underline-offset: 25%; /* 3px */
  text-underline-position: from-font;
  text-transform: uppercase;
}
.product-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-hero__cart {
  margin: 0;
}
.product-hero__links {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-hero__link {
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 3%; /* 0.36px */
  text-underline-offset: 25%; /* 3px */
  text-underline-position: from-font;
  text-transform: uppercase;
}
.product-hero__links > *:last-child {
  text-decoration: none;
}

.product-notes {
  margin: 35px 0 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.product-notes__row {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.product-notes dt {
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  font-variant: small-caps;
  margin: 0;
}
.product-notes dd {
  color: #595959;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 138.235%; /* 16.588px */
  margin: 0;
}

.btn-buy {
  width: 100%;
  height: 40px;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s var(--ease);
}
.btn-buy__label {
  flex: 1;
  text-align: left;
  color: #FFF;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.24px;
  text-transform: uppercase;
}
.btn-buy__price {
  flex: 0 0 auto;
  text-align: right;
  color: #FFF;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.24px;
  text-transform: uppercase;
}
.btn-buy .amount {
  color: inherit;
}

.btn-wishlist {
  width: 100%;
  height: 40px;
  background: transparent;
  color: #1B1B1B;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  border: 0.5px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.product-formula {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.product-formula__cell {
  position: relative;
  height: 871px;
  overflow: hidden;
}
.product-formula__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-formula__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 510px;
  max-width: calc(100% - 80px);
  text-align: center;
  color: #f5e1d4;
}
.product-formula__title {
  margin: 0 0 50px;
  color: #FFF;
  text-align: center;
  font-family: "Shlapak Script";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.product-formula__body {
  color: #FFF;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  font-variant: small-caps;
}
.product-formula__body p {
  margin: 0 0 12px;
  color: #FFF;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  font-variant: small-caps;
}
.product-formula__body p:last-child {
  margin-bottom: 0;
}

.product-feel {
  display: flex;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 100px 0px;
}
.product-feel__col {
  text-align: center;
}
.product-feel__label {
  margin: 0 0 35px;
  color: #1B1B1B;
  font-family: "Cormorant Garamond";
  font-size: 37.435px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
}
.product-feel__circle {
  width: 292px;
  height: 292px;
  border-radius: 50%;
  background: #d9d9d9;
  margin: 0 auto;
  overflow: hidden;
}
.product-feel__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-heron {
  width: 100%;
  overflow: hidden;
}
.product-heron img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  display: block;
}

.product-related {
  padding: 80px 22px 0px;
}
.product-related__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 50px;
}
.product-related__title {
  margin: 0;
  color: #1B1B1B;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: italic;
  font-weight: 400;
  line-height: 96%; /* 46.08px */
}
.product-related__desc {
  max-width: 474px;
  margin: 0;
  text-align: left;
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 125%; /* 18.75px */
}

@media (max-width: 768px) {
  .product-single {
    padding-top: 48px;
    display: flex;
    flex-direction: column;
  }
  .product-hero {
    order: 1;
  }
  .product-feel {
    order: 2;
  }
  .product-formula {
    order: 3;
  }
  .product-related {
    order: 4;
  }
  .product-heron {
    display: none;
  }
  .product-hero {
    display: block;
    min-height: 0;
  }
  .product-hero__media {
    width: 100%;
    height: 537px;
  }
  .product-hero__info {
    display: block;
    padding: 38px 20px 0;
  }
  .product-hero__inner {
    max-width: 100%;
  }
  .product-hero__eyebrow {
    margin: 0 0 14px;
    font-size: 11px;
  }
  .product-hero__title {
    font-size: 28px;
  }
  .product-hero__sub {
    margin-top: 10px;
  }
  .product-hero__desc {
    margin-top: 18px;
  }
  .product-hero__desc p {
    font-size: 12px;
    max-width: 320px;
    margin: 0 auto;
  }
  .product-hero__volume {
    margin: 28px 0;
  }
  .product-hero__actions {
    margin: 0 -20px;
    padding: 36px 20px;
    background: var(--paper-warm, #f3ece7);
    gap: 10px;
  }
  .product-hero .btn-buy,
  .product-hero .btn-wishlist {
    width: 100%;
    max-width: 362px;
    margin: 0 auto;
  }
  .product-hero__links {
    margin-top: 30px;
    gap: 16px;
    align-items: center;
  }
  .product-notes {
    align-items: center;
    gap: 22px;
  }
  .product-notes__row {
    align-items: center;
    text-align: center;
  }
  .product-feel {
    grid-template-columns: 1fr;
    padding: 32px 20px 52px;
    gap: 48px;
  }
  .product-feel__label {
    font-size: 28px;
    margin-bottom: 28px;
  }
  .product-feel__circle {
    width: 231px;
    height: 231px;
  }
  .product-formula {
    grid-template-columns: 1fr;
  }
  .product-formula__cell:not(.product-formula__cell--text) {
    display: none;
  }
  .product-formula__cell--text {
    height: auto;
    min-height: 378px;
    display: flex;
    align-items: center;
  }
  .product-formula__overlay {
    position: static;
    transform: none;
    width: auto;
    max-width: calc(100% - 40px);
    margin: 0 auto;
    padding: 56px 0;
  }
  .product-formula__title {
    font-size: 36px;
    margin-bottom: 24px;
  }
  .product-formula__body, .product-formula__body p {
    font-size: 13px;
  }
  .product-related {
    padding: 50px 0 60px;
  }
  .product-related__head {
    padding: 0 20px;
    margin-bottom: 24px;
  }
  .product-related__title {
    font-size: 24px;
  }
  .product-related__desc {
    display: none;
  }
  .product-related .cards-grid--3 {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 244px;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 20px;
    scrollbar-width: none;
  }
  .product-related .cards-grid--3::-webkit-scrollbar {
    display: none;
  }
  .product-related .cards-grid--3 > * {
    scroll-snap-align: start;
  }
  .product-related .cards-grid--3 .product-card__media {
    height: auto;
    aspect-ratio: 244/327;
  }
}
.about-us {
  display: flex;
  justify-content: space-between;
  gap: 0;
  padding-top: 130px;
  padding-left: 20px;
  padding-right: 20px;
}
.about-us__content {
  max-width: 100%;
}
.about-us__head, .about-us__body, .about-us__signature,
.about-us .about-partnership {
  max-width: 430px;
}
.about-us__head {
  margin-bottom: 50px;
}
.about-us__title {
  margin: 0;
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
}
.about-us__lede {
  margin: 50px 0 0;
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: "Cormorant Garamond";
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}
.about-us__body p {
  margin: 0 0 15px;
  color: #1E1E1E;
  text-align: justify;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 134%; /* 17.42px */
}
.about-us__body p:last-child {
  margin-bottom: 0;
}
.about-us__signature {
  margin: 25px 0 0;
  color: #1E1E1E;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 134%; /* 17.42px */
}
.about-us__media {
  overflow: hidden;
  background: var(--paper-warm);
  width: 725.123px;
  height: 969.25px;
}
.about-us__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-partnership {
  margin-top: 80px;
}
.about-partnership__title {
  margin: 0;
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
}
.about-partnership__text {
  margin: 50px 0 0;
  color: #1E1E1E;
  text-align: justify;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 134%; /* 17.42px */
  max-width: 410px;
}
.about-partnership__actions {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 307px;
}

@media (max-width: 768px) {
  .about-us {
    flex-direction: column;
    padding-top: 56px;
  }
  .about-us__media {
    display: none;
  }
  .about-us__content {
    max-width: 100%;
  }
  .about-us__head, .about-us__body, .about-us__signature,
  .about-us .about-partnership {
    max-width: 100%;
  }
  .about-us__head {
    margin-bottom: 28px;
  }
  .about-us__title {
    font-size: 24px;
  }
  .about-us__lede {
    font-size: 18px;
    margin-top: 28px;
  }
  .about-us__body p {
    font-size: 13px;
  }
  .about-partnership {
    margin-top: 50px;
  }
  .about-partnership__title {
    font-size: 24px;
  }
  .about-partnership__text {
    font-size: 13px;
    margin-top: 28px;
    max-width: 100%;
  }
  .about-partnership__actions {
    max-width: 100%;
  }
}
.about-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  padding: 0 24px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--ink);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.about-btn:hover {
  background: var(--ink);
  color: #fff;
  opacity: 1;
}

.contacts-page {
  margin: 0 auto;
  padding: 131px 20px 44px;
}
.contacts-page__intro {
  display: flex;
  justify-content: space-between;
}
.contacts-page__copy {
  max-width: 528px;
}
.contacts-page__title {
  margin: 0;
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
}
.contacts-page__lede {
  margin: 50px 0 50px;
  color: #1E1E1E;
  text-align: justify;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 134%; /* 20.1px */
}
.contacts-page__media {
  width: 406.307px;
  height: 609.461px;
}
.contacts-page__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contacts-page__disclaimer {
  margin: 50px 0 0;
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.24px;
  max-width: 575px;
}
.contacts-page__form {
  margin-top: 120px;
  max-width: 460px;
}
.contacts-page__form-title {
  margin: 0 0 50px;
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
}

.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 0;
}
.contacts-list__row {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contacts-list dt {
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.24px;
  text-transform: uppercase;
}
.contacts-list dd {
  margin: 0;
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.24px;
  text-transform: lowercase;
}
.contacts-list dd a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.contacts-list__sub {
  display: block;
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 2px;
}
.contacts-list > *:first-child dd {
  text-transform: none;
}
.contacts-list > *:first-child a {
  margin-top: 5px;
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.24px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 3%; /* 0.36px */
  text-underline-offset: 8%; /* 0.96px */
  text-underline-position: from-font;
}

.contacts-form {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.contacts-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contacts-form__phone-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
}
.contacts-form__phone-code input {
  text-align: left;
}
.contacts-form input {
  padding-bottom: 10px;
  border-bottom: 1px solid #1B1B1B;
}
.contacts-form input::placeholder {
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.28px;
  text-transform: uppercase;
}
.contacts-form input {
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.28px;
  text-transform: uppercase;
}
.contacts-form__consent {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.24px;
  cursor: pointer;
}
.contacts-form__consent input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  margin: 4px 0 0;
  border: 1px solid var(--ink);
  background: #fff;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
}
.contacts-form__consent input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--ink);
}
.contacts-form__consent a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.24px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 3%;
  text-underline-offset: 8%;
  text-underline-position: from-font;
}
.contacts-form__submit {
  align-self: flex-start;
  min-width: 200px;
  height: 40px;
  padding: 0 32px;
  border: 0.5px solid #000;
  color: #fff;
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 768px) {
  .contacts-page {
    padding: 56px 20px 44px;
  }
  .contacts-page__intro {
    flex-direction: column;
  }
  .contacts-page__media {
    display: none;
  }
  .contacts-page__copy {
    max-width: 100%;
  }
  .contacts-page__title {
    font-size: 24px;
  }
  .contacts-page__lede {
    font-size: 13px;
    margin: 28px 0;
  }
  .contacts-page__disclaimer {
    font-size: 11px;
    max-width: 100%;
    margin-top: 40px;
  }
  .contacts-page__form {
    margin-top: 50px;
    max-width: 100%;
  }
  .contacts-page__form-title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .contacts-list {
    gap: 32px;
  }
}
.legal {
  padding-top: 48px;
  padding-bottom: 96px;
}

.legal-page {
  max-width: 880px;
  padding-top: 48px;
}
.legal-page--center {
  text-align: center;
}

.legal-body {
  columns: 1;
  max-width: 720px;
}
.legal-body p {
  color: var(--ink);
  line-height: 1.7;
  text-align: justify;
}
.legal-body h2 {
  margin-top: 48px;
}
.legal-body h3 {
  margin-top: 32px;
  font-size: 18px;
}

.legal-empty {
  color: var(--ink-mute);
  font-style: italic;
}

.faq-page {
  padding-top: 131px;
  padding-bottom: 50px;
}
.faq-page h1 {
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
}

@media (max-width: 768px) {
  .legal,
  .legal-page {
    padding: 56px 20px 60px;
    max-width: 100%;
  }
  .legal .display-h1 {
    font-size: 24px;
    line-height: 1.2;
  }
  .legal-body {
    max-width: 100%;
  }
  .legal-body p {
    font-size: 12px;
    line-height: 1.6;
  }
  .legal-body h2 {
    margin-top: 30px;
    font-family: "Cormorant Garamond";
    font-style: italic;
    font-weight: 300;
    font-size: 20px;
  }
  .legal-body h3 {
    margin-top: 22px;
    font-size: 15px;
  }
  .faq-page {
    padding: 56px 20px 50px;
  }
  .faq-page h1 {
    font-size: 24px;
  }
}
.legal-doc-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 130px 64px 120px;
}
.legal-doc-page__title {
  margin: 0 0 44px;
  max-width: 760px;
  color: #1B1B1B;
  font-family: "Cormorant Garamond";
  font-size: 40px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.12;
}

.legal-doc {
  max-width: 529px;
}
.legal-doc > *:first-child {
  margin-top: 0;
}
.legal-doc p {
  margin: 0 0 18px;
  color: #1B1B1B;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.26px;
  text-align: justify;
}
.legal-doc strong, .legal-doc b {
  font-weight: 500;
}
.legal-doc em, .legal-doc i {
  font-style: italic;
}
.legal-doc h2 {
  margin: 44px 0 20px;
  color: #1B1B1B;
  font-family: "Cormorant Garamond";
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.2;
  text-transform: none;
}
.legal-doc h3, .legal-doc h4 {
  margin: 30px 0 12px;
  color: #1B1B1B;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
}
.legal-doc ul, .legal-doc ol {
  margin: 0 0 18px;
  padding-left: 1.3em;
}
.legal-doc li {
  color: #1B1B1B;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 6px;
}
.legal-doc a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .legal-doc-page {
    padding: 90px 20px 60px;
  }
  .legal-doc-page__title {
    font-size: 26px;
    margin-bottom: 28px;
    line-height: 1.2;
  }
  .legal-doc {
    max-width: 100%;
  }
  .legal-doc p, .legal-doc li {
    font-size: 12px;
  }
  .legal-doc h2 {
    font-size: 20px;
    margin-top: 32px;
  }
  .legal-doc h3, .legal-doc h4 {
    font-size: 12px;
  }
}
.art-gallery {
  padding: 100px 67px 120px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
.art-gallery__head {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .art-gallery__head {
    margin-bottom: 30px;
  }
}
.art-gallery__title {
  margin: 0;
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .art-gallery__title {
    font-size: 24px;
  }
}
.art-gallery__intro {
  max-width: 560px;
  margin: 50px 0 0;
}
@media screen and (max-width: 767px) {
  .art-gallery__intro {
    margin-top: 30px;
    width: 100%;
  }
}
.art-gallery__intro p {
  color: #1E1E1E;
  text-align: justify;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 134%;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .art-gallery__intro p {
    font-size: 13px;
    line-height: 145%;
  }
}
.art-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
  row-gap: 60px;
}
@media screen and (max-width: 767px) {
  .art-gallery__grid {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
  }
}

.art-card {
  display: flex;
  flex-direction: column;
}
.art-card__media {
  width: 100%;
  height: 552px;
  aspect-ratio: 414/553;
  overflow: hidden;
  background: var(--paper-warm);
  border: 0.571px solid #C4C4C4;
}
@media screen and (max-width: 767px) {
  .art-card__media {
    height: 484px;
  }
}
.art-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--ease);
}
.art-card__media--placeholder {
  background: radial-gradient(ellipse at 30% 20%, #f7e6d6 0%, transparent 60%), radial-gradient(ellipse at 70% 80%, #e9d4b6 0%, transparent 65%), #f3e6d2;
}
.art-card__caption {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-top: 17px;
}
.art-card__col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.art-card__col--right {
  text-align: right;
}
.art-card__title {
  margin: 0;
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 15.989px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .art-card__title {
    color: #1B1B1B;
    leading-trim: both;
    text-edge: cap;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
  }
}
.art-card__sub {
  margin: 0;
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 15.989px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .art-card__sub {
    color: #1B1B1B;
    leading-trim: both;
    text-edge: cap;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
  }
}

.close-friends {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  min-height: 1056px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 131px;
}
.close-friends__copy {
  padding: 0;
  max-width: 100%;
}
.close-friends__head {
  margin-bottom: 32px;
}
.close-friends__title {
  margin: 0;
  color: #000;
  leading-trim: both;
  text-edgde: cap;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
}
.close-friends__title em {
  font-style: italic;
}
.close-friends__lede {
  margin: 50px 0 0;
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: "Cormorant Garamond";
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}
.close-friends__intro {
  margin: 28px 0 0;
  max-width: 530px;
}
.close-friends__intro p {
  color: #1E1E1E;
  text-align: justify;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 134%; /* 20.1px */
  margin-top: 0;
}
.close-friends__intro p:last-child {
  margin-bottom: 0;
}
.close-friends__media img {
  width: 100%;
  height: 925px;
  object-fit: cover;
  display: block;
}
.close-friends__list-block {
  margin-top: 67px;
  max-width: 380px;
}
.close-friends__list-title {
  margin: 0 0 25px;
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: "Cormorant Garamond";
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}
.close-friends__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.close-friends__bullets li {
  position: relative;
  padding-left: 18px;
  color: #1B1B1B;
  text-align: justify;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-top: 0;
}
.close-friends__bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ink);
  padding-left: 5px;
}
.close-friends__bullets li + li {
  margin-top: 6px;
}
.close-friends__steps {
  list-style: none;
  counter-reset: cf-steps;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.close-friends__steps li {
  position: relative;
  counter-increment: cf-steps;
  padding-left: 22px;
  color: #1B1B1B;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.close-friends__steps li::before {
  content: counter(cf-steps) ".";
  position: absolute;
  left: 0;
  top: 0;
}
.close-friends__steps li + li {
  margin-top: 6px;
}
.close-friends__form-block {
  margin-top: 56px;
  max-width: 460px;
}
.close-friends__form-title {
  margin: 0 0 48px;
  font-family: var(--font-display);
  font-size: 36px;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
}
.close-friends__form-title em {
  font-style: italic;
}

.cf-form {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.cf-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cf-form__label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.cf-form__input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 8px 0;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  background: transparent;
  color: var(--ink);
}
.cf-form__input:focus {
  outline: none;
}
.cf-form__textarea {
  width: 100%;
  min-height: 104px;
  border: 1px solid var(--ink);
  padding: 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink);
  background: transparent;
  resize: vertical;
}
.cf-form__textarea:focus {
  outline: none;
}
.cf-form__hint {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.5;
}
.cf-form__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 0;
  margin: 0;
  padding: 0;
}
.cf-form__group--consents {
  margin-top: 16px;
}
.cf-form__legend {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
  padding: 0;
}
.cf-form__radio, .cf-form__check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
  cursor: pointer;
}
.cf-form__radio input[type=radio],
.cf-form__radio input[type=checkbox], .cf-form__check input[type=radio],
.cf-form__check input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  margin: 0;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}
.cf-form__radio input[type=radio]:checked,
.cf-form__radio input[type=checkbox]:checked, .cf-form__check input[type=radio]:checked,
.cf-form__check input[type=checkbox]:checked {
  background: var(--ink);
}
.cf-form__radio input[type=radio]:checked::after,
.cf-form__radio input[type=checkbox]:checked::after, .cf-form__check input[type=radio]:checked::after,
.cf-form__check input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--ink);
}
.cf-form__radio input[type=radio]:focus-visible,
.cf-form__radio input[type=checkbox]:focus-visible, .cf-form__check input[type=radio]:focus-visible,
.cf-form__check input[type=checkbox]:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 2px;
}
.cf-form__radio input[type=radio], .cf-form__check input[type=radio] {
  border-radius: 50%;
}
.cf-form__radio input[type=radio]:checked::after, .cf-form__check input[type=radio]:checked::after {
  border-radius: 50%;
}
.cf-form__radio--inline {
  flex-wrap: wrap;
}
.cf-form__inline-input {
  flex: 1;
  min-width: 90px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 4px 0;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  background: transparent;
  color: var(--ink);
}
.cf-form__inline-input:focus {
  outline: none;
}
.cf-form__privacy {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
}
.cf-form__submit {
  width: 100%;
  height: 40px;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s var(--ease);
}
.cf-form__submit:hover {
  background: #000;
}

.cf-upload {
  display: inline-flex;
  cursor: pointer;
  width: 194px;
  max-width: 100%;
}
.cf-upload__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.cf-upload__btn {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--ink);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.cf-upload:hover .cf-upload__btn {
  background: var(--ink);
  color: #fff;
}

@media (max-width: 768px) {
  .close-friends {
    display: block;
    min-height: 0;
  }
  .close-friends__media {
    display: none;
  }
  .close-friends__copy {
    padding: 90px 20px 60px;
    max-width: 100%;
  }
  .close-friends__head {
    margin-bottom: 24px;
  }
  .close-friends__title {
    font-size: 24px;
  }
  .close-friends__lede {
    margin-top: 32px;
    font-size: 12px;
  }
  .close-friends__intro {
    margin-top: 20px;
    max-width: 100%;
  }
  .close-friends__intro p {
    font-size: 12px;
  }
  .close-friends__list-block {
    margin-top: 40px;
    max-width: 100%;
  }
  .close-friends__form-block {
    margin-top: 44px;
    max-width: 100%;
  }
  .close-friends__form-title {
    font-size: 24px;
    margin-bottom: 36px;
  }
  .cf-form {
    gap: 26px;
  }
  .cf-form__group--consents {
    margin-top: 8px;
  }
  .cf-form__radio--inline {
    align-items: center;
  }
  .cf-upload {
    width: 178px;
  }
}
.formula-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  min-height: 1056px;
}
.formula-page__content {
  padding: 100px 80px 100px 22px;
  padding-top: 131px;
  max-width: 100%;
}
.formula-page__media {
  position: sticky;
  padding-top: 131px;
  top: 0;
  min-height: 925px;
  overflow: hidden;
}
.formula-page__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.formula-block {
  margin-bottom: 55px;
  max-width: 529px;
}
.formula-block--first {
  margin-bottom: 50px;
}
.formula-block h1 {
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
  margin-top: 0;
}
.formula-block__title {
  margin-bottom: 50px;
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: "Cormorant Garamond";
  font-size: 36px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
}
.formula-block--first .formula-block__title {
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
  margin-top: 0;
}
.formula-block__text p {
  margin: 0 0 12px;
  color: #1E1E1E;
  text-align: justify;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 134%; /* 20.1px */
}
.formula-block__text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .formula-page {
    display: block;
    min-height: 0;
  }
  .formula-page__media {
    display: none;
  }
  .formula-page__content {
    padding: 90px 20px 60px;
    max-width: 100%;
  }
  .formula-block {
    margin-bottom: 36px;
    max-width: 100%;
  }
  .formula-block--first {
    margin-bottom: 40px;
  }
  .formula-block__title {
    font-size: 20px;
  }
  .formula-block--first .formula-block__title {
    font-size: 24px;
  }
  .formula-block__text p {
    font-size: 12px;
  }
}
body.woocommerce-cart .woocommerce,
.is-cart .woocommerce {
  max-width: none;
  padding: 0;
  margin: 0;
}
body.woocommerce-cart .woocommerce > .woocommerce-notices-wrapper,
.is-cart .woocommerce > .woocommerce-notices-wrapper {
  margin: 0 auto;
  padding: 24px 22px 0;
}

.tsuyu-cart .cart-collaterals,
.tsuyu-cart .cart_totals,
.tsuyu-cart .shipping-calculator-form,
.tsuyu-cart .shipping-calculator-button,
.tsuyu-cart .wc-proceed-to-checkout,
.tsuyu-cart .cross-sells,
.tsuyu-cart button[name=update_cart]:not(.tsuyu-cart__update-hidden) {
  display: none !important;
}
.tsuyu-cart__wc-hooks {
  display: none !important;
}

.tsuyu-cart {
  margin: 0 auto;
  padding: 131px 22px 96px;
}
.tsuyu-cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.tsuyu-cart__title {
  margin: 0;
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
  display: flex;
  justify-content: space-between;
  align-items: end;
  width: 100%;
}
.tsuyu-cart__title em {
  font-style: italic;
}
.tsuyu-cart__close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  color: var(--ink);
}
.tsuyu-cart__close svg {
  display: block;
}
.tsuyu-cart__layout {
  display: grid;
  grid-template-columns: 1fr 392px;
  gap: 68px;
  align-items: start;
}
.tsuyu-cart__items-col {
  min-width: 0;
}
.tsuyu-cart__toolbar {
  display: flex;
  justify-content: flex-end;
}
.tsuyu-cart__clear {
  background: none;
  border: 0;
  padding: 0;
  color: #1B1B1B;
  text-align: right;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.tsuyu-cart__clear:hover {
  opacity: 0.55;
}
.tsuyu-cart__items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tsuyu-cart__sidebar {
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: sticky;
  top: 100px;
}
.tsuyu-cart__update-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;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.tsuyu-cart--empty {
  text-align: center;
  padding: 120px 22px;
}
.tsuyu-cart--empty .tsuyu-cart__title {
  font-size: 36px;
}
.tsuyu-cart__empty-msg {
  margin: 24px 0 40px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.tsuyu-cart-item {
  display: grid;
  grid-template-columns: 135px 1fr;
  column-gap: 17px;
  padding: 0 0 25px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 25px;
}
.tsuyu-cart-item:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.tsuyu-cart-item__media {
  display: block;
  width: 135.551px;
  height: 181.258px;
  overflow: hidden;
  background: var(--paper-warm, #efeae5);
}
.tsuyu-cart-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tsuyu-cart-item__body {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  min-height: 181px;
  min-width: 0;
}
.tsuyu-cart-item__head {
  grid-column: 1/-1;
  grid-row: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.tsuyu-cart-item__name-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.tsuyu-cart-item__name {
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
}
.tsuyu-cart-item__name:hover {
  opacity: 0.65;
}
.tsuyu-cart-item__volume {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.tsuyu-cart-item__fav {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--ink);
  transition: opacity 0.2s var(--ease);
}
.tsuyu-cart-item__fav:hover {
  opacity: 0.65;
}
.tsuyu-cart-item__fav.is-in-wishlist svg path {
  fill: var(--ink);
}
.tsuyu-cart-item__fav svg {
  width: 19px;
  height: 17px;
  display: block;
}
.tsuyu-cart-item__foot {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tsuyu-cart-item__price {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
}
.tsuyu-cart-item__price .amount {
  color: inherit;
  font: inherit;
}
.tsuyu-cart-item__qty {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.tsuyu-cart-item__qty .tsuyu-qty {
  border: 0;
  gap: 12px;
  height: auto;
}
.tsuyu-cart-item__qty .tsuyu-qty__btn {
  width: 24px;
  height: 24px;
  font-size: 20px;
  font-weight: 300;
  color: var(--ink);
}
.tsuyu-cart-item__qty .tsuyu-qty__btn:hover {
  background: transparent;
  opacity: 0.55;
}
.tsuyu-cart-item__qty .tsuyu-qty__input {
  width: 24px;
  height: 24px;
  font-size: 13px;
  font-weight: 300;
}
.tsuyu-cart-item__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  margin-left: 6px;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
}
.tsuyu-cart-item__remove:hover {
  color: var(--ink);
}

.tsuyu-cart-promo__label {
  display: block;
  margin: 0 0 25px;
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.tsuyu-cart-promo__label label {
  cursor: pointer;
}
.tsuyu-cart-promo__row {
  display: grid;
  grid-template-columns: 1fr 169px;
  gap: 24px;
  align-items: center;
}
.tsuyu-cart-promo__input {
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 11px;
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 10px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
.tsuyu-cart-promo__input:focus {
  outline: none;
}
.tsuyu-cart-promo__input::placeholder {
  color: var(--ink-mute);
  letter-spacing: 0.14em;
}
.tsuyu-cart-promo__btn {
  height: 40px;
  padding: 0;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--ink);
  color: #1B1B1B;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.tsuyu-cart-promo__btn:hover {
  background: var(--ink);
  color: #fff;
}

.tsuyu-cart-total {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.tsuyu-cart-total__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.tsuyu-cart-total__label {
  color: #1B1B1B;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.tsuyu-cart-total__count {
  font-weight: 300;
  margin-left: 2px;
}
.tsuyu-cart-total__value {
  color: #1B1B1B;
  text-align: right;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.tsuyu-cart-total__value .amount {
  color: inherit;
  font: inherit;
}
.tsuyu-cart-total__checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  background: var(--ink);
  color: #FFF;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  transition: opacity 0.2s var(--ease);
}
.tsuyu-cart-total__checkout:hover {
  opacity: 0.88;
}
.tsuyu-cart-total__gift {
  margin: 0;
  color: #1B1B1B;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.24px;
  text-transform: uppercase;
}
.tsuyu-cart-total__gift a {
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.24px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 3%;
  text-underline-offset: 8%;
  text-underline-position: from-font;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  body.is-cart .site-header {
    display: none;
  }
  .tsuyu-cart {
    max-width: none;
    padding: 0 0 168px;
  }
  .tsuyu-cart__head {
    position: sticky;
    top: 0;
    z-index: 5;
    background: #fff;
    margin: 0;
    padding: 20px;
    border-bottom: 1px solid transparent;
  }
  .tsuyu-cart__title {
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .tsuyu-cart__title em {
    font-style: normal;
  }
  .tsuyu-cart__close {
    display: inline-flex;
  }
  .tsuyu-cart__layout {
    display: block;
  }
  .tsuyu-cart__toolbar {
    display: none;
  }
  .tsuyu-cart__items {
    padding: 0 20px;
  }
  .tsuyu-cart__sidebar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: 6;
    display: block;
    gap: 0;
    background: var(--paper-warm, #f3ece7);
    border-top: 1px solid var(--line);
    padding: 18px 20px 22px;
  }
  .tsuyu-cart-item {
    grid-template-columns: 166px 1fr;
    column-gap: 19px;
    padding-bottom: 0;
    margin-bottom: 5px;
    border-bottom: 0;
  }
  .tsuyu-cart-item__media {
    width: 166px;
    height: 168px;
  }
  .tsuyu-cart-item__body {
    display: flex;
    flex-direction: column;
    min-height: 168px;
  }
  .tsuyu-cart-item__head {
    align-self: stretch;
  }
  .tsuyu-cart-item__name {
    font-size: 12px;
  }
  .tsuyu-cart-item__volume {
    font-size: 12px;
    margin-top: 4px;
  }
  .tsuyu-cart-item__price {
    align-self: flex-start;
    margin-top: 16px;
    font-size: 14px;
  }
  .tsuyu-cart-item__foot {
    align-self: flex-end;
    margin-top: auto;
  }
  .tsuyu-cart-item__remove {
    display: none;
  }
  .tsuyu-cart-promo {
    display: none;
  }
  .tsuyu-cart-total {
    gap: 14px;
    padding-top: 0;
    border-top: 0;
  }
  .tsuyu-cart-total__label, .tsuyu-cart-total__value {
    font-size: 14px;
  }
  .tsuyu-cart-total__checkout {
    height: 36px;
  }
  .tsuyu-cart-total__gift {
    font-size: 11px;
    letter-spacing: 0.14em;
    line-height: 1.8;
  }
}
.tsuyu-checkout {
  margin: 0 auto;
  padding: 100px 22px 70px;
}
.tsuyu-checkout__head {
  margin-bottom: 50px;
}
.tsuyu-checkout__title {
  margin: 0;
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
}
.tsuyu-checkout__title em {
  font-style: italic;
}
.tsuyu-checkout__layout {
  display: grid;
  grid-template-columns: 1fr 697px;
  gap: 88px;
  align-items: start;
}
.tsuyu-checkout__main {
  min-width: 0;
  max-width: 460px;
}
.tsuyu-checkout__sub {
  margin: 56px 0 30px;
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: "Cormorant Garamond";
  font-size: 36px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
}
.tsuyu-checkout__sub em {
  font-style: italic;
}
.tsuyu-checkout__block {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.tsuyu-checkout__block--delivery {
  gap: 50px;
}
.tsuyu-checkout__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 392px;
  max-width: 100%;
  height: 40px;
  margin-top: 56px;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s var(--ease);
}
.tsuyu-checkout__cta:hover {
  opacity: 0.88;
}
.tsuyu-checkout__terms {
  margin-top: 24px;
}
.tsuyu-checkout__sidebar {
  position: sticky;
  top: 110px;
}
.tsuyu-checkout__order-bar {
  display: none;
}
.tsuyu-checkout__order-body {
  display: block;
}
.tsuyu-checkout__promo {
  display: none;
}
.tsuyu-checkout .required,
.tsuyu-checkout abbr.required,
.tsuyu-checkout .optional {
  display: none;
}
.tsuyu-checkout form h2:first-child {
  display: none;
}

.tsuyu-checkout .form-row,
.tsuyu-checkout .tsuyu-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
}
.tsuyu-checkout .form-row label,
.tsuyu-checkout .form-row .tsuyu-field__label,
.tsuyu-checkout .tsuyu-field label,
.tsuyu-checkout .tsuyu-field .tsuyu-field__label {
  display: block;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute, #888);
  cursor: default;
  display: none;
}
.tsuyu-checkout .form-row abbr.required,
.tsuyu-checkout .tsuyu-field abbr.required {
  text-decoration: none;
  color: inherit;
}
.tsuyu-checkout .form-row input[type=text],
.tsuyu-checkout .form-row input[type=email],
.tsuyu-checkout .form-row input[type=tel],
.tsuyu-checkout .form-row input[type=number],
.tsuyu-checkout .form-row input[type=search],
.tsuyu-checkout .form-row input[type=password],
.tsuyu-checkout .form-row textarea,
.tsuyu-checkout .form-row select,
.tsuyu-checkout .tsuyu-field input[type=text],
.tsuyu-checkout .tsuyu-field input[type=email],
.tsuyu-checkout .tsuyu-field input[type=tel],
.tsuyu-checkout .tsuyu-field input[type=number],
.tsuyu-checkout .tsuyu-field input[type=search],
.tsuyu-checkout .tsuyu-field input[type=password],
.tsuyu-checkout .tsuyu-field textarea,
.tsuyu-checkout .tsuyu-field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #1B1B1B;
  padding: 4px 0 8px;
  background: transparent;
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  border-radius: 0;
  min-height: 32px;
}
.tsuyu-checkout .form-row input[type=text]:focus,
.tsuyu-checkout .form-row input[type=email]:focus,
.tsuyu-checkout .form-row input[type=tel]:focus,
.tsuyu-checkout .form-row input[type=number]:focus,
.tsuyu-checkout .form-row input[type=search]:focus,
.tsuyu-checkout .form-row input[type=password]:focus,
.tsuyu-checkout .form-row textarea:focus,
.tsuyu-checkout .form-row select:focus,
.tsuyu-checkout .tsuyu-field input[type=text]:focus,
.tsuyu-checkout .tsuyu-field input[type=email]:focus,
.tsuyu-checkout .tsuyu-field input[type=tel]:focus,
.tsuyu-checkout .tsuyu-field input[type=number]:focus,
.tsuyu-checkout .tsuyu-field input[type=search]:focus,
.tsuyu-checkout .tsuyu-field input[type=password]:focus,
.tsuyu-checkout .tsuyu-field textarea:focus,
.tsuyu-checkout .tsuyu-field select:focus {
  outline: none;
  border-bottom-color: var(--ink);
}
.tsuyu-checkout .form-row input[type=text]::placeholder,
.tsuyu-checkout .form-row input[type=email]::placeholder,
.tsuyu-checkout .form-row input[type=tel]::placeholder,
.tsuyu-checkout .form-row input[type=number]::placeholder,
.tsuyu-checkout .form-row input[type=search]::placeholder,
.tsuyu-checkout .form-row input[type=password]::placeholder,
.tsuyu-checkout .form-row textarea::placeholder,
.tsuyu-checkout .form-row select::placeholder,
.tsuyu-checkout .tsuyu-field input[type=text]::placeholder,
.tsuyu-checkout .tsuyu-field input[type=email]::placeholder,
.tsuyu-checkout .tsuyu-field input[type=tel]::placeholder,
.tsuyu-checkout .tsuyu-field input[type=number]::placeholder,
.tsuyu-checkout .tsuyu-field input[type=search]::placeholder,
.tsuyu-checkout .tsuyu-field input[type=password]::placeholder,
.tsuyu-checkout .tsuyu-field textarea::placeholder,
.tsuyu-checkout .tsuyu-field select::placeholder {
  color: var(--ink-mute);
}
.tsuyu-checkout .form-row--select::after, .tsuyu-checkout .form-row.form-row-wide select + .tsuyu-field__caret, .tsuyu-checkout .form-row.tsuyu-field--select::after,
.tsuyu-checkout .tsuyu-field--select::after,
.tsuyu-checkout .tsuyu-field.form-row-wide select + .tsuyu-field__caret,
.tsuyu-checkout .tsuyu-field.tsuyu-field--select::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 14px;
  width: 9px;
  height: 4px;
  background: url("data:image/svg+xml,%3Csvg width='9' height='4' viewBox='0 0 9 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0.25' y1='0.31' x2='4.35' y2='3.53' stroke='%231B1B1B' stroke-width='0.8'/%3E%3Cline y1='-0.4' x2='5.21' y2='-0.4' transform='matrix(-0.786 0.618 0.618 0.786 8.2 0.63)' stroke='%231B1B1B' stroke-width='0.8'/%3E%3C/svg%3E") no-repeat center;
  pointer-events: none;
}
.tsuyu-checkout .form-row .select2-container,
.tsuyu-checkout .tsuyu-field .select2-container {
  width: 100% !important;
}
.tsuyu-checkout .form-row .select2-container .select2-selection,
.tsuyu-checkout .tsuyu-field .select2-container .select2-selection {
  border: 0;
  border-radius: 0;
  background: transparent;
  height: auto;
  padding: 0;
  border-bottom: 1px solid var(--ink);
  min-height: 32px;
}
.tsuyu-checkout .form-row .select2-container .select2-selection .select2-selection__rendered,
.tsuyu-checkout .tsuyu-field .select2-container .select2-selection .select2-selection__rendered {
  padding: 4px 0 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.4;
}
.tsuyu-checkout .form-row .select2-container .select2-selection .select2-selection__arrow,
.tsuyu-checkout .tsuyu-field .select2-container .select2-selection .select2-selection__arrow {
  display: none;
}

.tsuyu-checkout .form-row#billing_phone_field,
.tsuyu-checkout .tsuyu-field--phone {
  display: grid;
  grid-template-columns: 67px 1fr;
  align-items: end;
  column-gap: 16px;
}
.tsuyu-checkout .form-row#billing_phone_field label,
.tsuyu-checkout .tsuyu-field--phone label {
  grid-column: 1/span 2;
}
.tsuyu-checkout .form-row#billing_phone_field::before,
.tsuyu-checkout .tsuyu-field--phone::before {
  content: "+7";
  grid-column: 1;
  display: flex;
  align-items: flex-end;
  min-height: 32px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
}
.tsuyu-checkout .form-row#billing_phone_field .woocommerce-input-wrapper,
.tsuyu-checkout .tsuyu-field--phone .woocommerce-input-wrapper {
  grid-column: 2;
  min-width: 0;
}

.tsuyu-check {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 14px;
  cursor: pointer;
  align-items: start;
}
.tsuyu-check--with-link {
  grid-template-rows: auto auto;
}
.tsuyu-check--with-link .tsuyu-check__label {
  grid-column: 2;
  grid-row: 1;
}
.tsuyu-check--with-link .tsuyu-check__link {
  grid-column: 2;
  grid-row: 2;
}
.tsuyu-check--with-link input {
  grid-row: 1/span 2;
}
.tsuyu-check input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  margin: 4px 0 0;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  display: inline-block;
}
.tsuyu-check input[type=checkbox]:checked {
  background: var(--ink);
}
.tsuyu-check input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--ink);
}
.tsuyu-check input[type=checkbox]:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 2px;
}
.tsuyu-check__label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1.6;
}
.tsuyu-check__link {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 4px;
}
.tsuyu-check a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tsuyu-pay {
  display: grid;
  grid-template-columns: repeat(3, 120px);
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tsuyu-pay__item {
  margin: 0;
  padding: 0;
}
.tsuyu-pay__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  cursor: pointer;
}
.tsuyu-pay__name {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 40px;
  border: 1px solid var(--ink);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.tsuyu-pay__radio {
  appearance: none;
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border: 1px solid var(--ink);
  background: #fff;
  cursor: pointer;
  position: relative;
  margin: 0;
}
.tsuyu-pay__radio:checked {
  background: var(--ink);
}
.tsuyu-pay__radio:checked::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--ink);
}
.tsuyu-pay__card:has(.tsuyu-pay__radio:checked) .tsuyu-pay__name {
  background: var(--ink);
  color: #fff;
}
.tsuyu-pay__hint {
  grid-column: 1/-1;
  margin: 6px 0 0;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.tsuyu-checkout-summary__items {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tsuyu-checkout-summary__item {
  display: grid;
  grid-template-columns: 135px 1fr auto;
  column-gap: 17px;
  align-items: start;
  padding: 0;
}
.tsuyu-checkout-summary__media {
  width: 135px;
  height: 181px;
  overflow: hidden;
  background: var(--paper-warm, #efeae5);
}
.tsuyu-checkout-summary__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tsuyu-checkout-summary__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 6px;
  min-width: 0;
}
.tsuyu-checkout-summary__name {
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
}
.tsuyu-checkout-summary__volume {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.tsuyu-checkout-summary__meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 181px;
  padding: 4px 0;
}
.tsuyu-checkout-summary__price {
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
}
.tsuyu-checkout-summary__price .amount {
  color: inherit;
  font: inherit;
}
.tsuyu-checkout-summary__qty {
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
}
.tsuyu-checkout-summary__totals {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 35px;
  border-top: 1px solid var(--line);
}
.tsuyu-checkout-summary__line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: #1B1B1B;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: capitalize;
}
.tsuyu-checkout-summary__line .amount {
  color: inherit;
  font: inherit;
}
.tsuyu-checkout-summary__line--grand {
  margin-top: 18px;
  color: #1B1B1B;
  font-family: Montserrat;
  font-size: 27px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
.tsuyu-checkout-summary__line--grand .amount {
  font-weight: 500;
}
.tsuyu-checkout-summary__dot {
  margin: 0 4px;
  color: var(--ink-soft);
}
.tsuyu-checkout-summary__empty {
  padding: 40px 0;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.woocommerce-checkout .woocommerce {
  max-width: none;
  padding: 0;
  margin: 0;
}
body.woocommerce-checkout .woocommerce > .woocommerce-notices-wrapper {
  max-width: 1396px;
  margin: 0 auto;
  padding: 24px 22px 0;
}

@media (max-width: 768px) {
  .tsuyu-checkout {
    padding: 56px 20px 60px;
  }
  .tsuyu-checkout__title {
    font-size: 24px;
  }
  .tsuyu-checkout__head {
    margin-bottom: 24px;
  }
  .tsuyu-checkout__layout {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .tsuyu-checkout__main {
    order: 2;
    max-width: 100%;
  }
  .tsuyu-checkout__sidebar {
    order: 1;
    position: static;
    top: auto;
    margin-bottom: 24px;
  }
  .tsuyu-checkout.tsuyu-checkout--step-country .tsuyu-checkout__sidebar {
    display: none;
  }
  .tsuyu-checkout__order-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    background: none;
    border: 0;
    border-bottom: 1px solid var(--ink);
    cursor: pointer;
    color: var(--ink);
  }
  .tsuyu-checkout__order-name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .tsuyu-checkout__order-caret {
    display: inline-flex;
    transition: transform 0.2s var(--ease);
  }
  .tsuyu-checkout__order-caret svg {
    display: block;
  }
  .tsuyu-checkout__order-total {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 20px;
    color: var(--ink);
  }
  .tsuyu-checkout__order-total .amount {
    font: inherit;
    color: inherit;
  }
  .tsuyu-checkout__order-body {
    display: none;
    padding-top: 20px;
  }
  .tsuyu-checkout__sidebar.is-open .tsuyu-checkout__order-body {
    display: block;
  }
  .tsuyu-checkout__sidebar.is-open .tsuyu-checkout__order-caret {
    transform: rotate(180deg);
  }
  .tsuyu-checkout__promo {
    display: block;
    order: 2;
    margin-bottom: 8px;
  }
  .tsuyu-checkout__sub {
    margin: 36px 0 24px;
    font-size: 22px;
  }
  .tsuyu-checkout__cta {
    width: 100%;
  }
  .tsuyu-checkout__promo-label {
    display: block;
    margin: 0 0 18px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
  }
  .tsuyu-checkout__promo-row {
    display: grid;
    grid-template-columns: 1fr 130px;
    gap: 16px;
    align-items: end;
  }
  .tsuyu-checkout__promo-input {
    border: 0;
    border-bottom: 1px solid var(--ink);
    padding: 6px 0;
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: transparent;
    color: var(--ink);
  }
  .tsuyu-checkout__promo-input:focus {
    outline: none;
  }
  .tsuyu-checkout__promo-input::placeholder {
    color: var(--ink-mute);
  }
  .tsuyu-checkout__promo-btn {
    height: 40px;
    background: var(--ink);
    color: #fff;
    border: 1px solid var(--ink);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .tsuyu-pay {
    grid-template-columns: repeat(2, 1fr);
  }
  .tsuyu-pay__name {
    width: 100%;
  }
  .tsuyu-checkout-summary__item {
    grid-template-columns: 100px 1fr auto;
    column-gap: 14px;
  }
  .tsuyu-checkout-summary__media {
    width: 100px;
    height: 134px;
  }
  .tsuyu-checkout-summary__meta {
    min-height: 134px;
  }
}
.woocommerce-notices-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 22px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  margin: 0 0 24px;
  padding: 16px 20px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: var(--paper-warm);
  border-left: 2px solid var(--ink);
  list-style: none;
}
.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.woocommerce-error {
  border-left-color: #b00020;
  color: #b00020;
}

.tsuyu-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  height: 32px;
}
.tsuyu-qty__btn {
  width: 32px;
  height: 32px;
  background: transparent;
  border: 0;
  font-size: 16px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tsuyu-qty__btn:hover {
  background: var(--paper-warm);
}
.tsuyu-qty__input {
  width: 40px;
  height: 32px;
  text-align: center;
  border: 0;
  background: transparent;
  font-size: 13px;
  color: var(--ink);
  appearance: textfield;
  -moz-appearance: textfield;
}
.tsuyu-qty__input::-webkit-outer-spin-button, .tsuyu-qty__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.tsuyu-account {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 22px 120px;
}
.tsuyu-account__head {
  margin-bottom: 48px;
}
.tsuyu-account__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
}
.tsuyu-account__layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
}
.tsuyu-account__nav .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tsuyu-account__nav .woocommerce-MyAccount-navigation a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}
.tsuyu-account__nav .woocommerce-MyAccount-navigation .is-active a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.tsuyu-account__content .woocommerce-Address-title h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
}
.tsuyu-account__content address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.6;
}
.tsuyu-account__content .woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
}
.tsuyu-account__content .woocommerce-orders-table th, .tsuyu-account__content .woocommerce-orders-table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-sans);
  font-size: 12px;
  text-align: left;
}

.tsuyu-login {
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 22px 120px;
}
.tsuyu-login__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.tsuyu-login__col {
  max-width: 420px;
}
.tsuyu-login__title {
  margin: 0 0 32px;
  font-family: var(--font-display);
  font-size: 36px;
  font-style: italic;
  font-weight: 300;
}
.tsuyu-login__title em {
  font-style: italic;
}
.tsuyu-login__form .form-row {
  margin-bottom: 24px;
}
.tsuyu-login__form .btn--block {
  margin-top: 8px;
}
.tsuyu-login__form .lost_password {
  margin-top: 16px;
  font-size: 11px;
}
.tsuyu-login__form .lost_password a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.js-cart-count {
  transition: transform 0.25s var(--ease);
}
.js-cart-count.is-bumped {
  transform: scale(1.2);
}

.add_to_featured {
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
  transition: transform 0.15s var(--ease);
}
.add_to_featured:hover {
  transform: scale(1.08);
}
.add_to_featured svg path {
  transition: fill 0.2s var(--ease), stroke 0.2s var(--ease);
}
.add_to_featured.is-in-wishlist svg path {
  fill: var(--ink);
  stroke: var(--ink);
}

.btn-wishlist.is-in-wishlist {
  background: var(--ink);
  color: #fff;
}

.wishlist {
  margin: 0 auto;
  padding: 130px 22px 120px;
}
.wishlist .product-card .product-card__media {
  height: 395.08px;
}
.wishlist__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 50px;
  gap: 24px;
  flex-wrap: wrap;
}
.wishlist__title {
  margin: 0;
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
}
.wishlist__title em {
  font-style: italic;
}
.wishlist__share-btn {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #1B1B1B;
  text-align: right;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.24px;
  text-transform: uppercase;
}
.wishlist__share-btn:hover {
  opacity: 0.65;
}
.wishlist__share-label--gift {
  display: none;
}
.wishlist__shared-note {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.wishlist__shared-note a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-left: 8px;
}
.wishlist__empty {
  padding: 80px 0;
  text-align: center;
}
.wishlist__empty p {
  margin: 0 0 24px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink-soft);
}
.wishlist__grid {
  row-gap: 56px;
}

@media (max-width: 768px) {
  .wishlist {
    padding: 56px 10px 60px;
  }
  .wishlist__head {
    margin-bottom: 24px;
    gap: 12px;
    flex-wrap: nowrap;
    align-items: baseline;
  }
  .wishlist__title {
    font-size: 24px;
  }
  .wishlist__share-btn {
    font-size: 11px;
    letter-spacing: 0.12em;
    white-space: nowrap;
  }
  .wishlist__share-label--full {
    display: none;
  }
  .wishlist__share-label--gift {
    display: inline;
  }
  .wishlist__grid.cards-grid--4 {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
    row-gap: 30px;
  }
  .wishlist-card .product-card__media {
    height: auto;
    aspect-ratio: 186/248;
  }
  .wishlist-card .product-card__meta {
    margin-top: 12px;
  }
  .wishlist-card .product-card__name,
  .wishlist-card .product-card__price,
  .wishlist-card .product-card__price .amount {
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  .wishlist-card .product-card__price {
    margin-top: 6px;
  }
  .wishlist-card .product-card .add_to_featured {
    width: 16px;
    height: 16px;
  }
  .wishlist-card__buy {
    height: 30px;
    margin-top: 12px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }
}
.wishlist-card {
  display: flex;
  flex-direction: column;
}
.wishlist-card__buy {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  margin-top: 14px;
  background: #fff;
  border: 1px solid var(--ink);
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  color: #1B1B1B;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 13.465px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.269px;
  text-transform: uppercase;
}
.wishlist-card__buy:hover {
  background: var(--ink);
  color: #fff;
}
.wishlist-card__buy.added::after {
  content: " ✓";
  margin-left: 6px;
}
.wishlist-card__buy.loading {
  opacity: 0.6;
}

.wl-share-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
}
.wl-share-modal[hidden] {
  display: none;
}
.wl-share-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(3px);
}
.wl-share-modal__panel {
  position: relative;
  width: 445.222px;
  height: max-content;
  max-width: calc(100% - 32px);
  background: #fff;
  border: 1px solid var(--line);
  padding-left: 27px;
  padding-top: 47px;
  padding-bottom: 35px;
  padding-right: 27px;
}
.wl-share-modal__close {
  position: absolute;
  top: 35px;
  right: 27px;
  width: 24px;
  height: 24px;
  font-size: 22px;
  line-height: 1;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--ink);
  padding: 0;
}
.wl-share-modal__close:hover {
  opacity: 0.65;
}
.wl-share-modal__title {
  margin: 0 0 50px;
  color: #1B1B1B;
  font-family: "Cormorant Garamond";
  font-size: 27px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}
.wl-share-modal__title em {
  font-style: italic;
}
.wl-share-modal__lede {
  margin: 0 0 50px;
  color: #1B1B1B;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.24px;
}
.wl-share-modal__copy {
  width: 100%;
  height: 40px;
  background: #fff;
  border: 1px solid var(--ink);
  color: #1B1B1B;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.wl-share-modal__copy:hover {
  background: var(--ink);
  color: #fff;
}

@media (max-width: 768px) {
  .wl-share-modal {
    place-items: end stretch;
  }
  .wl-share-modal__panel {
    width: 100%;
    max-width: none;
    height: auto;
    border: 0;
    border-top: 1px solid var(--line);
    padding: 28px 20px 28px;
  }
  .wl-share-modal__title {
    font-size: 22px;
    margin-bottom: 24px;
  }
  .wl-share-modal__lede {
    margin-bottom: 28px;
  }
}

/*# sourceMappingURL=styles.css.map */
