/* ── SOKAL.COM — Main Stylesheet ── */

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

:root {
  --black:    #080806;
  --white:    #f4f2ed;
  --gold:     #c8a96e;
  --gold-dim: #8a6f44;
  --cream:    #e8e2d4;
  --mid:      #2a2820;
  --line:     rgba(200,169,110,0.2);
}
a {
  color: inherit;
  text-decoration: none;
}
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  cursor: none;
  overflow-x: hidden;
}
@media (hover: none) {
  body { cursor: auto; }
  #cursor, #cursor-ring { display: none; }
}
// SOKAL — main.js

// ── CURSOR ──────────────────────────────────────────────
const cursor = document.getElementById('cursor');
const ring   = document.getElementById('cursor-ring');
if (cursor && ring) {
  let mx = 0, my = 0, rx = 0, ry = 0;
  document.addEventListener('mousemove', e => {
    mx = e.clientX;
    my = e.clientY;
    cursor.style.left = mx + 'px';
    cursor.style.top  = my + 'px';
  });
  (function animateRing() {
    rx += (mx - rx) * 0.12;
    ry += (my - ry) * 0.12;
    ring.style.left = rx + 'px';
    ring.style.top  = ry + 'px';
    requestAnimationFrame(animateRing);
  })();
  document.querySelectorAll('a,button,.cat-card,.featured-item,.arrival-card,.item-card').forEach(el => {
    el.addEventListener('mouseenter', () => document.body.classList.add('cursor-hover'));
    el.addEventListener('mouseleave', () => document.body.classList.remove('cursor-hover'));
  });
}

// ── SCROLL REVEAL ────────────────────────────────────────
const revObs = new IntersectionObserver((entries, obs) => {
  entries.forEach(e => {
    if (e.isIntersecting) { e.target.classList.add('visible'); obs.unobserve(e.target); }
  });
}, { threshold: 0.12 });
document.querySelectorAll('.reveal').forEach(el => revObs.observe(el));

// ── NAV SHRINK ON SCROLL ─────────────────────────────────
const nav = document.querySelector('nav');
if (nav) window.addEventListener('scroll', () => {
  nav.style.padding = window.scrollY > 60 ? '18px 48px' : '28px 48px';
});

// ── HERO SLIDESHOW ───────────────────────────────────────
const slides = document.querySelectorAll('.hero-slide');
const dots   = document.querySelectorAll('.slide-dot');
if (slides.length) {
  let current = 0;
  let timer = setInterval(next, 5000);
  function goTo(n) {
    slides[current].classList.remove('active');
    dots[current] && dots[current].classList.remove('active');
    current = n;
    slides[current].classList.add('active');
    dots[current] && dots[current].classList.add('active');
  }
  function next() { goTo((current + 1) % slides.length); }
  dots.forEach(dot => dot.addEventListener('click', () => {
    clearInterval(timer);
    goTo(+dot.dataset.slide);
    timer = setInterval(next, 5000);
  }));
}

// ── FEATURED PIECES PREVIEW ──────────────────────────────
const previewImg = document.getElementById('featured-preview-img');
if (previewImg) {
  document.querySelectorAll('.featured-item').forEach(item => {
    item.addEventListener('mouseenter', () => {
      previewImg.style.opacity = '0';
      setTimeout(() => {
        previewImg.src = item.dataset.img;
        document.getElementById('featured-preview-tag').textContent  = item.dataset.tag;
        document.getElementById('featured-preview-name').textContent = item.dataset.name;
        const price = item.querySelector('.featured-item-price');
        document.getElementById('featured-preview-price').textContent = price ? price.textContent : '';
        previewImg.style.opacity = '1';
      }, 250);
    });
  });
}

// ── HORIZONTAL DRAG SCROLL (ARRIVALS) ───────────────────
const scrollWrap = document.querySelector('.arrivals-scroll-wrap');
if (scrollWrap) {
  let isDown = false, startX, scrollLeft;
  scrollWrap.addEventListener('mousedown',  e => { isDown = true; startX = e.pageX - scrollWrap.offsetLeft; scrollLeft = scrollWrap.scrollLeft; });
  scrollWrap.addEventListener('mouseleave', () => isDown = false);
  scrollWrap.addEventListener('mouseup',    () => isDown = false);
  scrollWrap.addEventListener('mousemove',  e => {
    if (!isDown) return;
    e.preventDefault();
    scrollWrap.scrollLeft = scrollLeft - (e.pageX - scrollWrap.offsetLeft - startX) * 1.4;
  });
}
body.cursor-hover #cursor { width: 6px; height: 6px; background: var(--white); }
body.cursor-hover #cursor-ring { width: 56px; height: 56px; border-color: var(--gold); }
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 48px;
  transition: padding 0.3s;
}
nav::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,6,0.9) 0%, transparent 100%);
  pointer-events: none;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  letter-spacing: 0.25em;
  color: var(--white);
  text-decoration: none;
  position: relative;
}
.nav-links {
  display: flex; gap: 40px; list-style: none; position: relative;
}
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; color: var(--gold); }
.nav-cta {
  position: relative;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 10px 22px;
  transition: background 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }
