/* ===================================================================
   DEEDHUNTER — Presentation Website
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400&display=swap');

/* ===== TOKENS ===== */
:root {
  --bg-base:      #FAF9F7;
  --bg-surface:   #F2F0EC;
  --bg-panel:     #ECEAE5;
  --bg-pill:      #E3DFD9;
  --border:       #D4CFC8;
  --border-soft:  #DDD9D2;

  --text-primary:   #1C1713;
  --text-secondary: #6B5F53;
  --text-muted:     #9B8E82;
  --text-on-gold:   #FFFFFF;

  --gold:        #9E6B38;
  --gold-light:  #C49462;
  --gold-dim:    #7A4F24;
  --gold-glow:   rgba(158,107,56,0.10);
  --gold-gradient:       linear-gradient(135deg, #7A4F24 0%, #C49462 100%);
  --gold-gradient-hover: linear-gradient(135deg, #6B4520 0%, #B87D46 100%);

  --sidebar-w:   188px;
  --header-h:    64px;
  --max-w:       1080px;
  --pad-h:       52px;
  --section-v:   104px;

  --r-sm: 5px;
  --r-md: 9px;
  --r-lg: 14px;

  --shadow-sm:   0 1px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 24px rgba(0,0,0,0.12);
  --shadow-gold: 0 0 0 1px rgba(158,107,56,0.15), 0 4px 20px rgba(158,107,56,0.08);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t:   180ms ease;
}

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

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

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

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
a { color: var(--gold); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--gold-light); }

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

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--bg-pill); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
h1, h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h3, h4, h5 {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.9rem); font-weight: 500; }
h3 { font-size: clamp(1.05rem, 1.5vw, 1.2rem); }
h4 { font-size: 0.9375rem; }

p { color: var(--text-secondary); font-size: 1rem; line-height: 1.72; }

/* ===== LABEL ===== */
.label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: all var(--t);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #fff;
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--gold-gradient-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(158,107,56,0.32);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(158,107,56,0.30);
  font-size: 0.8125rem;
  padding: 8px 16px;
  min-height: 38px;
}
.btn-outline-gold:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-lg { padding: 14px 30px; font-size: 0.9375rem; min-height: 52px; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(250,249,247,0.92);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border-soft);
  transition: border-color var(--t), box-shadow var(--t);
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 32px rgba(0,0,0,0.10);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left,
.header-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.header-right {
  justify-content: flex-end;
}

/* Logo */
.logo-link { text-decoration: none; flex-shrink: 0; }
.logo { display: flex; align-items: center; gap: 11px; }
.logo-icon { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 34px; width: auto; max-width: 130px; display: block; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.03em;
  line-height: 1;
}
.logo-sub {
  font-size: 0.625rem;
  font-weight: 400;
  color: var(--gold-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1;
}

/* Lang switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  background: var(--bg-pill);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 2px;
}
.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: 3px;
  transition: color var(--t), background var(--t);
  line-height: 1;
}
.lang-btn:hover { color: var(--text-primary); }
.lang-btn.active {
  background: var(--gold-gradient);
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: all 240ms var(--ease);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== SIDEBAR OVERLAY ===== */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.38);
  z-index: 890;
  backdrop-filter: blur(2px);
  animation: overlay-in 200ms ease;
}
.sidebar-overlay.visible { display: block; }
@keyframes overlay-in { from { opacity: 0; } to { opacity: 1; } }

/* ===== SIDEBAR ===== */
.sidebar-timeline {
  position: fixed;
  top: var(--header-h);
  left: 0; bottom: 0;
  width: var(--sidebar-w);
  background: var(--bg-base);
  border-right: 1px solid var(--border-soft);
  z-index: 900;
  overflow-y: auto;
  padding: 28px 0 36px;
  scrollbar-width: none;
}
.sidebar-timeline::-webkit-scrollbar { display: none; }

.timeline-inner { padding: 0 18px; }

.timeline-label {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 22px;
  padding-left: 6px;
}

.timeline-list { list-style: none; position: relative; }
.timeline-list::before {
  content: '';
  position: absolute;
  left: 16px; top: 0; bottom: 0;
  width: 1px;
  background: var(--border-soft);
}

.tl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: all var(--t);
  position: relative;
  margin-bottom: 1px;
}
.tl-item:hover .tl-text { color: var(--text-primary); }
.tl-item.active .tl-num { color: var(--gold); }
.tl-item.active .tl-text { color: var(--text-primary); }

.tl-num {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--text-muted);
  width: 28px;
  text-align: center;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  background: var(--bg-base);
  transition: color var(--t);
}

