:root {
  --black: #050403;
  --ink: #0a0807;
  --charcoal: #100d0b;
  --ash: #c8b8a6;
  --dirty: #8c7d6e;
  --paper: #ded0bd;
  --rust: #8a3f2d;
  --blood: #9e3527;
  --blue: #35576a;
  --acid: #b9a68d;
  --line: rgba(200, 184, 166, 0.14);
  --dark-line: rgba(8, 8, 7, 0.18);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ash);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 18px 18px;
  mix-blend-mode: overlay;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 49;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, transparent 0 32rem, rgba(0, 0, 0, 0.36) 70rem),
    linear-gradient(0deg, rgba(5, 4, 3, 0.16), transparent 35%, rgba(5, 4, 3, 0.22));
}

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 3vw, 42px);
  color: var(--ash);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header[data-scrolled="true"] {
  background: rgba(5, 4, 3, 0.94);
  color: var(--ash);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-mark {
  width: fit-content;
  font-weight: 950;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--paper);
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 36px);
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 900;
}

.nav-links a,
.instagram-link {
  position: relative;
}

.nav-links a::after,
.instagram-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

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

.cart-trigger {
  justify-self: end;
  min-height: 42px;
  border: 1px solid currentColor;
  background: rgba(5, 4, 3, 0.22);
  color: inherit;
  padding: 0 14px;
  cursor: pointer;
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  min-height: 24px;
  margin-right: 8px;
  background: var(--ash);
  color: var(--black);
  font-weight: 950;
}

.hero-section {
  min-height: 94svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 112px clamp(18px, 6vw, 76px) clamp(48px, 8vw, 96px);
  overflow: hidden;
  background: var(--black);
  color: var(--ash);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.98), rgba(5, 4, 3, 0.68) 50%, rgba(5, 4, 3, 0.22)),
    linear-gradient(0deg, rgba(5, 4, 3, 0.94), transparent 58%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.16) saturate(0.72) brightness(0.74);
  animation: slowDrift 18s var(--ease) infinite alternate;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: min(860px, 95vw);
}

.drop-label,
.eyebrow,
.product-status {
  margin: 0 0 12px;
  color: var(--rust);
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 950;
  opacity: 0.86;
}

.hero-copy h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(3.5rem, 9vw, 7.7rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(222, 208, 189, 0.94);
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.52);
}

.hero-line {
  max-width: 520px;
  margin: 26px 0 0;
  color: rgba(200, 184, 166, 0.72);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.45;
}

.craft-line {
  margin: 12px 0 0;
  color: rgba(200, 184, 166, 0.48);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms var(--ease);
}

.button-primary {
  background: transparent;
  color: var(--ash);
  border-color: rgba(200, 184, 166, 0.58);
}

.button-secondary,
.button-ghost {
  background: transparent;
  color: rgba(200, 184, 166, 0.66);
  border-color: rgba(200, 184, 166, 0.24);
}

.button:hover,
.product-card button:hover,
.cart-trigger:hover {
  border-color: var(--ash);
  background: var(--ash);
  color: var(--black);
  transform: translateY(-1px);
}

.ticker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: #070504;
}

.ticker span {
  min-height: 50px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 950;
  color: rgba(200, 184, 166, 0.44);
}

.ticker span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(72px, 10vw, 124px) clamp(18px, 5vw, 70px);
  scroll-margin-top: 88px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.2fr);
  gap: 28px;
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.section-heading .eyebrow,
.info-copy .eyebrow,
.contact-copy .eyebrow {
  color: var(--rust);
}

.section-heading h2,
.info-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: rgba(222, 208, 189, 0.92);
}

.drop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
  gap: 18px;
}

.featured-product {
  display: grid;
  grid-template-columns: minmax(250px, 0.95fr) minmax(300px, 0.9fr);
  min-height: 620px;
  background: var(--charcoal);
  border: 1px solid var(--line);
  box-shadow: none;
  transition: border-color 220ms ease, background 220ms ease, transform 260ms var(--ease);
}

.featured-image {
  min-height: 100%;
  background: #050505;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.featured-image::after,
.product-card::before,
.lookbook-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 42%, rgba(222, 208, 189, 0.08) 50%, transparent 58%);
  opacity: 0;
  transform: translateX(-32%);
  transition: opacity 260ms ease, transform 520ms var(--ease);
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: filter 260ms ease, transform 520ms var(--ease);
}

.featured-details {
  align-self: center;
  padding: clamp(24px, 4vw, 54px);
}

.featured-details h3 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  line-height: 0.96;
  text-transform: uppercase;
  color: rgba(222, 208, 189, 0.92);
}

.featured-details p:not(.product-status) {
  color: rgba(200, 184, 166, 0.62);
  line-height: 1.65;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
  border: 1px solid var(--line);
}

.product-meta span {
  min-height: 50px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  font-weight: 950;
  text-transform: uppercase;
}

.product-meta span:last-child {
  border-right: 0;
}

.product-grid {
  display: grid;
  gap: 14px;
}