#hero {
  height: 100vh; position: relative;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 0 48px 64px;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  background-size: cover;
  background-position: center;
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,6,0.15) 0%, rgba(8,8,6,0.55) 60%, rgba(8,8,6,1) 100%);
}
.hero-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 7vw, 110px);
  line-height: 1.0;
  font-weight: 400;
  max-width: 800px;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
  position: relative;
  z-index: 1;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  margin-top: 28px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--cream);
  opacity: 0;
  max-width: 420px;
  animation: fadeUp 1s 0.8s forwards;
  position: relative;
  z-index: 1;
}
.hero-actions {
  margin-top: 40px;
  display: flex; align-items: center; gap: 32px;
  opacity: 0;
  animation: fadeUp 1s 1s forwards;
  position: relative;
  z-index: 1;
}
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--cream); transform: translateY(-2px); }
.btn-ghost {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  display: flex; align-items: center; gap: 10px;
  transition: color 0.2s;
}
.btn-ghost span { display: inline-block; width: 28px; height: 1px; background: currentColor; }
.btn-ghost:hover { color: var(--gold); }
.hero-slide-nav {
  position: absolute; right: 48px; bottom: 64px;
  display: flex; flex-direction: column; gap: 10px; z-index: 2;
}
.slide-dot {
  width: 24px; height: 1px; background: rgba(244,242,237,0.3);
  cursor: pointer; transition: background 0.3s, width 0.3s;
  border: none; padding: 0;
}
.slide-dot.active { background: var(--gold); width: 40px; }
.marquee-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  background: var(--black);
  position: relative; z-index: 2;
}
.marquee-track {
  display: flex; gap: 80px;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}
.marquee-item {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  flex-shrink: 0;
}
.marquee-item::before { content: '✦ '; color: var(--gold); margin-right: 8px; }
section { padding: 120px 48px; }
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 16px;
}
.section-label::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 400;
  line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--gold); }
