/* ============================================================
   NEST LOOKS — cinematic editorial. Mobile-first; most traffic
   arrives inside the Instagram in-app browser.
   ============================================================ */

:root {
  --ink:      #0B0A0D;
  --ink-2:    #131217;
  --ink-3:    #1B1920;
  --ink-4:    #262330;
  --line:     rgba(244, 241, 236, .11);
  --line-2:   rgba(244, 241, 236, .20);
  --text:     #F4F1EC;
  --muted:    #9C968D;
  --gold:     #F0C05A;
  --gold-dim: rgba(240, 192, 90, .16);
  --flame:    #FF5A3C;

  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans:  "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;

  --pad:  clamp(16px, 5vw, 28px);
  --maxw: 1240px;

  --shadow: 0 24px 60px -20px rgba(0, 0, 0, .75);
  --ease:   cubic-bezier(.22, .61, .36, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -.008em;
  -webkit-font-smoothing: antialiased;
  /* clip rather than hidden, so <body> does not become a second scrolling box
     and the document stays the only scroller. `hidden` is the fallback. */
  overflow-x: hidden;
  overflow-x: clip;
}

/* Warm vignette so full-bleed film stills sit on something, not pure black. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1100px 620px at 78% -8%, rgba(240, 192, 90, .075), transparent 62%),
    radial-gradient(820px 520px at 6% 102%, rgba(255, 90, 60, .06), transparent 60%);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

::selection { background: var(--gold); color: #14110A; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: #14110A; padding: 10px 16px; border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600;
}
.skip:focus { left: 0; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
  position: relative;
  z-index: 1;
}

/* ------------------------------------------------------------ typography */

h1, h2, h3 { margin: 0; font-weight: 400; letter-spacing: -.02em; line-height: 1.06; }

.display {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 9vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.022em;
}
.display em { font-style: italic; color: var(--gold); }

.h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 5.2vw, 2.9rem);
  line-height: 1.02;
}

.eyebrow {
  font-size: .688rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .85rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--gold);
  opacity: .7;
  flex: none;
}

.lede { color: var(--muted); font-size: 1.03rem; max-width: 60ch; margin: 1rem 0 0; }

/* ---------------------------------------------------------------- header */

.site-head {
  position: sticky; top: 0; z-index: 90;
  background: rgba(11, 10, 13, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.head-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 60px;
}

.brand { display: inline-flex; align-items: center; gap: .6rem; flex: none; }

.brand-mark {
  width: 22px; height: 22px; border-radius: 6px; flex: none;
  background: linear-gradient(140deg, var(--gold), var(--flame));
  box-shadow: 0 0 0 1px rgba(240, 192, 90, .35), 0 6px 18px -6px rgba(255, 90, 60, .7);
}

.brand-text {
  font-family: var(--serif);
  font-size: 1.28rem;
  letter-spacing: .01em;
}

.head-nav { display: none; gap: 1.4rem; margin-left: 1.2rem; font-size: .875rem; color: var(--muted); }
.head-nav a { transition: color .2s var(--ease); }
.head-nav a:hover { color: var(--text); }

.head-search { margin-left: auto; position: relative; display: flex; align-items: center; }
.head-search input {
  width: 40px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 38px 8px 14px;
  font-size: .875rem;
  transition: width .32s var(--ease), border-color .2s;
}
.head-search input::placeholder { color: #6E6960; }
.head-search input:focus { width: min(56vw, 320px); border-color: var(--line-2); outline: none; }
.head-search input:not(:placeholder-shown) { width: min(56vw, 320px); }
.head-search button {
  position: absolute; right: 4px;
  background: none; border: 0; padding: 6px; cursor: pointer; color: var(--muted);
  display: grid; place-items: center;
}
.head-search svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; }

@media (min-width: 800px) {
  .head-inner { min-height: 72px; }
  .head-nav { display: flex; }
  .head-search input { width: 220px; }
}

/* ------------------------------------------------------------- home hero */

.hero { padding: clamp(28px, 6vw, 64px) 0 clamp(36px, 6vw, 72px); }

.hero-grid { display: grid; gap: clamp(24px, 4vw, 56px); align-items: center; }

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
}

