:root {
  --ink: #080808;
  --ink-soft: #121110;
  --ink-raised: #1a1817;
  --ivory: #f7f1e8;
  --ivory-soft: #fffaf4;
  --paper: #efe5d8;
  --gold: #c9a56b;
  --gold-light: #e7cc9c;
  --rose: #c37b72;
  --rose-deep: #9e524b;
  --peach: #ebd0c3;
  --muted: #716a63;
  --muted-light: #b7afa6;
  --line: rgba(22, 18, 14, 0.14);
  --line-light: rgba(255, 255, 255, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1280px;
  --header-height: 94px;
  --radius: 2px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) - 1px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

button,
input {
  font: inherit;
}

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

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

::selection {
  color: var(--ink);
  background: var(--gold-light);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--ivory-soft);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(96px, 10vw, 150px);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.2vw, 5.1rem);
  line-height: .98;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px;
  color: var(--rose-deep);
  font-size: .73rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

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

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 24px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
  transition: color .35s var(--ease), background-color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0 35%, rgba(255,255,255,.26) 50%, transparent 65% 100%);
  transform: translateX(-130%);
  transition: transform .65s var(--ease);
}

.button:hover::before {
  transform: translateX(130%);
}

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

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.button--small {
  min-height: 45px;
  padding: 12px 19px;
  font-size: .7rem;
}

.button--gold {
  color: #17110a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 15px 40px rgba(201, 165, 107, .18);
}

.button--gold:hover {
  background: linear-gradient(135deg, #f0d8aa, #cfaa6d);
}

.button--ghost {
  color: var(--ivory-soft);
  border-color: rgba(255, 255, 255, .28);
  background: rgba(8, 8, 8, .25);
  backdrop-filter: blur(12px);
}

.button--ghost:hover {
  border-color: var(--rose);
  background: rgba(195, 123, 114, .12);
}

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

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

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: height .35s var(--ease), background-color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}

.site-header.is-scrolled,
.site-header.menu-visible {
  height: 82px;
  border-color: rgba(255, 255, 255, .08);
  background: rgba(8, 8, 8, .93);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .16);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.brand {
  width: 182px;
  justify-self: start;
}

.brand img {
  width: 100%;
  margin-block: -46px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 38px);
}

.nav-link {
  position: relative;
  padding-block: 13px;
  color: rgba(255, 255, 255, .78);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .25s ease;
}

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

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  color: var(--ivory-soft);
  border-color: rgba(231, 204, 156, .55);
  background: rgba(255, 255, 255, .04);
}

.header-cta:hover {
  color: var(--ink);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.03);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .3s ease, opacity .3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 99;
  top: 78px;
  right: 0;
  left: 0;
  display: grid;
  min-height: calc(100svh - 78px);
  align-content: start;
  gap: 0;
  padding: 36px 24px 48px;
  color: #fff;
  background: var(--ink);
}

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

.mobile-menu > a:not(.button) {
  padding-block: 22px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.mobile-menu .button {
  margin-top: 34px;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  color: var(--ivory-soft);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: .2;
  background-image:
    radial-gradient(circle at 16% 75%, rgba(195, 123, 114, .16), transparent 28%),
    repeating-linear-gradient(120deg, rgba(255,255,255,.018) 0 1px, transparent 1px 16px);
}

.hero-media {
  position: absolute;
  z-index: -3;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(62vw, 1050px);
  overflow: hidden;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(8,8,8,.82) 12%, rgba(8,8,8,.15) 54%, rgba(8,8,8,.22) 100%),
    linear-gradient(0deg, rgba(8,8,8,.6), transparent 42%);
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 50% 35%;
  filter: saturate(.88) contrast(1.02);
  transform: scale(1.025);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,8,.98) 0%, rgba(8,8,8,.9) 37%, rgba(8,8,8,.12) 72%, rgba(8,8,8,.28) 100%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  min-height: 100svh;
  align-items: center;
  padding-top: calc(var(--header-height) + 50px);
  padding-bottom: 110px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(700px, 63%);
}