/* ── CATEGORIES ── */
#categories { padding-top: 100px; }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
}
/* FIX: remove browser default blue link colour from category cards */
.cat-card { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; color: inherit; text-decoration: none; display: block; }
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25,1,0.5,1), filter 0.6s;
  filter: grayscale(30%) brightness(0.7);
}
.cat-card:hover img { transform: scale(1.06); filter: grayscale(0%) brightness(0.85); }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,6,0.9) 0%, rgba(8,8,6,0.1) 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}
.cat-num { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 8px; }
.cat-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 400; }
.cat-count { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.2em; color: var(--cream); opacity: 0.6; margin-top: 6px; }
.cat-arrow {
  position: absolute; top: 24px; right: 24px;
  width: 36px; height: 36px;
  border: 1px solid rgba(200,169,110,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 16px;
  opacity: 0; transform: translateY(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translateY(0); }
/* ── FEATURED PIECES ── */
#featured { background: var(--black); border-top: 1px solid var(--line); }
.featured-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-top: 60px; align-items: start;
}
.featured-list { list-style: none; }
.featured-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  transition: padding-left 0.3s;
}
.featured-item:hover { padding-left: 12px; }
.featured-item-left { flex: 1; }
.featured-item-num { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--gold-dim); letter-spacing: 0.2em; margin-bottom: 6px; }
.featured-item-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 400; transition: color 0.2s; }
.featured-item:hover .featured-item-name { color: var(--gold); }
.featured-item-meta { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.15em; color: var(--cream); opacity: 0.5; margin-top: 4px; }
.featured-item-price { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 400; color: var(--gold); white-space: nowrap; margin-left: 24px; }
.featured-item-arr { margin-left: 20px; font-size: 18px; color: var(--gold); opacity: 0; transition: opacity 0.2s, transform 0.2s; transform: translateX(-8px); }
.featured-item:hover .featured-item-arr { opacity: 1; transform: translateX(0); }
.featured-display { position: sticky; top: 120px; }
.featured-img-wrap { aspect-ratio: 3/4; overflow: hidden; background: var(--mid); position: relative; }
.featured-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.5s ease, transform 0.8s cubic-bezier(0.25,1,0.5,1); }
.featured-img-tag {
  position: absolute; top: 20px; left: 20px;
  background: rgba(8,8,6,0.8); border: 1px solid var(--line);
  padding: 8px 16px;
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold);
}
.featured-caption { margin-top: 20px; display: flex; justify-content: space-between; align-items: flex-end; }
.featured-caption-name { font-family: 'Playfair Display', serif; font-size: 20px; }
.featured-caption-price { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--gold); }
/* ── NEW ARRIVALS ── */
#new-arrivals { border-top: 1px solid var(--line); padding-bottom: 0; }
.arrivals-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 50px; }
.arrivals-scroll-wrap { overflow-x: auto; padding-bottom: 60px; scrollbar-width: none; cursor: grab; }
.arrivals-scroll-wrap:active { cursor: grabbing; }
.arrivals-scroll-wrap::-webkit-scrollbar { display: none; }
.arrivals-track { display: flex; gap: 20px; width: max-content; padding: 0 48px; }
/* FIX: remove browser default blue link colour from arrival cards */
.arrival-card { width: 300px; flex-shrink: 0; position: relative; color: inherit; text-decoration: none; display: block; }
.arrival-img { width: 100%; aspect-ratio: 3/4; overflow: hidden; background: var(--mid); margin-bottom: 16px; position: relative; }
.arrival-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.25,1,0.5,1), filter 0.4s; filter: brightness(0.85); }
.arrival-card:hover .arrival-img img { transform: scale(1.05); filter: brightness(1); }
.arrival-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--black);
  font-family: 'DM Mono', monospace; font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase; padding: 5px 10px;
}
.arrival-category { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 6px; }
.arrival-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 400; line-height: 1.3; margin-bottom: 8px; }
.arrival-price { font-family: 'DM Mono', monospace; font-size: 13px; color: var(--gold); letter-spacing: 0.1em; }
/* ── HERITAGE ── */
#heritage { border-top: 1px solid var(--line); background: var(--mid); }
.heritage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.heritage-text p { font-size: 16px; line-height: 1.9; color: var(--cream); margin-bottom: 24px; opacity: 0.85; }
.heritage-text p em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold); }
.heritage-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 50px; }
.stat-item { border-top: 1px solid var(--line); padding-top: 20px; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 400; color: var(--gold); line-height: 1; }
.stat-label { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); opacity: 0.6; margin-top: 6px; }
.heritage-img-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 8px; }
.heritage-img { overflow: hidden; }
.heritage-img:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
.heritage-img:not(:first-child) { aspect-ratio: 1; }
.heritage-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%) brightness(0.75); transition: filter 0.5s, transform 0.6s; }
.heritage-img:hover img { filter: grayscale(0%) brightness(0.9); transform: scale(1.03); }
/* ── PROCESS ── */
#process { border-top: 1px solid var(--line); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 70px; }
.process-step { border-right: 1px solid var(--line); padding: 40px 40px 40px 0; }
.process-step:last-child { border-right: none; }
.process-step + .process-step { padding-left: 40px; }
.step-num { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 20px; }
.step-icon { font-size: 28px; margin-bottom: 16px; display: block; }
.step-title { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 12px; }
.step-desc { font-size: 13px; line-height: 1.8; color: var(--cream); opacity: 0.65; }
/* ── NEWSLETTER ── */
#newsletter { border-top: 1px solid var(--line); background: var(--black); text-align: center; }
.newsletter-inner { max-width: 600px; margin: 0 auto; }
.newsletter-inner .section-title { margin-bottom: 16px; }
.newsletter-sub { font-size: 14px; color: var(--cream); opacity: 0.65; line-height: 1.8; margin-bottom: 40px; }
.newsletter-form { display: flex; gap: 0; border: 1px solid var(--gold-dim); }
.newsletter-form input {
  flex: 1; background: transparent; border: none;
  padding: 18px 24px;
  font-family: 'DM Mono', monospace; font-size: 12px; letter-spacing: 0.15em;
  color: var(--white); outline: none;
}
.newsletter-form input::placeholder { color: rgba(244,242,237,0.3); }
.newsletter-form button {
  background: var(--gold); color: var(--black); border: none;
  padding: 18px 36px;
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s;
}
.newsletter-form button:hover { background: var(--cream); }
/* ── FOOTER ── */
footer { border-top: 1px solid var(--line); padding: 70px 48px 40px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand .logo { font-family: 'Playfair Display', serif; font-size: 28px; letter-spacing: 0.2em; color: var(--white); margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 13px; line-height: 1.8; color: var(--cream); opacity: 0.5; max-width: 280px; }
.footer-col h4 { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 13px; color: var(--cream); opacity: 0.55; text-decoration: none; transition: opacity 0.2s, color 0.2s; }
.footer-col a:hover { opacity: 1; color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.15em; color: var(--cream); opacity: 0.35; }
.footer-socials { display: flex; gap: 24px; }
.footer-socials a { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); opacity: 0.45; text-decoration: none; transition: opacity 0.2s, color 0.2s; }
.footer-socials a:hover { opacity: 1; color: var(--gold); }
/* ── COLLECTION PAGE ── */
.collection-header { padding: 160px 48px 60px; border-bottom: 1px solid var(--line); }
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; padding: 2px; }
.item-card { position: relative; overflow: hidden; cursor: pointer; background: var(--mid); }
.item-card-img { aspect-ratio: 3/4; overflow: hidden; }
.item-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.25,1,0.5,1), filter 0.4s; filter: brightness(0.8); }
.item-card:hover .item-card-img img { transform: scale(1.05); filter: brightness(1); }
.item-card-info { padding: 20px 24px 24px; }
.item-card-category { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 6px; }
.item-card-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 400; line-height: 1.3; margin-bottom: 6px; }
.item-card-meta { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--cream); opacity: 0.5; margin-bottom: 12px; }
.item-card-price { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--gold); }
.item-card-sold { position: absolute; top: 16px; right: 16px; background: rgba(8,8,6,0.85); border: 1px solid var(--line); padding: 6px 14px; font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); opacity: 0.7; }
/* ── ITEM DETAIL PAGE ── */
.item-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 140px 48px 100px; align-items: start; }
.item-detail-images { position: sticky; top: 100px; }
.item-main-img { overflow: hidden; background: var(--mid); margin-bottom: 8px; display: flex; align-items: center; justify-content: center; min-height: 300px; }
.item-main-img img { width: 100%; height: auto; max-height: 75vh; object-fit: contain; display: block; }
.item-thumb-row { display: flex; gap: 8px; }
.item-thumb { width: 80px; aspect-ratio: 1; overflow: hidden; background: var(--mid); cursor: pointer; opacity: 0.6; transition: opacity 0.2s; }
.item-thumb.active, .item-thumb:hover { opacity: 1; }
.item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.item-detail-info { padding-top: 20px; }
.item-detail-category { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.item-detail-name { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 48px); font-weight: 400; line-height: 1.1; margin-bottom: 12px; }
.item-detail-meta { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.15em; color: var(--cream); opacity: 0.5; margin-bottom: 32px; }
.item-detail-price { font-family: 'Playfair Display', serif; font-size: 40px; color: var(--gold); margin-bottom: 40px; }
.item-detail-desc { font-size: 15px; line-height: 1.9; color: var(--cream); opacity: 0.8; margin-bottom: 40px; }
.item-detail-specs { border-top: 1px solid var(--line); padding-top: 32px; margin-bottom: 40px; }
.spec-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); }
.spec-label { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); opacity: 0.5; }
.spec-value { font-size: 14px; color: var(--white); text-align: right; }
.item-enquire-btn { display: block; width: 100%; background: var(--gold); color: var(--black); text-align: center; text-decoration: none; font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; padding: 20px; transition: background 0.3s; margin-bottom: 16px; border: none; cursor: pointer; }
.item-enquire-btn:hover { background: var(--cream); }
/* ── ADMIN ── */
.admin-body { background: #0d0d0b; cursor: auto; }
.admin-nav { background: #0d0d0b; border-bottom: 1px solid var(--line); padding: 20px 32px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 50; }
.admin-nav .logo { font-family: 'Playfair Display', serif; font-size: 18px; letter-spacing: 0.2em; color: var(--gold); }
.admin-nav-links { display: flex; gap: 32px; list-style: none; }
.admin-nav-links a { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream); opacity: 0.6; text-decoration: none; transition: opacity 0.2s, color 0.2s; }
.admin-nav-links a:hover, .admin-nav-links a.active { opacity: 1; color: var(--gold); }
.admin-main { padding: 40px 32px; max-width: 1200px; }
.admin-title { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 400; margin-bottom: 32px; }
.admin-card { background: #141410; border: 1px solid var(--line); padding: 28px; margin-bottom: 20px; }
.admin-form label { display: block; font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 8px; margin-top: 20px; }
.admin-form input, .admin-form textarea, .admin-form select {
  width: 100%; background: #0d0d0b; border: 1px solid var(--line);
  color: var(--white); padding: 12px 14px; font-size: 14px; font-family: 'DM Sans', sans-serif;
  outline: none; transition: border-color 0.2s;
}
.admin-form input:focus, .admin-form textarea:focus, .admin-form select:focus { border-color: var(--gold); }
.admin-form textarea { min-height: 120px; resize: vertical; }
.admin-btn { background: var(--gold); color: var(--black); border: none; padding: 14px 32px; font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: background 0.3s; margin-top: 24px; }
.admin-btn:hover { background: var(--cream); }
.admin-btn-danger { background: transparent; color: #e87070; border: 1px solid #e87070; }
.admin-btn-danger:hover { background: #e87070; color: var(--black); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dim); text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.admin-table td { padding: 16px; border-bottom: 1px solid rgba(200,169,110,0.08); font-size: 13px; color: var(--cream); opacity: 0.8; vertical-align: middle; }
.admin-table tr:hover td { opacity: 1; background: rgba(200,169,110,0.03); }
.status-available { color: #5dcaa5; font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.1em; }
.status-sold { color: var(--gold-dim); font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.1em; }
/* ── ANIMATIONS ── */
@keyframes fadeUp { to { opacity: 1; } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  section { padding: 80px 24px; }
  #hero { padding: 0 24px 48px; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .featured-layout { grid-template-columns: 1fr; }
  .featured-display { display: none; }
  .heritage-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--line); padding: 0 0 30px; }
  .process-step + .process-step { padding-left: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .arrivals-track { padding: 0 24px; }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .item-detail { grid-template-columns: 1fr; padding: 120px 24px 60px; }
  .item-detail-images { position: static; }
}
@media (max-width: 600px) {
  .categories-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .collection-grid { grid-template-columns: 1fr; }
}
body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  cursor: none;
  overflow-x: hidden;
}

/* Restore cursor on touch devices */
@media (hover: none) {
  body { cursor: auto; }
  #cursor, #cursor-ring { display: none; }
}

/* ── CUSTOM CURSOR ── */
#cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 2147483647;
  transition: transform 0.15s ease, width 0.25s ease, height 0.25s ease, background 0.25s ease;
  transform: translate(-50%, -50%) translateZ(0);
  will-change: transform;
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(200,169,110,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 2147483646;
  transform: translate(-50%, -50%) translateZ(0);
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.25,1,0.5,1), width 0.3s, height 0.3s, opacity 0.3s;
}
body.cursor-hover #cursor { width: 6px; height: 6px; background: var(--white); }
body.cursor-hover #cursor-ring { width: 56px; height: 56px; border-color: var(--gold); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 48px;
  transition: padding 0.3s;
}
nav::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,6,0.9) 0%, transparent 100%);
  pointer-events: none;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  letter-spacing: 0.25em;
  color: var(--white);
  text-decoration: none;
  position: relative;
}
.nav-links {
  display: flex; gap: 40px; list-style: none; position: relative;
}
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; color: var(--gold); }
.nav-cta {
  position: relative;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 10px 22px;
  transition: background 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }

/* ── HERO ── */
#hero {
  height: 100vh; position: relative;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 0 48px 64px;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  background-size: cover;
  background-position: center;
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,6,0.15) 0%, rgba(8,8,6,0.55) 60%, rgba(8,8,6,1) 100%);
}
.hero-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 7vw, 110px);
  line-height: 1.0;
  font-weight: 400;
  max-width: 800px;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
  position: relative;
  z-index: 1;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  margin-top: 28px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--cream);
  opacity: 0;
  max-width: 420px;
  animation: fadeUp 1s 0.8s forwards;
  position: relative;
  z-index: 1;
}
.hero-actions {
  margin-top: 40px;
  display: flex; align-items: center; gap: 32px;
  opacity: 0;
  animation: fadeUp 1s 1s forwards;
  position: relative;
  z-index: 1;
}
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--cream); transform: translateY(-2px); }
.btn-ghost {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  display: flex; align-items: center; gap: 10px;
  transition: color 0.2s;
}
.btn-ghost span { display: inline-block; width: 28px; height: 1px; background: currentColor; }
.btn-ghost:hover { color: var(--gold); }
.hero-slide-nav {
  position: absolute; right: 48px; bottom: 64px;
  display: flex; flex-direction: column; gap: 10px; z-index: 2;
}
.slide-dot {
  width: 24px; height: 1px; background: rgba(244,242,237,0.3);
  cursor: pointer; transition: background 0.3s, width 0.3s;
  border: none; padding: 0;
}
.slide-dot.active { background: var(--gold); width: 40px; }

