:root {
  --ivory:       #FFFFFF;
  --ivory-dim:   #F4F2EE;
  --parchment:   #E5DFD0;
  --ink:         #1A1714;
  --ink-dim:     #3D3831;
  --ink-muted:   #7A7268;
  --gold:        #B89A5A;
  --gold-pale:   #D4B97A;
  --gold-dark:   #8C6F35;
  --border:      rgba(26,23,20,0.10);
  --border-gold: rgba(184,154,90,0.30);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Cormorant Infant', Georgia, serif;
  --font-ui:      'Jost', sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --pad-x:    clamp(20px, 5vw, 80px);
  --pad-x-sm: clamp(16px, 4vw, 48px);
}

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

/* ── Browser reset ── */
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
img { display: block; max-width: 100%; }
input, select, textarea { font: inherit; }

html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Typography ── */
.display { font-family: var(--font-display); font-weight: 300; line-height: 1.08; letter-spacing: -0.01em; }
.body-serif { font-family: var(--font-body); font-weight: 300; }

/* ── Gold rule ── */
.rule-gold { display: block; width: 48px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }

/* ── Thin divider ── */
hr.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-ui); font-weight: 400; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ivory); background: var(--ink);
  padding: 14px 28px; cursor: pointer;
  transition: background 0.3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--ink-dim); }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-ui); font-weight: 400; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); background: transparent;
  padding: 13px 27px; border: 1px solid var(--border-gold); cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(184,154,90,0.06); }

.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-ui); font-weight: 400; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ivory); background: var(--gold);
  padding: 14px 28px; cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}
.btn-gold:hover { background: var(--gold-dark); }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad-x); height: 64px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: 0 1px 24px rgba(26,23,20,0.07); }

.nav-logo {
  font-family: var(--font-display); font-weight: 500; font-size: 20px;
  letter-spacing: 0.06em; color: var(--ink); flex-shrink: 0;
  z-index: 201;
}
.nav-logo span { color: var(--gold); }

/* Desktop nav links */
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-family: var(--font-ui); font-size: 11px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-muted); transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: 20px; z-index: 201; }
.nav-icon {
  position: relative; color: var(--ink); opacity: 0.7;
  transition: opacity 0.2s; display: flex; align-items: center;
}
.nav-icon:hover { opacity: 1; }
.nav-badge {
  position: absolute; top: -6px; right: -6px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--gold); color: var(--ivory);
  font-size: 9px; font-family: var(--font-ui);
  display: flex; align-items: center; justify-content: center; font-weight: 500;
}

/* ── Mobile hamburger ── */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; cursor: pointer; z-index: 201;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile drawer ── */
.mobile-drawer {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--ivory); z-index: 199;
  padding: 40px var(--pad-x) 40px;
  flex-direction: column; gap: 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a {
  font-family: var(--font-display); font-size: 32px; font-weight: 300;
  color: var(--ink); padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: block; transition: color 0.2s;
}
.mobile-drawer a:hover { color: var(--gold-dark); }
.mobile-drawer .drawer-actions { margin-top: 40px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Section label ── */
.section-label {
  font-family: var(--font-ui); font-size: 10px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
}

/* ── Auction badge ── */
.badge-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-ui); font-size: 10px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--border-gold);
  padding: 5px 12px;
}
.badge-live .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

/* ── Product Card ── */
.product-card {
  background: #fff; border: 1px solid var(--border);
  overflow: hidden; position: relative;
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.product-card:hover { box-shadow: 0 12px 48px rgba(26,23,20,0.09); transform: translateY(-3px); }
.product-card .img-wrap { aspect-ratio: 4/5; overflow: hidden; background: var(--ivory-dim); }
.product-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.product-card:hover .img-wrap img { transform: scale(1.04); }
.product-card .card-body { padding: 16px 18px 20px; }
.product-card .card-meta { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 5px; }
.product-card .card-title { font-family: var(--font-display); font-size: 17px; font-weight: 400; line-height: 1.25; color: var(--ink); margin-bottom: 4px; display: block; }
.product-card .card-price { font-family: var(--font-ui); font-size: 13px; font-weight: 400; color: var(--gold-dark); }
.product-card .card-price span { color: var(--ink-muted); font-size: 11px; }
.product-card .card-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 24px;
  opacity: 0; transition: opacity 0.35s var(--ease-out);
  background: linear-gradient(to top, rgba(26,23,20,0.55) 0%, transparent 60%);
}
.product-card:hover .card-overlay { opacity: 1; }

/* ── Fade-in on scroll ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }

/* ── Footer ── */
.site-footer { background: var(--ink); color: rgba(247,244,238,0.5); padding: 56px var(--pad-x) 36px; }
.footer-logo { font-family: var(--font-display); font-weight: 500; font-size: 22px; letter-spacing: 0.06em; color: var(--ivory); margin-bottom: 10px; }
.footer-logo span { color: var(--gold); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; }
.footer-links li + li { margin-top: 10px; }
.footer-links a { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247,244,238,0.4); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-col-label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(247,244,238,0.28); margin-bottom: 18px; }
.footer-bottom { border-top: 1px solid rgba(247,244,238,0.08); margin-top: 52px; padding-top: 24px; font-size: 11px; color: rgba(247,244,238,0.28); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; max-width: 1200px; margin-left: auto; margin-right: auto; }

/* ── Countdown ── */
.countdown { display: flex; gap: 16px; flex-wrap: wrap; }
.countdown-unit { text-align: center; }
.countdown-unit .num { font-family: var(--font-display); font-size: 32px; font-weight: 300; color: var(--ivory); line-height: 1; }
.countdown-unit .lbl { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(247,244,238,0.4); margin-top: 4px; }
.countdown-sep { font-family: var(--font-display); font-size: 24px; color: var(--gold); opacity: 0.5; padding-top: 4px; }

/* ── Form inputs ── */
.field-wrap { display: flex; flex-direction: column; gap: 6px; }
.field-label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); }
.field-input {
  font-family: var(--font-ui); font-size: 14px; font-weight: 300; color: var(--ink);
  background: transparent; border: none; border-bottom: 1px solid var(--border);
  padding: 10px 0; outline: none; width: 100%; transition: border-color 0.2s;
}
.field-input:focus { border-color: var(--gold); }

/* ── Page wrapper ── */
.page { padding-top: 64px; min-height: 100vh; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ivory-dim); }
::-webkit-scrollbar-thumb { background: var(--parchment); border-radius: 3px; }

/* ════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ════════════════════════════════ */

/* Tablet: ≤ 900px */
@media (max-width: 900px) {
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-drawer { display: flex; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Mobile: ≤ 600px */
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  .btn-primary, .btn-ghost, .btn-gold { font-size: 10px; padding: 13px 20px; }

  .countdown { gap: 10px; }
  .countdown-unit .num { font-size: 24px; }
  .countdown-sep { font-size: 18px; }
}
