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

:root {
  --bg:          #0f0d0b;
  --bg-alt:      #151210;
  --surface:     #1c1916;
  --border:      #2e2924;
  --amber:       #c8861a;
  --amber-dim:   #8a5a10;
  --burg:        #7a2320;
  --text:        #e8ddd0;
  --text-mid:    #a89e8c;
  --text-dim:    #6b6055;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Crimson Pro', Georgia, serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--amber); color: var(--bg); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--amber-dim); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bg);
}

.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 8% 15%, rgba(200,134,26,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 23% 72%, rgba(255,255,255,0.08) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 38% 28%, rgba(255,255,255,0.06) 0%, transparent 100%),
    radial-gradient(1px 1px at 54% 88%, rgba(200,134,26,0.18) 0%, transparent 100%),
    radial-gradient(1px 1px at 67% 44%, rgba(255,255,255,0.05) 0%, transparent 100%),
    radial-gradient(1px 1px at 81% 19%, rgba(200,134,26,0.22) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 91% 67%, rgba(255,255,255,0.07) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 55%, rgba(255,255,255,0.06) 0%, transparent 100%),
    radial-gradient(1px 1px at 49% 35%, rgba(200,134,26,0.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 73% 79%, rgba(255,255,255,0.05) 0%, transparent 100%),
    radial-gradient(1px 1px at 29% 91%, rgba(200,134,26,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 38%, rgba(255,255,255,0.04) 0%, transparent 100%),
    radial-gradient(2px 2px at 61% 11%, rgba(200,134,26,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 4% 83%, rgba(255,255,255,0.05) 0%, transparent 100%),
    radial-gradient(1px 1px at 77% 52%, rgba(200,134,26,0.12) 0%, transparent 100%);
}

.glow-left {
  position: absolute;
  left: -10%;
  top: 20%;
  width: 45%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(200,134,26,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.glow-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(270deg, rgba(122,35,32,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 80px 60px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 32px;
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--amber);
  margin-bottom: 28px;
  opacity: 0.7;
}

.hero-lede {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-mid);
  max-width: 420px;
  margin-bottom: 36px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.meta-tag {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-family: var(--font-body);
}

.meta-sep {
  color: var(--amber-dim);
  font-size: 0.6rem;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px 60px 40px;
}

.visual-frame {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--border);
  position: relative;
  background: var(--bg-alt);
}

.visual-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--border);
  opacity: 0.4;
  pointer-events: none;
}

.frame-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Shelves */
.shelf {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding: 0 20px;
}

.shelf::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--border);
}

.shelf-1 { top: 15%; height: 28%; }
.shelf-2 { top: 45%; height: 28%; }
.shelf-3 { top: 75%; height: 18%; }

/* Items */
.item {
  border-radius: 2px;
  position: relative;
  flex-shrink: 0;
}

