/* ═══════════ BASE ═══════════ */
:root {
  --ivory: #f6f3ed;
  --sand: #ece6da;
  --stone: #d8cfbe;
  --ink: #221f1a;
  --ink-soft: #6b6459;
  --accent: #b3a184;
  --card-w: clamp(200px, 21vw, 320px);
  --card-h: calc(var(--card-w) * 0.62);
  --ease: cubic-bezier(0.22, 0.8, 0.24, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, "Helvetica Neue", sans-serif;
  background: var(--ivory);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; }
a { color: inherit; text-decoration: none; }

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 1.4rem clamp(1.2rem, 4vw, 3rem);
  background: linear-gradient(to bottom, rgba(246,243,237,0.92), rgba(246,243,237,0));
}

.nav__brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.nav__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
}
.nav__meta-label { color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.58rem; }
.nav__meta-value { font-weight: 500; }

.nav__links {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-align: right;
}
.nav__links a { opacity: 0.75; transition: opacity 0.2s; }
.nav__links a:hover { opacity: 1; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(34,31,26,0.25);
  border-radius: 999px;
  padding: 0.55rem 1.1rem 0.55rem 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
  transition: background 0.25s, border-color 0.25s;
}
.nav__cta:hover { background: #fff; border-color: rgba(34,31,26,0.5); }
.nav__cta-icon {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  background: var(--ink); color: var(--ivory);
  border-radius: 50%;
  font-size: 0.8rem;
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, #ffffff 0%, rgba(255,255,255,0) 60%),
    linear-gradient(to bottom, #faf8f3 0%, var(--ivory) 45%, var(--sand) 100%);
}

.hero__glow {
  position: absolute;
  left: 50%; top: 58%;
  width: 70vw; height: 46vh;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(179,161,132,0.28) 0%, rgba(179,161,132,0) 65%);
  filter: blur(10px);
  z-index: 1;
}

/* — depth carousel — */
.carousel {
  position: absolute;
  inset: 0;
  z-index: 2;
  perspective: 1150px;
  perspective-origin: 50% 40%;
}

.carousel__stage {
  position: absolute;
  left: 50%;
  top: 40%;
  transform-style: preserve-3d;
}

.card {
  position: absolute;
  width: var(--card-w);
  height: var(--card-h);
  margin: calc(var(--card-h) / -2) 0 0 calc(var(--card-w) / -2);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 22px 45px -18px rgba(60,50,35,0.45);
  will-change: transform, opacity;
  background: var(--stone);
}

.card img {
  width: 100%; height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}


/* — the man — */
.hero__man {
  position: absolute;
  left: 50%;
  bottom: 0;
  /* `translate` (not transform) so the .rv fade-in can't wipe out the centering */
  translate: -50% 0;
  height: min(74vh, 900px);
  max-width: none;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 30px 40px rgba(60,50,35,0.35));
}

.hero__floor {
  position: absolute;
  inset: auto 0 0 0;
  height: 22vh;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(to top, var(--sand) 0%, rgba(236,230,218,0) 100%);
}

/* — copy — */
.hero__copy {
  position: absolute;
  left: clamp(1.2rem, 5vw, 4.5rem);
  bottom: clamp(2.2rem, 7vh, 5rem);
  z-index: 5;
}

.hero__eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
}

.hero__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 6.2vw, 5.4rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin-bottom: 1.6rem;
}
.hero__title em { font-style: italic; color: var(--accent); }

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--ink);
  color: var(--ivory);
  border-radius: 999px;
  padding: 0.5rem 1.4rem 0.5rem 0.5rem;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  box-shadow: 0 12px 24px -12px rgba(34,31,26,0.5);
}
.hero__btn:hover { transform: translateY(-2px); box-shadow: 0 18px 30px -12px rgba(34,31,26,0.55); }
.hero__btn span {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: var(--ivory); color: var(--ink);
  border-radius: 50%;
  font-size: 0.85rem;
}

.hero__aside {
  position: absolute;
  right: clamp(1.2rem, 5vw, 4.5rem);
  bottom: clamp(2.2rem, 7vh, 5rem);
  z-index: 5;
  max-width: 240px;
  font-size: 0.74rem;
  line-height: 1.65;
  color: var(--ink-soft);
  text-align: right;
}
.hero__aside-sig {
  margin-top: 0.9rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
}



/* ═══════════ INSTAGRAM ═══════════ */
.insta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1rem, 2vw, 1.6rem);
  padding: clamp(1.8rem, 3.5vw, 3rem) 0 clamp(1.4rem, 2.5vw, 2.2rem);
  overflow: hidden;
}

