:root {
  --bg: #ffffff;
  --surface: #f3f3f3;
  --surface-2: #e9e9e9;
  --surface-3: #dedede;
  --ink: #111113;
  --ink-2: #3b3b41;
  --muted: #8b8b92;
  --line: #e7e7e7;
  --black: #0c0c0e;
  --white: #ffffff;
  --danger: #b3261e;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 11px;
  --container: 1180px;
  --gutter: 20px;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Playfair Display", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow-soft: 0 18px 40px -26px rgba(12, 12, 14, .45);
  --shadow-lift: 0 26px 52px -28px rgba(12, 12, 14, .55);
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

h1, h2, h3, p, ul, ol, dl, dd, figure {
  margin: 0;
}

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

address {
  font-style: normal;
}

[hidden],
.cart[hidden],
.cart__view[hidden],
.cart__foot[hidden],
.accordion__panel[hidden],
.header-search[hidden],
.product-card[hidden] {
  display: none;
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 60;
  padding: 10px 16px;
  background: var(--black);
  color: var(--white);
  border-radius: 999px;
  font-size: 13px;
  transition: top .2s var(--ease);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.product-grid .reveal:nth-child(3n+2),
.collection-grid .reveal:nth-child(4n+2),
.steps__item:nth-child(2),
.hero__side .reveal:nth-child(2) {
  transition-delay: .08s;
}

.product-grid .reveal:nth-child(3n+3),
.collection-grid .reveal:nth-child(4n+3),
.steps__item:nth-child(3) {
  transition-delay: .16s;
}

.collection-grid .reveal:nth-child(4n+4),
.steps__item:nth-child(4) {
  transition-delay: .24s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(12px);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}

.site-header.is-stuck {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 1px 0 rgba(17, 17, 19, .08), 0 14px 30px -26px rgba(12, 12, 14, .6);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 66px;
}

.brand {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -.01em;
}

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

.site-nav__list a {
  position: relative;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 4px 0;
  transition: color .25s var(--ease);
}

.site-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.site-nav__list a:hover {
  color: var(--ink);
}

.site-nav__list a:hover::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease);
}

.icon-btn:hover {
  background: var(--surface);
  transform: translateY(-1px);
}

.icon-btn__count {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--ink-2);
  font-size: 10px;
  font-weight: 600;
  line-height: 17px;
  text-align: center;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}

.icon-btn__count.is-filled {
  background: var(--black);
  color: var(--white);
}

.icon-btn__count.is-bumped {
  animation: countBump .4s var(--ease);
}

@keyframes countBump {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 38px;
  height: 38px;
  padding: 0 8px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 1.6px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}

.burger.is-open span:nth-child(1) {
  transform: translateY(5.6px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-5.6px) rotate(-45deg);
}

.header-search {
  border-top: 1px solid var(--line);
  padding: 14px 0 16px;
  animation: dropIn .3s var(--ease);
}

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

.header-search__label {
  display: block;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.header-search__input {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 14px;
}

.header-search__input:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--white);
}

.arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  flex: none;
}

.arrow-circle--sm {
  width: 30px;
  height: 30px;
  background: var(--black);
  color: var(--white);
}

.arrow-circle--lg {
  width: 54px;
  height: 54px;
}

.arrow-circle--btn {
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  transition: transform .3s var(--ease), background .3s var(--ease);
}

.arrow-circle--btn:hover {
  transform: translateY(-3px) rotate(45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scale(0);
  border-radius: inherit;
  transition: transform .4s var(--ease);
  z-index: 0;
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn--dark {
  background: var(--black);
  color: var(--white);
}

.btn--dark::before {
  background: #2a2a30;
}

.btn--dark:hover::before {
  transform: scale(1);
}

.btn--light {
  background: var(--white);
  color: var(--black);
  padding: 10px 20px;
  font-size: 13px;
}

.btn--light::before {
  background: var(--surface-2);
}

.btn--light:hover::before {
  transform: scale(1);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink-2);
}

.btn--ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn--ghost::before {
  display: none;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn--block {
  display: flex;
  width: 100%;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: .42;
  cursor: not-allowed;
}

.btn:disabled:hover {
  transform: none;
}

.btn:disabled::before {
  display: none;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(27px, 4.4vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.015em;
  text-align: center;
}

.section-title--left {
  text-align: left;
}

.hero {
  position: relative;
  padding: 34px 0 6px;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}

.hero__blob--a {
  width: 380px;
  height: 380px;
  top: -120px;
  left: -130px;
  background: radial-gradient(circle, #e6ded2, transparent 70%);
  animation: float 16s ease-in-out infinite;
}

.hero__blob--b {
  width: 460px;
  height: 460px;
  top: 40px;
  right: -180px;
  background: radial-gradient(circle, #dfe3e6, transparent 70%);
  animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(22px, 30px, 0); }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 7.4vw, 66px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.02em;
  text-align: center;
  max-width: 23ch;
  margin: 0 auto 30px;
}

.hero__chip {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  background: var(--surface);
  margin: 0 .06em;
}

.hero__chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.hero__chip:hover img {
  transform: scale(1.08);
}

.hero__nowrap {
  white-space: nowrap;
}

.hero__chip--square {
  width: .78em;
  height: .78em;
  border-radius: .18em;
}

.hero__chip--pill {
  width: 1.42em;
  height: .62em;
  border-radius: 999px;
}

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

.hero__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface-2);
  aspect-ratio: 16 / 10;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 24s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}

.hero__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-soft);
}

