:root {
  --noir: #060607;
  --charcoal: #131314;
  --panel: #1b1b1d;
  --line: rgba(231,221,205,0.1);
  --cream: #f3ede2;
  --bone: #e7ddcd;
  --stone: #9c958a;
  --gold: #c7a96b;
  font-size: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--noir);
  color: var(--cream);
  font-weight: 300;
  overflow-x: hidden;
}

h1, h2, h3, blockquote { font-family: 'Cormorant Garamond', serif; font-weight: 500; letter-spacing: 0.01em; }
em { font-style: italic; color: var(--gold); }
a { color: inherit; text-decoration: none; }

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 18px;
}

/* WORDMARK (recreates the supplied logo in code: serif name + tracked subtitle + rule) */
.wordmark { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.wordmark__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.wordmark__sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 6px 0 8px 2px;
}
.wordmark__rule { display: block; width: 34px; height: 1px; background: var(--gold); margin-left: 2px; }
.footer__brand .wordmark__name { color: var(--cream); }
.footer__brand .wordmark__sub { color: var(--stone); }
.footer__brand { display: flex; flex-direction: column; }
.wordmark--center { align-items: center; text-align: center; }
.wordmark--center .wordmark__sub { margin-left: 0; }
.wordmark--center .wordmark__rule { margin-left: 0; }

/* UTILITY BAR — horizontal ticker */
.utility-bar {
  background: var(--charcoal);
  color: var(--stone);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  height: 36px;
}
.utility-bar__sep { margin: 0 14px; color: var(--gold); }
.utility-bar__track {
  display: inline-flex;
  align-items: center;
  animation: utilityScroll 36s linear infinite;
  will-change: transform;
}
.utility-bar__track:hover { animation-play-state: paused; }
.utility-bar__msg {
  display: inline-flex;
  align-items: center;
  padding: 0 48px;
  gap: 0;
  flex-shrink: 0;
}
.utility-bar__msg::after {
  content: '·';
  color: var(--gold);
  margin-left: 48px;
}
@keyframes utilityScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* NAV — split-level: links / centered wordmark / links, on solid noir */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 3%;
  background: var(--noir);
  border-bottom: 1px solid var(--line);
}
.nav__links {
  display: flex; align-items: center; gap: 16px;
  flex: 1; min-width: 0;
  flex-wrap: nowrap;
  max-width: calc(50% - 110px); /* keeps clear of the centred logo at any width */
}
.nav__links--left { justify-content: flex-start; }
.nav__links--right { justify-content: flex-end; }
/* Logo is taken out of flex flow and centered on the nav independently,
   so neither side's link count ever pushes it off-centre. */
.wordmark--center {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.nav__links a {
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--stone);
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
  transition: color .25s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--gold); transition: right .3s ease;
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { right: 0; }
.nav__dropdown { position: relative; display: flex; align-items: center; }
.nav__dropdown > a { display: inline-flex; align-items: center; }
.nav__dropdown-menu {
  position: absolute; top: 100%; left: 0; transform: translateY(8px);
  background: var(--charcoal); border: 1px solid var(--line); border-radius: 10px;
  padding: 10px; min-width: 180px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease;
  z-index: 50;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.is-open .nav__dropdown-menu {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.nav__hamburger { display: none; flex-direction: column; gap: 4px; }
.nav__hamburger span { display: block; width: 16px; height: 1px; background: var(--stone); transition: background .2s ease; }
.nav__dropdown:hover .nav__hamburger span,
.nav__dropdown.is-open .nav__hamburger span { background: var(--gold); }
@media (max-width: 600px) {
  .nav__dropdown-label { display: none; }
  .nav__hamburger { display: flex; padding: 6px; }
  .nav__dropdown > a { padding-bottom: 0 !important; }
  .nav__dropdown > a::after { display: none; }
  .nav__dropdown-menu { left: 0; transform: translateY(8px); }
  .nav__dropdown.is-open .nav__dropdown-menu { transform: translateY(0); }
}
.nav__dropdown-menu a {
  font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--stone); padding: 8px 12px; border-radius: 6px; white-space: nowrap;
}
.nav__dropdown-menu a::after { display: none; }
.nav__dropdown-menu a:hover { color: var(--cream); background: rgba(255,255,255,0.04); }
.nav__admin {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px !important;
  color: var(--cream) !important;
  font-size: 0.7rem !important;
}
.nav__admin::after { display: none; }
.nav__cta {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 9px 18px;
  border-radius: 999px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  transition: background .25s ease, color .25s ease;
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--gold); color: var(--noir) !important; }

