/* ═══════════════════════════════════════════════════════════════
   Sophie Dupré Autographs — Design System
   Fonts: Cormorant Garamond (headings) + Jost (body)
   ═══════════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  --purple:       #3b1558;
  --purple-mid:   #5a2d82;
  --purple-light: #7c4aad;
  --red:          #cc2200;
  --gold:         #b8922a;
  --gold-light:   #d4b96a;
  --cream:        #f5f0e8;
  --cream-dark:   #e8dfc8;
  --ink:          #0f0a14;
  --muted:        #4a3f52;
  --white:        #ffffff;
}

/* ── RESET / BASE ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: #f0ebe0;
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.72;
  font-size: 15px;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
}

a { transition: color 0.2s; }

img { max-width: 100%; height: auto; }

/* ── TOPBAR ──────────────────────────────────────────────────── */
.topbar {
  background: var(--purple);
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 8px 20px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}

/* ── HEADER ──────────────────────────────────────────────────── */
header {
  background: var(--white);
  border-bottom: 1px solid rgba(196,163,90,0.3);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(59,21,88,0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 2px;
}

/* ── NAVIGATION ──────────────────────────────────────────────── */
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  text-decoration: none;
  color: var(--purple);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

nav a:hover::after { transform: scaleX(1); }

nav a.active { color: var(--gold); }
nav a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--purple);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 2px;
  font-size: 11px !important;
  letter-spacing: 0.16em !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--purple-mid) !important; }
.nav-cta::after { display: none !important; }

/* ── PAGE HERO BAND ──────────────────────────────────────────── */
.page-hero {
  background: var(--purple);
  padding: 56px 0;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.page-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}

.page-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
  font-weight: 300;
}

/* ── SECTION COMMON ──────────────────────────────────────────── */
.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 72px 32px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--purple);
  line-height: 1.15;
}

.section-link {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  text-decoration: none;
  border-bottom: 2px solid var(--purple);
  padding-bottom: 2px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.section-link:hover { color: var(--gold); border-color: var(--gold); }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  background: var(--purple);
  color: var(--white);
  padding: 13px 28px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
}

.btn-primary:hover { background: var(--purple-mid); color: var(--white); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  padding: 13px 28px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
}

.btn-gold:hover { background: var(--gold-light); color: var(--white); }

.btn-outline {
  border: 2px solid var(--purple);
  color: var(--purple);
  padding: 11px 28px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
  display: inline-block;
  background: transparent;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
}

.btn-outline:hover { background: var(--purple); color: var(--white); }

/* Hero-style outline (white border on dark background) */
.btn-outline-hero {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s;
  display: inline-block;
}

.btn-outline-hero:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,163,90,0.08);
}

/* ── STOCK CARD (shared partial) ─────────────────────────────── */
.stock-card {
  background: var(--white);
  border: 1px solid rgba(59,21,88,0.1);
  border-top: 3px solid var(--purple);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.stock-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(59,21,88,0.13);
  color: inherit;
}

.stock-card-img {
  height: 220px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.stock-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stock-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--cream);
  color: var(--cream-dark);
  font-size: 40px;
}

.stock-card-placeholder-no {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
}

.stock-card-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.stock-card-cat {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}

.stock-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 4px;
  flex: 1;
}

.stock-card-author {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 14px;
}

.stock-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.stock-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--purple);
}

.stock-card-no {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* ── PAGINATION ──────────────────────────────────────────────── */
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}

.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  border: 1px solid rgba(59,21,88,0.2);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s;
}