.hero h1 {
  margin-bottom: 28px;
  font-size: clamp(3.6rem, 6.9vw, 7.1rem);
  line-height: .86;
  text-shadow: 0 2px 24px rgba(0,0,0,.2);
}

.hero h1 em {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold-light);
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 36px;
  color: rgba(255, 250, 244, .74);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 44px;
  color: rgba(255, 255, 255, .48);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-categories span {
  position: relative;
}

.hero-categories span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -15px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  content: "";
  background: var(--rose);
}

.fabric-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(231, 204, 156, .14);
  border-radius: 50%;
  pointer-events: none;
}

.fabric-orbit--one {
  right: -13vw;
  bottom: -40vw;
  width: 72vw;
  height: 72vw;
  transform: rotate(-18deg);
  animation: orbitFloat 14s ease-in-out infinite alternate;
}

.fabric-orbit--two {
  right: 16vw;
  bottom: -34vw;
  width: 52vw;
  height: 52vw;
  border-color: rgba(195, 123, 114, .15);
  animation: orbitFloat 18s ease-in-out 1s infinite alternate-reverse;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 32px;
  left: max(24px, calc((100vw - var(--container)) / 2));
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.55);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.scroll-cue__line {
  position: relative;
  display: block;
  width: 58px;
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.18);
}

.scroll-cue__line::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--gold-light);
  transform: translateX(-100%);
  animation: scrollLine 2s ease-in-out infinite;
}

/* Collections */
.collections {
  background:
    radial-gradient(circle at 95% 4%, rgba(195,123,114,.09), transparent 20%),
    var(--ivory);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 58px;
}

.section-heading--split h2 {
  margin-bottom: 0;
}

.section-heading--split > p {
  max-width: 450px;
  margin: 0 0 9px auto;
  color: var(--muted);
  font-size: 1rem;
}

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

.collection-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 18, 14, .09);
  background: var(--ivory-soft);
  box-shadow: 0 22px 55px rgba(42, 30, 20, .07);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}

.collection-card:nth-child(even) {
  margin-top: 28px;
}

.collection-card:hover {
  border-color: rgba(195,123,114,.45);
  box-shadow: 0 30px 70px rgba(42, 30, 20, .13);
  transform: translateY(-9px);
}

.collection-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--paper);
}

.collection-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(8,8,8,.38), transparent 38%);
  pointer-events: none;
}

.collection-card__media picture,
.collection-card__media img {
  width: 100%;
  height: 100%;
}

.collection-card__media img {
  object-fit: cover;
  transition: transform .8s var(--ease), filter .8s var(--ease);
}

.collection-card:hover .collection-card__media img {
  filter: saturate(1.04);
  transform: scale(1.055);
}

.collection-card__tag {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  padding: 8px 10px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(8,8,8,.45);
  backdrop-filter: blur(10px);
  font-size: .58rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.collection-card__number {
  position: absolute;
  z-index: 2;
  bottom: 8px;
  left: 14px;
  color: rgba(255,255,255,.82);
  font-family: var(--serif);
  font-size: 2.8rem;
  font-style: italic;
  line-height: 1;
}

.collection-card__body {
  min-height: 182px;
  padding: 28px 24px 30px;
}

.collection-card__body h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.2vw, 2.1rem);
  font-weight: 600;
  line-height: 1.02;
}

.collection-card__body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .89rem;
  line-height: 1.65;
}

/* About */
.about {
  overflow: hidden;
  background: var(--ivory-soft);
}

.about::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 28%;
  height: 100%;
  content: "";
  opacity: .45;
  background-image:
    linear-gradient(135deg, rgba(201,165,107,.08) 25%, transparent 25%),
    linear-gradient(225deg, rgba(195,123,114,.07) 25%, transparent 25%);
  background-position: 0 0, 12px 12px;
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, transparent, #000);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(60px, 8vw, 118px);
}

.about-visual {
  position: relative;
  padding: 22px 22px 34px 0;
}

.about-visual::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 12px;
  left: 26px;
  content: "";
  border: 1px solid rgba(195,123,114,.38);
}