.tl-text {
  font-size: 0.71875rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color var(--t);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.timeline-progress-track {
  margin-top: 28px;
  height: 1px;
  background: var(--border);
  overflow: hidden;
}
.timeline-progress-bar {
  height: 100%;
  background: var(--gold);
  transition: width 280ms var(--ease);
  width: 0%;
}

/* ===== MAIN OFFSET ===== */
#main-content {
  margin-left: var(--sidebar-w);
  padding-top: var(--header-h);
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}

/* ===== SECTION BASE ===== */
.section { padding: var(--section-v) 0; position: relative; }
.section--dark   { background: var(--bg-base); }
.section--surface { background: var(--bg-surface); }
.section--panel  { background: var(--bg-panel); }

.section-label { margin-bottom: 0; }

.section-title { margin-top: 10px; margin-bottom: 18px; }

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 56px;
  font-weight: 300;
}

/* ===== HERO ===== */
.hero-section {
  min-height: 100vh;
  background: var(--bg-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(158,107,56,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 50% 35% at 85% 105%, rgba(158,107,56,0.04) 0%, transparent 55%);
  pointer-events: none;
}

.hero-content {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  background: rgba(158,107,56,0.06);
  border: 1px solid rgba(158,107,56,0.16);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 32px;
}

.badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2.4s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}

.hero-title {
  margin-bottom: 22px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
}

.hero-desc {
  font-size: 1.125rem;
  max-width: 520px;
  margin: 0 auto 36px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.75;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
  margin-bottom: 40px;
}

.tag {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-pill);
  border: 1px solid var(--border);
  padding: 5px 13px;
  border-radius: 3px;
  letter-spacing: 0.03em;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-media { margin-top: 0; }

.media-card--hero { max-width: 860px; margin: 0 auto; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.35;
  animation: bob 3s ease-in-out infinite;
}
.scroll-hint span {
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@keyframes bob {
  0%, 100% { opacity: 0.35; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.6;  transform: translateX(-50%) translateY(5px); }
}

/* ===== HERO COVER IMAGE ===== */
.hero-cover-img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

/* ===== OVERVIEW PILLARS ===== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.pillar-card {
  background: var(--bg-surface);
  padding: 32px 28px;
  transition: background var(--t);
}
.pillar-card:hover { background: var(--bg-panel); }

.pillar-icon {
  width: 40px; height: 40px;
  background: var(--gold-glow);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.pillar-card h3 { font-size: 0.9375rem; margin-bottom: 8px; }
.pillar-card p  { font-size: 0.875rem; line-height: 1.65; }

/* ===== JOURNEY INTRO ===== */
.section-transition { padding: 80px 0 52px; background: var(--bg-surface); }
.journey-intro { text-align: center; }
.journey-intro .section-desc { margin-left: auto; margin-right: auto; }
.journey-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 0;
}
.journey-divider span:first-child,
.journey-divider span:last-child {
  flex: 1; height: 1px; background: var(--border);
}
.divider-icon { color: var(--gold); font-size: 0.5rem; opacity: 0.5; }

/* ===== STEP SECTIONS ===== */
.step-section      { background: var(--bg-surface); }
.step-section--alt { background: var(--bg-base); }

.step-header {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 44px;
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 0.85;
  flex-shrink: 0;
  opacity: 0.5;
  letter-spacing: -0.04em;
  margin-top: 4px;
}

.step-header-text { flex: 1; }
.step-header-text .section-desc { margin-bottom: 0; }

.step-content { display: flex; flex-direction: column; gap: 28px; }
.step-content--full .media-card { width: 100%; }
.step-content--media-left {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: start;
}

/* ===== MEDIA CARDS ===== */
.media-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: border-color 280ms var(--ease);
}
.media-card:hover { border-color: rgba(158,107,56,0.25); }

.media-card video {
  width: 100%;
  height: auto;
  display: block;
  background: var(--bg-base);
  cursor: pointer;
}

.media-card figcaption {
  padding: 11px 16px;
  font-size: 0.78125rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-soft);
  font-style: italic;
  letter-spacing: 0.01em;
}

/* ===== VIDEO PLACEHOLDER ===== */
.video-placeholder {
  background: var(--bg-base);
  border: 1px dashed rgba(158,107,56,0.18);
  border-radius: var(--r-md);
  margin-bottom: 48px;
}
.vp-inner {
  padding: 72px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.vp-label { font-size: 0.875rem; font-weight: 500; color: var(--text-muted); }
.vp-inner code {
  font-size: 0.6875rem;
  color: var(--gold-dim);
  background: var(--gold-glow);
  padding: 4px 10px;
  border-radius: 4px;
}
.vp-hint { font-size: 0.75rem; color: var(--text-muted); }

/* ===== FEATURE LIST ===== */
.feature-list {
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 24px 26px;
}
.feature-list h4 {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.feature-list ul { display: flex; flex-direction: column; gap: 10px; }
.feature-list ul li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
  line-height: 1.55;
}
.feature-list ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.55;
}

