:root {
  --ink: #171619;
  --ink-soft: #2d2a2f;
  --ivory: #f4efe5;
  --ivory-deep: #e8dece;
  --paper: #fffaf2;
  --pink: #efa1bd;
  --pink-soft: #f8cad9;
  --silver: #c7c7ce;
  --silver-dark: #6e6f78;
  --red: #e44e43;
  --blue: #b6c8db;
  --line: rgba(23, 22, 25, .2);
  --radius: 2px;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --font-display: "Arial Narrow", "Microsoft YaHei", "PingFang SC", sans-serif;
  --font-body: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .48) 0 1px, transparent 1px) 0 0 / 6px 6px,
    var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  color: inherit;
}

::selection {
  color: var(--paper);
  background: var(--red);
}

:focus-visible {
  outline: 3px solid #286cf4;
  outline-offset: 4px;
}

[id] {
  scroll-margin-top: 5rem;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 1rem;
  left: 1rem;
  padding: .7rem 1rem;
  transform: translateY(-180%);
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
  font-weight: 800;
  text-decoration: none;
  transition: transform .16s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 0 var(--pad);
  border-bottom: 1px solid var(--ink);
  background: rgba(244, 239, 229, .92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  justify-self: start;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: .12em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  transform: rotate(-6deg);
  border: 2px solid var(--ink);
  background: var(--pink);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.brand-name {
  font-size: .92rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.6rem);
  justify-self: center;
}

.primary-nav a {
  position: relative;
  padding: .35rem 0;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--red);
  transition: transform .18s ease;
}

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

.bag-button,
.menu-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.bag-button {
  display: flex;
  align-items: center;
  gap: .7rem;
  justify-self: end;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.bag-button span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  min-height: calc(100svh - 76px);
  border-bottom: 1px solid var(--ink);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  padding: clamp(3rem, 7vw, 7.5rem) var(--pad) clamp(2.5rem, 5vw, 5rem);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background:
    linear-gradient(135deg, transparent 0 86%, rgba(228, 78, 67, .12) 86% 87%, transparent 87%),
    var(--ivory);
}

.eyebrow {
  display: flex;
  margin: 0 0 1.5rem;
  align-items: center;
  gap: .65rem;
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.eyebrow > span {
  width: 25px;
  height: 8px;
  background: var(--red);
  clip-path: polygon(0 45%, 70% 45%, 70% 0, 100% 50%, 70% 100%, 70% 55%, 0 55%);
}

.hero h1,
.section-heading h2,
.story-copy h2,
.lookbook-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 950;
  line-height: .86;
  letter-spacing: -.07em;
}

.hero h1 {
  max-width: 8ch;
  font-size: clamp(4.7rem, 9.4vw, 10.5rem);
}

h1 em,
h2 em {
  position: relative;
  color: var(--red);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  position: absolute;
  right: -.15em;
  bottom: -.12em;
  width: 1.1em;
  height: .16em;
  content: "";
  transform: rotate(-4deg);
  background: var(--pink);
  clip-path: polygon(0 25%, 100% 0, 92% 100%, 4% 80%);
}

.hero-intro {
  max-width: 31rem;
  margin: clamp(2rem, 4vw, 3.5rem) 0 0;
  color: #4e484f;
  font-size: clamp(.92rem, 1.2vw, 1.05rem);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  margin-top: 2.2rem;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: .85rem 1.15rem .85rem 1.35rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 2px solid currentColor;
  box-shadow: 5px 5px 0 var(--red);
  font-size: .79rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
}

.button:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--red);
}

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

.button-light {
  border-color: var(--paper);
  color: var(--ink);
  background: var(--paper);
}

.text-link {
  padding: .55rem 0;
  border-bottom: 1px solid var(--ink);
  font-size: .8rem;
  font-weight: 900;
  text-decoration: none;
}

.hero-index {
  display: grid;
  width: min(100%, 32rem);
  margin-top: auto;
  padding-top: clamp(2.5rem, 7vh, 5rem);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  color: #595259;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.hero-index::before {
  grid-column: 1 / -1;
  height: 1px;
  content: "";
  background: var(--ink);
}

