@font-face {
  font-family: "Lumaia Sans";
  src: url("../../fonts/manrope-latin.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Lumaia Serif";
  src: url("../../fonts/instrument-serif-regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Lumaia Serif";
  src: url("../../fonts/instrument-serif-italic.woff2") format("woff2");
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #0e363d;
  --ink-soft: #28555a;
  --cream: #fbf6ec;
  --sand: #f2e7d2;
  --gold: #c8a76a;
  --gold-light: #e6cf9f;
  --gold-ink: #76541d;
  --coral: #d86a55;
  --white: #fffdf8;
  --line: rgba(14, 54, 61, .18);
  --shadow: 0 24px 70px rgba(10, 52, 58, .13);
  --serif: "Lumaia Serif", Georgia, serif;
  --display: "Lumaia Serif", Georgia, serif;
  --sans: "Lumaia Sans", Arial, sans-serif;
  --script: "Lumaia Serif", Georgia, serif;
  --header-h: 79px;
  --ticker-h: 40px;
  --container: 1180px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-smooth: cubic-bezier(.65, 0, .35, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--ticker-h));
  background: var(--cream);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.locked {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--cream);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: none;
}

.announcement {
  position: relative;
  z-index: 60;
  height: var(--ticker-h);
  overflow: hidden;
  color: var(--gold-light);
  background: #285d66;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.announcement__track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  animation: ticker 28s linear infinite;
}

.announcement:hover .announcement__track {
  animation-play-state: paused;
}

.announcement__track span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 35px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  white-space: nowrap;
}

.announcement__track span::before {
  content: "";
  width: 5px;
  height: 5px;
  background: currentColor;
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(230, 207, 159, .65);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header-h);
  padding: 0 clamp(22px, 5vw, 84px);
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  background: rgba(251, 246, 236, .9);
  border-bottom: 1px solid rgba(14, 54, 61, .08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 246, 236, .96);
  box-shadow: 0 10px 35px rgba(7, 44, 50, .08);
}

.brand {
  width: max-content;
  display: grid;
  grid-template-columns: 42px auto;
  grid-template-rows: auto auto;
  align-items: center;
  line-height: 1;
}

.brand__monogram {
  grid-row: 1 / 3;
  width: 36px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -.08em;
  border: 1px solid rgba(200, 167, 106, .55);
  border-radius: 50% 50% 44% 56%;
  transform: rotate(-3deg);
  transition: color .35s ease, background .35s ease, transform .45s var(--ease-out);
}

.brand:hover .brand__monogram,
.brand:focus-visible .brand__monogram {
  color: var(--ink);
  background: var(--gold-light);
  transform: rotate(3deg) scale(1.04);
}

.brand__name {
  align-self: end;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .04em;
}

.brand__sub {
  align-self: start;
  margin-top: 5px;
  font-size: 7px;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 44px);
}

.desktop-nav a {
  position: relative;
  padding: 28px 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.icon-button,
.menu-button,
.drawer-close,
.modal-close {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.icon-button {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
}

.icon-button svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-count {
  position: absolute;
  top: 3px;
  right: 0;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--ink);
  border-radius: 50%;
  font-size: 9px;
  line-height: 1;
}

.cart-count.is-bumping {
  animation: cartBump .42s var(--ease-out);
}

@keyframes cartBump {
  0% { transform: scale(.72); }
  55% { transform: scale(1.24); }
  100% { transform: scale(1); }
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 7px;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 7px 0;
  background: currentColor;
  transition: transform .25s ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 45;
  inset: calc(var(--ticker-h) + var(--header-h)) 0 0;
  padding: 40px 24px;
  color: var(--cream);
  background: var(--ink);
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  transform: translateY(-18px);
  transition:
    opacity .35s ease,
    transform .42s var(--ease-out),
    clip-path .42s var(--ease-out),
    visibility .42s;
}

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

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  clip-path: inset(0);
  transform: none;
}

.mobile-menu nav {
  max-width: 620px;
  margin: 0 auto;
  display: grid;
}

.mobile-menu a {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  font-family: var(--serif);
  font-size: clamp(28px, 8vw, 44px);
  line-height: 1.1;
  opacity: 0;
  transform: translateY(18px);
}

.mobile-menu a span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .2em;
}

.mobile-menu.is-open a {
  animation: menuItemIn .55s var(--ease-out) forwards;
}

.mobile-menu.is-open a:nth-child(2) { animation-delay: .04s; }
.mobile-menu.is-open a:nth-child(3) { animation-delay: .08s; }
.mobile-menu.is-open a:nth-child(4) { animation-delay: .12s; }
.mobile-menu.is-open a:nth-child(5) { animation-delay: .16s; }
.mobile-menu.is-open a:nth-child(6) { animation-delay: .2s; }

@keyframes menuItemIn {
  to {
    opacity: 1;
    transform: none;
  }
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--ticker-h) - var(--header-h));
  min-height: calc(100dvh - var(--ticker-h) - var(--header-h));
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: #0a3f44;
}

.hero__media,
.hero__slide,
.hero__slide img,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 1.45s ease;
}

.hero__slide.is-active {
  z-index: 1;
  opacity: 1;
}

.hero__slide img {
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.015);
}

.hero__slide.is-active img {
  animation: heroKenBurns 7s var(--ease-smooth) both;
}