/* Horizontal */
.feature-list--horizontal {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  padding: 5px 14px;
  border-radius: 3px;
}
.feature-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.7;
}

/* ===== LEARNING CTA ===== */
.step-side-info { display: flex; flex-direction: column; gap: 18px; }

.learning-cta {
  background: rgba(158,107,56,0.04);
  border: 1px solid rgba(158,107,56,0.15);
  border-radius: var(--r-md);
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.learning-icon { flex-shrink: 0; padding-top: 2px; }
.learning-cta strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.learning-cta p { font-size: 0.8125rem; color: var(--text-secondary); margin-bottom: 14px; line-height: 1.6; }

/* ===== ADMIN DIVIDER ===== */
.section-divider-admin {
  background: var(--bg-surface);
  padding: 20px 0;
}
.divider-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
  display: flex;
  align-items: center;
  gap: 20px;
}
.divider-line { flex: 1; height: 1px; background: var(--border); }
.divider-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  background: var(--bg-panel);
  border: 1px solid rgba(158,107,56,0.15);
  padding: 7px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ===== ADMIN SECTION ===== */
.section--admin-intro { background: var(--bg-surface); }

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 64px;
}

.admin-card {
  background: var(--bg-base);
  padding: 28px 26px;
  transition: background var(--t);
}
.admin-card:hover { background: var(--bg-panel); }

.admin-card-icon {
  width: 40px; height: 40px;
  background: var(--gold-glow);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.admin-card h3 { font-size: 0.9375rem; margin-bottom: 8px; }
.admin-card p  { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }

.admin-video-area { margin-top: 8px; }
.subsection-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 24px;
}

/* ===== SUBSECTION ===== */
.subsection {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--border-soft);
}
.subsection-header { margin-bottom: 32px; }
.subsection-header p { font-size: 0.9375rem; color: var(--text-secondary); max-width: 540px; }

/* ===== LISTINGS ===== */
.section--listings { background: var(--bg-base); }

/* ===== AUCTIONS ===== */
.section--auctions { background: var(--bg-surface); }

.auction-types-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 16px;
  margin-top: 48px;
}

.auction-type-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 30px 28px;
  transition: border-color 280ms var(--ease);
}
.auction-type-card:hover { border-color: rgba(158,107,56,0.2); }
.auction-type-card--featured {
  border-color: rgba(158,107,56,0.22);
  background: rgba(158,107,56,0.02);
}
.auction-type-card h4 { font-size: 1rem; margin-bottom: 10px; }
.auction-type-card p  { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.68; margin-bottom: 22px; }

.auction-type-badge {
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-pill);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.auction-type-badge--gold {
  color: var(--gold);
  border-color: rgba(158,107,56,0.25);
  background: var(--gold-glow);
}

.auction-type-visual { margin-top: 16px; }
.property-node--single {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  background: var(--bg-panel);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
}

/* Batch timeline */
.batch-timeline {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.batch-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.batch-item span { font-size: 0.6875rem; font-weight: 500; color: var(--text-secondary); white-space: nowrap; }
.batch-item--more { opacity: 0.4; }
.batch-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(158,107,56,0.12);
}
.batch-dot--muted { background: var(--text-muted); box-shadow: none; }
.batch-arrow { color: var(--gold-dim); font-size: 0.875rem; margin-bottom: 18px; }

/* ===== DASHBOARDS ===== */
.section--dashboards { background: var(--bg-base); }

.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.dash-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 260ms var(--ease);
}
.dash-card:hover { border-color: rgba(158,107,56,0.2); transform: translateY(-1px); }
.dash-card--featured {
  border-color: rgba(158,107,56,0.2);
  background: rgba(158,107,56,0.025);
  grid-column: span 2;
}
.dash-card-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  background: var(--gold-glow);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dash-card-content { display: flex; flex-direction: column; gap: 2px; }
.dash-label { font-size: 0.875rem; font-weight: 500; color: var(--text-primary); }
.dash-desc  { font-size: 0.75rem; color: var(--text-muted); }

/* ===== POST-AUCTIONS ===== */
.section--post { background: var(--bg-surface); }

.post-auction-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 48px 0;
}
.post-tab {
  background: var(--bg-base);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 260ms var(--ease);
}
.post-tab:hover { border-color: rgba(158,107,56,0.2); }
.post-tab-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  line-height: 1;
}
.post-tab h4 { font-size: 0.9rem; margin-bottom: 8px; }
.post-tab p  { font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.65; }

/* ===== IMAGE GALLERY ===== */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.gallery-figure {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 260ms var(--ease);
  cursor: pointer;
}
.gallery-figure:hover { border-color: rgba(158,107,56,0.3); }
.gallery-img { width: 100%; height: auto; display: block; }
.gallery-figure figcaption {
  padding: 10px 16px;
  font-size: 0.78125rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-soft);
  font-style: italic;
  text-align: center;
}