.product-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 16px;
  min-height: 154px;
  padding: 16px;
  background: var(--charcoal);
  border: 1px solid var(--line);
  transition: border-color 220ms ease, background 220ms ease, transform 260ms var(--ease);
  overflow: hidden;
}

.product-card img {
  width: 116px;
  aspect-ratio: 1;
  object-fit: cover;
  background: #050505;
  transition: filter 260ms ease, transform 520ms var(--ease);
}

.product-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  text-transform: uppercase;
  color: rgba(222, 208, 189, 0.9);
}

.product-card p {
  margin: 0;
  color: rgba(200, 184, 166, 0.6);
}

.product-card .product-status {
  margin-bottom: 8px;
  color: var(--dirty);
}

.product-card .public-status {
  color: rgba(200, 184, 166, 0.82);
}

.featured-product,
.product-card {
  position: relative;
}

.featured-product:hover,
.product-card:hover {
  border-color: rgba(200, 184, 166, 0.32);
  background: #140f0d;
  transform: translateY(-2px);
}

.featured-product:hover .featured-image::after,
.product-card:hover::before,
.lookbook-grid figure:hover::after {
  opacity: 1;
  transform: translateX(32%);
}

.featured-product:hover img,
.product-card:hover img,
.lookbook-grid figure:hover img {
  filter: contrast(1.12) saturate(0.78) brightness(0.88);
  transform: scale(1.025);
}

.featured-product::after {
  content: "AVAILABLE NOW";
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 9px;
  border: 1px solid rgba(239, 231, 220, 0.28);
  background: rgba(5, 4, 3, 0.66);
  color: rgba(200, 184, 166, 0.78);
  font-size: 0.62rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-card button,
.cart-head button {
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid rgba(200, 184, 166, 0.54);
  background: transparent;
  color: var(--ash);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.lookbook-section {
  background: var(--charcoal);
  color: var(--ash);
  border-block: 1px solid var(--line);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.lookbook-grid figure {
  min-height: 520px;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.lookbook-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.92);
  transition: filter 260ms ease, transform 520ms var(--ease);
}

.lookbook-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  background: rgba(5, 4, 3, 0.76);
  color: var(--ash);
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 950;
}

.info-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.info-copy p:not(.eyebrow) {
  max-width: 420px;
  color: rgba(200, 184, 166, 0.62);
  font-size: 1rem;
  line-height: 1.65;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  background: #070504;
  border-top: 1px solid var(--line);
}

.instagram-link {
  display: inline-flex;
  margin-top: 18px;
  color: rgba(200, 184, 166, 0.78);
  font-weight: 950;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.8fr);
  gap: 16px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  background: var(--charcoal);
  border: 1px solid var(--line);
  transition: border-color 220ms ease, background 220ms ease;
}

.contact-form:hover {
  border-color: rgba(200, 184, 166, 0.28);
  background: #140f0d;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(200, 184, 166, 0.58);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #050403;
  color: var(--ash);
  padding: 14px;
  outline: 0;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(200, 184, 166, 0.42);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(200, 184, 166, 0.72);
  box-shadow: 0 0 0 3px rgba(200, 184, 166, 0.08);
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: rgba(200, 184, 166, 0.72);
  font-weight: 900;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  justify-content: flex-end;
  background: rgba(8, 8, 7, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.cart-drawer[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  width: min(430px, 100vw);
  min-height: 100%;
  background: #0c0908;
  color: var(--ash);
  padding: 24px;
  transform: translateX(100%);
  transition: transform 220ms ease;
  border-left: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

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

@keyframes slowDrift {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.045) translate3d(-0.8%, -0.6%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.cart-panel .button-primary {
  background: transparent;
  color: var(--ash);
  border-color: rgba(200, 184, 166, 0.58);
}

.cart-drawer[data-open="true"] .cart-panel {
  transform: translateX(0);
}

.cart-head,
.cart-total,
.cart-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.cart-head {
  margin-bottom: 24px;
}

.cart-head h2 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1;
}

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

.cart-line p,
.empty-cart {
  margin: 0;
  color: rgba(200, 184, 166, 0.58);
}

.cart-line strong {
  display: block;
}

.cart-total {
  margin: 24px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 1.1rem;
}

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

  .nav-links {
    display: none;
  }

  .ticker,
  .section-heading,
  .drop-layout,
  .featured-product,
  .info-section,
  .contact-section,
  .contact-grid,
  .lookbook-grid {
    grid-template-columns: 1fr;
  }

  .featured-product {
    min-height: 0;
  }

  .featured-image {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .hero-section {
    min-height: 90svh;
  }

  .hero-copy h1 {
    font-size: clamp(3.7rem, 20vw, 6.4rem);
  }

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

  .ticker span:nth-child(2) {
    border-right: 0;
  }

  .product-card {
    grid-template-columns: 88px minmax(0, 1fr) 42px;
    min-height: 130px;
    gap: 12px;
  }

  .product-card img {
    width: 88px;
  }

  .product-meta {
    grid-template-columns: 1fr;
  }

  .product-meta span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-meta span:last-child {
    border-bottom: 0;
  }

  .lookbook-grid figure {
    min-height: 440px;
  }
}