.hero-copy .display { margin-bottom: .3rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.7rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  font-size: .9rem; font-weight: 600; letter-spacing: -.005em;
  cursor: pointer;
  background: transparent;
  transition: transform .18s var(--ease), background-color .2s, border-color .2s, color .2s;
  min-height: 46px;
}
.btn:hover { transform: translateY(-1px); border-color: var(--gold); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #14110A;
}
.btn-primary:hover { background: #F6CE76; border-color: #F6CE76; }

.btn-block { width: 100%; }

.btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Hero visual — the featured look. */
.hero-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-2);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8, 7, 10, .94) 4%, rgba(8, 7, 10, .18) 46%, transparent 68%);
}
.hero-card-body {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: clamp(18px, 4vw, 30px);
}
.hero-card-body h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4.4vw, 2.2rem);
  margin-bottom: .35rem;
}
.hero-card-body p { margin: 0; color: #C9C3B9; font-size: .875rem; }

/* --------------------------------------------------------------- badges */

.chip {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(11, 10, 13, .6);
  backdrop-filter: blur(6px);
  font-size: .688rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase;
  color: #D8D2C8;
  white-space: nowrap;
}
.chip-gold { border-color: rgba(240, 192, 90, .5); color: var(--gold); background: var(--gold-dim); }
.chip-flame { border-color: rgba(255, 90, 60, .45); color: #FF8A73; background: rgba(255, 90, 60, .12); }

.chip-row { display: flex; flex-wrap: wrap; gap: .45rem; }

/* ------------------------------------------------------------- sections */

.section { padding: clamp(40px, 7vw, 84px) 0; }
.section-tight { padding: clamp(28px, 5vw, 54px) 0; }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1.2rem; margin-bottom: clamp(20px, 3.5vw, 34px);
  flex-wrap: wrap;
}
.section-head p { margin: .5rem 0 0; color: var(--muted); font-size: .925rem; }

.link-more {
  font-size: .82rem; font-weight: 600; color: var(--gold);
  display: inline-flex; align-items: center; gap: .4rem;
  white-space: nowrap;
}
.link-more::after { content: "→"; transition: transform .2s var(--ease); }
.link-more:hover::after { transform: translateX(3px); }

/* ---------------------------------------------------------- look cards */

.look-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: clamp(14px, 2.2vw, 26px);
}

.look-card { position: relative; display: block; }

.look-card-media {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
}
.look-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease), filter .4s;
}
.look-card:hover .look-card-media img { transform: scale(1.045); }

.look-card-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8, 7, 10, .8) 2%, transparent 46%);
  opacity: .9;
}

.look-card-tag { position: absolute; top: 10px; left: 10px; z-index: 2; }

.look-card-count {
  position: absolute; bottom: 10px; right: 10px; z-index: 2;
  font-size: .688rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: #E4DED4;
  background: rgba(11, 10, 13, .66);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 9px;
}

.look-card-body { padding: .8rem .1rem 0; }
.look-card-body h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.12;
  margin-bottom: .22rem;
}
.look-card-meta { color: var(--muted); font-size: .8rem; margin: 0; }

/* ------------------------------------------------ celebrity / film rails */

.rail {
  display: flex; gap: .8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: .6rem;
  margin-inline: calc(var(--pad) * -1);
  padding-inline: var(--pad);
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; flex: none; }

.person {
  width: 118px;
  text-align: center;
}
.person-img {
  width: 118px; height: 118px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-2);
  margin-bottom: .6rem;
  position: relative;
}
.person-img::after {
  content: "";
  position: absolute; inset: -2px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  background: linear-gradient(140deg, var(--gold), var(--flame)) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .25s;
}
.person:hover .person-img::after { opacity: 1; }
.person-img img { width: 100%; height: 100%; object-fit: cover; }
.person strong { display: block; font-size: .85rem; font-weight: 600; line-height: 1.25; }
.person span { display: block; font-size: .72rem; color: var(--muted); }

.film-card {
  width: 168px;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-2);
}
.film-card-media { aspect-ratio: 2 / 3; background: var(--ink-3); }
.film-card-media img { width: 100%; height: 100%; object-fit: cover; }
.film-card-body { padding: .7rem .8rem .85rem; }
.film-card-body strong { display: block; font-family: var(--serif); font-size: 1.05rem; line-height: 1.15; }
.film-card-body span { font-size: .72rem; color: var(--muted); }

/* =========================================================== LOOK DETAIL */

.look-hero { padding-top: clamp(18px, 3vw, 34px); }

.crumbs {
  font-size: .78rem; color: var(--muted);
  display: flex; flex-wrap: wrap; gap: .4rem; align-items: center;
  margin-bottom: 1.1rem;
}
.crumbs a:hover { color: var(--text); }
.crumbs span[aria-hidden] { opacity: .45; }