.nav__cart { display: flex; align-items: center; gap: 6px; }
.nav__cart-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--gold); color: var(--noir);
  border-radius: 999px; font-size: 0.66rem; font-weight: 600;
}

@media (max-width: 980px) {
  /* Categories, House and Authenticity links collapse out — the hamburger
     trigger + Bag + Search are all that's left, so the nav stays one row
     and sits beside the logo instead of stacking above/below it.
     $= matches both "#house" (index.html) and "index.html#house" (other pages). */
  .nav__links--left a[href$="#house"],
  .nav__links--left a[href$="#authenticity"],
  .nav__links--right a[href$="#contact"],
  .nav__cta { display: none; }
  .nav__links { max-width: calc(50% - 85px); }
  .nav__links--left, .nav__links--right { gap: 14px; }
  /* Sub-pages have no hamburger markup at all — just drop categories
     entirely there and leave logo + Bag, exactly as requested.
     visibility (not display) keeps the box so Bag still lands on the
     right edge instead of sliding to where the hidden links were. */
  .nav--simple .nav__links--left { visibility: hidden; pointer-events: none; }
}
@media (max-width: 600px) {
  .nav__links a { font-size: 0.78rem; }
  .nav__dropdown-menu { min-width: 170px; }
  .nav__admin { display: none; }
  .nav { padding: 14px 4%; gap: 8px; }
  .nav__links { max-width: calc(50% - 62px); }
  .wordmark__name { font-size: 1.05rem; letter-spacing: 0.12em; }
  .wordmark__sub { font-size: 0.46rem; letter-spacing: 0.26em; margin: 3px 0 4px 0; }
  .wordmark__rule { width: 22px; }
}
@media (max-width: 400px) {
  .nav__links { max-width: calc(50% - 52px); }
  .wordmark__name { font-size: 0.92rem; letter-spacing: 0.1em; }
  .wordmark__sub { font-size: 0.42rem; letter-spacing: 0.22em; }
}

/* NAV SEARCH — a single icon that expands into a quiet inline field, no extra bar */
.nav__search { position: relative; display: flex; align-items: center; }
.nav__search-btn {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border: none; background: transparent; color: var(--stone); cursor: pointer;
  transition: color .2s ease;
}
.nav__search-btn:hover { color: var(--gold); }
.nav__search-input {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 0; opacity: 0; pointer-events: none;
  background: var(--charcoal); border: none; border-bottom: 1px solid var(--line);
  color: var(--cream); font-family: 'Jost', sans-serif; font-size: 0.82rem;
  padding: 6px 2px; transition: width .25s ease, opacity .2s ease;
}
.nav__search-input::placeholder { color: var(--stone); }
.nav__search.is-open .nav__search-input {
  width: 200px; opacity: 1; pointer-events: auto;
  right: 38px;
}
.nav__search.is-open .nav__search-btn { color: var(--gold); }
@media (max-width: 760px) {
  .nav__search.is-open .nav__search-input { width: 140px; }
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 20% 55%, rgba(199,169,107,0.10), transparent 50%),
    linear-gradient(165deg, var(--noir) 0%, var(--charcoal) 65%, var(--noir) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

/* SPLIT LAYOUT — text left, image panel right */
.hero__layout {
  position: relative; z-index: 2;
  width: 100%;
  display: grid;
  /* Panel is 44% wide; text col gets the rest but the panel's mask-fade
     visually bleeds back into it so the two feel like one composition */
  grid-template-columns: 1fr 44%;
  align-items: stretch;
  min-height: 100vh;
}

/* IMAGE PANEL — a contained "card" that pops off the dark background,
   rather than a full-bleed edge-to-edge image */
.hero__panel {
  position: relative;
  align-self: center;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  margin: 0 6% 0 auto;
  border-radius: 22px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px rgba(0,0,0,0.45);
}
.hero__panel-frame { display: none; }

/* SLIDESHOW — fills the panel, showing the whole product (no cropping) */
.hero__slides { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.slide {
  display: block;
  position: absolute; inset: 0;
  opacity: 0;
  pointer-events: none;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--panel);
  transform: scale(1.0);
  transition: opacity 1.2s ease;
}
/* Subtle bottom scrim so the caption card sits comfortably */
.slide::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(6,6,7,0.55) 0%,
    rgba(6,6,7,0) 32%
  );
  pointer-events: none;
}
.slide.is-active {
  opacity: 1;
  pointer-events: auto;
  animation: kenBurns 16s ease-in-out forwards;
  cursor: pointer;
}
@keyframes kenBurns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.04); }
}
.slide__caption {
  position: absolute;
  left: 16px; right: 16px;
  bottom: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(6,6,7,0.7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(243,237,226,0.1);
  border-radius: 14px;
  z-index: 1;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .9s ease .5s, transform .9s ease .5s;
}
.slide.is-active .slide__caption { opacity: 1; transform: translateY(0); }
.slide__caption .slide__info { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.slide__caption .tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(199,169,107,0.45);
  border-radius: 999px;
  padding: 4px 12px;
  align-self: flex-start;
}
.slide__caption .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--cream);
  line-height: 1.3;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.slide__caption .brand {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}