.insta__head {
  text-align: left;
  padding: 0 clamp(1.2rem, 5vw, 4.5rem);
}

.insta__handle {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.04em;
}
.insta__handle span { font-style: italic; color: var(--accent); }

.insta__rail { width: 100%; overflow: hidden; }

.insta__track {
  display: flex;
  width: max-content;
  animation: insta-slide 34s linear infinite; /* keeps moving on hover */
}

.insta__set {
  display: flex;
  gap: clamp(0.7rem, 1.4vw, 1.2rem);
  padding-right: clamp(0.7rem, 1.4vw, 1.2rem);
}

.insta__set img {
  flex: none;
  width: clamp(170px, 19vw, 270px);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  box-shadow: 0 16px 32px -16px rgba(60,50,35,0.35);
}

/* hero belt drifts right→left; this one flows left→right */
@keyframes insta-slide {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ═══════════ MARQUEE ═══════════ */
.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(34,31,26,0.1);
  background: #fbf9f5;
  padding: 0.85rem 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: slide 28s linear infinite;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
@keyframes slide { to { transform: translateX(-50%); } }

/* ═══════════ BRAND STORY ═══════════ */
.story {
  position: relative;
  background: #ece5db;
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1.2rem, 6vw, 5.5rem) clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}

/* subtle hairline grid like the reference */
.story::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(255,255,255,0.55) 1px, transparent 1px) repeat-x left top / 25% 100%,
    linear-gradient(to bottom, rgba(255,255,255,0.55) 1px, transparent 1px) repeat-y left top / 100% 33.3%;
  opacity: 0.5;
}

.story__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: clamp(1.2rem, 3vw, 2.8rem);
  align-items: start;
}

.story__left { position: relative; z-index: 1; }
.story__left img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 24px 48px -24px rgba(60,50,35,0.4);
}

.story__right { position: relative; padding-top: clamp(0.5rem, 2vw, 2rem); }

.story__eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 0.9rem -14%;
  position: relative;
  z-index: 2;
}

/* the wordmark overhangs the left photo — words overlaying the image */
.story__title {
  position: relative;
  z-index: 2;
  margin-left: -14%;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 7.5vw, 6.2rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
}

.story__o { position: relative; display: inline-block; }
.story__o i {
  position: absolute;
  left: 50%; top: 54%;
  transform: translate(-50%, -50%);
  font-style: normal;
  font-size: 0.22em;
  color: #b08d5f;
}

.story__body {
  max-width: 40ch;
  margin: clamp(1.2rem, 2.5vw, 2rem) 0 clamp(1.4rem, 3vw, 2.2rem);
  font-size: 0.78rem;
  line-height: 1.75;
  color: #9a7d55;
}

.story__detail img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  box-shadow: 0 24px 48px -24px rgba(60,50,35,0.4);
}

.story__newsletter {
  position: relative;
  text-align: center;
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

@media (max-width: 760px) {
  .story__grid { grid-template-columns: 1fr; }
  .story__eyebrow, .story__title { margin-left: 0; }
  .story__title { white-space: normal; font-size: clamp(2.4rem, 13vw, 4rem); }
  .story__left img { aspect-ratio: 4 / 5; }
}

/* ═══════════ SUMMER PROMO BANNER ═══════════ */
.promo {
  display: flex;
  align-items: stretch;
  height: clamp(180px, 32vh, 300px);
  margin: clamp(2.5rem, 6vw, 4.5rem) 0 0; /* flush against the story section below */
  background:
    radial-gradient(ellipse 120% 100% at 15% 0%, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 55%),
    #d7cdc0;
  overflow: hidden;
}

.promo__text {
  flex: 0 0 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(0.9rem, 2vw, 1.4rem);
  padding: clamp(1.2rem, 4vw, 3rem) clamp(1.2rem, 5vw, 4.5rem);
}

.promo__text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 2.6vw, 2.3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}

.promo__btn {
  display: inline-block;
  white-space: nowrap;
  background: #a8937b;
  color: #f6f3ed;
  padding: 0.6rem 1.3rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s;
}
.promo__btn:hover { background: #8f7b63; }

.promo__img { flex: 0 0 50%; height: 100%; overflow: hidden; }
.promo__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ═══════════ NEW VIBES ═══════════ */
.vibes { position: relative; }

.vibes__bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 3rem);
  background: #4a4136;
  padding: clamp(1.4rem, 3vw, 2.4rem) clamp(1.2rem, 5vw, 4.5rem);
}