.hero__slide:nth-child(2) img {
  object-position: 52% 58%;
}

.hero__slide:nth-child(3) img {
  object-position: 50% 42%;
}

.hero__slide:nth-child(4) img {
  object-position: 50% 32%;
}

.hero__veil {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 31, 38, .68), rgba(3, 31, 38, .2) 49%, transparent 72%),
    linear-gradient(180deg, rgba(5, 36, 42, .2), rgba(5, 36, 42, .2) 55%, rgba(4, 28, 34, .65)),
    radial-gradient(circle at center, transparent 0, rgba(3, 31, 38, .36) 74%, rgba(3, 31, 38, .62) 100%);
}

@keyframes heroKenBurns {
  from { transform: scale(1.015) translate3d(0, 0, 0); }
  to { transform: scale(1.09) translate3d(0, -1.2%, 0); }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  padding: 54px 24px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.motion-ready .hero__content .eyebrow,
.motion-ready .hero__content .hero__seal,
.motion-ready .hero__content .hero__collection,
.motion-ready .hero__content .hero__script,
.motion-ready .hero__content .hero__line,
.motion-ready .hero__content .hero__actions,
.motion-ready .scroll-cue {
  animation: heroContentIn .95s var(--ease-out) both;
}

.motion-ready .hero__content .hero__seal {
  animation: heroContentIn .95s var(--ease-out) .12s both, metalShine 4.6s linear 1.1s infinite;
}
.motion-ready .hero__content h1 span {
  animation: heroTitleIn 1.05s var(--ease-out) both;
}
.motion-ready .hero__content h1 span:first-child { animation-delay: .2s; }
.motion-ready .hero__content h1 span:last-child { animation-delay: .29s; }
.motion-ready .hero__content .hero__collection { animation-delay: .39s; }
.motion-ready .hero__content .hero__script { animation-delay: .47s; }
.motion-ready .hero__content .hero__line { animation-delay: .54s; }
.motion-ready .hero__content .hero__actions { animation-delay: .61s; }
.motion-ready .scroll-cue { animation-delay: .78s; }

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroTitleIn {
  from {
    opacity: 0;
    letter-spacing: .16em;
    transform: translate3d(0, 44px, 0);
  }
  to {
    opacity: 1;
    letter-spacing: .09em;
    transform: none;
  }
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 16px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .35em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 48px;
  height: 1px;
  background: currentColor;
  opacity: .5;
}

.eyebrow--light {
  color: rgba(255, 255, 255, .78);
}

.hero__seal {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 7px 0 3px;
  color: transparent;
  background: linear-gradient(110deg, #8cbab9 10%, #f3d79b 48%, #fff4d7 54%, #b98d49 88%);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: var(--display);
  font-size: 62px;
  font-weight: 600;
  letter-spacing: -.12em;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, .22));
  background-size: 260% 100%;
  animation: metalShine 4.6s linear infinite;
}

@keyframes metalShine {
  0%, 18% { background-position: 100% 50%; }
  55%, 100% { background-position: 0 50%; }
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(50px, 6.2vw, 86px);
  font-weight: 600;
  line-height: .84;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(0, 0, 0, .22);
}

.hero h1 span {
  display: block;
}

.hero__collection {
  margin: 20px 0 0;
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: .72em;
  text-indent: .72em;
  text-transform: uppercase;
}

.hero__script {
  margin: 20px 0 0;
  font-family: var(--script);
  font-size: clamp(24px, 2.4vw, 35px);
  line-height: 1;
}

.hero__line {
  margin: 7px 0 25px;
  color: rgba(255, 255, 255, .84);
  font-size: 10px;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

@media (min-width: 821px) {
  .hero {
    place-items: center start;
  }

  .hero__content {
    width: min(640px, 49vw);
    margin-left: clamp(32px, 5vw, 84px);
    align-items: flex-start;
    text-align: left;
  }

  .hero__content .eyebrow,
  .hero__actions {
    justify-content: flex-start;
  }

  .hero__collection {
    text-indent: 0;
  }
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, transform .25s ease, border-color .25s ease;
}

.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -2px;
  background: linear-gradient(110deg, transparent 24%, rgba(255, 255, 255, .32) 48%, transparent 72%);
  transform: translateX(-125%);
  transition: transform .7s var(--ease-out);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(125%);
}

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

.button--cream {
  color: var(--ink);
  background: var(--cream);
}

.button--cream:hover {
  color: var(--cream);
  background: transparent;
  border-color: var(--cream);
}

.button--dark {
  color: var(--cream);
  background: var(--ink);
  border-color: var(--ink);
}

.button--dark:hover {
  color: var(--ink);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.text-link span,
.collection-card__copy > span i {
  position: relative;
  width: 30px;
  height: 1px;
  background: currentColor;
  transition: width .25s ease;
}

.text-link span::after,
.collection-card__copy > span i::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.text-link:hover span {
  width: 44px;
}

.text-link--light {
  color: var(--white);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 4vw, 60px);
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .7);
}

.scroll-cue span {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--gold-light), transparent);
  transform-origin: top;
  animation: scrollPulse 1.9s ease-in-out infinite;
}

.hero__bokeh {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__bokeh i {
  position: absolute;
  bottom: -30px;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 238, 197, .65);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(246, 218, 159, .36);
  animation: bokehRise 14s linear infinite;
}