/* ── MARQUEE ── */
.marquee-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  background: var(--black);
  position: relative; z-index: 2;
}
.marquee-track {
  display: flex; gap: 80px;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}
.marquee-item {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  flex-shrink: 0;
}
.marquee-item::before { content: '✦ '; color: var(--gold); margin-right: 8px; }

/* ── SECTIONS COMMON ── */
section { padding: 120px 48px; }
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 16px;
}
.section-label::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 400;
  line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--gold); }

/* ── CATEGORIES ── */
#categories { padding-top: 100px; }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.cat-card { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; }
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25,1,0.5,1), filter 0.6s;
  filter: grayscale(30%) brightness(0.7);
}
.cat-card:hover img { transform: scale(1.06); filter: grayscale(0%) brightness(0.85); }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,6,0.9) 0%, rgba(8,8,6,0.1) 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}
.cat-num { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 8px; }
.cat-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 400; }
.cat-count { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.2em; color: var(--cream); opacity: 0.6; margin-top: 6px; }
.cat-arrow {
  position: absolute; top: 24px; right: 24px;
  width: 36px; height: 36px;
  border: 1px solid rgba(200,169,110,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 16px;
  opacity: 0; transform: translateY(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translateY(0); }

/* ── FEATURED PIECES ── */
#featured { background: var(--black); border-top: 1px solid var(--line); }
.featured-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-top: 60px; align-items: start;
}
.featured-list { list-style: none; }
.featured-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  transition: padding-left 0.3s;
}
.featured-item:hover { padding-left: 12px; }
.featured-item-left { flex: 1; }
.featured-item-num { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--gold-dim); letter-spacing: 0.2em; margin-bottom: 6px; }
.featured-item-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 400; transition: color 0.2s; }
.featured-item:hover .featured-item-name { color: var(--gold); }
.featured-item-meta { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.15em; color: var(--cream); opacity: 0.5; margin-top: 4px; }
.featured-item-price { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 400; color: var(--gold); white-space: nowrap; margin-left: 24px; }
.featured-item-arr { margin-left: 20px; font-size: 18px; color: var(--gold); opacity: 0; transition: opacity 0.2s, transform 0.2s; transform: translateX(-8px); }
.featured-item:hover .featured-item-arr { opacity: 1; transform: translateX(0); }
.featured-display { position: sticky; top: 120px; }
.featured-img-wrap { aspect-ratio: 3/4; overflow: hidden; background: var(--mid); position: relative; }
.featured-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.5s ease, transform 0.8s cubic-bezier(0.25,1,0.5,1); }
.featured-img-tag {
  position: absolute; top: 20px; left: 20px;
  background: rgba(8,8,6,0.8); border: 1px solid var(--line);
  padding: 8px 16px;
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold);
}
.featured-caption { margin-top: 20px; display: flex; justify-content: space-between; align-items: flex-end; }
.featured-caption-name { font-family: 'Playfair Display', serif; font-size: 20px; }
.featured-caption-price { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--gold); }