.slide__caption .price {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  white-space: nowrap;
}
/* "Scroll for more" hint — mobile only, where the old desktop scroll cue
   is hidden to keep the hero compact. A clear gold-ringed circle so it
   actually reads as a tappable/visual cue, not just decoration. */
.mobile-scroll-hint { display: none; }
@media (max-width: 900px) {
  .mobile-scroll-hint {
    display: flex; justify-content: center;
    margin-top: 10px; padding-bottom: 4px;
    position: relative; z-index: 2;
  }
  .mobile-scroll-hint__circle {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px;
    border: 1px solid rgba(199,169,107,0.6);
    border-radius: 50%;
    color: var(--gold);
    background: rgba(199,169,107,0.07);
    animation: mobileScrollHintBounce 2s ease-in-out infinite;
  }
}
@keyframes mobileScrollHintBounce {
  0%, 100% { transform: translateY(0); opacity: 0.65; }
  50% { transform: translateY(4px); opacity: 1; }
}

.hero__dots {
  position: absolute;
  top: 16px; right: 16px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero__dots span {
  width: 20px; height: 2px;
  background: rgba(243,237,226,0.35);
  transition: background .4s ease, width .3s ease;
}
.hero__dots span.is-active { background: var(--gold); width: 32px; }

@media (max-width: 900px) {
  .hero { min-height: auto; padding: 18px 0 0; }
  .hero__layout {
    display: flex; flex-direction: column; align-items: center;
    min-height: auto;
  }
  /* Slideshow first, then the chevron hint, then the text block —
     everything sized compactly enough that the top half of the
     paragraph is already visible without scrolling. */
  .hero__panel {
    display: block;
    order: 1;
    margin: 6px 0 0;
    width: 86%;
    max-width: 380px;
    aspect-ratio: 4 / 5;
  }
  .mobile-scroll-hint { order: 2; margin-top: 4px; margin-bottom: 0; padding-bottom: 14px; }
  .hero__inner { order: 3; padding: 0 7% 0 !important; width: 100%; text-align: center; }
  .hero__meta { display: none; }
  .hero__eyebrow { font-size: 0.62rem; margin-bottom: 8px !important; }
  .hero__title { font-size: clamp(1.7rem, 7vw, 2.3rem); margin-bottom: 8px !important; }
  .hero__sub { font-size: 0.84rem; line-height: 1.55; margin: 0 auto 18px !important; max-width: 360px; }
  .hero__actions { justify-content: center; gap: 14px; margin-bottom: 8px; }
  .hero__actions .btn { padding: 14px 26px; font-size: 0.74rem; }
  .hero__scroll, .hero__motes { display: none; }
}
@media (max-width: 760px) {
  .hero__panel { width: 88%; max-width: 320px; }
  .slide__caption {
    padding: 10px 14px; left: 10px; right: 10px; bottom: 10px;
  }
  .slide__caption .name { font-size: 1rem; }
  .slide__caption .price { font-size: 0.95rem; }
  .hero__dots { top: 12px; right: 12px; }
}
@media (max-width: 480px) {
  .hero__panel { width: 90%; max-width: 280px; }
  .hero__inner { padding: 4px 6% 0 !important; }
  .hero__title { font-size: clamp(1.5rem, 7.5vw, 2rem); }
}

.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(120deg, rgba(231,221,205,0.018) 0 1px, transparent 1px 90px);
  pointer-events: none;
  z-index: 1;
}