.hero__bokeh i:nth-child(1) { left: 8%; animation-delay: -2s; animation-duration: 13s; }
.hero__bokeh i:nth-child(2) { left: 26%; width: 4px; height: 4px; animation-delay: -8s; animation-duration: 17s; }
.hero__bokeh i:nth-child(3) { left: 44%; width: 10px; height: 10px; animation-delay: -5s; animation-duration: 19s; }
.hero__bokeh i:nth-child(4) { left: 67%; animation-delay: -11s; animation-duration: 15s; }
.hero__bokeh i:nth-child(5) { left: 82%; width: 5px; height: 5px; animation-delay: -4s; animation-duration: 12s; }
.hero__bokeh i:nth-child(6) { left: 93%; width: 9px; height: 9px; animation-delay: -13s; animation-duration: 20s; }

@keyframes bokehRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(.65);
  }
  14%, 76% { opacity: .65; }
  100% {
    opacity: 0;
    transform: translate3d(24px, -88vh, 0) scale(1.25);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: .35; transform: scaleY(.45); }
  50% { opacity: 1; transform: scaleY(1); }
}

.hero__sparkles i {
  position: absolute;
  z-index: 2;
  width: 7px;
  height: 7px;
  background: #f7dfa6;
  transform: rotate(45deg);
  box-shadow: 0 0 17px #f7dfa6;
  animation: sparkle 3s ease-in-out infinite alternate;
}

.hero__sparkles i:nth-child(1) { top: 28%; left: 23%; }
.hero__sparkles i:nth-child(2) { top: 38%; right: 29%; animation-delay: -.8s; }
.hero__sparkles i:nth-child(3) { bottom: 31%; left: 31%; animation-delay: -1.5s; }
.hero__sparkles i:nth-child(4) { top: 57%; right: 14%; animation-delay: -2.1s; }
.hero__sparkles i:nth-child(5) { bottom: 18%; right: 38%; animation-delay: -2.6s; }

@keyframes sparkle {
  from { opacity: .35; transform: rotate(45deg) scale(.6); }
  to { opacity: 1; transform: rotate(45deg) scale(1.15); }
}

.section {
  position: relative;
  padding: clamp(80px, 9vw, 140px) clamp(20px, 5vw, 80px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(45px, 6vw, 84px);
  text-align: center;
}

.kicker {
  margin: 0 0 11px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.section-heading h2,
.story h2,
.size-modal h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: .01em;
}

h2 em,
h3 em {
  color: var(--gold);
  font-weight: 500;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: 15px auto 0;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 300;
}

.collections {
  overflow: hidden;
  background:
    radial-gradient(circle at 0 85%, rgba(200, 167, 106, .12), transparent 24%),
    var(--cream);
}

.collections::before,
.collections::after,
.infos::before,
.infos::after {
  content: "";
  position: absolute;
  width: clamp(180px, 27vw, 410px);
  aspect-ratio: 1;
  border: 1px solid rgba(200, 167, 106, .2);
  border-radius: 50%;
  opacity: .4;
  pointer-events: none;
  animation: ambientOrb 22s ease-in-out infinite alternate;
}

.collections::before {
  top: 11%;
  left: -12%;
  box-shadow: inset 0 0 70px rgba(200, 167, 106, .08);
}

.collections::after {
  right: -14%;
  bottom: 4%;
  animation-delay: -9s;
}

@keyframes ambientOrb {
  from { transform: translate3d(-18px, 16px, 0) scale(.94); }
  to { transform: translate3d(24px, -22px, 0) scale(1.08); }
}

.collection-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
}

.collection-card {
  position: relative;
  isolation: isolate;
  height: clamp(500px, 54vw, 700px);
  overflow: hidden;
  background: var(--ink);
}

.collection-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(115deg, transparent 34%, rgba(255, 241, 211, .2) 50%, transparent 66%);
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translateX(-125%);
  transition: transform 1s var(--ease-out);
}

.collection-card:hover::before,
.collection-card:focus-visible::before {
  transform: translateX(125%);
}

.collection-card--offset {
  transform: translateY(42px);
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out), filter .8s ease;
}

.collection-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(3, 31, 37, .82));
}

.collection-card__copy {
  position: absolute;
  z-index: 1;
  right: clamp(22px, 4vw, 48px);
  bottom: clamp(24px, 4vw, 48px);
  left: clamp(22px, 4vw, 48px);
  color: var(--white);
}

.collection-card__copy small {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-light);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.collection-card__copy strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 1;
}

.collection-card__copy > span {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 17px;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.collection-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.06);
}

.collection-card:hover .collection-card__copy > span i {
  width: 44px;
}

.shop {
  background:
    linear-gradient(90deg, rgba(200, 167, 106, .08) 1px, transparent 1px) center / 12.5% 100%,
    var(--cream);
}

.products {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: clamp(70px, 10vw, 150px);
}

.product {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
  align-items: center;
  gap: clamp(34px, 7vw, 100px);
}

.product--reverse .product__media {
  grid-column: 2;
}

.product--reverse .product__copy {
  grid-row: 1;
  grid-column: 1;
}

.product__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.07);
  transition: transform .7s var(--ease-out), filter .7s ease;
}

.product__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 55%, rgba(255, 238, 197, .16)),
    linear-gradient(180deg, transparent 72%, rgba(4, 31, 37, .16));
  pointer-events: none;
}