.page-btn:hover:not(.disabled), .page-btn.active {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.page-nav {
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.page-btn.disabled {
  opacity: 0.3;
  pointer-events: none;
  cursor: default;
}
.page-ellipsis {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ── EMPTY STATES ────────────────────────────────────────────── */
.section-empty-state {
  text-align: center;
  padding: 56px 24px;
  border: 2px dashed rgba(59,21,88,0.12);
  border-radius: 4px;
  background: rgba(59,21,88,0.02);
}
.section-empty-state.ses-light {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
}
.section-empty-state.ses-inline {
  text-align: left;
  padding: 32px;
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
}
.ses-icon {
  font-size: 40px;
  margin-bottom: 14px;
  opacity: 0.35;
  line-height: 1;
}
.ses-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.ses-light .ses-title { color: rgba(255,255,255,0.6); }
.ses-inline .ses-title { color: rgba(255,255,255,0.6); }
.ses-text {
  font-size: 13px;
  color: var(--muted);
  max-width: 340px;
  margin: 0 auto;
  line-height: 1.7;
}
.ses-light .ses-text,
.ses-inline .ses-text { color: rgba(255,255,255,0.4); max-width: none; }

/* Hero card — empty state */
.hero-card-empty { cursor: default; pointer-events: none; }
.hero-card-img-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
}
.hero-card-empty-icon {
  font-size: 56px;
  opacity: 0.18;
  line-height: 1;
}
.hero-card-empty-title { color: rgba(255,255,255,0.35) !important; font-style: italic; }
.hero-card-empty-sub   { color: rgba(255,255,255,0.25) !important; }

/* Skeleton item cards */
.item-card-skeleton {
  cursor: default;
  pointer-events: none;
  background: var(--white);
  border: 1px solid rgba(59,21,88,0.07);
  border-top: 3px solid rgba(59,21,88,0.08);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0.7;
}
.skeleton-img-box {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--cream) 0%, #e8e0d8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.skeleton-doc-icon { font-size: 52px; opacity: 0.2; }
.skeleton-body { padding: 16px; }
.skeleton-line {
  height: 11px;
  background: var(--cream);
  border-radius: 20px;
  margin-bottom: 10px;
  animation: skeleton-pulse 1.6s ease-in-out infinite;
}
.skeleton-line-short { width: 45%; }
.skeleton-line-long  { width: 88%; }
.skeleton-line-med   { width: 65%; }
@keyframes skeleton-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
.skeleton-caption {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 24px;
  font-style: italic;
}

/* ── FORM ELEMENTS ───────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(59,21,88,0.2);
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(59,21,88,0.08);
}

.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(59,21,88,0.2);
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  resize: vertical;
  min-height: 140px;
  transition: border-color 0.2s;
}

.form-textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(59,21,88,0.08);
}

.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(59,21,88,0.2);
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Validation states */
.field-validation-error { font-size: 12px; color: #c0392b; margin-top: 4px; display: block; }
.input-validation-error { border-color: #c0392b !important; }
.validation-summary-errors { background: #fdf2f2; border: 1px solid #f5c6cb; border-radius: 2px; padding: 12px 16px; margin-bottom: 20px; font-size: 13px; color: #c0392b; }
.validation-summary-valid { display: none; }

/* Alert messages */
.alert { padding: 14px 18px; border-radius: 2px; margin-bottom: 20px; font-size: 14px; }
.alert-success { background: #f0faf0; border: 1px solid #b2dfb2; color: #2d7a2d; }
.alert-danger { background: #fdf2f2; border: 1px solid #f5c6cb; color: #c0392b; }
.alert-info { background: #f0f4ff; border: 1px solid #b8c9f5; color: #2d4d9c; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.45);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 32px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-logo-sub {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-brand-text {
  font-size: 13px;
  line-height: 1.75;
  font-weight: 300;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-memberships {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-badge {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(196,163,90,0.3);
  padding: 5px 10px;
  border-radius: 2px;
  font-weight: 500;
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════════════════════════
   HOME PAGE
   ══════════════════════════════════════════════════════════════ */

/* Hero */
.hero {
  position: relative;
  background: var(--purple);
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(196,163,90,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(124,74,173,0.3) 0%, transparent 50%);
}

.hero-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-corner {
  position: absolute;
  top: 40px; right: 40px;
  width: 200px; height: 200px;
  border-top: 1px solid rgba(196,163,90,0.25);
  border-right: 1px solid rgba(196,163,90,0.25);
}

.hero-corner-br {
  position: absolute;
  bottom: 40px; left: 40px;
  width: 200px; height: 200px;
  border-bottom: 1px solid rgba(196,163,90,0.25);
  border-left: 1px solid rgba(196,163,90,0.25);
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title em { font-style: italic; color: var(--gold-light); }

.hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  font-weight: 300;
}

.hero-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(196,163,90,0.2);
  border-radius: 4px;
  padding: 32px;
  position: relative;
  animation: fadeUp 0.7s 0.4s ease forwards;
  opacity: 0;
  text-decoration: none;
  color: inherit;
}

.hero-card-badge {
  position: absolute;
  top: -12px; left: 32px;
  background: var(--gold);
  color: var(--purple);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 2px;
}

.hero-card-img {
  width: 100%;
  height: 260px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,163,90,0.15);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
}

.hero-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wax-seal {
  position: absolute;
  bottom: -16px; right: 24px;
  width: 52px; height: 52px;
  background: var(--purple-mid);
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--gold);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.hero-card-cat {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}

.hero-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 8px;
}

.hero-card-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  font-weight: 300;
}

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--gold);
  font-weight: 600;
}

.hero-card-link {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.hero-card-link:hover { color: var(--gold); border-color: var(--gold); }

/* Ticker/marquee */
.ticker {
  background: var(--gold);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.ticker-item {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 600;
  padding: 0 40px;
}

.ticker-dot {
  color: var(--purple-mid);
  opacity: 0.5;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Stop Press */
.stop-press-band {
  background: var(--purple);
  padding: 48px 0;
}

.stop-press-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}

.stop-press-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.stop-press-label::before {
  content: '';
  display: block;
  width: 1px;
  height: 32px;
  background: var(--gold);
  opacity: 0.4;
}

.stop-press-content {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 300;
}

.stop-press-content strong { color: var(--gold-light); font-weight: 500; }
.stop-press-content a { color: var(--gold-light); }

/* Categories band */
.categories-bg {
  background: var(--white);
  border-top: 3px solid var(--purple);
  border-bottom: 3px solid var(--purple);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--purple);
}

.cat-card {
  background: var(--white);
  padding: 36px 24px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
  display: block;
}

.cat-card:hover { background: var(--cream); }

.cat-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.cat-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 5px;
}

.cat-count {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* Featured items */
.featured-bg {
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.item-card {
  background: var(--white);
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(59,21,88,0.1);
  border-radius: 2px;
  text-decoration: none;
  color: inherit;
}

.item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(59,21,88,0.15);
}

.item-img {
  height: 280px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(59,21,88,0.08);
}

.item-img img { width: 100%; height: 100%; object-fit: cover; }

.item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(59,21,88,0.85) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.item-card:hover .item-overlay { opacity: 1; }

.item-overlay-btn {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 8px 16px;
  border-radius: 1px;
  font-weight: 500;
  transition: all 0.2s;
}

.item-overlay-btn:hover { background: var(--gold); color: var(--purple); }

.item-body {
  padding: 20px 20px 24px;
  border-top: 3px solid var(--purple);
}

.item-cat {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}

.item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 4px;
}

.item-author {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 14px;
  font-weight: 600;
}

.item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--purple);
  font-weight: 700;
}

.item-stock {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* On This Day (homepage) */
.otd-bg { background: var(--ink); }

.otd-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.otd-date-display {
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 32px;
}

.otd-day {
  font-size: 96px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.otd-month {
  font-size: 22px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  letter-spacing: 0.05em;
}

.otd-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin: 24px 0;
}

.otd-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
}

.otd-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.otd-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
}

.otd-entry {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px;
  padding: 28px;
  background: rgba(255,255,255,0.03);
}

.otd-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  font-weight: 300;
}