/* AURA — slow-drifting ambient glows for depth */
.hero__aura { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.aura {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  will-change: transform;
}
.aura--a {
  width: 50vw; height: 50vw;
  top: -20%; left: -10%;
  background: radial-gradient(circle, rgba(199,169,107,0.22), transparent 70%);
  animation: auraDriftA 26s ease-in-out infinite;
}
.aura--b {
  width: 36vw; height: 36vw;
  bottom: -20%; left: 10%;
  background: radial-gradient(circle, rgba(231,221,205,0.09), transparent 70%);
  animation: auraDriftB 32s ease-in-out infinite;
}
@keyframes auraDriftA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-6%, 8%) scale(1.12); }
}
@keyframes auraDriftB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8%, -6%) scale(1.08); }
}

/* MOTES — fine drifting particles, like dust in still light */
.hero__motes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.mote {
  position: absolute;
  bottom: -10px;
  width: var(--size, 3px);
  height: var(--size, 3px);
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: moteRise var(--duration, 18s) linear infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes moteRise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  8% { opacity: var(--peak, 0.45); }
  92% { opacity: var(--peak, 0.45); }
  100% { transform: translateY(-110vh) translateX(var(--drift, 40px)); opacity: 0; }
}


.hero__inner {
  position: relative; z-index: 2;
  padding: 140px 6% 120px 8%;
  transition: transform .2s ease-out;
}
/* Small fashion-house marker: a thin rule + label, sits above the eyebrow */
.hero__meta {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
}
.hero__meta-line {
  display: block;
  width: 38px; height: 1px;
  background: rgba(199,169,107,0.5);
}
.hero__meta-text {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
}

.hero__eyebrow { font-size: 0.74rem; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 28px; text-transform: uppercase; font-weight: 500; }
.hero__title { font-size: clamp(2.8rem, 7.2vw, 5.2rem); line-height: 1.08; letter-spacing: -0.01em; margin-bottom: 30px; }
.hero__title em { font-style: italic; color: var(--gold); font-weight: 500; }
.hero__sub { font-size: 1.06rem; color: var(--stone); max-width: 440px; line-height: 1.75; margin-bottom: 48px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 17px 34px; border-radius: 999px;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500;
  transition: all .25s ease;
}
.btn--solid { background: var(--gold); color: var(--noir); }
.btn--solid:hover { background: var(--cream); transform: translateY(-2px); }
.btn--ghost { border: 1px solid rgba(243,237,226,0.32); color: var(--cream); }
.btn--ghost:hover { border-color: var(--cream); }

/* Scroll cue — a quiet vertical line + label, lookbook-style */
.hero__scroll {
  position: absolute;
  left: 8%; bottom: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  z-index: 2;
}
.hero__scroll-line {
  width: 1px; height: 54px;
  background: linear-gradient(to bottom, rgba(199,169,107,0.55), transparent);
  animation: scrollLineDrift 2.6s ease-in-out infinite;
}
.hero__scroll-text {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  writing-mode: vertical-rl;
}
@keyframes scrollLineDrift {
  0%, 100% { transform: scaleY(1); opacity: 0.7; }
  50% { transform: scaleY(0.7); opacity: 1; }
}
@media (max-width: 760px) { .hero__scroll { display: none; } }