/* ── NEW ARRIVALS ── */
#new-arrivals { border-top: 1px solid var(--line); padding-bottom: 0; }
.arrivals-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 50px; }
.arrivals-scroll-wrap { overflow-x: auto; padding-bottom: 60px; scrollbar-width: none; cursor: grab; }
.arrivals-scroll-wrap:active { cursor: grabbing; }
.arrivals-scroll-wrap::-webkit-scrollbar { display: none; }
.arrivals-track { display: flex; gap: 20px; width: max-content; padding: 0 48px; }
.arrival-card { width: 300px; flex-shrink: 0; position: relative; }
.arrival-img { width: 100%; aspect-ratio: 3/4; overflow: hidden; background: var(--mid); margin-bottom: 16px; position: relative; }
.arrival-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.25,1,0.5,1), filter 0.4s; filter: brightness(0.85); }
.arrival-card:hover .arrival-img img { transform: scale(1.05); filter: brightness(1); }
.arrival-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--black);
  font-family: 'DM Mono', monospace; font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase; padding: 5px 10px;
}
.arrival-category { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 6px; }
.arrival-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 400; line-height: 1.3; margin-bottom: 8px; }
.arrival-price { font-family: 'DM Mono', monospace; font-size: 13px; color: var(--gold); letter-spacing: 0.1em; }