.otd-entry-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 14px;
}

.otd-entry-text {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 24px;
}

.otd-entry-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.otd-img-placeholder {
  height: 160px;
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(196,163,90,0.2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: rgba(196,163,90,0.3);
  font-style: italic;
}

.otd-cta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(196,163,90,0.3);
  padding-bottom: 4px;
  font-weight: 500;
  transition: gap 0.2s;
}

.otd-cta:hover { gap: 14px; color: var(--gold); }

/* Trust band */
.trust-bg { background: var(--purple); }

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}

.trust-item {
  background: var(--purple);
  padding: 36px 28px;
  text-align: center;
}

.trust-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-num span { font-size: 32px; color: var(--gold); }

.trust-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* About strip */
.about-bg { background: var(--white); border-top: 1px solid var(--cream-dark); }

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-frame { position: relative; }

.about-img-box {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--cream-dark);
  border: 1px solid rgba(196,163,90,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--muted);
  font-size: 15px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about-img-box img { width: 100%; height: 100%; object-fit: cover; }

.about-img-shadow {
  position: absolute;
  top: 16px; left: 16px;
  right: -16px; bottom: -16px;
  border: 1px solid rgba(196,163,90,0.15);
  z-index: 0;
}

.about-credentials {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--purple);
  padding: 20px 24px;
  z-index: 2;
}

.about-cred-item {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-cred-item::before {
  content: '';
  display: block;
  width: 16px; height: 1px;
  background: var(--gold);
}

.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  color: var(--purple);
  line-height: 1.5;
  margin-bottom: 24px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}