.hero__dots {
  display: flex;
}

.hero__dots i {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1.5px solid var(--white);
  margin-left: -6px;
  background: var(--surface-3);
}

.hero__dots i:first-child {
  margin-left: 0;
}

.hero__dots i:nth-child(2) { background: #c9c2b7; }
.hero__dots i:nth-child(3) { background: #a9a9ad; }
.hero__dots i:nth-child(4) { background: var(--black); }

.hero__badge-text {
  font-size: 10.5px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--ink-2);
}

.hero__cta {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 6px 6px 20px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 13.5px;
  font-weight: 500;
  transition: transform .3s var(--ease);
}

.hero__cta:hover {
  transform: translateY(-2px);
}

.hero__cta .arrow-circle {
  transition: transform .3s var(--ease);
}

.hero__cta:hover .arrow-circle {
  transform: rotate(45deg);
}

.hero__side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mini-card {
  display: flex;
  flex-direction: column;
  padding: 9px;
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.mini-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.mini-card__media {
  position: relative;
  flex: 1;
  min-height: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface-2);
  aspect-ratio: 4 / 3;
}

.mini-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.mini-card:hover .mini-card__media img {
  transform: scale(1.05);
}

.mini-card__swatches {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mini-card__swatches i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(17, 17, 19, .55);
}

.mini-card__swatches i:first-child {
  background: var(--black);
}

.mini-card__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 3px 2px;
}

.mini-card__name {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.2;
}

.mini-card__meta {
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 2px;
}

.mini-card__price {
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
}

.catalogue {
  padding: 46px 0 20px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 22px 0 10px;
}

.filter {
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}

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

.filter.is-active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.catalogue__note {
  text-align: center;
  font-size: 11.5px;
  color: var(--muted);
  margin-bottom: 26px;
}

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

.product-card {
  position: relative;
  padding: 10px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

.product-card__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface-2);
  aspect-ratio: 1 / 1;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}

.product-card:hover .product-card__media img {
  transform: scale(1.06);
}

.product-card__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 62px 4px 6px;
}

.product-card__name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}

.product-card__desc {
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.45;
  color: var(--muted);
}

.product-card__pack {
  margin-top: 6px;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--ink-2);
}

.product-card__packname {
  padding: 2px 7px;
  margin-right: 2px;
  border-radius: 999px;
  background: var(--surface-2);
  font-weight: 600;
}

.product-card__price {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.product-grid__empty {
  margin-top: 26px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.why {
  padding: 56px 0 20px;
}

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

.why__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
  aspect-ratio: 16 / 10;
}

.why__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.why__media:hover img {
  transform: scale(1.05);
}

.why__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, .92);
  color: var(--black);
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease), background .35s var(--ease);
}

.why__play:hover {
  transform: translate(-50%, -50%) scale(1.08) rotate(45deg);
  background: var(--white);
}

.why__caption {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-2);
}

.accordion {
  margin-top: 22px;
}

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

.accordion__item:first-child {
  border-top: 1px solid var(--line);
}

.accordion__heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 16px 2px;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color .25s var(--ease);
}

.accordion__trigger:hover {
  color: var(--ink-2);
}

.accordion__sign {
  position: relative;
  width: 14px;
  height: 14px;
  flex: none;
}

.accordion__sign::before,
.accordion__sign::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 1.4px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease);
}

.accordion__sign::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__trigger[aria-expanded="true"] .accordion__sign::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.accordion__trigger[aria-expanded="true"] .accordion__sign::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.accordion__panel {
  padding: 0 40px 18px 2px;
  animation: panelIn .35s var(--ease);
}

.accordion__panel p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

.collections {
  padding: 56px 0 20px;
}

.collection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}

