:root {
  --ink: #0a0a0a;
  --soft-ink: #161616;
  --paper: #f2f1ed;
  --white: #ffffff;
  --muted: #a8a8a3;
  --line-dark: rgba(255, 255, 255, 0.2);
  --line-light: rgba(10, 10, 10, 0.18);
  --display: Didot, "Bodoni 72", "Bodoni MT", Georgia, serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --page-pad: clamp(1.25rem, 4vw, 4rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  transform: translateY(-180%);
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  min-height: 5.25rem;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid var(--line-dark);
  transition: background 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled {
  min-height: 4.5rem;
  background: rgba(10, 10, 10, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.wordmark {
  width: max-content;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.32em;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a,
.text-link {
  position: relative;
}

.site-nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  border-bottom: 1px solid currentColor;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  line-height: 2;
  text-transform: uppercase;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #080808;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 48%;
  padding: 8rem var(--page-pad) 7rem;
}

.hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  overflow: hidden;
  background: #d9d8d4;
}

.hero-visual::before {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8rem;
  content: "";
  background: linear-gradient(90deg, #080808 0%, transparent 100%);
  pointer-events: none;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  animation: hero-entry 1.4s cubic-bezier(0.2, 0.7, 0, 1) both;
}

.hero-caption {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.35rem;
  left: 4.5rem;
  display: flex;
  justify-content: space-between;
  margin: 0;
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.42);
}

.eyebrow,
.section-kicker,
.card-type,
.status {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: clamp(1.5rem, 4vh, 2.75rem);
  color: #d5d5d0;
}

.hero h1 {
  margin: 0;
  max-width: 10ch;
  font-family: var(--display);
  font-size: clamp(4rem, 7.2vw, 7.7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.hero-copy {
  max-width: 35rem;
  margin: clamp(1.6rem, 4vh, 2.75rem) 0 0;
  color: #d7d7d2;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.6;
}

.hero-actions,
.store-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.25rem;
}

.button {
  display: inline-flex;
  min-height: 3.3rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 2rem;
  left: var(--page-pad);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue span {
  margin-left: 0.55rem;
}

.section {
  padding: clamp(6rem, 11vw, 11rem) var(--page-pad);
}

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

.section-intro {
  display: grid;
  grid-template-columns: minmax(10rem, 0.7fr) minmax(18rem, 1.3fr);
  gap: 4rem;
  align-items: start;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.section-kicker {
  padding-top: 0.65rem;
}

.section-intro h2,
.vision h2,
.stores h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.25rem, 7vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.section-intro > div > p {
  max-width: 38rem;
  margin: 2rem 0 0;
  color: #4e4e4a;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.collection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 2rem);
}

.collection-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #d4d3cd;
  background: var(--white);
  color: var(--ink);
}

.collection-card-teal {
  border-top: 0.35rem solid #17474a;
}

.collection-card-garnet {
  border-top: 0.35rem solid #5b1720;
}

.collection-card-rose {
  border-top: 0.35rem solid #b98f82;
}

.collection-card-silver {
  border-top: 0.35rem solid #777a7e;
}

.card-number {
  position: absolute;
  z-index: 2;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.5rem 0.62rem;
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  background: #f7f7f6;
}

.product-image-wrap-landscape {
  display: flex;
  aspect-ratio: 1 / 1;
  align-items: center;
  background: #fff;
}

.product-image-wrap-landscape .product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-image {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0, 1);
}

.collection-card:hover .product-image {
  transform: scale(1.018);
}

.card-copy {
  min-height: 15rem;
  padding: clamp(1.5rem, 3vw, 2.6rem);
}

.card-copy h3 {
  margin: 0.85rem 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.85rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.card-copy > p:not(.card-type) {
  max-width: 28rem;
  margin: 0;
  color: #555550;
}

.status {
  display: block;
  width: max-content;
  margin-top: 1.7rem;
  padding-top: 0.65rem;
  border-top: 1px solid currentColor;
  opacity: 0.75;
}

.craft-detail {
  position: relative;
  margin: clamp(1rem, 2vw, 2rem) 0 0;
  overflow: hidden;
  background: #fff;
}

.craft-detail img {
  display: block;
  width: 100%;
  height: clamp(22rem, 54vw, 48rem);
  object-fit: cover;
  object-position: center;
}

.craft-detail figcaption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.35rem;
  left: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(10, 10, 10, 0.82);
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.vision {
  background: var(--ink);
}

.editorial-feature {
  display: grid;
  grid-template-columns: minmax(18rem, 0.92fr) minmax(20rem, 1.08fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
}

.editorial-image {
  margin: 0;
  overflow: hidden;
  background: #d7d4d1;
}

.editorial-image img {
  display: block;
  width: 100%;
  height: auto;
}

.editorial-copy h2 {
  margin-top: 1.5rem;
}

.editorial-copy > p:last-child {
  max-width: 34rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(5rem, 10vw, 10rem);
  border-top: 1px solid var(--line-dark);
}

.principle {
  min-height: 16rem;
  padding: 1.5rem clamp(1rem, 2.5vw, 2.5rem) 0;
  border-right: 1px solid var(--line-dark);
}

.principle:first-child {
  padding-left: 0;
}

.principle:last-child {
  border-right: 0;
}

.principle > span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
}

.principle h3 {
  margin: 3rem 0 0.85rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
}

.principle p {
  max-width: 22rem;
  margin: 0;
  color: var(--muted);
}

.stores {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.stores::after {
  position: absolute;
  top: 50%;
  right: -12vw;
  width: clamp(18rem, 45vw, 43rem);
  aspect-ratio: 1;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.stores-inner {
  position: relative;
  z-index: 1;
}

.stores h2 {
  margin-top: 1.5rem;
  font-size: clamp(4rem, 9vw, 9rem);
}

.stores-inner > p:not(.section-kicker) {
  max-width: 34rem;
  margin: 2rem 0 0;
  color: #4e4e4a;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

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

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

.text-link-dark {
  color: var(--ink);
}

.stores-note {
  position: absolute;
  z-index: 1;
  right: var(--page-pad);
  bottom: 2.25rem;
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  min-height: 11rem;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 2rem var(--page-pad);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p:last-child {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0, 1);
}

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

@keyframes hero-entry {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 840px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 4.75rem;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    justify-self: end;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .menu-icon {
    display: grid;
    width: 1.45rem;
    gap: 0.34rem;
  }

  .menu-icon i {
    display: block;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

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

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

  .site-nav {
    position: fixed;
    top: 4.75rem;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 0 var(--page-pad);
    visibility: hidden;
    transform: translateY(-0.75rem);
    border-bottom: 1px solid var(--line-dark);
    opacity: 0;
    background: rgba(10, 10, 10, 0.98);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
  }

  .site-nav a {
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 0.9rem;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    flex-direction: column;
    padding-top: 4.75rem;
  }

  .hero-content {
    order: 1;
    width: 100%;
    padding: 3.75rem var(--page-pad) 5.5rem;
  }

  .hero-visual {
    position: relative;
    order: 0;
    width: 100%;
    height: min(70vh, 44rem);
  }

  .hero-visual::before {
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 6rem;
    background: linear-gradient(0deg, #080808 0%, transparent 100%);
  }

  .hero h1 {
    font-size: clamp(3.6rem, 15vw, 6.7rem);
  }

  .hero-image {
    object-position: center 35%;
  }

  .hero-caption {
    left: var(--page-pad);
  }

  .scroll-cue {
    display: none;
  }

  .section-intro,
  .editorial-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .editorial-image {
    width: min(100%, 42rem);
  }

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

  .principle,
  .principle:first-child {
    min-height: auto;
    padding: 1.4rem 0 2.7rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .principle h3 {
    margin-top: 1.7rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    align-content: center;
  }

  .site-footer p:last-child {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 4.75rem;
  }

  .hero-visual {
    height: min(66vh, 35rem);
  }

  .hero-image {
    object-position: center 34%;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 17vw, 5.25rem);
  }

  .hero-copy {
    max-width: 29rem;
  }

  .hero-actions,
  .store-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.35rem;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding-top: 5.75rem;
    padding-bottom: 5.75rem;
  }

  .section-intro h2,
  .vision h2 {
    font-size: clamp(3.1rem, 15vw, 4.6rem);
  }

  .card-copy {
    min-height: 14rem;
  }

  .craft-detail img {
    height: 28rem;
    object-position: 50% center;
  }

  .craft-detail figcaption {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .stores {
    min-height: 42rem;
  }

  .stores h2 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .stores::after {
    top: 20%;
    right: -35vw;
    width: 88vw;
  }

  .stores-note {
    right: auto;
    left: var(--page-pad);
  }
}

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

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

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