.vcat {
  display: flex;
  gap: clamp(0.7rem, 1.5vw, 1.1rem);
  align-items: flex-start;
  text-decoration: none;
  color: #f6f3ed;
  min-width: 0;
}

.vcat img {
  width: clamp(58px, 7vw, 84px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  flex: none;
}

.vcat__txt h3 {
  font-size: clamp(0.8rem, 1.3vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vcat__txt p {
  margin-top: 0.35rem;
  font-size: clamp(0.66rem, 1vw, 0.75rem);
  font-weight: 300;
  line-height: 1.45;
  color: rgba(246, 243, 237, 0.75);
}

.vcat__link {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: clamp(0.58rem, 0.9vw, 0.66rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(246, 243, 237, 0.5);
  padding-bottom: 2px;
}
.vcat__link i { font-style: normal; transition: transform 0.25s; display: inline-block; }
.vcat:hover .vcat__link i { transform: translateX(4px); }

.vibes__stage {
  position: relative;
  min-height: clamp(340px, 58vh, 560px);
  background:
    radial-gradient(ellipse 90% 120% at 72% 30%, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 60%),
    #ded6c8;
  /* no overflow clip here — the man's head must ride up over the bar */
}

/* the man — anchored right, tall enough that his hair rises over the bar */
.vibes__man {
  position: absolute;
  right: clamp(4%, 10vw, 16%);
  bottom: 0;
  height: 118%;
  z-index: 3;
  pointer-events: none;
}

.vibes__copy {
  position: relative;
  z-index: 2;
  overflow: hidden; /* masks the words flying in from the right */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.5rem, 1.2vw, 0.9rem);
  padding: clamp(2.2rem, 5vw, 4rem) clamp(1.2rem, 5vw, 4.5rem);
}

.vibes__eyebrow {
  font-size: clamp(0.62rem, 1vw, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #6f6659;
}

.vibes__title {
  font-size: clamp(2.6rem, 7.5vw, 5.6rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: var(--ink);
}

.vibes__sub {
  margin-top: 0.4rem;
  font-size: clamp(0.78rem, 1.3vw, 0.95rem);
  font-weight: 300;
  line-height: 1.5;
  color: #5d564a;
}

.vibes__btn {
  margin-top: 0.7rem;
  display: inline-block;
  background: var(--ink);
  color: #f6f3ed;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s;
}
.vibes__btn:hover { background: #4a4136; }

/* slide-in: words fly in from the right and pass behind the man */
.vslide {
  opacity: 0;
  transform: translateX(85vw);
  transition: transform 1.15s cubic-bezier(0.22, 0.8, 0.28, 1), opacity 0.5s ease;
}
.vibes.is-in .vslide { opacity: 1; transform: translateX(0); }
.vibes.is-in .vslide:nth-child(1) { transition-delay: 0s, 0s; }
.vibes.is-in .vslide:nth-child(2) { transition-delay: 0.28s, 0.28s; }
.vibes.is-in .vslide:nth-child(3) { transition-delay: 0.56s, 0.56s; }
.vibes.is-in .vslide:nth-child(4) { transition-delay: 0.84s, 0.84s; }
.vibes.is-in .vslide:nth-child(5) { transition-delay: 1.12s, 1.12s; }

@media (max-width: 760px) {
  .vibes__bar { grid-template-columns: 1fr; gap: 1.1rem; }
  .vcat { align-items: center; }
  /* bigger figure — his head rises behind the button row so the words
     genuinely fly behind him on entry */
  .vibes__man { height: auto; width: 92vw; right: -16vw; }
  .vibes__copy { padding-bottom: 46vw; }
}

/* ═══════════ NEW ARRIVALS ═══════════ */
.arrivals {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.2rem, 5vw, 4.5rem) 0;
}

.arrivals__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.arrivals__head h2 {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

.arrivals__rule {
  width: 54px;
  height: 1px;
  background: var(--ink);
}

.arrivals__wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 1.2rem);
}

.arrivals__rail {
  display: flex;
  gap: clamp(0.9rem, 2vw, 1.6rem);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
}
.arrivals__rail::-webkit-scrollbar { display: none; }

.product {
  flex: 0 0 calc((100% - 3 * clamp(0.9rem, 2vw, 1.6rem)) / 4);
  scroll-snap-align: start;
  text-decoration: none;
  color: var(--ink);
}

.product__media {
  position: relative;
  background: #f1ede5;
  overflow: hidden;
}

.product__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transition: transform 0.45s ease;
}
.product:hover .product__media img { transform: scale(1.04); }

.product__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: var(--ink);
  color: #f6f3ed;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.32rem 0.55rem;
}

.product__name {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
}

.product__price {
  margin-top: 0.25rem;
  text-align: center;
  font-size: 0.74rem;
  color: #6f695e;
}

.product__swatches {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.55rem;
}
.product__swatches i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(34, 31, 26, 0.18);
}
.product__swatches i.is-active {
  box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--ink);
}