.look-top { display: grid; gap: clamp(22px, 4vw, 48px); }
@media (min-width: 960px) { .look-top { grid-template-columns: 1.02fr .98fr; align-items: start; } }

/* Celebrity gallery — swipeable, snapping. */
.gallery { position: relative; }
.gallery-main {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-2);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}
.gallery-track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-slide { flex: 0 0 100%; scroll-snap-align: center; height: 100%; position: relative; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; }
.gallery-slide figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 2.6rem .95rem .85rem;
  font-size: .78rem; color: #CFC9BF;
  background: linear-gradient(to top, rgba(8, 7, 10, .92), transparent);
}

.gallery-dots { display: flex; justify-content: center; gap: .38rem; margin-top: .8rem; }
.gallery-dots button {
  width: 7px; height: 7px; padding: 0; border-radius: 50%;
  border: 0; background: var(--line-2); cursor: pointer;
  transition: width .25s var(--ease), background-color .25s;
}
.gallery-dots button[aria-current="true"] { width: 22px; border-radius: 999px; background: var(--gold); }

.gallery-thumbs { display: flex; gap: .5rem; margin-top: .8rem; overflow-x: auto; scrollbar-width: none; }
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumbs button {
  flex: none; width: 58px; aspect-ratio: 4/5; padding: 0;
  border-radius: var(--r-sm); overflow: hidden; cursor: pointer;
  border: 1px solid var(--line); background: var(--ink-2);
  opacity: .55; transition: opacity .2s, border-color .2s;
}
.gallery-thumbs button[aria-current="true"] { opacity: 1; border-color: var(--gold); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.look-intro .display { font-size: clamp(2rem, 7vw, 3.4rem); margin: .55rem 0 .1rem; }
.look-sub { color: var(--muted); font-size: 1rem; margin: .55rem 0 0; }

.look-facts {
  list-style: none; margin: 1.5rem 0 0; padding: 0;
  border-top: 1px solid var(--line);
}
.look-facts li {
  display: flex; gap: 1rem; justify-content: space-between;
  padding: .72rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .875rem;
}
.look-facts dt, .look-facts .k { color: var(--muted); flex: none; }
.look-facts .v { text-align: right; font-weight: 500; }
.look-facts .v a { border-bottom: 1px solid var(--line-2); }
.look-facts .v a:hover { border-color: var(--gold); color: var(--gold); }

.look-desc { margin-top: 1.3rem; color: #CFC9BF; font-size: .97rem; }
.look-desc p { margin: 0 0 .85rem; }

/* ------------------------------------------------------- product cards */

.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
  gap: clamp(14px, 2.2vw, 24px);
}

.product {
  display: flex; flex-direction: column;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--ink-2), var(--ink));
  overflow: hidden;
  transition: border-color .25s, transform .25s var(--ease);
}
.product:hover { border-color: var(--line-2); transform: translateY(-2px); }

.product-media { position: relative; aspect-ratio: 3 / 4; background: var(--ink-3); }
.product-shots { display: flex; height: 100%; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.product-shots::-webkit-scrollbar { display: none; }
.product-shots > * { flex: 0 0 100%; scroll-snap-align: center; }
.product-shots img { width: 100%; height: 100%; object-fit: cover; }

.product-badge { position: absolute; top: 9px; left: 9px; z-index: 2; }
.product-shotcount {
  position: absolute; top: 9px; right: 9px; z-index: 2;
  font-size: .66rem; letter-spacing: .06em; font-weight: 600;
  background: rgba(11, 10, 13, .7); border: 1px solid var(--line);
  border-radius: 999px; padding: 3px 8px; color: #D6D0C6;
}

.product-body { padding: .9rem 1rem 1rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.product-brand { font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); }
.product-name { font-size: .96rem; font-weight: 600; line-height: 1.32; letter-spacing: -.01em; }
.product-name:hover { color: var(--gold); }
.product-price { font-family: var(--serif); font-size: 1.32rem; color: var(--gold); line-height: 1.2; margin-top: .1rem; }
.product-price small { font-family: var(--sans); font-size: .68rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; display: block; margin-bottom: .1rem; }
/* A catalogue tag deep-links to #product-<id>; keep it clear of the sticky head
   and mark the piece that was tagged so the landing is obvious. */
.product { scroll-margin-top: 84px; }
.product.is-target {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 18px 44px -22px rgba(240, 192, 90, .6);
}
.product-actions { margin-top: auto; padding-top: .85rem; }
.product-actions .btn + .btn { margin-top: .5rem; }

.product-sellers { font-size: .75rem; color: var(--muted); margin: .5rem 0 0; text-align: center; }

/* ------------------------------------------------------------ pose strip */

.poses {
  display: flex; gap: .7rem; overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin-inline: calc(var(--pad) * -1); padding-inline: var(--pad);
  padding-bottom: .5rem;
  scrollbar-width: none;
}
.poses::-webkit-scrollbar { display: none; }
.pose {
  flex: none; scroll-snap-align: start;
  width: min(62vw, 260px);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-2);
  position: relative;
}
.pose-media { aspect-ratio: 9 / 16; }
.pose-media img { width: 100%; height: 100%; object-fit: cover; }
.pose figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 2.2rem .8rem .7rem;
  font-size: .75rem; color: #CFC9BF;
  background: linear-gradient(to top, rgba(8, 7, 10, .92), transparent);
}