/* MARQUEE */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 22px 0; background: var(--charcoal); }
@media (max-width: 760px) {
  .marquee { padding: 16px 0; }
  .marquee__track { font-size: 1.05rem !important; gap: 14px !important; }
}
.marquee__track {
  display: flex; gap: 18px; white-space: nowrap; width: max-content;
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.3rem; color: var(--stone);
  animation: scroll 30s linear infinite;
}
.marquee__track span:nth-child(odd) { color: var(--gold); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SECTION HEAD */
.section__head { text-align: center; max-width: 600px; margin: 0 auto 48px; padding: 0 6%; }
.section__head--left { text-align: left; margin-left: 6%; max-width: 620px; }
.section__head h2 { font-size: clamp(2rem, 5vw, 2.9rem); margin-bottom: 14px; color: var(--cream); }
.section__head p { color: var(--stone); font-size: 1.02rem; }

/* EDIT / PRODUCTS */
.edit { padding: 130px 0 110px; background: var(--noir); }
.filters { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.filter {
  font-family: inherit; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 10px 22px; border-radius: 999px; border: 1px solid var(--line);
  background: transparent; color: var(--stone); cursor: pointer; transition: all .2s ease;
}
.filter:hover { border-color: var(--gold); color: var(--cream); }
.filter.is-active { background: var(--gold); color: var(--noir); border-color: var(--gold); }

.filter-select {
  display: none;
  appearance: none; -webkit-appearance: none;
  font-family: 'Jost', sans-serif; font-size: 0.85rem; letter-spacing: 0.04em;
  color: var(--cream); background: var(--panel); border: 1px solid var(--line);
  border-radius: 999px; padding: 10px 22px; cursor: pointer;
  width: 100%; max-width: 320px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a96e' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}
.sort-select { display: block; max-width: 220px; margin: 0 auto 16px; }
@media (max-width: 700px) {
  .filters { flex-direction: column; align-items: center; gap: 10px; margin-bottom: 36px; }
  .sort-select { display: block; margin: 0; max-width: 260px; }
  #categorySelect { display: none; }
  .filters .filter { display: none; }
}

.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px; max-width: 1280px; margin: 0 auto; padding: 0 6%;
}

.related { padding: 100px 0 60px; }
.card {
  background: var(--panel); border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.card__link { display: block; color: inherit; text-decoration: none; }
.card:hover { transform: translateY(-8px); box-shadow: 0 28px 56px rgba(0,0,0,0.4); border-color: rgba(199,169,107,0.35); }
.card__img { height: 300px; position: relative; background-size: cover; background-position: center; }
.card__img::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 24px);
}
.card__badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(6,6,7,0.78); color: var(--gold);
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid rgba(199,169,107,0.4);
}
.card__badge--bestseller { top: auto; bottom: 16px; left: 16px; color: var(--cream); background: rgba(6,6,7,0.78); border: 1px solid rgba(243,237,226,0.3); }
.card__body { padding: 22px 22px 26px; }
.card__body h3 { font-size: 1.2rem; margin-bottom: 4px; color: var(--cream); }
.card__body .meta { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 6px; }
.card__body .desc { color: var(--stone); font-size: 0.88rem; margin-bottom: 14px; }
.card__foot { display: flex; align-items: center; justify-content: space-between; }
.card .price { font-weight: 600; font-family: 'Jost', sans-serif; color: var(--gold); font-size: 1.05rem; }
.card .verified { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone); display: flex; align-items: center; gap: 6px; }
.card .verified::before { content: "✓"; display: inline-block; color: var(--gold); }
.empty-note { text-align: center; color: var(--stone); padding: 40px 6%; }

@media (max-width: 700px) {
  .edit { padding: 88px 0 70px; }
  .section__head { margin-bottom: 32px; }
  .cards { grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 0 4.5%; }
  .card { border-radius: 12px; }
  .card:hover { transform: none; }
  .card__img { height: 38vw; max-height: 220px; }
  .card__badge { top: 10px; left: 10px; font-size: 0.6rem; padding: 5px 10px; }
  .card__badge--bestseller { bottom: 10px; left: 10px; }
  .card__body { padding: 14px 14px 16px; }
  .card__body h3 { font-size: 0.92rem; line-height: 1.3; margin-bottom: 2px; }
  .card__body .meta { font-size: 0.62rem; margin-bottom: 4px; }
  .card__body .desc { display: none; }
  .card__foot { flex-wrap: wrap; gap: 4px; }
  .card .price { font-size: 0.9rem; }
  .card .verified { display: none; }
  .card__foot { justify-content: flex-start; }
}
@media (max-width: 420px) {
  .cards { gap: 10px; padding: 0 3.5%; }
  .card__img { height: 42vw; }
}

/* ===== PRODUCT PAGE ===== */
.product-page { max-width: 1280px; margin: 0 auto; padding: 48px 6% 100px; min-height: 60vh; }
.product-page__crumb { margin-bottom: 32px; }
.product-page__crumb a { color: var(--stone); font-size: 0.86rem; transition: color .2s ease; }
.product-page__crumb a:hover { color: var(--gold); }