.about-body {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.85;
  font-weight: 400;
  margin-bottom: 20px;
}

/* Recent acquisitions list */
.recent-bg { background: var(--white); border-top: 3px solid var(--purple); }

.recent-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.recent-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-dark);
  text-decoration: none;
  transition: padding-left 0.2s, background 0.2s;
  padding-left: 0;
  color: inherit;
}

.recent-item:hover { padding-left: 8px; background: var(--cream); color: inherit; }

.recent-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--purple);
  opacity: 0.2;
  font-weight: 700;
  line-height: 1;
}

.recent-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}

.recent-meta {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.recent-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--purple);
  font-weight: 700;
  white-space: nowrap;
}

/* Newsletter */
.newsletter-bg { background: var(--purple); padding: 80px 0; }

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.newsletter-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.newsletter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.newsletter-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 36px;
}

/* ══════════════════════════════════════════════════════════════
   STOCK CATEGORY PAGE
   ══════════════════════════════════════════════════════════════ */

.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  padding: 16px 0;
  position: sticky;
  top: 72px;
  z-index: 50;
}

.filter-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--purple);
}

.filter-btn {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 18px;
  border: 1px solid rgba(59,21,88,0.2);
  border-radius: 2px;
  background: var(--white);
  color: var(--purple);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.results-count { font-size: 13px; color: var(--muted); }
.results-count strong { color: var(--purple); font-weight: 700; }
.results-pages { font-size: 12px; color: var(--muted); letter-spacing: 0.06em; }

.sort-select {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  padding: 8px 12px;
  border: 1px solid rgba(59,21,88,0.2);
  border-radius: 2px;
  color: var(--purple);
  background: var(--white);
  outline: none;
}

.stock-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
}
.layout > * { min-width: 0; }

.sidebar-cats { display: flex; flex-direction: column; gap: 2px; }

.cat-link {
  display: block;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.2s;
  background: var(--white);
}

.cat-link:hover, .cat-link.active {
  border-left-color: var(--purple);
  color: var(--purple);
  background: var(--cream);
}

.sidebar-wants-box {
  margin-top: 32px;
  padding: 20px;
  background: var(--purple);
  border-radius: 2px;
}

/* ══════════════════════════════════════════════════════════════
   STOCK ITEM DETAIL PAGE
   ══════════════════════════════════════════════════════════════ */

.item-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.item-images {
  position: sticky;
  top: 100px;
}

.main-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--cream-dark);
  border: 1px solid rgba(59,21,88,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 2px;
  overflow: hidden;
}

.main-img img { width: 100%; height: 100%; object-fit: contain; }

.thumb-row { display: flex; gap: 8px; }

.thumb {
  width: 80px;
  height: 80px;
  background: var(--cream-dark);
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
  overflow: hidden;
}

.thumb.active, .thumb:hover { border-color: var(--purple); }

.thumb img { width: 100%; height: 100%; object-fit: cover; }

.breadcrumb {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--purple); }

.item-cat-tag {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}

.item-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 8px;
}

.item-doc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--red);
  line-height: 1.4;
  margin-bottom: 6px;
}

.item-subheading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.5;
}

.item-price-box {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-left: 4px solid var(--purple);
  padding: 20px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.item-price-display {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--purple);
}

.item-availability {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2d7a2d;
  font-weight: 700;
}

.item-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.item-meta-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}

.item-meta-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 14px;
}

.item-meta-table td:first-child {
  color: var(--muted);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: 140px;
}

.item-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 24px;
}

.item-heading-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.item-date-inline {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.item-date-inline strong {
  color: var(--ink);
}

.item-condition {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.item-stock-no {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}

.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--cream-dark);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.trust-badge-icon {
  width: 24px;
  height: 24px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--white);
}

.related-section {
  background: var(--white);
  border-top: 3px solid var(--purple);
  padding: 64px 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ══════════════════════════════════════════════════════════════
   SEARCH PAGE
   ══════════════════════════════════════════════════════════════ */

.search-box-wrap {
  background: var(--white);
  border: 1px solid rgba(59,21,88,0.12);
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 48px;
  box-shadow: 0 4px 24px rgba(59,21,88,0.06);
}

.search-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--cream-dark);
}

.search-tab {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 12px 24px;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
}

.search-tab.active, .search-tab:hover {
  color: var(--purple);
  border-bottom-color: var(--purple);
}