/* ------------------------------------------------------------ IG embed */

.reel-block { display: grid; gap: clamp(20px, 3vw, 40px); align-items: center; }
@media (min-width: 860px) { .reel-block { grid-template-columns: .95fr 1.05fr; } }

.reel-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-2);
  max-width: 420px;
  width: 100%;
  margin-inline: auto;
  box-shadow: var(--shadow);
}
.reel-frame iframe { width: 100%; height: 640px; border: 0; display: block; background: var(--ink-2); }

/* --------------------------------------------------------- detail sheet */

.sheet[hidden] { display: none; }

.sheet {
  position: fixed; inset: 0; z-index: 140;
  display: flex; align-items: flex-end; justify-content: center;
}
@media (min-width: 720px) { .sheet { align-items: center; padding: 24px; } }

.sheet-backdrop {
  position: absolute; inset: 0;
  background: rgba(4, 4, 6, .74);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  animation: fade .25s var(--ease);
}

.sheet-panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 88vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--ink-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding: 0 0 max(18px, env(safe-area-inset-bottom));
  animation: rise .32s var(--ease);
  box-shadow: 0 -20px 70px -20px rgba(0, 0, 0, .9);
}
@media (min-width: 720px) {
  .sheet-panel { border-radius: var(--r-lg); animation: pop .26s var(--ease); }
}

@keyframes fade { from { opacity: 0; } }
@keyframes rise { from { transform: translateY(6%); opacity: 0; } }
@keyframes pop  { from { transform: scale(.97); opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

.sheet-grab {
  width: 38px; height: 4px; border-radius: 999px;
  background: var(--line-2);
  margin: 10px auto 2px;
}
@media (min-width: 720px) { .sheet-grab { display: none; } }

.sheet-head {
  display: flex; gap: .9rem; align-items: flex-start;
  padding: 1rem 1.15rem 1rem;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0;
  background: var(--ink-2);
  z-index: 2;
}
.sheet-thumb {
  width: 60px; aspect-ratio: 3/4; flex: none;
  border-radius: var(--r-sm); overflow: hidden;
  border: 1px solid var(--line); background: var(--ink-3);
}
.sheet-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sheet-title { flex: 1; min-width: 0; }
.sheet-title h3 { font-size: 1rem; font-weight: 600; line-height: 1.3; letter-spacing: -.01em; }
.sheet-title p { margin: .25rem 0 0; font-size: .78rem; color: var(--muted); }
.sheet-title .product-price { font-size: 1.1rem; margin-top: .3rem; }
.sheet-close {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--ink-3);
  cursor: pointer; display: grid; place-items: center; color: var(--muted);
  transition: color .2s, border-color .2s;
}
.sheet-close:hover { color: var(--text); border-color: var(--line-2); }
.sheet-close svg { width: 15px; height: 15px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; }

.sheet-body { padding: 1.05rem 1.15rem 0; }
.sheet-label {
  font-size: .68rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 .7rem;
}
.sheet-desc { font-size: .875rem; color: #C6C0B7; margin: 0 0 1.15rem; }

.offers { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.offer {
  display: flex; align-items: center; gap: .85rem;
  padding: .8rem .9rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--ink-3);
  transition: border-color .2s, background-color .2s, transform .18s var(--ease);
}
.offer:hover { border-color: var(--gold); background: var(--ink-4); transform: translateY(-1px); }

.offer-logo {
  width: 38px; height: 38px; flex: none;
  border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--ink-4), var(--ink-2));
  border: 1px solid var(--line);
  font-family: var(--serif); font-size: 1.05rem; color: var(--gold);
}
.offer-main { flex: 1; min-width: 0; }
.offer-seller { font-weight: 600; font-size: .9rem; display: block; }
.offer-meta { font-size: .74rem; color: var(--muted); display: block; margin-top: .1rem; }
.offer-price { font-family: var(--serif); font-size: 1.05rem; color: var(--text); flex: none; }
.offer-go {
  flex: none; color: var(--muted);
  display: grid; place-items: center;
  transition: color .2s, transform .2s var(--ease);
}
.offer:hover .offer-go { color: var(--gold); transform: translateX(2px); }
.offer-go svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.offer-empty {
  padding: 1.1rem; border: 1px dashed var(--line-2); border-radius: var(--r);
  color: var(--muted); font-size: .85rem; text-align: center;
}