.collection-card__media {
  padding: 10px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.collection-card:hover .collection-card__media {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

.collection-card__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.collection-card__name {
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 600;
}

.collection-card__desc {
  margin-top: 4px;
  font-size: 11.5px;
  color: var(--muted);
}

.collection-card__price {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
}

.cta {
  padding: 56px 0 20px;
}

.cta__panel {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  isolation: isolate;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
}

.cta__panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.cta__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 8, 10, .95) 8%, rgba(20, 20, 24, .78) 46%, rgba(120, 120, 126, .45) 100%);
  z-index: -1;
}

.cta__body {
  padding: 30px 26px;
}

.cta__title {
  font-size: clamp(22px, 4.4vw, 34px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -.02em;
  color: var(--white);
}

.cta__body .btn {
  margin-top: 22px;
}

.cta__pill {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 5px 5px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: 12.5px;
  font-weight: 500;
  box-shadow: 0 0 0 9px var(--bg);
  transition: transform .3s var(--ease);
}

.cta__pill:hover {
  transform: translateY(-2px);
}

.cta__pill .arrow-circle {
  transition: transform .3s var(--ease);
}

.cta__pill:hover .arrow-circle {
  transform: rotate(45deg);
}

.trade {
  padding: 62px 0 20px;
}

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

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 26px;
}

.steps__item {
  padding: 18px 18px 20px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.steps__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.steps__num {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--muted);
}

.steps__name {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
}

.steps__text {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted);
}

.audience {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.audience li {
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11.5px;
  color: var(--ink-2);
}

.trade__contact {
  padding: 26px 24px;
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.trade__contact-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
}

.contact-list {
  margin: 18px 0 22px;
}

.contact-list__row {
  padding: 12px 0;
  border-top: 1px solid var(--surface-3);
}

.contact-list__row dt {
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-list__row dd {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.55;
}

.contact-list__row a {
  position: relative;
  border-bottom: 1px solid var(--surface-3);
  transition: border-color .25s var(--ease);
}

.contact-list__row a:hover {
  border-color: var(--ink);
}

.trade__contact-note {
  margin-top: 12px;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

.site-footer {
  padding: 60px 0 22px;
}

.footer-panel {
  padding: 34px 24px 28px;
  border-radius: var(--radius-xl);
  background: var(--black);
  color: var(--white);
}

.footer-panel__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding-bottom: 30px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
}

.footer-panel__about {
  margin-top: 14px;
  max-width: 42ch;
  font-size: 11.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .6);
}

.footer-panel__copy {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3.6vw, 30px);
  font-weight: 600;
  line-height: 1.2;
}

.footer-panel__bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.footer-col__title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-col li + li {
  margin-top: 7px;
}

.footer-col a {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .6);
  transition: color .25s var(--ease);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .6);
}

.footer-contact a {
  color: rgba(255, 255, 255, .88);
  transition: color .25s var(--ease);
}

.footer-contact a:hover {
  color: var(--white);
}

.cart {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.cart__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, .45);
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.cart.is-open .cart__overlay {
  opacity: 1;
}

.cart__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(430px, 100%);
  height: 100%;
  padding: 20px;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform .34s var(--ease);
  overflow-y: auto;
}

.cart.is-open .cart__panel {
  transform: none;
}

.cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.cart__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
}

.cart__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease);
}

.cart__close:hover {
  background: var(--surface-2);
  transform: rotate(90deg);
}

.cart__view {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  padding-top: 16px;
}

.cart__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: var(--surface);
  animation: lineIn .3s var(--ease);
}

@keyframes lineIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.cart-line__name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.cart-line__price {
  margin-top: 3px;
  font-size: 11px;
  color: var(--muted);
}

.cart-line__sum {
  font-size: 13.5px;
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

.cart-line__controls {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--surface-3);
  border-radius: 50%;
  background: var(--white);
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}

.qty-btn:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.qty-value {
  min-width: 22px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.cart-line__remove {
  margin-left: auto;
  border: 0;
  background: transparent;
  font-size: 11.5px;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s var(--ease);
}

.cart-line__remove:hover {
  color: var(--danger);
}

.cart__empty {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.cart__foot {
  margin-top: auto;
  padding-top: 18px;
}

.cart__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.cart__total strong {
  font-size: 19px;
}

.cart__note {
  margin: 6px 0 10px;
  font-size: 11px;
  color: var(--muted);
}

.cart__minimum {
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--surface);
  border-left: 2px solid var(--ink);
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--ink-2);
}

.checkout__lead {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 11.5px;
  font-weight: 600;
}

.field__hint {
  font-weight: 400;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  font-size: 13.5px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--white);
}

.field input.has-error,
.field textarea.has-error {
  border-color: var(--danger);
}

.field__error {
  margin-top: 5px;
  font-size: 11px;
  color: var(--danger);
}