.product { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; }
@media (max-width: 860px) { .product { grid-template-columns: 1fr; gap: 32px; } }

.product__main {
  height: 560px; border-radius: 14px; background-size: cover; background-position: center; background-repeat: no-repeat;
  background-color: var(--panel); border: 1px solid var(--line);
  position: relative; overflow: hidden;
  background-image: var(--photo, none);
}
.product__main--placeholder::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 24px);
}

/* Arrow nav + dot indicator — explicit, clickable way to move through
   photos, since swipe alone doesn't work with a mouse on desktop. */
.product__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(6,6,7,0.55); border: 1px solid rgba(243,237,226,0.2);
  color: var(--cream); cursor: pointer; z-index: 2;
  transition: background .2s ease, border-color .2s ease;
}
.product__nav:hover { background: rgba(6,6,7,0.8); border-color: var(--gold); }
.product__nav--prev { left: 14px; }
.product__nav--next { right: 14px; }
.product__dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 2;
}
.product__dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(243,237,226,0.35); cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.product__dots span:hover { background: rgba(243,237,226,0.6); }
.product__dots span.is-active { background: var(--gold); transform: scale(1.2); }
@media (max-width: 860px) {
  .product__main {
    height: auto; aspect-ratio: 4 / 5;
    background-size: contain; background-repeat: no-repeat; background-position: center;
    background-color: var(--panel);
    background-image:
      var(--photo, none),
      radial-gradient(ellipse at center, rgba(199,169,107,0.12), transparent 65%),
      linear-gradient(165deg, var(--panel) 0%, var(--charcoal) 100%);
  }
}
.product__thumbs {
  display: flex; gap: 12px; margin-top: 14px;
  overflow-x: auto; flex-wrap: nowrap;
  scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.product__thumb {
  width: 76px; height: 76px; border-radius: 8px; background-size: cover; background-position: center;
  border: 1px solid var(--line); cursor: pointer; transition: border-color .2s ease, opacity .2s ease;
  opacity: 0.7; background-color: var(--panel);
  flex-shrink: 0; scroll-snap-align: start;
}
.product__thumb:hover { opacity: 1; }
.product__thumb.is-active { border-color: var(--gold); opacity: 1; }

.product__info { padding-top: 8px; }
.product__brand { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 10px; }
.product__bestseller {
  display: inline-block; margin-bottom: 10px;
  font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream);
  border: 1px solid rgba(243,237,226,0.3); border-radius: 999px; padding: 4px 10px;
}
.product__name { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 14px; line-height: 1.2; }
.product__price { font-family: 'Jost', sans-serif; font-size: 1.4rem; color: var(--cream); margin-bottom: 22px; }
.product__desc { color: var(--stone); line-height: 1.7; margin-bottom: 34px; max-width: 480px; }

.product__field { margin-bottom: 22px; }
.product__field label {
  display: block; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 10px;
}
.product__field select {
  font-family: 'Jost', sans-serif; font-size: 0.95rem; padding: 13px 16px; border-radius: 8px;
  border: 1px solid var(--line); background: var(--panel); color: var(--cream);
  min-width: 240px;
}
.product__field select:disabled { opacity: 0.6; }

.qty-control {
  display: inline-flex; align-items: center; gap: 18px;
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 20px;
}
.qty-control button {
  background: none; border: none; color: var(--cream); font-size: 1.1rem; cursor: pointer;
  width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
  transition: color .2s ease;
}
.qty-control button:hover { color: var(--gold); }
.qty-control span { min-width: 16px; text-align: center; font-family: 'Jost', sans-serif; }

.product__add { width: 100%; max-width: 360px; text-align: center; cursor: pointer; border: none; }
.product__added { margin-top: 14px; color: var(--gold); font-size: 0.9rem; }
.product__added a { color: var(--cream); text-decoration: underline; }

.product__facts { margin-top: 36px; display: flex; flex-direction: column; gap: 8px; }
.product__facts li { color: var(--stone); font-size: 0.86rem; }

.product-empty { text-align: center; padding: 80px 6%; color: var(--cream); }
.product-empty p { color: var(--stone); margin: 14px 0 30px; }