/* ── HERITAGE ── */
#heritage { border-top: 1px solid var(--line); background: var(--mid); }
.heritage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.heritage-text p { font-size: 16px; line-height: 1.9; color: var(--cream); margin-bottom: 24px; opacity: 0.85; }
.heritage-text p em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold); }
.heritage-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 50px; }
.stat-item { border-top: 1px solid var(--line); padding-top: 20px; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 400; color: var(--gold); line-height: 1; }
.stat-label { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); opacity: 0.6; margin-top: 6px; }
.heritage-img-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 8px; }
.heritage-img { overflow: hidden; }
.heritage-img:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
.heritage-img:not(:first-child) { aspect-ratio: 1; }
.heritage-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%) brightness(0.75); transition: filter 0.5s, transform 0.6s; }
.heritage-img:hover img { filter: grayscale(0%) brightness(0.9); transform: scale(1.03); }

/* ── PROCESS ── */
#process { border-top: 1px solid var(--line); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 70px; }
.process-step { border-right: 1px solid var(--line); padding: 40px 40px 40px 0; }
.process-step:last-child { border-right: none; }
.process-step + .process-step { padding-left: 40px; }
.step-num { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 20px; }
.step-icon { font-size: 28px; margin-bottom: 16px; display: block; }
.step-title { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 12px; }
.step-desc { font-size: 13px; line-height: 1.8; color: var(--cream); opacity: 0.65; }

/* ── NEWSLETTER ── */
#newsletter { border-top: 1px solid var(--line); background: var(--black); text-align: center; }
.newsletter-inner { max-width: 600px; margin: 0 auto; }
.newsletter-inner .section-title { margin-bottom: 16px; }
.newsletter-sub { font-size: 14px; color: var(--cream); opacity: 0.65; line-height: 1.8; margin-bottom: 40px; }
.newsletter-form { display: flex; gap: 0; border: 1px solid var(--gold-dim); }
.newsletter-form input {
  flex: 1; background: transparent; border: none;
  padding: 18px 24px;
  font-family: 'DM Mono', monospace; font-size: 12px; letter-spacing: 0.15em;
  color: var(--white); outline: none;
}
.newsletter-form input::placeholder { color: rgba(244,242,237,0.3); }
.newsletter-form button {
  background: var(--gold); color: var(--black); border: none;
  padding: 18px 36px;
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s;
}
.newsletter-form button:hover { background: var(--cream); }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--line); padding: 70px 48px 40px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand .logo { font-family: 'Playfair Display', serif; font-size: 28px; letter-spacing: 0.2em; color: var(--white); margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 13px; line-height: 1.8; color: var(--cream); opacity: 0.5; max-width: 280px; }
.footer-col h4 { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 13px; color: var(--cream); opacity: 0.55; text-decoration: none; transition: opacity 0.2s, color 0.2s; }
.footer-col a:hover { opacity: 1; color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.15em; color: var(--cream); opacity: 0.35; }
.footer-socials { display: flex; gap: 24px; }
.footer-socials a { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); opacity: 0.45; text-decoration: none; transition: opacity 0.2s, color 0.2s; }
.footer-socials a:hover { opacity: 1; color: var(--gold); }

/* ── COLLECTION PAGE ── */
.collection-header { padding: 160px 48px 60px; border-bottom: 1px solid var(--line); }
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; padding: 2px; }
.item-card { position: relative; overflow: hidden; cursor: pointer; background: var(--mid); }
.item-card-img { aspect-ratio: 3/4; overflow: hidden; }
.item-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.25,1,0.5,1), filter 0.4s; filter: brightness(0.8); }
.item-card:hover .item-card-img img { transform: scale(1.05); filter: brightness(1); }
.item-card-info { padding: 20px 24px 24px; }
.item-card-category { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 6px; }
.item-card-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 400; line-height: 1.3; margin-bottom: 6px; }
.item-card-meta { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--cream); opacity: 0.5; margin-bottom: 12px; }
.item-card-price { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--gold); }
.item-card-sold { position: absolute; top: 16px; right: 16px; background: rgba(8,8,6,0.85); border: 1px solid var(--line); padding: 6px 14px; font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); opacity: 0.7; }