.field__error:empty {
  display: none;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkout__summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.checkout__summary strong {
  font-size: 18px;
}

.checkout__privacy {
  font-size: 11px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 16px;
}

.checkout__privacy a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.cart__done {
  align-items: flex-start;
  text-align: left;
}

.cart__done-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  margin-bottom: 16px;
  animation: markIn .45s var(--ease);
}

@keyframes markIn {
  from { opacity: 0; transform: scale(.7); }
  to { opacity: 1; transform: none; }
}

.cart__done-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
}

.cart__done-number,
.cart__done-total {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}

.cart__done-number strong,
.cart__done-total strong {
  color: var(--ink);
}

.cart__done-text {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
}

.cart__done-text a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cart__done .btn {
  margin-top: auto;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 70;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 12.5px;
  opacity: 0;
  transform: translate(-50%, 16px);
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--black);
}

.legal {
  padding: 40px 0 20px;
}

.legal__head {
  max-width: 62ch;
}

.legal__title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 6vw, 48px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.02em;
}

.legal__meta {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

.legal__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 34px;
}

.legal__toc {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.legal__toc-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.legal__toc li + li {
  margin-top: 7px;
}

.legal__toc a {
  font-size: 12.5px;
  color: var(--ink-2);
  transition: color .2s var(--ease);
}

.legal__toc a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal__body {
  max-width: 72ch;
}

.legal__section + .legal__section {
  margin-top: 34px;
}

.legal__section h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  scroll-margin-top: 90px;
}

.legal__section h3 {
  margin-top: 18px;
  font-size: 13.5px;
  font-weight: 600;
}

.legal__section p,
.legal__section li {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--ink-2);
}

.legal__section p + p {
  margin-top: 12px;
}

.legal__section ul {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.legal__section ul li {
  position: relative;
  padding-left: 18px;
}

.legal__section ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--surface-3);
}

.legal__section a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal__section strong {
  font-weight: 600;
  color: var(--ink);
}

@media (min-width: 600px) {
  .cart-line {
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }

  .cart-line__controls {
    grid-column: auto;
  }

  .cart-line__remove {
    margin-left: 12px;
  }

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

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

  .footer-panel {
    padding: 40px 34px 32px;
  }
}

@media (min-width: 900px) {
  body {
    font-size: 15px;
  }

  .hero {
    padding: 48px 0 10px;
  }

  .hero__title {
    margin-bottom: 38px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) 246px;
    gap: 18px;
  }

  .hero__media {
    aspect-ratio: 16 / 9;
  }

  .hero__side {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
  }

  .mini-card__media {
    aspect-ratio: auto;
  }

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

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

  .why__grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }

  .why {
    padding: 74px 0 20px;
  }

  .catalogue,
  .collections,
  .cta {
    padding-top: 74px;
  }

  .trade {
    padding-top: 84px;
  }

  .trade__grid {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 44px;
  }

  .cta__panel {
    min-height: 340px;
  }

  .cta__body {
    padding: 44px 44px 46px;
  }

  .cta__pill {
    top: 20px;
    right: 20px;
  }

  .footer-panel {
    padding: 48px 44px 40px;
  }

  .footer-panel__top {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }

  .footer-panel__copy {
    text-align: right;
  }

  .footer-panel__bottom {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }

  .footer-contact {
    text-align: right;
    align-items: flex-end;
  }

  .legal__grid {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 54px;
    align-items: start;
  }

  .legal__toc {
    position: sticky;
    top: 90px;
  }

  .legal {
    padding: 56px 0 20px;
  }
}

@media (max-width: 899px) {
  .burger {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 40px -30px rgba(12, 12, 14, .8);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform .3s var(--ease), opacity .3s var(--ease), visibility .3s;
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--gutter) 18px;
  }

  .site-nav__list li + li {
    border-top: 1px solid var(--line);
  }

  .site-nav__list a {
    display: block;
    padding: 13px 0;
    font-size: 15px;
  }

  .site-nav__list a::after {
    display: none;
  }
}

@media (max-width: 599px) {
  :root {
    --gutter: 16px;
    --radius-xl: 22px;
    --radius-lg: 18px;
  }

  .product-card__foot {
    padding-right: 56px;
  }

  .mini-card__foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }

  .cta__pill {
    position: static;
    margin: 0;
    box-shadow: none;
    align-self: flex-start;
  }

  .cta__panel {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .cta__body {
    padding: 26px 20px 22px;
  }

  .cta__panel .cta__pill {
    margin: 0 20px 24px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

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

  .cart__panel {
    padding: 18px 16px;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 22px 16px;
  }

  .cart.is-open ~ .toast {
    top: 78px;
    bottom: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms;
    animation-iteration-count: 1;
    transition-duration: .001ms;
    scroll-behavior: auto;
  }

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