.search-input-row {
  display: flex;
  gap: 12px;
}

.search-tips { margin-top: 16px; font-size: 12px; color: var(--muted); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.no-results { text-align: center; padding: 60px 20px; }

.no-results-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--purple);
  margin-bottom: 12px;
}

/* ══════════════════════════════════════════════════════════════
   RECENT ACQUISITIONS PAGE
   ══════════════════════════════════════════════════════════════ */

.days-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.day-btn {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 20px;
  border: 1px solid rgba(59,21,88,0.2);
  border-radius: 2px;
  background: var(--white);
  color: var(--purple);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.day-btn.active, .day-btn:hover {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

.recent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ══════════════════════════════════════════════════════════════
   ON THIS DAY PAGE
   ══════════════════════════════════════════════════════════════ */

.otd-selector {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  padding: 20px 0;
  position: sticky;
  top: 72px;
  z-index: 50;
}

.otd-selector-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.month-grid {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.month-btn {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 14px;
  border: 1px solid rgba(59,21,88,0.15);
  border-radius: 2px;
  background: var(--white);
  color: var(--purple);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.month-btn.active, .month-btn:hover {
  background: var(--purple);
  color: var(--white);
}

.day-select {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  padding: 8px 12px;
  border: 1px solid rgba(59,21,88,0.2);
  border-radius: 2px;
  color: var(--purple);
  background: var(--white);
  outline: none;
}

.otd-entry-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-left: 4px solid var(--purple);
  padding: 40px;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

.otd-entry-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.otd-entry-title-large {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 16px;
}

.otd-entry-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 24px;
}

.otd-imgs {
  display: flex;
  gap: 12px;
}

.otd-img-box {
  width: 140px;
  height: 180px;
  background: var(--cream-dark);
  border: 1px solid rgba(59,21,88,0.1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.otd-img-box img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════════ */

.about-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-photo { position: relative; }

.about-photo-box {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--cream-dark);
  border: 1px solid rgba(59,21,88,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--muted);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about-photo-box img { width: 100%; height: 100%; object-fit: cover; }

.about-photo-shadow {
  position: absolute;
  top: 16px; left: 16px;
  right: -16px; bottom: -16px;
  border: 1px solid rgba(59,21,88,0.1);
  z-index: 0;
}

.about-credentials-box {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--purple);
  padding: 20px 24px;
  z-index: 2;
}

.cred-item {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cred-item::before {
  content: '';
  display: block;
  width: 14px; height: 1px;
  background: var(--gold);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.press-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-top: 3px solid var(--gold);
  padding: 24px;
}

.press-source {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

.press-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
}

.roadshow-band { background: var(--purple); padding: 56px 0; }

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════════ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--purple);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--white);
}

.contact-detail-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
}

.contact-detail-value a {
  color: var(--purple);
  text-decoration: none;
  font-weight: 600;
}

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-top: 3px solid var(--purple);
  padding: 36px;
}

/* ══════════════════════════════════════════════════════════════
   CART PAGE
   ══════════════════════════════════════════════════════════════ */

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-top: 3px solid var(--purple);
}

.cart-table th {
  text-align: left;
  padding: 14px 20px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
}

.cart-table td {
  padding: 20px;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 14px;
  vertical-align: middle;
}

.cart-item-img {
  width: 64px;
  height: 64px;
  background: var(--cream-dark);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}

.cart-item-meta { font-size: 12px; color: var(--muted); }

.cart-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--purple);
}

.cart-remove {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #c0392b;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
}

.order-summary {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-top: 3px solid var(--purple);
  padding: 28px;
  position: sticky;
  top: 100px;
}

.summary-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 14px;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  font-weight: 700;
}

.summary-total span:first-child {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
}

.summary-total span:last-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--purple);
}

.summary-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin: 16px 0;
}

/* ══════════════════════════════════════════════════════════════
   CHECKOUT PAGE
   ══════════════════════════════════════════════════════════════ */

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.checkout-form-box {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-top: 3px solid var(--purple);
  padding: 36px;
}

.checkout-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 28px;
}

.checkout-items-box {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-top: 3px solid var(--purple);
  padding: 28px;
  position: sticky;
  top: 100px;
}

.checkout-item-row {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.checkout-item-img {
  width: 52px;
  height: 52px;
  background: var(--cream-dark);
  border-radius: 2px;
  flex-shrink: 0;
  overflow: hidden;
}

.checkout-item-img img { width: 100%; height: 100%; object-fit: cover; }

.checkout-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.checkout-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--purple);
  margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════════
   WISHLIST PAGE
   ══════════════════════════════════════════════════════════════ */