.arrivals__arrow {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(34, 31, 26, 0.25);
  background: transparent;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.arrivals__arrow:hover { background: var(--ink); color: #f6f3ed; }

@media (max-width: 900px) {
  .product { flex-basis: calc((100% - 2 * clamp(0.9rem, 2vw, 1.6rem)) / 3); }
}
@media (max-width: 640px) {
  .product { flex-basis: calc((100% - clamp(0.9rem, 2vw, 1.6rem)) / 2); }
}

/* ═══════════ SCROLL REVEAL (slow fade-ins) ═══════════ */
.no-anim .rv, .no-anim .vslide { transition: none !important; }

.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1.1s ease, transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.rv--fade { transform: none; } /* opacity-only for positioned/3d elements */
.rv--in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 0.15s; }
.rv-d2 { transition-delay: 0.3s; }
.rv-d3 { transition-delay: 0.45s; }
.rv-d4 { transition-delay: 0.6s; }
.rv-d5 { transition-delay: 0.75s; }

/* ═══════════ PAGE WIPE (square transition) ═══════════ */
.wipe {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  pointer-events: none;
}
.wipe i {
  display: block;
  background: var(--ink);
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.wipe--in { pointer-events: auto; }
.wipe--in i { transform: scale(1); }
.wipe--cover i { transform: scale(1); transition: none !important; }
.wipe--open i { transform: scale(0); }

/* ═══════════ PRODUCT PAGE ═══════════ */
.pdp {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(1.5rem, 4vw, 3.5rem) clamp(1.2rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.pdp__crumb {
  grid-column: 1 / -1;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a8271;
}
.pdp__crumb a { color: inherit; text-decoration: none; }
.pdp__crumb a:hover { color: var(--ink); }

.pdp__main {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  background: #f1ede5;
}

.pdp__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.pdp__thumbs img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.25s;
  background: #f1ede5;
}
.pdp__thumbs img:hover,
.pdp__thumbs img.is-active { opacity: 1; box-shadow: 0 0 0 1px var(--ink); }

.pdp__info { position: sticky; top: 90px; }

.pdp__eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8a8271;
}

.pdp__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.05;
  margin-top: 0.5rem;
}

.pdp__stars { margin-top: 0.6rem; font-size: 0.78rem; color: #6f695e; }
.pdp__stars span { color: #c9a227; letter-spacing: 0.08em; }

.pdp__price {
  margin-top: 0.9rem;
  font-size: 1.05rem;
  font-weight: 500;
}
.pdp__price s { color: #9a917f; font-weight: 300; margin-left: 0.5rem; font-size: 0.85rem; }
.pdp__price em { font-style: normal; color: #7d5f3f; font-size: 0.7rem; margin-left: 0.55rem; letter-spacing: 0.08em; }

.pdp__desc {
  margin-top: 1.1rem;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
  color: #55503f;
  max-width: 42ch;
}

.pdp__label {
  margin-top: 1.4rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pdp__swatches { display: flex; gap: 0.5rem; margin-top: 0.6rem; }
.pdp__swatches i {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid rgba(34,31,26,0.2);
}
.pdp__swatches i.is-active { box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--ink); }

.pdp__sizes { display: flex; gap: 0.5rem; margin-top: 0.6rem; flex-wrap: wrap; }
.pdp__size {
  min-width: 44px;
  padding: 0.55rem 0.6rem;
  font-family: inherit;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  background: transparent;
  border: 1px solid rgba(34,31,26,0.3);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.pdp__size:hover { border-color: var(--ink); }
.pdp__size.is-active { background: var(--ink); color: #f6f3ed; border-color: var(--ink); }

.pdp__cart {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.95rem 1rem;
  background: var(--ink);
  color: #f6f3ed;
  border: none;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
}
.pdp__cart:hover { background: #4a4136; }
.pdp__cart.is-added { background: #5d7052; }

.pdp__meta {
  margin-top: 1.4rem;
  border-top: 1px solid rgba(34,31,26,0.12);
}
.pdp__meta div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(34,31,26,0.12);
  font-size: 0.72rem;
}
.pdp__meta dt { color: #8a8271; }
.pdp__meta dd { text-align: right; font-weight: 500; }

@media (max-width: 820px) {
  .pdp { grid-template-columns: 1fr; }
  .pdp__info { position: static; }
}

/* ═══════════ QUICK-VIEW POPUP ═══════════ */
.qview {
  position: fixed;
  z-index: 600;
  width: min(300px, 88vw);
  background: #fbf9f5;
  box-shadow: 0 30px 70px -18px rgba(40, 33, 22, 0.45), 0 0 0 1px rgba(34, 31, 26, 0.06);
  padding: 10px 10px 14px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.82) translateY(16px);
  transition: transform 0.4s cubic-bezier(0.2, 1.4, 0.3, 1), opacity 0.22s ease;
}
.qview--show {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.qview__hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.qview__thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 6px;
}
.qview__thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.qview__body { padding: 12px 6px 0; }

.qview__name {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.qview__stars {
  margin-top: 0.3rem;
  font-size: 0.72rem;
  color: #6f695e;
}
.qview__stars span { color: #c9a227; letter-spacing: 0.08em; }

.qview__note {
  margin-top: 0.35rem;
  font-size: 0.7rem;
  font-weight: 300;
  line-height: 1.5;
  color: #6f695e;
}

.qview__actions {
  display: flex;
  gap: 8px;
  margin-top: 0.8rem;
}
.qview__more,
.qview__cart {
  flex: 1;
  text-align: center;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.6rem 0.4rem;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.qview__more {
  text-decoration: none;
  color: var(--ink);
  border: 1px solid rgba(34, 31, 26, 0.35);
  background: transparent;
}
.qview__more:hover { background: var(--ink); color: #f6f3ed; }
.qview__cart {
  border: none;
  background: var(--ink);
  color: #f6f3ed;
  font-family: inherit;
}
.qview__cart:hover { background: #4a4136; }
.qview__cart.is-added { background: #5d7052; }

/* ═══════════ COLLECTION ═══════════ */
.collection { padding: clamp(4rem, 9vw, 7rem) clamp(1.2rem, 5vw, 4.5rem); }

.collection__head { margin-bottom: 2.6rem; }
.collection__head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
}
.collection__head p { color: var(--ink-soft); font-size: 0.85rem; margin-top: 0.4rem; }

.collection__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.8rem, 2vw, 1.6rem);
}

.tile {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--stone);
}
.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.tile:hover img { transform: scale(1.05); }
.tile__info {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.1rem;
  background: linear-gradient(to top, rgba(20,17,12,0.55), rgba(20,17,12,0));
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.tile__info b { font-weight: 500; opacity: 0.9; }

/* ═══════════ EDITORIAL ═══════════ */
.editorial {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(4.5rem, 10vw, 8rem) clamp(1.2rem, 5vw, 4.5rem);
  text-align: center;
}
.editorial__eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 1.2rem;
}
.editorial h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.editorial__body {
  max-width: 460px;
  margin: 0 auto;
  font-size: 0.85rem;
  line-height: 1.7;
  opacity: 0.75;
}

/* ═══════════ FOOTER ═══════════ */
.footer { padding: clamp(3rem, 7vw, 5rem) clamp(1.2rem, 5vw, 4.5rem) 2rem; }
.footer__brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 2.4rem;
}
.footer__cols {
  display: flex;
  gap: clamp(2.5rem, 8vw, 7rem);
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.footer__cols h4 {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
  font-weight: 600;
}
.footer__cols a {
  display: block;
  font-size: 0.8rem;
  padding: 0.22rem 0;
  opacity: 0.8;
}
.footer__cols a:hover { opacity: 1; }
.footer__note {
  border-top: 1px solid rgba(34,31,26,0.1);
  padding-top: 1.4rem;
  font-size: 0.68rem;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 900px) {
  .nav__meta, .nav__links { display: none; }
  .nav__cta { margin-left: auto; }
  :root { --card-w: clamp(170px, 30vw, 240px); }
  .hero__aside { display: none; }
  .carousel { perspective: 1000px; }
}

@media (max-width: 640px) {
  :root { --card-w: 46vw; }
  .hero { min-height: 560px; }
  .hero__man { height: 60vh; }
  .hero__copy { left: 1.2rem; right: 1.2rem; bottom: 3.4rem; }
  .collection__grid { grid-template-columns: 1fr; }
  .nav__meta--hide-sm { display: none; }
  .insta__set img { width: 48vw; }
}