.product__media:hover img {
  filter: saturate(1.05);
}

.product__badge {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 20px;
  padding: 8px 12px;
  color: var(--cream);
  background: var(--ink);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: badgeBreath 3.8s ease-in-out infinite;
}

@keyframes badgeBreath {
  0%, 100% { box-shadow: 0 0 0 0 rgba(14, 54, 61, 0); }
  50% { box-shadow: 0 0 0 7px rgba(14, 54, 61, .12); }
}

.product__copy {
  max-width: 480px;
}

.product__type {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.product h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.product h3::after {
  content: "";
  width: 60px;
  height: 1px;
  display: block;
  margin: 21px 0;
  background: var(--gold);
}

.product__copy > p:not([class]) {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 300;
}

.product__price {
  margin: 26px 0 30px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
}

.product__price span {
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.size-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.size-guide-trigger,
.footer-link {
  appearance: none;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: .08em;
}

.sizes {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.sizes button {
  width: 47px;
  height: 47px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.sizes button:hover,
.sizes button.is-selected {
  color: var(--cream);
  background: var(--ink);
  border-color: var(--ink);
}

.add-to-cart {
  width: 100%;
}

.product__message {
  min-height: 24px;
  margin: 8px 0 0;
  color: var(--coral);
  font-size: 12px;
}

.lookbook {
  background: #f5ecd9;
  overflow: hidden;
}

.lookbook .kicker,
.lookbook .section-heading h2 em,
.lookbook-title > span,
.lookbook-title h3 em,
.faq .kicker,
.faq .section-heading h2 em,
.faq summary > span,
.social .kicker,
.social .section-heading h2 em {
  color: var(--gold-ink);
}

.lookbook-block {
  max-width: var(--container);
  margin: 0 auto 145px;
  display: grid;
  grid-template-columns: 1.5fr .78fr;
  grid-template-rows: auto 440px 165px;
  gap: 24px;
}

.lookbook-title {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.lookbook-title > span {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.lookbook-title h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 500;
  line-height: 1;
}

.lookbook-feature {
  grid-row: 2 / 4;
}

.lookbook figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.lookbook figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.07);
  transition: transform .9s var(--ease-out), filter .8s ease;
}

.lookbook figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(4, 31, 37, .75));
}

.lookbook figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  left: 20px;
  color: var(--white);
}

.lookbook figcaption small,
.lookbook figcaption strong {
  display: block;
}

.lookbook figcaption small {
  color: var(--gold-light);
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.lookbook figcaption strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.lookbook figure:hover img {
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.11);
  filter: saturate(1.05);
}

.lookbook-block--sun {
  grid-template-columns: .82fr 1.5fr;
  grid-template-rows: auto 500px 60px;
  margin-bottom: 0;
}

.lookbook-block--sun .lookbook-feature {
  grid-row: 2 / 4;
  grid-column: 2;
}

.lookbook-block--sun .lookbook-small {
  grid-column: 1;
  grid-row: 2;
}

.lookbook-cta {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  justify-self: start;
}

.story {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(80px, 9vw, 140px) clamp(20px, 7vw, 110px);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(45px, 8vw, 120px);
  color: var(--cream);
  background:
    radial-gradient(circle at 5% 0, rgba(200, 167, 106, .15), transparent 34%),
    var(--ink);
}

.story::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -35%;
  left: -15%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 167, 106, .2), transparent 68%);
  animation: storyAura 24s ease-in-out infinite alternate;
}