/* Crystals */
.item-crystal { border-radius: 3px; }
.item-1 { width: 22px; height: 38px; background: linear-gradient(135deg, #4a90d9 0%, #2a5f9e 50%, #1a3d6b 100%); opacity: 0.85; }
.item-2 { width: 16px; height: 28px; background: linear-gradient(160deg, #9b59b6 0%, #6c3483 100%); opacity: 0.8; }
.item-5 { width: 28px; height: 45px; background: linear-gradient(130deg, #5dade2 0%, #2e86c1 50%, #1a5276 100%); opacity: 0.85; }
.item-8 { width: 14px; height: 22px; background: linear-gradient(150deg, #af7ac3 0%, #7d3c98 100%); opacity: 0.8; }

/* Candles */
.item-candle { background: var(--amber); opacity: 0.7; border-radius: 2px 2px 0 0; }
.item-3 { width: 12px; height: 32px; }
.item-9 { width: 10px; height: 26px; }

/* Tarot deck */
.item-deck {
  width: 28px; height: 40px;
  background: linear-gradient(180deg, #3d2b1f 0%, #2a1e15 100%);
  border-radius: 3px 3px 0 0;
  border: 1px solid var(--amber-dim);
}
.item-deck::after {
  content: '';
  position: absolute;
  top: 4px; left: 4px; right: 4px;
  height: 8px;
  background: var(--amber);
  opacity: 0.5;
  border-radius: 1px;
}

/* Tome */
.item-tome {
  width: 32px; height: 24px;
  background: linear-gradient(180deg, #4a3728 0%, #2d2016 100%);
  border-radius: 2px;
  border-top: 2px solid var(--burg);
}
.item-6 { width: 26px; height: 20px; }

/* Bottle */
.item-bottle {
  width: 16px; height: 34px;
  background: linear-gradient(180deg, rgba(200,134,26,0.3) 0%, rgba(200,134,26,0.15) 100%);
  border: 1px solid rgba(200,134,26,0.3);
  border-radius: 2px 2px 4px 4px;
}
.item-7 { }

/* Flames */
.flame {
  position: absolute;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: radial-gradient(ellipse at 50% 80%, rgba(255,200,80,0.9) 0%, rgba(200,134,26,0.6) 50%, transparent 100%);
  animation: flicker ease-in-out infinite alternate;
}

.flickle-1 { width: 8px; height: 14px; bottom: 42%; left: calc(50% - 4px); animation-duration: 1.4s; }
.flicker-2 { width: 6px; height: 11px; bottom: 82%; right: 22%; animation-duration: 1.1s; animation-delay: 0.4s; }

@keyframes flicker {
  0%   { transform: scaleY(1) scaleX(1) translateY(0); opacity: 0.9; }
  50%  { transform: scaleY(1.15) scaleX(0.9) translateY(-2px); opacity: 1; }
  100% { transform: scaleY(0.9) scaleX(1.1) translateY(1px); opacity: 0.85; }
}

/* === COLLECTIONS === */
.collections {
  background: var(--bg-alt);
  padding: 100px 80px;
  border-top: 1px solid var(--border);
}

.collections-header {
  margin-bottom: 80px;
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* Room Blocks */
.room-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 80px;
}

.room {
  padding: 48px 40px;
  border: 1px solid var(--border);
  position: relative;
}

.room-front { background: var(--surface); }
.room-back { background: var(--bg); }

.room-numeral {
  position: absolute;
  top: -1px;
  right: 20px;
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  letter-spacing: -0.05em;
  opacity: 0.5;
}

.room-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.room-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 380px;
}

.room-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cat {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 4px 10px;
  font-family: var(--font-body);
}

/* Feature Strip */
.feature-strip {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--border);
}

.feature {
  flex: 1;
  padding: 36px 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-divider {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
}

.feature-icon {
  flex-shrink: 0;
  width: 32px;
  margin-top: 2px;
}

.feature-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.feature-body {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* === CONSIGNMENT === */
.consignment {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 100px 80px;
}

.consign-inner {
  max-width: 860px;
  position: relative;
}

.consign-numeral {
  font-family: var(--font-head);
  font-size: 8rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  letter-spacing: -0.05em;
  position: absolute;
  top: -20px;
  right: 0;
  opacity: 0.3;
  pointer-events: none;
}

.consign-content {
  max-width: 600px;
  margin-bottom: 48px;
}

.consign-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.consign-body {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.consign-types {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.type-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-mid);
  font-family: var(--font-body);
}

.type-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.8;
  flex-shrink: 0;
}

/* === CLOSING === */
.closing {
  background: var(--bg-alt);
  padding: 80px 80px 100px;
  border-top: 1px solid var(--border);
}

.closing-rule {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--amber), transparent);
  margin: 0 auto 48px;
}

.closing-quote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--text-mid);
  text-align: center;
  line-height: 1.4;
  max-width: 680px;
  margin: 0 auto 48px;
  letter-spacing: -0.01em;
}

/* === FOOTER === */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 80px;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.footer-location {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-rule {
  flex: 1;
  height: 1px;
  background: var(--border);
  min-width: 40px;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-style: italic;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { flex-direction: column; min-height: auto; }
  .hero-inner { padding: 60px 40px; max-width: 100%; }
  .hero-visual { flex: none; padding: 0 40px 60px; }
  .visual-frame { max-width: 260px; margin: 0 auto; }
  .room-blocks { grid-template-columns: 1fr; }
  .feature-strip { flex-direction: column; }
  .feature-divider { width: 100%; height: 1px; }
  .collections, .consignment, .closing, .footer { padding: 60px 40px; }
}

@media (max-width: 600px) {
  .hero-inner { padding: 48px 24px; }
  .hero-visual { padding: 0 24px 48px; }
  .collections, .consignment, .closing, .footer { padding: 48px 24px; }
  .room { padding: 32px 24px; }
  .feature { padding: 24px; }
  .consign-numeral { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-rule { display: none; }
}