.sheet-foot {
  margin-top: 1.15rem;
  padding: .9rem 1.15rem 0;
  border-top: 1px solid var(--line);
  font-size: .72rem; color: #7C766D; line-height: 1.5;
}

body.sheet-open { overflow: hidden; }

/* ------------------------------------------------------------- archive */

.page-head { padding: clamp(28px, 5vw, 56px) 0 clamp(20px, 3vw, 34px); }
.page-head-grid { display: flex; gap: clamp(16px, 3vw, 30px); align-items: center; flex-wrap: wrap; }
.page-portrait {
  width: clamp(84px, 22vw, 132px); aspect-ratio: 1; flex: none;
  border-radius: 50%; overflow: hidden;
  border: 1px solid var(--line-2); background: var(--ink-2);
}
.page-portrait.poster { aspect-ratio: 2/3; border-radius: var(--r); width: clamp(96px, 24vw, 150px); }
.page-portrait img { width: 100%; height: 100%; object-fit: cover; }

.pagination { display: flex; gap: .5rem; justify-content: center; margin-top: clamp(30px, 5vw, 54px); flex-wrap: wrap; }
.pagination a, .pagination span {
  min-width: 42px; min-height: 42px;
  display: grid; place-items: center;
  padding: 0 .7rem;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  font-size: .875rem; color: var(--muted);
  transition: border-color .2s, color .2s;
}
.pagination a:hover { border-color: var(--gold); color: var(--text); }
.pagination [aria-current="page"] { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

.empty {
  text-align: center; padding: clamp(48px, 10vw, 100px) 1rem;
  border: 1px dashed var(--line-2); border-radius: var(--r-lg);
  color: var(--muted);
}
.empty h2 { font-family: var(--serif); font-size: 1.7rem; color: var(--text); margin-bottom: .5rem; }

/* --------------------------------------------------- piece (product) page */

.page-head-tight { padding-bottom: 0; }

.pdp { display: grid; gap: clamp(20px, 4vw, 48px); align-items: start; }
@media (min-width: 900px) { .pdp { grid-template-columns: 1.05fr .95fr; } }

.pdp-media { position: relative; }
.pdp-shots {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: #fff;
}
.pdp-shots::-webkit-scrollbar { display: none; }
.pdp-shot { flex: 0 0 100%; scroll-snap-align: start; }
.pdp-shot img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: contain; }
.pdp-badge { position: absolute; top: 14px; left: 14px; z-index: 2; }

.pdp-thumbs { display: flex; gap: .5rem; margin-top: .6rem; overflow-x: auto; scrollbar-width: none; }
.pdp-thumbs::-webkit-scrollbar { display: none; }
.pdp-thumbs button {
  flex: none; width: 62px; padding: 0; cursor: pointer; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; line-height: 0;
}
.pdp-thumbs button[aria-current="true"] { border-color: var(--gold); }
.pdp-thumbs img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: contain; }

.pdp-brand { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin: 0 0 .35rem; }
.pdp-title { font-family: var(--serif); font-size: clamp(1.8rem, 5.4vw, 2.7rem); line-height: 1.04; }
.pdp-worn { color: var(--muted); font-size: .92rem; margin: .7rem 0 0; }
.pdp-worn a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }

.pdp-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: .6rem; margin: 1.1rem 0 .2rem; }
.pdp-price-now { font-family: var(--serif); font-size: clamp(1.7rem, 5vw, 2.2rem); color: var(--gold); line-height: 1; }
.pdp-price-none { color: var(--muted); font-size: 1.3rem; }
.pdp-price-was { color: #6E6960; font-size: 1rem; }
.pdp-price-note { flex: 1 1 100%; font-size: .72rem; color: #6E6960; }

.pdp-stock { font-size: .82rem; margin: .5rem 0 0; display: flex; align-items: center; gap: .45rem; }
.pdp-stock::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.pdp-stock.is-in { color: #4ED6A1; }
.pdp-stock.is-out { color: var(--flame); }

.pdp-desc { color: var(--muted); font-size: .95rem; margin: 1.1rem 0 0; }
.pdp-actions { margin-top: 1.5rem; }
.pdp-actions .btn + .btn { margin-top: .55rem; }

.pdp-meta { margin: 1.6rem 0 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.pdp-meta > div {
  display: grid; grid-template-columns: 9rem 1fr; gap: 1rem;
  padding: .7rem 0; border-bottom: 1px solid var(--line);
}
.pdp-meta dt { color: var(--muted); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; margin: 0; }
.pdp-meta dd { margin: 0; font-size: .9rem; }
.pdp-meta dd a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.pdp-disclaimer { font-size: .74rem; color: #6E6960; margin: 1.1rem 0 0; line-height: 1.6; }

.piece-strip { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: clamp(12px, 2vw, 20px); }
.piece-mini { display: block; }
.piece-mini-media {
  border-radius: var(--r); overflow: hidden; border: 1px solid var(--line);
  background: #fff; aspect-ratio: 3 / 4; margin-bottom: .55rem;
}
.piece-mini-media img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s var(--ease); }
.piece-mini:hover .piece-mini-media img { transform: scale(1.04); }
.piece-mini-name { display: block; font-size: .875rem; font-weight: 600; line-height: 1.3; }
.piece-mini-price { display: block; font-family: var(--serif); font-size: 1.05rem; color: var(--gold); margin-top: .15rem; }

/* ----------------------------------------------------------- prose pages */

.prose { max-width: 68ch; }
.prose .h2 { font-size: clamp(1.2rem, 3vw, 1.55rem); margin: 2.2rem 0 .6rem; }
.prose .h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--muted); font-size: .95rem; line-height: 1.75; }
.prose p { margin: 0 0 .9rem; }
.prose ul { margin: 0 0 .9rem; padding-left: 1.1rem; display: grid; gap: .5rem; }
.prose strong { color: var(--text, #F4F1EC); font-weight: 600; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.prose em { color: var(--text, #F4F1EC); font-style: normal; }

/* ------------------------------------------------------------------- ads */

.ad-slot[hidden] { display: none; }
.ad-slot {
  display: block;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(18px, 3vw, 28px) var(--pad);
  text-align: center;
}
.ad-slot .ad-label {
  display: block;
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #5E5951;
  margin-bottom: .5rem;
}
/* Google injects the iframe here; reserve a little height so the page does not
   jump once it loads, but stay collapsed when the unit comes back unfilled. */
.ad-slot ins.adsbygoogle {
  min-height: 90px;
  background: rgba(244, 241, 236, .02);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.ad-slot ins.adsbygoogle[data-ad-status="unfilled"] { display: none !important; }
.ad-slot:has(ins[data-ad-status="unfilled"]) { display: none; }

/* ---------------------------------------------------------------- footer */

.site-foot {
  border-top: 1px solid var(--line);
  margin-top: clamp(48px, 8vw, 100px);
  padding: clamp(32px, 5vw, 56px) 0 clamp(28px, 4vw, 44px);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .35));
}
.foot-inner { display: grid; gap: 1.4rem; }
.foot-brand { display: flex; gap: .75rem; align-items: flex-start; }
.foot-brand strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; display: block; }
.foot-brand p { margin: .1rem 0 0; color: var(--muted); font-size: .85rem; }
.foot-links { display: flex; flex-wrap: wrap; gap: 1.2rem; font-size: .875rem; color: var(--muted); }
.foot-links a:hover { color: var(--gold); }
.foot-note { font-size: .74rem; color: #6E6960; max-width: 68ch; margin: 0; line-height: 1.6; }
.foot-note em { color: var(--muted); font-style: normal; }
.foot-copy { font-size: .74rem; color: #59544D; margin: 0; }

/* -------------------------------------------------------- scroll reveal */

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}