.about-visual__frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 6 / 7;
  border-radius: 48% 48% 0 0 / 20% 20% 0 0;
  background: var(--paper);
}

.about-visual__frame picture,
.about-visual__frame img {
  width: 100%;
  height: 100%;
}

.about-visual__frame img {
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.about-visual:hover img {
  transform: scale(1.025);
}

.about-visual__note {
  position: absolute;
  z-index: 2;
  right: -30px;
  bottom: 0;
  display: grid;
  min-width: 210px;
  padding: 18px 22px;
  color: var(--ivory-soft);
  background: var(--ink);
  box-shadow: 0 22px 45px rgba(0,0,0,.15);
}

.about-visual__note span {
  color: var(--gold-light);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-visual__note strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.about-copy h2 em {
  color: var(--rose-deep);
}

.about-intro {
  max-width: 650px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 1rem;
}

.brand-highlights {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.highlight {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}

.highlight__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--rose-deep);
  border: 1px solid rgba(195,123,114,.35);
  border-radius: 50%;
  background: rgba(235,208,195,.18);
}

.highlight__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.highlight h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 1.48rem;
  font-weight: 600;
  line-height: 1.15;
}

.highlight p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.6;
}

/* Launch */
.launch {
  position: relative;
  min-height: 720px;
  padding-block: clamp(110px, 12vw, 175px);
  overflow: hidden;
  isolation: isolate;
  color: var(--ivory-soft);
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,.012) 0 1px, transparent 1px 18px),
    var(--ink);
}

.launch::before,
.launch::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.launch::before {
  inset: 24px;
  border: 1px solid rgba(231,204,156,.13);
}

.launch::after {
  top: 24px;
  left: 50%;
  width: 1px;
  height: calc(100% - 48px);
  background: linear-gradient(transparent, rgba(231,204,156,.11), transparent);
}

.launch-glow {
  position: absolute;
  z-index: -2;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .14;
  pointer-events: none;
}

.launch-glow--one {
  top: -150px;
  left: -100px;
  background: var(--rose);
}

.launch-glow--two {
  right: -120px;
  bottom: -180px;
  background: var(--gold);
}

.launch-wordmark {
  position: absolute;
  z-index: -1;
  right: -2vw;
  bottom: -4vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.035);
  font-family: var(--serif);
  font-size: clamp(6rem, 15vw, 15rem);
  font-weight: 600;
  line-height: .7;
  white-space: nowrap;
}

.launch-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .8fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.launch-copy h2 {
  margin-bottom: 28px;
}

.launch-copy > p:last-child {
  max-width: 570px;
  margin-bottom: 0;
  color: rgba(255,255,255,.62);
}

.notify-form {
  position: relative;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(231,204,156,.19);
  background: rgba(255,255,255,.035);
  box-shadow: 0 35px 90px rgba(0,0,0,.24);
  backdrop-filter: blur(14px);
}

.form-field {
  margin-bottom: 22px;
}