.wishlist-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.wishlist-step {
  border: 1px solid var(--cream-dark);
  border-top: 3px solid var(--purple);
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.wishlist-step:hover {
  box-shadow: 0 8px 32px rgba(59,21,88,0.1);
  transform: translateY(-2px);
}

.wishlist-step-icon { font-size: 36px; margin-bottom: 12px; }

.wishlist-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 8px;
}

.wishlist-step-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.wishlist-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wishlist-info-box {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  padding: 24px;
  border-radius: 2px;
  margin-bottom: 40px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.wishlist-items-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.wishlist-items-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--purple);
}

.wishlist-browse-link {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid var(--purple);
  padding-bottom: 2px;
}

.wishlist-item-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.btn-remove {
  font-size: 11px;
  padding: 10px;
  color: #c0392b;
  border: 2px solid #c0392b;
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-remove:hover { background: #c0392b; color: var(--white); }

/* ══════════════════════════════════════════════════════════════
   WANTS PAGE
   ══════════════════════════════════════════════════════════════ */

.wants-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
}

.wants-form-box {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-top: 3px solid var(--purple);
  padding: 36px;
}

.wants-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 8px;
}

.wants-how-box {
  background: var(--purple);
  padding: 32px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.wants-how-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}

.wants-how-step {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.wants-how-step-icon {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--purple);
  flex-shrink: 0;
}

.wants-how-step-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.wants-how-step-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  font-weight: 300;
}

.wants-popular-box {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-top: 3px solid var(--gold);
  padding: 24px;
}

.wants-popular-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}

.wants-popular-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.wants-popular-arrow {
  color: var(--gold);
  font-weight: 700;
}

.wants-submit-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   TERMS / STATIC CONTENT
   ══════════════════════════════════════════════════════════════ */

.content-box {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-top: 3px solid var(--purple);
  padding: 48px;
}

.content-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 16px;
  margin-top: 40px;
}

.content-box h2:first-child { margin-top: 0; }

.content-box p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 16px;
}

.content-box ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.content-box ul li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 6px;
}

/* ══════════════════════════════════════════════════════════════
   ACCOUNT PAGES (Login, Register, Forgot/Reset Password)
   ══════════════════════════════════════════════════════════════ */

.account-box {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-top: 3px solid var(--purple);
  padding: 48px;
}

.account-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 8px;
}

.account-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
}

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════════ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-text > * {
  animation: fadeUp 0.7s ease forwards;
  opacity: 0;
}

.hero-eyebrow { animation-delay: 0.1s; }
.hero-title   { animation-delay: 0.25s; }
.hero-desc    { animation-delay: 0.4s; }
.hero-actions { animation-delay: 0.55s; }
.hero-stats   { animation-delay: 0.7s; }

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

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 201;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV DRAWER ── */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 199;
}
.mobile-nav-overlay.open { display: block; }

.mobile-nav {
  position: fixed;
  top: 0;
  right: -280px;
  width: 260px;
  height: 100vh;
  background: var(--white);
  z-index: 200;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -4px 0 24px rgba(59,21,88,0.18);
  transition: right 0.26s ease;
  padding-top: 80px;
}
.mobile-nav.open { right: 0; }
body.nav-open { overflow: hidden; }

.mobile-nav a {
  display: block;
  padding: 16px 28px;
  color: var(--purple);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.15s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { background: var(--cream); color: var(--gold); }

@media (max-width: 900px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .items-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .otd-inner { grid-template-columns: 1fr; }
  .stop-press-inner { grid-template-columns: 1fr; }
  .layout { grid-template-columns: 1fr; }
  .stock-grid { grid-template-columns: repeat(3, 1fr); }
  .item-layout { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero-layout { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .wishlist-steps { grid-template-columns: 1fr; }
  .wishlist-items-grid { grid-template-columns: repeat(2, 1fr); }
  .wants-layout { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .recent-grid { grid-template-columns: repeat(3, 1fr); }
  .otd-entry-card { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .items-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .stock-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .recent-grid { grid-template-columns: 1fr; }
  .wishlist-items-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-content { padding: 48px 20px; }
  .section { padding: 48px 20px; }
  .header-inner { padding: 0 20px; }
  .topbar { display: none; }
}