.hero-index strong {
  color: var(--ink);
  font-size: .72rem;
}

.hero-index span:last-child {
  text-align: right;
}

.hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-left: 1px solid var(--ink);
  isolation: isolate;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .52), transparent 31%),
    radial-gradient(circle at 65% 45%, #ffd8e5 0 8%, transparent 35%),
    linear-gradient(135deg, var(--pink-soft), #de88aa 58%, #c5c6ce 58% 68%, #f5c7d6 68%);
}

.hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .26;
  background-image:
    linear-gradient(rgba(23, 22, 25, .35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 22, 25, .35) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: perspective(520px) rotateX(58deg) scale(1.5) translateY(30%);
}

.product-window {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(55%, 520px);
  transform: translate(-50%, -50%) rotate(2deg);
  border: 2px solid var(--ink);
  background: rgba(249, 243, 235, .56);
  box-shadow: 18px 18px 0 rgba(23, 22, 25, .18), 0 28px 70px rgba(38, 22, 34, .18);
  backdrop-filter: blur(8px);
}

.window-bar,
.mini-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--ink);
  background: linear-gradient(90deg, #f7f7f8, #9d9da5 48%, #f5f5f7 75%, #8b8b92);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.window-bar {
  min-height: 38px;
  padding: 0 .75rem;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 9px;
  height: 9px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--red);
}

.window-dots i:nth-child(2) {
  background: var(--pink);
}

.window-dots i:nth-child(3) {
  background: var(--paper);
}

.window-body {
  aspect-ratio: .82;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .75), transparent 22%),
    linear-gradient(145deg, rgba(255, 255, 255, .55), rgba(239, 161, 189, .28));
}

.window-body img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chrome-orb,
.chrome-bubble {
  position: absolute;
  z-index: 1;
  border: 1px solid #56565e;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 25%, #fff 0 5%, transparent 16%),
    radial-gradient(circle at 58% 69%, #2d2e34 0 5%, transparent 34%),
    linear-gradient(140deg, #484950 4%, #f9f9ff 24%, #777983 42%, #fff 57%, #51525a 77%, #d4d5dc 92%);
  box-shadow: inset -15px -18px 26px rgba(23, 22, 25, .25), 8px 13px 22px rgba(23, 22, 25, .18);
}

.orb-one {
  top: 8%;
  right: 5%;
  width: clamp(90px, 15vw, 210px);
  height: clamp(90px, 15vw, 210px);
}

.orb-two {
  bottom: 8%;
  left: 4%;
  width: clamp(55px, 8vw, 115px);
  height: clamp(55px, 8vw, 115px);
}

.pixel-star {
  position: absolute;
  z-index: 4;
  color: var(--paper);
  font-size: clamp(2rem, 5vw, 5.5rem);
  text-shadow: 3px 3px 0 var(--ink);
}

.star-one {
  top: 13%;
  left: 8%;
  transform: rotate(-12deg);
}

.star-two {
  right: 8%;
  bottom: 13%;
  color: var(--red);
  font-size: clamp(1.6rem, 3vw, 3.5rem);
}

.hero-note,
.spec-note {
  position: absolute;
  z-index: 5;
  min-width: 120px;
  padding: .7rem .85rem;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: .59rem;
  line-height: 1.5;
  letter-spacing: .08em;
}

.hero-note span,
.spec-note {
  color: #665e65;
}

.hero-note strong,
.spec-note strong {
  display: block;
  color: var(--ink);
  font-size: .73rem;
}

.note-top {
  top: 25%;
  left: 5%;
  transform: rotate(-3deg);
}

.note-bottom {
  right: 4%;
  bottom: 25%;
  transform: rotate(3deg);
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  min-height: 52px;
  align-items: center;
  animation: ticker 22s linear infinite;
}

.ticker span,
.ticker i {
  display: block;
  font-size: .75rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .14em;
  white-space: nowrap;
}

.ticker span {
  padding: 0 2.6rem;
}

.ticker i {
  color: var(--pink);
}

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

.section-pad {
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
}

.catalog {
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(23, 22, 25, .05) 50%, transparent 50.1%),
    var(--ivory);
}

.section-heading {
  display: grid;
  max-width: 1440px;
  margin: 0 auto clamp(2.5rem, 5vw, 5rem);
  grid-template-columns: 1.3fr .7fr;
  align-items: end;
  gap: 3rem;
}

.section-heading h2,
.lookbook-heading h2 {
  font-size: clamp(4rem, 8vw, 8.6rem);
}

.section-heading > p {
  max-width: 30rem;
  margin: 0 0 .5rem;
  color: #595259;
  font-size: .92rem;
  line-height: 1.9;
}

.filter-bar {
  display: flex;
  max-width: 1440px;
  margin: 0 auto 1.75rem;
  gap: .65rem;
}

.filter-button {
  min-width: 80px;
  padding: .58rem 1rem;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 900;
  transition: color .15s ease, background-color .15s ease, transform .15s ease;
}

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

.filter-button.is-active {
  color: var(--paper);
  background: var(--ink);
}

.product-grid {
  display: grid;
  max-width: 1440px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4.8rem) clamp(1rem, 2vw, 2rem);
}