.form-field label {
  display: block;
  margin-bottom: 9px;
  color: rgba(255,255,255,.78);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.form-field input {
  width: 100%;
  min-height: 56px;
  padding: 14px 0;
  color: #fff;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.24);
  border-radius: 0;
  outline: none;
  background: transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.form-field input::placeholder {
  color: rgba(255,255,255,.3);
}

.form-field input:focus {
  border-color: var(--gold-light);
  box-shadow: 0 1px 0 var(--gold-light);
}

.form-field input[aria-invalid="true"] {
  border-color: #e99a91;
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 7px;
  color: #f0aaa2;
  font-size: .74rem;
  line-height: 1.4;
}

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

.notify-form__button {
  width: 100%;
  margin-top: 2px;
}

.notify-form__button[disabled] {
  opacity: .65;
  cursor: wait;
  transform: none;
}

.form-note {
  margin: 14px 0 0;
  color: rgba(255,255,255,.36);
  font-size: .71rem;
  text-align: center;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 13px 15px;
  font-size: .8rem;
  line-height: 1.55;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #f4dfba;
  border: 1px solid rgba(231,204,156,.3);
  background: rgba(201,165,107,.09);
}

.form-status.is-error {
  color: #ffc2bb;
  border: 1px solid rgba(233,154,145,.28);
  background: rgba(158,82,75,.12);
}

/* Contact */
.contact {
  background:
    radial-gradient(circle at 0 100%, rgba(195,123,114,.11), transparent 28%),
    var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(60px, 9vw, 125px);
}

.contact-copy h2 em {
  color: var(--rose-deep);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 490px;
  margin-bottom: 32px;
  color: var(--muted);
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: grid;
  min-height: 134px;
  grid-template-columns: 62px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 22px;
  padding: 28px 30px;
  border: 1px solid rgba(22,18,14,.11);
  background: var(--ivory-soft);
  box-shadow: 0 20px 45px rgba(42,30,20,.055);
  transition: color .4s var(--ease), background-color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}

.contact-card:hover {
  color: var(--ivory-soft);
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: 0 28px 65px rgba(30,22,16,.18);
  transform: translateX(8px);
}

.contact-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--rose-deep);
  border: 1px solid rgba(195,123,114,.32);
  border-radius: 50%;
  background: rgba(235,208,195,.17);
}

.contact-card:hover .contact-card__icon {
  color: var(--gold-light);
  border-color: rgba(231,204,156,.32);
  background: rgba(231,204,156,.08);
}

.contact-card__icon svg,
.contact-card__arrow {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.contact-card small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .4s ease;
}

.contact-card:hover small {
  color: var(--gold-light);
}

.contact-card strong {
  display: block;
  overflow-wrap: anywhere;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.25;
}

.contact-card__arrow {
  width: 24px;
  height: 24px;
  color: var(--rose-deep);
  transition: color .4s ease, transform .4s var(--ease);
}

.contact-card:hover .contact-card__arrow {
  color: var(--gold-light);
  transform: translateX(4px);
}

/* Footer */
.site-footer {
  color: rgba(255,255,255,.68);
  background: #050505;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) .55fr 1fr;
  gap: 70px;
  padding-block: 76px 58px;
}

.footer-brand img {
  width: 225px;
  margin: -70px 0 -55px -17px;
}

.footer-brand p {
  max-width: 320px;
  margin-bottom: 0;
  color: rgba(255,255,255,.48);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-column h2 {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  font-size: .85rem;
  transition: color .25s ease;
}

.footer-column a:hover {
  color: var(--gold-light);
}

.footer-contact a {
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.38);
  font-size: .72rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: rgba(255,255,255,.55);
  transition: color .25s ease;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* Motion */
.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

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

.collection-grid .reveal:nth-child(2),
.contact-cards .reveal:nth-child(2) {
  transition-delay: .08s;
}

.collection-grid .reveal:nth-child(3) {
  transition-delay: .16s;
}

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

@keyframes heroDrift {
  from { transform: scale(1.025) translate3d(0, 0, 0); }
  to { transform: scale(1.065) translate3d(-1%, -1%, 0); }
}

@keyframes orbitFloat {
  from { transform: translate3d(0, 0, 0) rotate(-18deg); }
  to { transform: translate3d(-2%, -2%, 0) rotate(-14deg); }
}

@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

/* Responsive */
@media (max-width: 1100px) {
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .collection-card:nth-child(even) {
    margin-top: 28px;
  }

  .collection-card__body {
    min-height: 150px;
  }

  .launch-inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
    gap: 60px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 82px;
  }

  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 168px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .hero-media {
    width: 65%;
  }

  .hero-copy {
    width: 70%;
  }

  .about-grid,
  .launch-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 75px;
  }

  .about-visual {
    width: min(620px, 90%);
    margin-inline: auto;
  }

  .launch::after {
    display: none;
  }

  .launch-copy {
    max-width: 720px;
  }

  .notify-form {
    width: min(650px, 100%);
  }

  .contact-grid {
    gap: 52px;
  }

  .contact-copy {
    max-width: 650px;
  }

  .footer-main {
    grid-template-columns: 1.25fr .75fr;
  }

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