.story__ambient {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.story__ambient i {
  position: absolute;
  bottom: -12px;
  left: var(--particle-x);
  width: var(--particle-size);
  height: var(--particle-size);
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 9px rgba(230, 207, 159, .7);
  animation: storyMote var(--particle-duration) linear var(--particle-delay) infinite;
}

.story__copy,
.story__media {
  position: relative;
  z-index: 1;
}

@keyframes storyAura {
  from { transform: translate3d(-3%, 2%, 0) scale(.92); opacity: .55; }
  to { transform: translate3d(10%, -5%, 0) scale(1.14); opacity: 1; }
}

@keyframes storyMote {
  0% { opacity: 0; transform: translate3d(0, 0, 0) scale(.6); }
  15%, 70% { opacity: .55; }
  100% { opacity: 0; transform: translate3d(18px, -620px, 0) scale(1.2); }
}

.story__copy {
  max-width: 630px;
}

.kicker--gold {
  color: var(--gold-light);
}

.story__script {
  margin: 0 0 10px;
  color: var(--gold-light);
  font-family: var(--script);
  font-size: 31px;
}

.story h2 {
  color: var(--cream);
}

.story h2::after {
  content: "";
  width: 72px;
  height: 1px;
  display: block;
  margin: 27px 0;
  background: var(--gold);
}

.story__copy > p:not([class]) {
  color: rgba(251, 246, 236, .76);
  font-size: 14px;
  font-weight: 300;
}

.story__tags {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.story__tags span {
  padding: 7px 12px;
  border: 1px solid rgba(230, 207, 159, .35);
  color: var(--gold-light);
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.story__media {
  min-height: 530px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 16px;
  align-items: center;
}

.story__media img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.055);
  transition: transform .8s var(--ease-out), filter .7s ease;
}

.story__media img:last-child {
  height: 510px;
  margin-top: 70px;
}

.features {
  padding: 70px clamp(20px, 5vw, 80px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.features article {
  padding: 38px clamp(18px, 2.5vw, 38px);
  text-align: center;
  background: var(--cream);
  transition: color .35s ease, background .35s ease, transform .45s var(--ease-out);
}

.features article:hover {
  color: var(--cream);
  background: var(--ink);
  transform: translateY(-8px);
}

.features article:hover p {
  color: rgba(251, 246, 236, .7);
}

.features article:hover .feature-icon {
  animation: iconLift .65s var(--ease-out);
}

.features h3 {
  margin: 18px 0 6px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
}

.features p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 300;
}

.feature-icon {
  position: relative;
  width: 36px;
  height: 36px;
  display: inline-block;
}

@keyframes iconLift {
  0% { transform: translateY(0) rotate(0); }
  45% { transform: translateY(-9px) rotate(-4deg); }
  100% { transform: translateY(0) rotate(0); }
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
  border: 1px solid var(--gold);
}

.feature-icon--package::before { inset: 7px 5px 3px; }
.feature-icon--package::after { width: 18px; height: 18px; top: 2px; left: 9px; transform: rotate(45deg); border-width: 1px 0 0 1px; }
.feature-icon--hand::before { width: 26px; height: 15px; left: 4px; bottom: 4px; border-radius: 70% 10% 60% 30%; }
.feature-icon--hand::after { width: 12px; height: 16px; left: 12px; top: 2px; border-width: 0 1px; }
.feature-icon--route::before { inset: 5px; border-radius: 50%; }
.feature-icon--route::after { width: 3px; height: 3px; top: 11px; left: 11px; border-radius: 50%; box-shadow: 10px 9px 0 -1px var(--cream), 10px 9px 0 0 var(--gold); }
.feature-icon--message::before { inset: 6px 3px 8px; border-radius: 50%; }
.feature-icon--message::after { width: 8px; height: 8px; left: 8px; bottom: 5px; border-width: 0 0 1px 1px; transform: rotate(-18deg); }

.infos {
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 0, rgba(200, 167, 106, .13), transparent 25%),
    var(--sand);
}

.infos::before {
  top: -26%;
  right: -7%;
}

.infos::after {
  bottom: -30%;
  left: -10%;
  animation-delay: -12s;
}

.info-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  position: relative;
  min-height: 435px;
  padding: 42px 36px;
  background: rgba(251, 246, 236, .72);
  border: 1px solid rgba(14, 54, 61, .12);
  overflow: hidden;
  transition: transform .5s var(--ease-out), background .35s ease, box-shadow .5s ease;
}

.info-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(200, 167, 106, .3);
  border-radius: 50%;
  transform: scale(.7);
  transition: transform .6s var(--ease-out), opacity .4s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  background: var(--cream);
  box-shadow: 0 24px 55px rgba(14, 54, 61, .1);
}

.info-card:hover::after {
  opacity: .8;
  transform: scale(1.08);
}

.info-card > span {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .2em;
}

.info-card h3 {
  margin: 19px 0 26px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
}

.info-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-card li {
  position: relative;
  padding: 11px 0 11px 20px;
  color: var(--ink-soft);
  border-top: 1px solid rgba(14, 54, 61, .1);
  font-size: 12px;
  font-weight: 300;
}

.info-card li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 2px;
  width: 5px;
  height: 5px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.faq {
  background: var(--cream);
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
  transition: background .35s ease;
}

.faq details[open] {
  background: rgba(242, 231, 210, .42);
}

.faq summary {
  position: relative;
  min-height: 80px;
  padding: 24px 60px 24px 58px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  list-style: none;
}

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

.faq summary > span {
  position: absolute;
  left: 0;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .18em;
}

.lookbook .lookbook-title > span,
.lookbook .lookbook-title h3 em,
.faq .faq-list summary > span {
  color: var(--gold-ink);
}

.faq summary i {
  position: absolute;
  right: 8px;
  width: 22px;
  height: 22px;
}

.faq summary i::before,
.faq summary i::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 3px;
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: transform .25s ease;
}

.faq summary i::after {
  transform: rotate(90deg);
}

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

.faq details p {
  max-width: 720px;
  margin: 0 50px 27px 58px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 300;
}

.faq details[open] p {
  animation: faqAnswerIn .42s var(--ease-out) both;
}

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

.faq-cta {
  margin: 45px auto 0;
  display: flex;
  width: max-content;
}

.social {
  padding-bottom: 0;
  background: var(--sand);
}

.social__handles {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.social__handles span {
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  letter-spacing: .08em;
}

.social-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.social-grid figure {
  margin: 0;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.social-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 55%, rgba(200, 167, 106, .32)),
    radial-gradient(circle at center, transparent 38%, rgba(5, 39, 45, .25));
  opacity: 0;
  transition: opacity .55s ease;
}

.social-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .6s ease;
}

.social-grid figure:hover img {
  transform: scale(1.05);
  filter: saturate(.82);
}

.social-grid figure:hover::after {
  opacity: 1;
}

.site-footer {
  padding: 80px clamp(22px, 6vw, 94px) 28px;
  display: grid;
  grid-template-columns: 1.55fr repeat(3, .7fr);
  gap: clamp(36px, 6vw, 90px);
  color: rgba(251, 246, 236, .78);
  background: #092f35;
}