/* ── ITEM DETAIL PAGE ── */
.item-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 140px 48px 100px; align-items: start; }
.item-detail-images { position: sticky; top: 100px; }
.item-main-img { overflow: hidden; background: var(--mid); margin-bottom: 8px; display: flex; align-items: center; justify-content: center; min-height: 300px; }
.item-main-img img { width: 100%; height: auto; max-height: 75vh; object-fit: contain; display: block; }
.item-thumb-row { display: flex; gap: 8px; }
.item-thumb { width: 80px; aspect-ratio: 1; overflow: hidden; background: var(--mid); cursor: pointer; opacity: 0.6; transition: opacity 0.2s; }
.item-thumb.active, .item-thumb:hover { opacity: 1; }
.item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.item-detail-info { padding-top: 20px; }
.item-detail-category { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.item-detail-name { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 48px); font-weight: 400; line-height: 1.1; margin-bottom: 12px; }
.item-detail-meta { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.15em; color: var(--cream); opacity: 0.5; margin-bottom: 32px; }
.item-detail-price { font-family: 'Playfair Display', serif; font-size: 40px; color: var(--gold); margin-bottom: 40px; }
.item-detail-desc { font-size: 15px; line-height: 1.9; color: var(--cream); opacity: 0.8; margin-bottom: 40px; }
.item-detail-specs { border-top: 1px solid var(--line); padding-top: 32px; margin-bottom: 40px; }
.spec-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); }
.spec-label { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); opacity: 0.5; }
.spec-value { font-size: 14px; color: var(--white); text-align: right; }
.item-enquire-btn { display: block; width: 100%; background: var(--gold); color: var(--black); text-align: center; text-decoration: none; font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; padding: 20px; transition: background 0.3s; margin-bottom: 16px; border: none; cursor: pointer; }
.item-enquire-btn:hover { background: var(--cream); }

/* ── ADMIN ── */
.admin-body { background: #0d0d0b; cursor: auto; }
.admin-nav { background: #0d0d0b; border-bottom: 1px solid var(--line); padding: 20px 32px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 50; }
.admin-nav .logo { font-family: 'Playfair Display', serif; font-size: 18px; letter-spacing: 0.2em; color: var(--gold); }
.admin-nav-links { display: flex; gap: 32px; list-style: none; }
.admin-nav-links a { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream); opacity: 0.6; text-decoration: none; transition: opacity 0.2s, color 0.2s; }
.admin-nav-links a:hover, .admin-nav-links a.active { opacity: 1; color: var(--gold); }
.admin-main { padding: 40px 32px; max-width: 1200px; }
.admin-title { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 400; margin-bottom: 32px; }
.admin-card { background: #141410; border: 1px solid var(--line); padding: 28px; margin-bottom: 20px; }
.admin-form label { display: block; font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 8px; margin-top: 20px; }
.admin-form input, .admin-form textarea, .admin-form select {
  width: 100%; background: #0d0d0b; border: 1px solid var(--line);
  color: var(--white); padding: 12px 14px; font-size: 14px; font-family: 'DM Sans', sans-serif;
  outline: none; transition: border-color 0.2s;
}
.admin-form input:focus, .admin-form textarea:focus, .admin-form select:focus { border-color: var(--gold); }
.admin-form textarea { min-height: 120px; resize: vertical; }
.admin-btn { background: var(--gold); color: var(--black); border: none; padding: 14px 32px; font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: background 0.3s; margin-top: 24px; }
.admin-btn:hover { background: var(--cream); }
.admin-btn-danger { background: transparent; color: #e87070; border: 1px solid #e87070; }
.admin-btn-danger:hover { background: #e87070; color: var(--black); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dim); text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.admin-table td { padding: 16px; border-bottom: 1px solid rgba(200,169,110,0.08); font-size: 13px; color: var(--cream); opacity: 0.8; vertical-align: middle; }
.admin-table tr:hover td { opacity: 1; background: rgba(200,169,110,0.03); }
.status-available { color: #5dcaa5; font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.1em; }
.status-sold { color: var(--gold-dim); font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.1em; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { to { opacity: 1; } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  section { padding: 80px 24px; }
  #hero { padding: 0 24px 48px; }
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .featured-layout { grid-template-columns: 1fr; }
  .featured-display { display: none; }
  .heritage-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--line); padding: 0 0 30px; }
  .process-step + .process-step { padding-left: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .arrivals-track { padding: 0 24px; }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .item-detail { grid-template-columns: 1fr; padding: 120px 24px 60px; }
  .item-detail-images { position: static; }
}
@media (max-width: 600px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .collection-grid { grid-template-columns: 1fr; }
}