/* ===== IMAGE PLACEHOLDER ===== */
.image-placeholder {
  background: var(--bg-base);
  border: 1px dashed rgba(158,107,56,0.15);
  border-radius: var(--r-md);
  overflow: hidden;
}
.placeholder-inner {
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.placeholder-label { font-size: 0.8125rem; font-weight: 500; color: var(--text-muted); }
.placeholder-inner code {
  font-size: 0.6875rem;
  color: var(--gold-dim);
  background: var(--gold-glow);
  padding: 4px 10px;
  border-radius: 4px;
  word-break: break-all;
}
.image-placeholder figcaption {
  padding: 10px 16px;
  font-size: 0.78125rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-soft);
  font-style: italic;
  text-align: center;
}

/* ===== CLOSING ===== */
.section--closing { background: var(--bg-base); text-align: center; }

.closing-content { max-width: 760px; margin: 0 auto; }
.closing-title { font-size: clamp(1.9rem, 3.2vw, 2.8rem); margin-bottom: 20px; }
.closing-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 56px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.78;
}

.closing-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.closing-pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  padding: 10px 18px;
  border-radius: var(--r-sm);
  transition: all 260ms var(--ease);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 400;
}
.closing-pillar:hover { border-color: rgba(158,107,56,0.25); color: var(--text-primary); }
.closing-pillar-icon {
  width: 30px; height: 30px;
  background: var(--gold-glow);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.back-to-top-btn { margin-top: 8px; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(6px);
  animation: lb-in 180ms ease;
}
.lightbox[hidden] { display: none; }
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }

.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #F0EAE0;
  transition: all var(--t);
}
.lightbox-close:hover { background: rgba(255,255,255,0.12); }

.lightbox-content {
  max-width: min(92vw, 1100px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-content video,
.lightbox-content img {
  max-width: 100%;
  max-height: 86vh;
  border-radius: var(--r-md);
  border: 1px solid rgba(158,107,56,0.15);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 800;
  width: 42px; height: 42px;
  background: var(--gold-gradient);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.back-to-top:hover { background: var(--gold-light); transform: translateY(-2px); }
.back-to-top[hidden] { display: none; }

/* ===== MOBILE SECTION INDICATOR ===== */
.mobile-section-indicator { display: none; }

/* ===== ANIMATE-IN ===== */
.animate-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms var(--ease), transform 480ms var(--ease);
}
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE 1200px ===== */
@media (max-width: 1200px) {
  :root { --sidebar-w: 164px; --pad-h: 36px; }
}

/* ===== RESPONSIVE 1024px ===== */
@media (max-width: 1024px) {
  .sidebar-timeline {
    transform: translateX(-100%);
    transition: transform 300ms var(--ease);
    box-shadow: none;
  }
  .sidebar-timeline.sidebar-open {
    transform: translateX(0);
    box-shadow: 4px 0 32px rgba(0,0,0,0.12);
  }
  #main-content { margin-left: 0; }
  :root { --pad-h: 32px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .step-content--media-left { grid-template-columns: 1fr; }
  .dashboard-cards { grid-template-columns: repeat(2, 1fr); }
  .dash-card--featured { grid-column: span 1; }
  .hamburger { display: flex; }
}

/* ===== RESPONSIVE 768px ===== */
@media (max-width: 768px) {
  :root { --section-v: 64px; --header-h: 58px; --pad-h: 20px; }

  .pillars-grid { grid-template-columns: 1fr; }
  .admin-grid   { grid-template-columns: 1fr; }
  .auction-types-grid { grid-template-columns: 1fr; }
  .dashboard-cards    { grid-template-columns: 1fr; }
  .post-auction-tabs  { grid-template-columns: 1fr; }
  .image-gallery      { grid-template-columns: 1fr; }

  .step-header { flex-direction: column; gap: 12px; }
  .step-number { font-size: 3rem; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .feature-list--horizontal { flex-direction: column; }
  .closing-pillars { flex-direction: column; align-items: center; }
  .closing-pillar { width: 100%; max-width: 260px; justify-content: center; }

  .mobile-section-indicator {
    display: block;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--bg-base);
    border-top: 1px solid var(--border);
    padding: 8px 20px;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dim);
    text-align: center;
    z-index: 700;
  }

  .back-to-top { bottom: 52px; right: 16px; }
}

/* ===== RESPONSIVE 480px ===== */
@media (max-width: 480px) {
  :root { --section-v: 48px; }
  .logo-sub { display: none; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }
  .hero-desc { font-size: 1rem; }
  .section-desc { font-size: 0.9375rem; }
  .tag { font-size: 0.625rem; padding: 4px 10px; }
  .vp-inner { padding: 48px 20px; }
  .lang-btn { padding: 4px 6px; font-size: 0.625rem; }
}