/* ===== CART PAGE ===== */
.cart-page { max-width: 1100px; margin: 0 auto; padding: 64px 6% 120px; min-height: 60vh; }
.cart-page__head { margin-bottom: 44px; }
.cart-page__head h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-top: 8px; }

.cart { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
@media (max-width: 860px) { .cart { grid-template-columns: 1fr; } }

.cart__items { display: flex; flex-direction: column; gap: 20px; }
.cart__item {
  display: grid; grid-template-columns: 110px 1fr auto auto; gap: 20px; align-items: center;
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 16px;
}
.cart__item-img { display: block; width: 110px; height: 96px; border-radius: 8px; background-size: cover; background-position: center; }
.cart__item-name { color: var(--cream); font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; display: block; margin-bottom: 6px; }
.cart__item-meta { color: var(--stone); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px; }
.cart__item-qty { display: inline-flex; align-items: center; gap: 14px; border: 1px solid var(--line); border-radius: 999px; padding: 6px 16px; }
.cart__item-qty button { background: none; border: none; color: var(--cream); cursor: pointer; font-size: 1rem; }
.cart__item-qty button:hover { color: var(--gold); }
.cart__item-price { font-family: 'Jost', sans-serif; color: var(--gold); font-weight: 600; white-space: nowrap; }
.cart__item-remove {
  background: none; border: 1px solid var(--line); color: var(--stone); border-radius: 999px;
  padding: 8px 16px; font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
  transition: all .2s ease;
}
.cart__item-remove:hover { border-color: #b35a4a; color: #d98c7a; }
@media (max-width: 640px) {
  .cart__item { display: flex; flex-wrap: wrap; gap: 14px; }
  .cart__item-img { width: 72px; height: 72px; flex-shrink: 0; }
  .cart__item-info { flex: 1; min-width: 0; }
  .cart__item-price, .cart__item-remove { flex-basis: 100%; }
}

.cart__summary {
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 28px;
}
.cart__summary h2 { font-size: 1.2rem; margin-bottom: 20px; }
.cart__row { display: flex; justify-content: space-between; color: var(--stone); font-size: 0.92rem; margin-bottom: 12px; }
.cart__row--total { color: var(--cream); font-weight: 600; font-size: 1.05rem; border-top: 1px solid var(--line); padding-top: 14px; margin-top: 6px; }
.cart__row--discount { color: var(--gold); }

.cart__gift { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.cart__gift-title { font-size: 0.92rem; color: var(--cream); margin-bottom: 12px; }
.cart__gift-lock-note { color: var(--gold); font-size: 0.8rem; margin-bottom: 12px; line-height: 1.5; }
.cart__gift-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.gift-card {
  display: flex; flex-direction: column; gap: 6px;
  background: rgba(255,255,255,0.02); border: 1px solid var(--line); border-radius: 10px;
  padding: 10px; cursor: pointer; transition: border-color .2s ease, background .2s ease;
  font-family: inherit; text-align: left;
}
.gift-card:hover { border-color: rgba(199,169,107,0.5); }
.gift-card:disabled { cursor: not-allowed; opacity: 0.45; }
.gift-card:disabled:hover { border-color: var(--line); }
.gift-card.is-selected { border-color: var(--gold); background: rgba(199,169,107,0.08); }
.gift-card__img { display: block; width: 100%; height: 70px; border-radius: 6px; background-size: cover; background-position: center; }
.gift-card__name { font-size: 0.82rem; color: var(--cream); line-height: 1.3; }
.gift-card__value { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.03em; }

.cart__checkout-fields { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.cart__checkout-fields label {
  display: flex; flex-direction: column; gap: 6px; font-size: 0.78rem;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--stone);
}
.cart__checkout-fields input,
.cart__checkout-fields textarea {
  font-family: 'Jost', sans-serif; font-size: 0.92rem; color: var(--cream);
  background: rgba(255,255,255,0.03); border: 1px solid rgba(243,237,226,0.18);
  border-radius: 6px; padding: 9px 12px; resize: vertical;
}
.cart__checkout-fields input:focus,
.cart__checkout-fields textarea:focus { outline: none; border-color: var(--gold); }
.cart__checkout { width: 100%; text-align: center; border: none; cursor: pointer; margin-top: 18px; }
.cart__hint { margin-top: 14px; font-size: 0.78rem; color: var(--stone); display: flex; align-items: center; gap: 4px; }
#stripePaymentSection { margin-top: 20px; }
#payment-element { border-radius: 10px; overflow: hidden; }

.cart-confirm { text-align: center; padding: 60px 6%; }
.cart-confirm h2 { font-size: 1.8rem; margin-bottom: 16px; color: var(--gold); }
.cart-confirm p { color: var(--stone); max-width: 480px; margin: 0 auto 30px; line-height: 1.7; }

.nav__cart.is-active { color: var(--cream); }
.nav__cart.is-active::after { right: 0; }

/* HOUSE */
.house { display: grid; grid-template-columns: 1fr 1.1fr; align-items: center; background: var(--charcoal); }
.house__media {
  height: 620px;
  background: linear-gradient(160deg, #2a2a2c 0%, #161617 55%, #060607 100%);
  background-size: cover;
  background-position: center;
  position: relative;
}
.house__media::after { content: ""; position: absolute; inset: 26px; border: 1px solid rgba(199,169,107,0.18); }
.house__text { padding: 90px 8%; max-width: 620px; }
.house__text h2 { font-size: clamp(2rem, 4.4vw, 2.7rem); line-height: 1.25; margin-bottom: 24px; color: var(--cream); }
.house__text p { color: var(--stone); line-height: 1.75; margin-bottom: 18px; font-size: 1.02rem; }
.link-underline {
  display: inline-block; margin-top: 12px; font-size: 0.9rem; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--cream); border-bottom: 1px solid var(--gold); padding-bottom: 4px; transition: opacity .2s ease;
}
.link-underline:hover { opacity: 0.6; }

/* AUTHENTICITY */
.authenticity { padding: 130px 0; background: var(--noir); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 50px; max-width: 1280px; margin: 0 auto; padding: 0 6%; }
.step__num { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; color: var(--gold); margin-bottom: 12px; }
.step h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--cream); }
.step p { color: var(--stone); line-height: 1.6; font-size: 0.96rem; }

/* QUOTE */
.quote { text-align: center; padding: 120px 8%; background: var(--charcoal); color: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quote blockquote { font-size: clamp(1.5rem, 4vw, 2.2rem); font-style: italic; max-width: 740px; margin: 0 auto 22px; line-height: 1.5; }
.quote cite { font-style: normal; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.78rem; color: var(--gold); }

/* CONTACT */
.contact { padding: 130px 6%; background: var(--noir); }
.contact__inner { max-width: 620px; margin: 0 auto; text-align: center; }
.contact__inner h2 { font-size: clamp(2rem, 5vw, 2.9rem); margin-bottom: 16px; line-height: 1.2; color: var(--cream); }
.contact__lede { color: var(--stone); margin-bottom: 44px; font-size: 1.02rem; }
.contact__form { display: flex; flex-direction: column; gap: 30px; text-align: left; }
.field { position: relative; }
.field input, .field textarea {
  width: 100%; border: none; border-bottom: 1px solid var(--line); background: transparent;
  font-family: inherit; font-size: 1.04rem; color: var(--cream); padding: 10px 2px; resize: none;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field label {
  position: absolute; left: 2px; top: 12px; color: var(--stone); font-size: 1.04rem;
  pointer-events: none; transition: all .2s ease;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: -16px; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold);
}
.contact__form button {
  align-self: flex-start; margin-top: 8px; padding: 16px 38px; border: 1px solid var(--gold);
  border-radius: 999px; background: transparent; color: var(--gold); font-family: inherit; font-size: 0.86rem;
  letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: all .25s ease;
}
.contact__form button:hover { background: var(--gold); color: var(--noir); }

/* FOOTER */
.footer { background: var(--charcoal); color: var(--cream); padding: 70px 6% 34px; border-top: 1px solid var(--line); }
.footer__brand { margin-bottom: 50px; }
.footer__links { display: flex; gap: 30px; flex-wrap: wrap; margin-bottom: 50px; }
.footer__links a { font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--stone); transition: color .2s ease; }
.footer__links a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid var(--line); padding-top: 22px; font-size: 0.78rem; color: var(--stone); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 920px) {
  .house { grid-template-columns: 1fr; }
  .house__media { height: 360px; }
}