.brand--footer {
  color: var(--cream);
}

.footer-brand > p {
  max-width: 330px;
  margin: 24px 0 0;
  font-size: 13px;
  font-weight: 300;
}

.site-footer h3 {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.site-footer > div:not(.footer-bottom) > a,
.footer-link {
  width: fit-content;
  max-width: 100%;
  display: block;
  margin: 10px 0;
  color: rgba(251, 246, 236, .72);
  border-bottom-color: transparent;
  font-size: 12px;
  font-weight: 300;
  text-align: left;
  overflow-wrap: anywhere;
}

.site-footer a:hover,
.site-footer button:hover {
  color: var(--gold-light);
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 24px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  display: flex;
  gap: 18px;
}

.contact-float {
  position: fixed;
  z-index: 42;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(13, 71, 51, .28);
  transition: transform .25s ease;
}

.contact-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.contact-float strong {
  font-size: 12px;
  letter-spacing: .08em;
}

.drawer-backdrop {
  position: fixed;
  z-index: 79;
  inset: 0;
  background: rgba(3, 31, 37, .56);
  backdrop-filter: blur(2px);
  animation: backdropIn .3s ease both;
}

.drawer-backdrop[hidden] {
  display: none;
}

.cart-drawer {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(450px, 100%);
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  box-shadow: -18px 0 60px rgba(4, 34, 40, .2);
  transform: translateX(102%);
  visibility: hidden;
  transition: transform .38s cubic-bezier(.2, .7, .2, 1), visibility .38s;
}

.cart-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.cart-drawer.is-open .cart-drawer__header,
.cart-drawer.is-open .cart-items,
.cart-drawer.is-open .cart-empty,
.cart-drawer.is-open .cart-summary {
  animation: drawerContentIn .55s var(--ease-out) .12s both;
}

@keyframes backdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes drawerContentIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.cart-drawer__header {
  padding-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.cart-drawer__header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
}

.drawer-close,
.modal-close,
.checkout-close {
  position: relative;
  width: 44px;
  height: 44px;
}

.drawer-close span,
.modal-close span,
.checkout-close span {
  position: absolute;
  top: 21px;
  left: 9px;
  width: 26px;
  height: 1px;
  background: currentColor;
}

.drawer-close span:first-child,
.modal-close span:first-child,
.checkout-close span:first-child { transform: rotate(45deg); }
.drawer-close span:last-child,
.modal-close span:last-child,
.checkout-close span:last-child { transform: rotate(-45deg); }

.cart-items {
  flex: 1;
  overflow-y: auto;
}

.cart-empty {
  flex: 1;
  display: grid;
  place-content: center;
  text-align: center;
}

.cart-empty[hidden] {
  display: none;
}

.cart-empty p {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
}

.cart-empty span {
  color: var(--ink-soft);
  font-size: 12px;
}

.cart-item {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 15px;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 82px;
  height: 100px;
  object-fit: cover;
}

.cart-item h3 {
  margin: 2px 0 5px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.cart-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
}

.cart-item strong {
  display: block;
  margin-top: 10px;
  font-family: var(--serif);
  font-size: 18px;
}

.cart-item button {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0;
}

.cart-item button::before,
.cart-item button::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 1px;
  background: var(--ink);
  transform: translate(-7px, 0) rotate(45deg);
}

.cart-item button::after {
  transform: translate(-7px, 0) rotate(-45deg);
}