@media (max-width: 767px) {
  html {
    scroll-padding-top: 76px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding-block: 88px;
  }

  h2 {
    font-size: clamp(2.75rem, 13vw, 4.25rem);
  }

  .eyebrow {
    margin-bottom: 19px;
    font-size: .66rem;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.menu-visible {
    height: 76px;
  }

  .brand {
    width: 148px;
  }

  .brand img {
    margin-block: -38px;
  }

  .mobile-menu {
    top: 76px;
    min-height: calc(100svh - 76px);
  }

  .hero {
    min-height: 850px;
  }

  .hero-media {
    inset: 0;
    width: 100%;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(8,8,8,.96) 4%, rgba(8,8,8,.76) 50%, rgba(8,8,8,.38) 100%),
      linear-gradient(90deg, rgba(8,8,8,.58), rgba(8,8,8,.05));
  }

  .hero-media img {
    object-position: 52% 24%;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(8,8,8,.98) 2%, rgba(8,8,8,.73) 58%, rgba(8,8,8,.34) 100%);
  }

  .hero-inner {
    min-height: 850px;
    align-items: end;
    padding-top: 122px;
    padding-bottom: 115px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(3.35rem, 15.6vw, 5.2rem);
    line-height: .88;
  }

  .hero h1 br {
    display: none;
  }

  .hero h1 em {
    display: block;
  }

  .hero-lead {
    max-width: 530px;
    margin-bottom: 28px;
    font-size: .94rem;
    line-height: 1.72;
  }

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

  .hero-actions .button {
    padding-inline: 16px;
  }

  .hero-categories {
    gap: 8px 20px;
    margin-top: 30px;
    font-size: .59rem;
  }

  .hero-categories span:not(:last-child)::after {
    right: -12px;
  }

  .scroll-cue {
    bottom: 25px;
    left: 16px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 40px;
  }

  .section-heading--split > p {
    margin: 0;
  }

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

  .collection-card,
  .collection-card:nth-child(even) {
    margin-top: 0;
  }

  .collection-card__body {
    min-height: 0;
    padding: 25px 22px 27px;
  }

  .about::before {
    width: 70%;
  }

  .about-grid {
    gap: 60px;
  }

  .about-visual {
    width: 100%;
    padding: 15px 15px 27px 0;
  }

  .about-visual::before {
    left: 16px;
  }

  .about-visual__note {
    right: -2px;
    min-width: 185px;
    padding: 15px 18px;
  }

  .about-intro {
    font-size: .94rem;
  }

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

  .highlight__icon {
    width: 44px;
    height: 44px;
  }

  .launch {
    min-height: auto;
    padding-block: 98px;
  }

  .launch::before {
    inset: 12px;
  }

  .launch-inner {
    gap: 45px;
  }

  .launch-copy h2 br {
    display: none;
  }

  .notify-form {
    padding: 28px 22px;
  }

  .contact-grid {
    gap: 44px;
  }

  .contact-copy .button {
    width: 100%;
  }

  .contact-card {
    min-height: 118px;
    grid-template-columns: 50px minmax(0, 1fr) 22px;
    gap: 15px;
    padding: 23px 18px;
  }

  .contact-card:hover {
    transform: translateY(-3px);
  }

  .contact-card__icon {
    width: 48px;
    height: 48px;
  }

  .contact-card strong {
    font-size: 1.15rem;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 46px 34px;
    padding-block: 62px 48px;
  }

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

  .footer-brand img {
    width: 205px;
    margin: -62px 0 -50px -15px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    min-height: 95px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
  }
}

@media (max-width: 460px) {
  .hero {
    min-height: 820px;
  }

  .hero-inner {
    min-height: 820px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-categories {
    display: none;
  }

  .contact-card {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .contact-card__arrow {
    display: none;
  }

  .contact-card strong {
    font-size: 1.05rem;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }
}

@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;
  }

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