.product-card[hidden] {
  display: none;
}

.card-window {
  position: relative;
  overflow: hidden;
  aspect-ratio: .83;
  border: 1px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  transition: transform .22s cubic-bezier(.2, .8, .2, 1), box-shadow .22s ease;
}

.product-card:hover .card-window {
  transform: translate(-3px, -3px);
  box-shadow: 12px 12px 0 var(--red);
}

.mini-bar {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  min-height: 34px;
  padding: 0 .7rem;
}

.product-media::after {
  position: absolute;
  right: 7%;
  bottom: 6%;
  width: 28%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(23, 22, 25, .5);
  border-radius: 50%;
  opacity: .5;
  background: repeating-radial-gradient(circle, transparent 0 8px, rgba(255, 255, 255, .42) 9px 10px);
}

.product-media img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 10% 6% 1%;
  object-fit: contain;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1);
}

.product-card:hover .product-media img {
  transform: scale(1.045) rotate(-1deg);
}

.media-pink {
  background:
    linear-gradient(135deg, rgba(255,255,255,.55), transparent 35%),
    linear-gradient(145deg, #f6b7cd 0 60%, #c9c9d0 60% 72%, #f2c0d2 72%);
}

.media-silver {
  background:
    radial-gradient(circle at 20% 24%, #fff 0 1%, transparent 18%),
    linear-gradient(135deg, #6d6e76, #f2f2f5 26%, #92939b 50%, #ededf2 72%, #5b5c64);
}

.media-ivory {
  background:
    repeating-linear-gradient(45deg, transparent 0 25px, rgba(23,22,25,.04) 25px 26px),
    linear-gradient(150deg, #f9f5ec, #d9cfc1);
}

.media-red {
  background:
    radial-gradient(circle at 20% 72%, rgba(255,255,255,.23), transparent 25%),
    linear-gradient(135deg, #dc5c52, #ef978e 47%, #d34b43 48%, #f0afa8);
}

.media-blue {
  background:
    linear-gradient(28deg, transparent 45%, rgba(255,255,255,.5) 46% 48%, transparent 49%),
    linear-gradient(150deg, #cfdbe7, #8ca3b7);
}

.media-black {
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    #27252b;
  background-size: 34px 34px;
}

.status-tag {
  position: absolute;
  z-index: 4;
  top: 49px;
  left: 14px;
  padding: .38rem .55rem;
  transform: rotate(-3deg);
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.tag-dark {
  color: var(--paper);
  background: var(--ink);
}

.tag-light {
  color: var(--ink);
  background: var(--pink);
}

.favorite {
  position: absolute;
  z-index: 5;
  top: 48px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: rgba(255, 250, 242, .82);
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  transition: transform .15s ease, color .15s ease, background-color .15s ease;
}

.favorite:hover {
  transform: rotate(8deg) scale(1.08);
}

.favorite[aria-pressed="true"] {
  color: var(--paper);
  background: var(--red);
}

.favorite-light {
  color: var(--paper);
  background: rgba(23, 22, 25, .75);
}

.product-info {
  display: grid;
  padding: 1.2rem .1rem 0;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 1rem;
}

.product-info h3 {
  margin: 0 0 .25rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.35;
  letter-spacing: -.02em;
}

.product-info p {
  margin: 0;
  color: #6a6269;
  font-size: .68rem;
}

.product-price {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: .3rem;
}

.product-price strong {
  font-size: .92rem;
}

.product-price button {
  padding: .1rem 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: .65rem;
  font-weight: 900;
}

.product-price button:hover {
  color: var(--red);
  border-color: var(--red);
}

.story {
  display: grid;
  min-height: 830px;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.story + .story {
  border-top: 0;
}

.story-visual,
.story-copy {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.story-visual {
  display: grid;
  place-items: center;
  isolation: isolate;
}

.story-jewelry .story-visual {
  border-right: 1px solid var(--ink);
  background:
    radial-gradient(circle at 50% 48%, rgba(255,255,255,.78), transparent 28%),
    linear-gradient(135deg, #a4a5ae, #eeeef2 34%, #777981 54%, #d9d9df 75%, #797a82);
}

.story-clothing .story-visual {
  border-left: 1px solid var(--ink);
  background:
    repeating-linear-gradient(90deg, transparent 0 69px, rgba(23,22,25,.12) 70px),
    linear-gradient(145deg, #fac8d9, #df86a8);
}

.story-visual img {
  position: relative;
  z-index: 2;
  width: min(72%, 560px);
  height: min(76%, 650px);
  object-fit: contain;
  filter: drop-shadow(0 34px 32px rgba(23,22,25,.22));
}

.story-number {
  position: absolute;
  z-index: -1;
  top: 1%;
  left: 2%;
  color: rgba(255,255,255,.38);
  font-family: Arial, sans-serif;
  font-size: clamp(8rem, 20vw, 20rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.09em;
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(23,22,25,.45);
  border-radius: 50%;
}

.orbit::before,
.orbit::after {
  position: absolute;
  width: 12px;
  height: 12px;
  content: "";
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--pink);
}

.orbit-one {
  width: 64%;
  aspect-ratio: 1;
  transform: rotate(24deg) scaleY(.48);
}

.orbit-one::before {
  top: 22%;
  left: 8%;
}

.orbit-one::after {
  right: 10%;
  bottom: 20%;
}

.orbit-two {
  width: 84%;
  aspect-ratio: 1;
  transform: rotate(-28deg) scaleY(.35);
}

.orbit-two::before {
  top: 10%;
  right: 21%;
}

.orbit-two::after {
  bottom: 8%;
  left: 25%;
  background: var(--red);
}

.spec-note.note-a {
  top: 21%;
  left: 7%;
  transform: rotate(-4deg);
}

.spec-note.note-b {
  right: 7%;
  bottom: 22%;
  transform: rotate(4deg);
}

.story-copy {
  display: flex;
  padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 7vw, 7rem);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.story-jewelry .story-copy {
  color: var(--paper);
  background:
    linear-gradient(135deg, transparent 0 75%, rgba(239,161,189,.08) 75% 76%, transparent 76%),
    var(--ink);
}

.eyebrow-light {
  color: var(--paper);
}

.story-copy h2 {
  font-size: clamp(4rem, 7.2vw, 8rem);
}

.story-copy > p:not(.eyebrow) {
  max-width: 35rem;
  margin: clamp(2rem, 4vw, 3rem) 0;
  color: #625a61;
  font-size: .95rem;
  line-height: 2;
}

.story-jewelry .story-copy > p:not(.eyebrow) {
  color: #c9c1c4;
}

.story-list {
  width: min(100%, 32rem);
  margin: 0 0 2.8rem;
}

.story-list div {
  display: grid;
  padding: .9rem 0;
  grid-template-columns: 3rem 1fr;
  border-top: 1px solid rgba(255,255,255,.22);
}

.story-list div:last-child {
  border-bottom: 1px solid rgba(255,255,255,.22);
}

.story-list dt {
  color: var(--pink);
  font-size: .68rem;
  font-weight: 900;
}

.story-list dd {
  margin: 0;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.size-panel {
  display: grid;
  width: min(100%, 32rem);
  margin: 0 0 2.8rem;
  padding: 1rem 1.2rem;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: .3rem 1rem;
  border: 1px solid var(--ink);
  background: linear-gradient(100deg, rgba(255,255,255,.55), rgba(239,161,189,.18));
  box-shadow: 6px 6px 0 var(--pink);
}

.size-panel span {
  color: #615a60;
  font-size: .64rem;
  font-weight: 800;
}

.size-panel strong {
  grid-row: span 2;
  font-size: 1.05rem;
}

.chrome-bubble {
  z-index: 1;
}

.bubble-one {
  top: 10%;
  right: 6%;
  width: 24%;
  aspect-ratio: 1;
}

.bubble-two {
  bottom: 9%;
  left: 5%;
  width: 14%;
  aspect-ratio: 1;
}

.lookbook {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(23,22,25,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,22,25,.05) 1px, transparent 1px),
    var(--paper);
  background-size: 54px 54px;
}

.lookbook::before {
  position: absolute;
  top: 9%;
  right: -3rem;
  width: 12rem;
  aspect-ratio: 1;
  content: "";
  transform: rotate(12deg);
  border: 1px solid var(--ink);
  background: var(--red);
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 38%);
}

.lookbook-heading {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 1440px;
  margin: 0 auto clamp(3rem, 6vw, 6rem);
  grid-template-columns: 1fr auto;
  align-items: end;
}

.lookbook-heading .eyebrow {
  grid-column: 1 / -1;
}

.lookbook-heading p:last-child {
  max-width: 17rem;
  margin: 0 0 .8rem 2rem;
  color: #625b61;
  font-size: .78rem;
}

.lookbook-grid {
  display: grid;
  max-width: 1440px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1rem, 2vw, 2.2rem);
}

.look-card {
  position: relative;
}

.look-card:nth-child(2) {
  margin-top: 5rem;
}

.look-art {
  position: relative;
  overflow: hidden;
  aspect-ratio: .72;
  border: 1px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.look-art::before {
  position: absolute;
  inset: 10%;
  content: "";
  border: 1px dashed rgba(23,22,25,.48);
  border-radius: 50%;
}

.look-art img {
  position: absolute;
  z-index: 2;
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.look-art img:first-child {
  top: 0;
  left: -8%;
  transform: rotate(-8deg);
}

.look-art img:last-child {
  right: -8%;
  bottom: -3%;
  transform: rotate(8deg);
}

.look-one .look-art {
  background: linear-gradient(145deg, #b9c9d8, #e5edf3 50%, #7e95a8 51%, #bed0df);
}

.look-two .look-art {
  background: linear-gradient(145deg, #f9cbd9, #df87a9);
}

.look-three .look-art {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.24), transparent 15%),
    linear-gradient(145deg, #42434b, #dadbe1 35%, #72737c 55%, #ededf1 76%, #565760);
}

.look-caption {
  display: flex;
  padding: 1rem .15rem;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.look-caption span {
  color: #625b61;
  font-size: .62rem;
  font-weight: 800;
}

.look-caption strong {
  font-size: .95rem;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--pink);
}

.service-strip > div {
  display: grid;
  min-height: 130px;
  padding: 1.4rem var(--pad);
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
}

.service-strip > div + div {
  border-left: 1px solid var(--ink);
}

.service-strip span {
  font-family: Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -.08em;
}

.service-strip p {
  margin: 0;
  color: #4d3a42;
  font-size: .68rem;
}

.service-strip strong {
  display: block;
  color: var(--ink);
  font-size: .82rem;
}

.contact-panel {
  position: relative;
  display: grid;
  min-height: 650px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
  color: var(--paper);
  background:
    radial-gradient(circle at 75% 18%, rgba(239,161,189,.2), transparent 18%),
    linear-gradient(120deg, transparent 0 65%, rgba(255,255,255,.04) 65% 66%, transparent 66%),
    var(--ink);
}

.contact-badge {
  position: absolute;
  top: 10%;
  right: 7%;
  display: grid;
  width: clamp(95px, 12vw, 170px);
  aspect-ratio: 1;
  place-items: center;
  transform: rotate(12deg);
  border: 1px solid var(--paper);
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 10px 10px 0 var(--red);
}

.contact-badge::before,
.contact-badge::after {
  position: absolute;
  inset: 8px;
  content: "";
  border: 1px dashed var(--ink);
  border-radius: 50%;
}

.contact-badge::after {
  inset: -24%;
  border-color: rgba(255,255,255,.18);
}

.contact-badge span {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 950;
}

.contact-copy,
.contact-links {
  position: relative;
  z-index: 2;
}

.contact-copy h2 {
  max-width: 10ch;
  font-size: clamp(4rem, 7vw, 7.6rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 35rem;
  margin: 2.2rem 0;
  color: #bfb7ba;
  font-size: .86rem;
}

.subscribe-form {
  max-width: 620px;
}

.subscribe-form label {
  display: block;
  margin-bottom: .55rem;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.input-row {
  display: flex;
  border-bottom: 1px solid var(--paper);
}

.input-row input {
  min-width: 0;
  padding: .9rem .2rem;
  flex: 1;
  border: 0;
  color: var(--paper);
  outline: 0;
  background: transparent;
}

.input-row input::placeholder {
  color: #8b8588;
}

.input-row input:focus-visible {
  box-shadow: inset 0 -3px 0 #72a7ff;
}

.input-row button {
  border: 0;
  color: var(--ink);
  background: var(--pink);
  cursor: pointer;
  padding-inline: 1.15rem;
  font-size: .72rem;
  font-weight: 900;
}

.input-row button:hover {
  background: var(--paper);
}

.form-message {
  min-height: 1.5em;
  margin: .7rem 0 0;
  color: #a9a1a5;
  font-size: .62rem;
}

.form-message.is-success {
  color: var(--pink-soft);
}

.form-message.is-error {
  color: #ff9289;
}

.contact-links {
  display: grid;
  align-self: end;
}

.contact-links > span {
  margin-bottom: 1rem;
  color: #9d9699;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.contact-links a {
  display: flex;
  padding: 1rem 0;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.25);
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
}

.contact-links a:last-child {
  border-bottom: 1px solid rgba(255,255,255,.25);
}

.contact-links a:hover {
  color: var(--pink);
}

.contact-links i {
  font-size: 1rem;
  font-style: normal;
}

.toast {
  position: fixed;
  z-index: 500;
  right: 1.3rem;
  bottom: 1.3rem;
  max-width: min(340px, calc(100vw - 2.6rem));
  padding: .9rem 1.1rem;
  transform: translateY(150%);
  border: 1px solid var(--paper);
  color: var(--paper);
  background: var(--ink);
  box-shadow: 6px 6px 0 var(--red);
  font-size: .75rem;
  font-weight: 800;
  opacity: 0;
  transition: transform .22s ease, opacity .22s ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.js .reveal {
  transform: translateY(22px);
  opacity: 0;
  transition: opacity .5s ease, transform .5s cubic-bezier(.2, .8, .2, 1);
}

.js .reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: flex;
    padding: .5rem 0;
    align-items: center;
    gap: .7rem;
    justify-self: end;
    font-size: .72rem;
    font-weight: 900;
  }

  .menu-toggle-icon {
    display: grid;
    width: 25px;
    height: 16px;
    align-content: space-between;
  }

  .menu-toggle-icon i {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink);
    transition: transform .18s ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-icon i:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-icon i:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 90;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 3rem var(--pad);
    transform: translateX(100%);
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background:
      linear-gradient(135deg, transparent 0 72%, rgba(239,161,189,.2) 72%),
      var(--ink);
    transition: transform .24s cubic-bezier(.2, .8, .2, 1);
  }

  .primary-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .primary-nav a {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255,255,255,.25);
    color: var(--paper);
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 5vw, 3rem);
  }

  .bag-button {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy {
    min-height: 720px;
  }

  .hero h1 {
    font-size: clamp(4.6rem, 10vw, 7.8rem);
  }

  .product-window {
    width: 68%;
  }

  .note-top {
    top: 19%;
  }

  .note-bottom {
    bottom: 19%;
  }

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

  .story {
    min-height: 720px;
  }

  .story-copy {
    padding-inline: clamp(2rem, 5vw, 4rem);
  }

  .story-copy h2 {
    font-size: clamp(3.8rem, 7vw, 6.2rem);
  }
}

@media (max-width: 760px) {
  :root {
    --pad: 1.15rem;
  }

  .site-header {
    position: sticky;
    top: 0;
    min-height: 66px;
    backdrop-filter: blur(12px);
  }

  .primary-nav {
    top: 66px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    box-shadow: 3px 3px 0 var(--ink);
  }

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

  .hero-copy {
    min-height: auto;
    padding-top: 4.2rem;
  }

  .hero h1 {
    font-size: clamp(4.25rem, 22vw, 7rem);
  }

  .hero-intro {
    font-size: .88rem;
  }

  .hero-index {
    padding-top: 3.5rem;
  }

  .hero-visual {
    min-height: 620px;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .product-window {
    width: min(66%, 350px);
  }

  .hero-note {
    min-width: 100px;
  }

  .note-top {
    top: 25%;
    left: 4%;
  }

  .note-bottom {
    right: 4%;
    bottom: 21%;
  }

  .ticker-track {
    min-height: 46px;
  }

  .section-heading,
  .lookbook-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-heading h2,
  .lookbook-heading h2 {
    font-size: clamp(3.9rem, 19vw, 6.2rem);
  }

  .section-heading > p {
    font-size: .84rem;
  }

  .filter-bar {
    overflow-x: auto;
    padding: 0 0 .25rem;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 3.3rem;
  }

  .card-window {
    box-shadow: 6px 6px 0 var(--ink);
  }

  .product-info {
    padding-right: .25rem;
  }

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

  .story-visual {
    min-height: 620px;
  }

  .story-jewelry .story-visual {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .story-clothing .story-visual {
    grid-row: 1;
    border-bottom: 1px solid var(--ink);
    border-left: 0;
  }

  .story-copy {
    min-height: 640px;
    padding-block: 5rem;
  }

  .story-copy h2 {
    font-size: clamp(3.8rem, 18vw, 6rem);
  }

  .story-copy > p:not(.eyebrow) {
    font-size: .88rem;
  }

  .story-visual img {
    width: 74%;
    height: 75%;
  }

  .lookbook-heading p:last-child {
    margin: 0;
  }

  .lookbook-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .look-card:nth-child(2) {
    margin-top: 0;
  }

  .look-art {
    aspect-ratio: .78;
  }

  .service-strip {
    grid-template-columns: 1fr;
  }

  .service-strip > div {
    min-height: 110px;
  }

  .service-strip > div + div {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .contact-panel {
    min-height: auto;
    padding-top: 9rem;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 4.5rem;
  }

  .contact-badge {
    top: 3.2rem;
    right: 1.8rem;
  }

  .contact-copy h2 {
    font-size: clamp(3.75rem, 17vw, 6rem);
  }

  .input-row {
    align-items: stretch;
  }

  .input-row button {
    padding-inline: .8rem;
  }

  .contact-links {
    padding-bottom: 1rem;
  }
}

@media (max-width: 420px) {
  .brand-name {
    display: none;
  }

  .hero h1 {
    font-size: clamp(4rem, 22vw, 5.5rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-index {
    gap: .55rem;
  }

  .hero-index span {
    font-size: .56rem;
  }

  .hero-visual,
  .story-visual {
    min-height: 540px;
  }

  .product-window {
    width: 72%;
  }

  .hero-note,
  .spec-note {
    min-width: 88px;
    padding: .55rem .65rem;
  }

  .section-pad {
    padding-block: 4.5rem;
  }

  .product-info {
    gap: .5rem;
  }

  .product-info h3 {
    font-size: 1rem;
  }

  .story-copy {
    min-height: 600px;
  }

  .story-copy h2,
  .contact-copy h2 {
    font-size: clamp(3.5rem, 18vw, 4.8rem);
  }

  .look-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: .25rem;
  }
}

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

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

  .ticker-track {
    animation: none;
  }

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

@media print {
  .site-header,
  .ticker,
  .subscribe-form,
  .toast,
  .favorite,
  .product-price button {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero,
  .story,
  .contact-panel {
    min-height: auto;
    break-inside: avoid;
  }
}