.cart-summary {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.cart-summary[hidden] {
  display: none;
}

.cart-summary > div {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.cart-summary strong {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: 0;
}

.cart-checkout {
  width: 100%;
  border: 0;
}

.cart-summary p {
  margin: 11px 0 0;
  color: var(--ink-soft);
  font-size: 10px;
  text-align: center;
}

.size-modal {
  width: min(760px, calc(100% - 30px));
  padding: clamp(26px, 5vw, 54px);
  color: var(--ink);
  background: var(--cream);
  border: 0;
  box-shadow: var(--shadow);
}

.size-modal[open] {
  animation: modalIn .5s var(--ease-out) both;
}

.size-modal::backdrop {
  background: rgba(3, 31, 37, .66);
  backdrop-filter: blur(3px);
  animation: backdropIn .35s ease both;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.size-modal .modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
}

.size-modal h2 {
  margin-bottom: 26px;
}

.size-table-wrap {
  overflow-x: auto;
}

.size-modal table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  text-align: left;
}

.size-modal th,
.size-modal td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.size-modal thead th {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.size-modal__note {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
}

.checkout-modal {
  width: min(720px, calc(100% - 30px));
  max-height: min(850px, calc(100dvh - 30px));
  padding: clamp(28px, 5vw, 58px);
  overflow-y: auto;
  color: var(--ink);
  background: var(--cream);
  border: 0;
  box-shadow: var(--shadow);
}

.checkout-modal[open] {
  animation: modalIn .5s var(--ease-out) both;
}

.checkout-modal::backdrop {
  background: rgba(3, 31, 37, .72);
  backdrop-filter: blur(3px);
  animation: backdropIn .35s ease both;
}

.checkout-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.checkout-fields[hidden],
.checkout-confirmation[hidden] {
  display: none;
}

.checkout-modal h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 500;
  line-height: 1;
}

.checkout-modal .kicker,
.checkout-modal h2 em,
.checkout-modal .checkout-form legend {
  color: var(--gold-ink);
}

.checkout-intro,
.checkout-confirmation > p {
  max-width: 58ch;
  margin: 18px 0 28px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.checkout-form fieldset {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border: 0;
}

.checkout-form legend {
  width: 100%;
  margin-bottom: 11px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.checkout-form fieldset label {
  min-height: 96px;
  padding: 15px;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  border: 1px solid var(--line);
  cursor: pointer;
}

.checkout-form input[type="radio"],
.checkout-form input[type="checkbox"] {
  accent-color: var(--gold);
}

.checkout-form fieldset span {
  display: grid;
  gap: 7px;
}

.checkout-form fieldset strong {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
}

.checkout-form fieldset small {
  color: var(--ink-soft);
  font-size: 10px;
}

.checkout-consent {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.55;
}

.checkout-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.checkout-submit,
.checkout-done {
  width: 100%;
  margin-top: 22px;
  border: 0;
}

.checkout-submit:disabled {
  cursor: wait;
  opacity: .58;
}

.checkout-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: #8e4d2d;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.checkout-confirmation dl {
  margin: 28px 0 0;
  border-block: 1px solid var(--line);
}

.checkout-confirmation dl div {
  padding: 15px 0;
  display: grid;
  grid-template-columns: minmax(110px, .7fr) 1.3fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.checkout-confirmation dl div:last-child {
  border-bottom: 0;
}

.checkout-confirmation dt {
  color: var(--ink-soft);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.checkout-confirmation dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  overflow-wrap: anywhere;
}

.reveal {
  --reveal-x: 0px;
  --reveal-y: 40px;
  --reveal-rest-y: 0px;
  opacity: 1;
  filter: none;
  transform: translate3d(0, var(--reveal-rest-y), 0) scale(1);
}

.motion-ready .reveal {
  transition:
    opacity .9s ease var(--reveal-delay, 0ms),
    transform .95s var(--ease-out) var(--reveal-delay, 0ms),
    filter .8s ease var(--reveal-delay, 0ms);
}

.motion-ready .reveal:not(.is-visible) {
  opacity: 0;
  filter: blur(3px);
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(.985);
}

.reveal--left {
  --reveal-x: -56px;
  --reveal-y: 0px;
}

.reveal--right {
  --reveal-x: 56px;
  --reveal-y: 0px;
}

.collection-card--offset {
  --reveal-rest-y: 42px;
  --reveal-y: 76px;
}

.reveal.is-visible {
  opacity: 1;
  filter: none;
  transform: translate3d(0, var(--reveal-rest-y), 0) scale(1);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 160px 1fr 95px;
    padding-inline: 28px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .desktop-nav a {
    font-size: 10px;
  }

  .product {
    gap: 44px;
  }

  .story {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

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

@media (max-width: 820px) {
  :root {
    --header-h: 78px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero__content {
    justify-content: flex-end;
    min-height: 100%;
    padding-bottom: 74px;
  }

  .hero__media img {
    object-position: 48% center;
  }

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

  .collection-card {
    height: min(136vw, 680px);
  }

  .collection-card--offset {
    --reveal-rest-y: 0px;
    --reveal-y: 40px;
    transform: none;
  }

  .reveal--left,
  .reveal--right {
    --reveal-x: 0px;
    --reveal-y: 34px;
  }

  .product,
  .product--reverse {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product--reverse .product__media,
  .product--reverse .product__copy {
    grid-column: 1;
  }

  .product--reverse .product__media {
    grid-row: 1;
  }

  .product--reverse .product__copy {
    grid-row: 2;
  }

  .product__copy {
    max-width: none;
  }

  .checkout-form fieldset {
    grid-template-columns: 1fr;
  }

  .checkout-form fieldset label {
    min-height: 70px;
  }

  .lookbook-block,
  .lookbook-block--sun {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 430px 240px auto;
    margin-bottom: 100px;
  }

  .lookbook-feature,
  .lookbook-block--sun .lookbook-feature {
    grid-row: 2;
    grid-column: 1 / -1;
  }

  .lookbook-small,
  .lookbook-block--sun .lookbook-small {
    grid-row: 3;
    grid-column: auto;
  }

  .lookbook-small--lower {
    grid-column: 2;
  }

  .lookbook-cta {
    grid-row: 4;
  }

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

  .story__media {
    min-height: 0;
  }

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

  .info-card {
    min-height: auto;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  :root {
    --ticker-h: 41px;
  }

  .announcement__track span {
    padding: 0 22px;
    font-size: 9px;
  }

  .site-header {
    padding: 0 16px 0 20px;
  }

  .brand {
    grid-template-columns: 38px auto;
  }

  .brand__monogram {
    width: 32px;
    height: 39px;
    font-size: 21px;
  }

  .brand__name {
    font-size: 14px;
  }

  .hero {
    min-height: calc(100svh - var(--ticker-h) - var(--header-h));
  }

  .hero__content {
    justify-content: flex-end;
    padding: 60px 0 63px;
  }

  .hero__media img {
    object-position: 40% center;
  }

  .hero__veil {
    background:
      linear-gradient(180deg, rgba(5, 36, 42, .08) 20%, rgba(4, 28, 34, .28) 54%, rgba(4, 28, 34, .88) 100%);
  }

  .eyebrow {
    max-width: 310px;
    font-size: 8px;
    letter-spacing: .25em;
  }

  .eyebrow span {
    display: none;
  }

  .hero__seal {
    width: 62px;
    height: 62px;
    font-size: 48px;
  }

  .hero h1 {
    font-size: clamp(43px, 14vw, 58px);
    line-height: .88;
    letter-spacing: .045em;
  }

  .hero__collection {
    margin-top: 13px;
    font-size: 8px;
  }

  .hero__script {
    margin-top: 12px;
    font-size: 26px;
  }

  .hero__line {
    margin-bottom: 17px;
    font-size: 8px;
  }

  .hero__actions {
    gap: 16px;
  }

  .hero__actions .button {
    min-height: 44px;
    padding-inline: 15px;
    font-size: 9px;
  }

  .hero__actions .text-link {
    font-size: 9px;
  }

  .scroll-cue {
    display: none;
  }

  .hero__sparkles i:nth-child(1) { top: 32%; left: 18%; }
  .hero__sparkles i:nth-child(2) { top: 42%; right: 15%; }
  .hero__sparkles i:nth-child(3) { bottom: 36%; left: 27%; }
  .hero__sparkles i:nth-child(4) { top: 55%; right: 9%; }

  .collections::before,
  .collections::after,
  .infos::before,
  .infos::after {
    display: none;
  }

  .section {
    padding: 76px 18px;
  }

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

  .section-heading h2,
  .story h2 {
    font-size: 42px;
  }

  .collection-grid {
    gap: 18px;
  }

  .collection-card {
    height: 128vw;
    max-height: 600px;
  }

  .products {
    gap: 78px;
  }

  .product__media {
    aspect-ratio: 4 / 5;
  }

  .product h3 {
    font-size: 43px;
  }

  .sizes {
    justify-content: space-between;
  }

  .sizes button {
    width: calc((100vw - 68px) / 5);
    max-width: 55px;
  }

  .lookbook-block,
  .lookbook-block--sun {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 370px 190px auto;
    gap: 10px;
    margin-bottom: 82px;
  }

  .lookbook-title {
    display: block;
  }

  .lookbook-title h3 {
    margin-top: 8px;
    font-size: 42px;
  }

  .lookbook figcaption {
    right: 12px;
    bottom: 10px;
    left: 12px;
  }

  .lookbook figcaption strong {
    font-size: 18px;
  }

  .lookbook-cta {
    grid-column: 1 / -1;
    margin-top: 10px;
    width: 100%;
  }

  .story {
    padding: 80px 18px;
  }

  .story__media {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .story__media img {
    height: 300px;
  }

  .story__media img:last-child {
    height: 350px;
    margin-top: 44px;
  }

  .features {
    padding: 0;
    grid-template-columns: 1fr 1fr;
  }

  .features article {
    padding: 31px 14px;
  }

  .features h3 {
    font-size: 20px;
  }

  .info-card {
    padding: 32px 24px;
  }

  .faq summary {
    min-height: 74px;
    padding: 20px 43px 20px 38px;
    font-size: 20px;
  }

  .faq details p {
    margin: 0 20px 25px 38px;
  }

  .social {
    padding-bottom: 0;
  }

  .social__handles {
    flex-direction: column;
    align-items: center;
    gap: 9px;
  }

  .site-footer {
    padding: 62px 22px 25px;
    grid-template-columns: 1fr 1fr;
    gap: 38px 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: block;
    line-height: 1.8;
  }

  .footer-bottom p:last-child {
    margin-top: 12px;
    flex-wrap: wrap;
  }

  .contact-float {
    width: 54px;
    height: 54px;
  }

  .cart-drawer {
    padding: 22px 18px;
  }
}

.motion-lite .hero__slide.is-active img,
.motion-lite .announcement__track,
.motion-lite .hero__bokeh i,
.motion-lite .story::before,
.motion-lite .story__ambient i,
.motion-lite .collections::before,
.motion-lite .collections::after,
.motion-lite .infos::before,
.motion-lite .infos::after {
  animation: none;
}

.motion-lite .hero__bokeh,
.motion-lite .story__ambient {
  display: none;
}

.motion-lite .product__media img,
.motion-lite .lookbook figure img,
.motion-lite .story__media img {
  transform: none;
}

.motion-lite .reveal {
  opacity: 1;
  filter: none;
  transform: translate3d(0, var(--reveal-rest-y), 0) scale(1);
  transition: none;
}

.is-document-hidden *,
.is-document-hidden *::before,
.is-document-hidden *::after {
  animation-play-state: paused !important;
}

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

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

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

  .hero__slide.is-active img,
  .product__media img,
  .lookbook figure img,
  .story__media img {
    animation: none;
    transform: none;
  }

  .hero__bokeh,
  .story__ambient,
  .collections::before,
  .collections::after,
  .infos::before,
  .infos::after {
    display: none;
  }
}

@media (prefers-reduced-data: reduce) {
  .hero__media img,
  .hero__bokeh i,
  .story__ambient i {
    animation: none;
  }

  .hero__bokeh,
  .story__ambient {
    display: none;
  }
}

.text-link,
.size-guide-trigger,
.site-footer a,
.site-footer .footer-link {
  min-width: 24px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
