/* ===== SOUTHERN HOROLOGY — Luxury Watch Website ===== */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #B8964E;
  --gold-light: #C9A96E;
  --gold-dark: #96753A;
  --gold-muted: #D4C5A9;
  --black: #1A1A1A;
  --black-soft: #2C2C2C;
  --border: #E8E8E8;
  --border-light: #F0F0F0;
  --text-primary: #1A1A1A;
  --text-secondary: #555555;
  --text-tertiary: #999999;
  --bg-primary: #FFFFFF;
  --bg-secondary: #FAFAFA;
  --bg-tertiary: #F5F5F5;
  --bg-card: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.4s var(--ease);
  --transition-slow: 0.7s var(--ease-out);
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }
img { max-width: 100%; display: block; }
::selection { background: var(--gold); color: #FFFFFF; }

/* --- Utility --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 32px; }
.section-padding { padding: 120px 0; }
.text-center { text-align: center; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 60px;
  line-height: 1.8;
  font-weight: 300;
}

.gold-line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 28px auto;
}

/* --- Preloader --- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-watch {
  width: 80px;
  height: 80px;
  position: relative;
}
.loader-watch svg { width: 100%; height: 100%; }

.loader-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-primary);
  letter-spacing: 8px;
  text-transform: uppercase;
}

.loader-counter {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--text-tertiary);
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 16px 0;
  box-shadow: 0 1px 0 var(--border-light);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-primary);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-brand span { color: var(--gold); }

.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: var(--transition);
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
}

.hero-watch-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(600px, 80vw);
  height: min(600px, 80vw);
  opacity: 0;
  animation: heroWatchIn 2s var(--ease-out) 0.5s forwards;
}
.hero-watch-svg svg {
  width: 100%;
  height: 100%;
}

@keyframes heroWatchIn {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.hero-content { position: relative; z-index: 2; max-width: 700px; }

.hero-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--text-primary);
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-tagline {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 48px;
  letter-spacing: 0.5px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}

.hero-cta {
  display: inline-flex;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 1s ease 1.4s forwards;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--font-body);
  border: 1px solid var(--gold);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}
.btn:hover::before { left: 100%; }

.btn-primary {
  background: var(--gold);
  color: #FFFFFF;
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: #FFFFFF;
  box-shadow: 0 8px 32px rgba(184, 150, 78, 0.3);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 1s ease 1.8s forwards;
}
.scroll-indicator span {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.scroll-line {
  width: 1px;
  height: 50px;
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { top: -100%; }
  50% { top: 0; }
  100% { top: 100%; }
}

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

/* --- Brands Marquee --- */
.brands-section {
  padding: 50px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  background: var(--bg-primary);
}
.marquee-track {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-content {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 30px;
}
.brand-logo {
  flex-shrink: 0;
  width: 80px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}
.brand-logo img {
  max-width: 100%;
  max-height: 32px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.35);
  transition: filter var(--transition);
}
.brand-logo:hover img {
  filter: grayscale(0%) opacity(0.8);
}
[data-theme="dark"] .brand-logo img {
  filter: grayscale(100%) opacity(0.3) invert(1);
}
[data-theme="dark"] .brand-logo:hover img {
  filter: grayscale(0%) opacity(0.7) invert(0);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- About --- */
.about { background: var(--bg-secondary); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.about-visual-inner {
  width: 100%;
  height: 100%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-visual-inner svg {
  width: 60%;
  height: 60%;
  opacity: 0.6;
}
.about-visual-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--gold-muted);
}
.about-visual-label {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.about-text .section-label { text-align: left; }
.about-text .section-title { text-align: left; }
.about-text p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.85;
  font-weight: 300;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--border);
}
.about-value {
  padding: 32px 0;
  border-right: 1px solid var(--border);
}
.about-value:last-child { border-right: none; }
.about-value h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 4px;
}
.about-value span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* --- Watch Grid --- */
.collection { background: var(--bg-primary); }
.archive-section { background: var(--bg-secondary); }

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 28px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-tertiary);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.filter-btn:hover {
  border-color: var(--gold-muted);
  color: var(--gold);
}
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 150, 78, 0.06);
}

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

.watch-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.watch-card:hover {
  border-color: var(--gold-muted);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.06), 0 8px 20px rgba(0, 0, 0, 0.03);
}

.watch-card-image {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.watch-card-placeholder {
  width: 50%;
  height: 50%;
  opacity: 0.15;
  transition: opacity var(--transition);
}
.watch-card:hover .watch-card-placeholder { opacity: 0.25; }
.watch-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.watch-card:hover .watch-card-image img { transform: scale(1.06); }

.watch-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: var(--gold);
  color: #FFFFFF;
}
.watch-card-badge.sold-badge {
  background: var(--bg-card);
  color: var(--text-tertiary);
  border: 1px solid var(--border);
}

.watch-card-info { padding: 28px; }
.watch-card-brand {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.watch-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-weight: 400;
  line-height: 1.3;
}
.watch-card-ref {
  font-size: 0.78rem;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}
.watch-card-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}
.watch-card-price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-primary);
}
.watch-card-price.sold-price { color: var(--text-tertiary); }
.watch-card-link {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.watch-card-link:hover { gap: 10px; color: var(--gold-dark); }
.watch-card-link svg { width: 12px; height: 12px; }

/* --- Empty State --- */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  grid-column: 1 / -1;
}
.empty-state p {
  color: var(--text-tertiary);
  font-size: 0.95rem;
  font-weight: 300;
}

/* --- Consignment --- */
.consignment {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.consignment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.consignment-text .section-label { text-align: left; }
.consignment-text .section-title { text-align: left; }
.consignment-text > p {
  color: var(--text-secondary);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 40px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: flex-start;
  transition: all var(--transition);
}
.process-step:first-child { padding-top: 0; }
.process-step:last-child { border-bottom: none; }
.process-step:hover .step-number { color: var(--gold); border-color: var(--gold); }

.step-number {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-tertiary);
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.step-content h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-primary);
  font-weight: 400;
  margin-bottom: 4px;
}
.step-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

.consignment-visual {
  position: relative;
}
.consignment-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 60px 48px;
  text-align: center;
}
.consignment-card-icon {
  margin-bottom: 32px;
}
.consignment-card-icon svg {
  width: 64px;
  height: 64px;
  stroke: var(--gold);
}
.consignment-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-primary);
  font-weight: 400;
  margin-bottom: 12px;
}
.consignment-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 32px;
}

/* --- Testimonials --- */
.testimonials {
  background: var(--bg-secondary);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 40px 32px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: var(--gold-muted);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.04);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.testimonial-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}
.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
}
.testimonial-author span {
  display: block;
  font-weight: 300;
  color: var(--text-tertiary);
  letter-spacing: 1px;
  margin-top: 2px;
  text-transform: none;
  font-size: 0.72rem;
}

/* --- Footer --- */
.footer {
  background: var(--black);
  padding: 100px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
.footer-brand-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #F5F0EB;
  margin-bottom: 20px;
}
.footer-brand-text span { color: var(--gold); }
.footer-desc {
  color: #888888;
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 320px;
  font-weight: 300;
}
.footer h4 {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 14px; }
.footer-links a {
  color: #888888;
  font-size: 0.88rem;
  font-weight: 300;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid #2A2A2A;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: #666666;
  font-weight: 300;
}
.footer-socials {
  display: flex;
  gap: 24px;
  align-items: center;
}
.footer-socials a {
  color: #888888;
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.footer-socials a:hover { color: var(--gold-light); }
.footer-socials svg { width: 18px; height: 18px; }
.footer-social-text {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  border-color: var(--gold);
  background: var(--gold);
}
.back-to-top:hover svg { stroke: #FFFFFF; }
.back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  transition: stroke var(--transition);
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 10001;
  transition: none;
}

/* --- Cursor Glow --- */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 150, 78, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
@media (hover: none) {
  .cursor-glow { display: none; }
}

/* --- Theme Toggle --- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 0;
}
.theme-toggle:hover {
  border-color: var(--gold);
}
.theme-toggle svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-secondary);
  transition: stroke var(--transition);
}
.theme-toggle:hover svg { stroke: var(--gold); }
.theme-icon-moon { display: none; }
[data-theme="dark"] .theme-icon-sun { display: none; }
[data-theme="dark"] .theme-icon-moon { display: block; }

/* --- Hero Particles --- */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* --- Typed Cursor --- */
.typed-cursor {
  font-weight: 100;
  color: var(--gold);
  animation: cursorBlink 0.8s ease infinite;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* --- Stats Section --- */
.stats-section {
  padding: 80px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item {
  padding: 20px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--gold);
  font-weight: 400;
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-top: 12px;
}

/* --- FAQ --- */
.faq-section {
  background: var(--bg-primary);
}
.faq-list {
  margin-top: 60px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--text-tertiary);
  transition: transform var(--transition), stroke var(--transition);
}
.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  stroke: var(--gold);
}
.faq-item.active .faq-question { color: var(--gold); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
}
.faq-item.active .faq-answer {
  max-height: 200px;
}
.faq-answer p {
  padding-bottom: 28px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 300;
}

/* --- Dark Mode --- */
[data-theme="dark"] {
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --bg-tertiary: #1A1A1A;
  --bg-card: #141414;
  --text-primary: #F0EDE8;
  --text-secondary: #A0A0A0;
  --text-tertiary: #666666;
  --border: #2A2A2A;
  --border-light: #1E1E1E;
  --black: #0A0A0A;
}
[data-theme="dark"] .hero-bg {
  background: linear-gradient(180deg, #0A0A0A 0%, #111111 100%);
}
[data-theme="dark"] .navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
}
[data-theme="dark"] .nav-links {
  color: #F0EDE8;
}
[data-theme="dark"] .nav-brand { color: #F0EDE8; }
[data-theme="dark"] .nav-toggle span { background: #F0EDE8; }
[data-theme="dark"] .footer { background: #050505; }
[data-theme="dark"] .footer-bottom { border-top-color: #1A1A1A; }
[data-theme="dark"] .watch-card-badge.sold-badge {
  background: var(--bg-card);
  color: var(--text-tertiary);
  border-color: var(--border);
}
[data-theme="dark"] .btn-primary { color: #0A0A0A; }
[data-theme="dark"] .btn-primary:hover { color: #0A0A0A; }
[data-theme="dark"] ::selection { color: #0A0A0A; }
[data-theme="dark"] .hero-watch-svg svg circle[stroke="#E8E8E8"] { stroke: #2A2A2A; }
[data-theme="dark"] .hero-watch-svg svg line[stroke="#D4C5A9"] { stroke: #3A3A3A; }
[data-theme="dark"] .hero-watch-svg svg line[stroke="#1A1A1A"] { stroke: #F0EDE8; }
[data-theme="dark"] .hero-watch-svg svg circle[fill="#FFFFFF"] { fill: #0A0A0A; }
[data-theme="dark"] .cursor-glow {
  background: radial-gradient(circle, rgba(184, 150, 78, 0.04) 0%, transparent 70%);
}
[data-theme="dark"] .preloader { background: #0A0A0A; }
@media (max-width: 768px) {
  [data-theme="dark"] .nav-links {
    background: rgba(10, 10, 10, 0.98);
  }
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered card animation */
.watch-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out),
              border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.watch-card.card-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { max-width: 500px; margin: 0 auto; }
  .consignment-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card:last-child { display: none; }
  .watch-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .container-narrow { padding: 0 20px; }
  .section-padding { padding: 80px 0; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transition: right var(--transition);
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero-cta { flex-direction: column; gap: 12px; width: 100%; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .hero-watch-svg { width: 90vw; height: 90vw; }

  .about-values { grid-template-columns: repeat(3, 1fr); }
  .about-value { padding: 24px 0; }

  .watch-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .watch-card-info { padding: 20px; }

  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card:last-child { display: block; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item { padding: 16px 8px; }
}

@media (max-width: 480px) {
  .watch-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .about-value { border-right: none; border-bottom: 1px solid var(--border); text-align: center; }
  .about-value:last-child { border-bottom: none; }
  .filter-bar { gap: 6px; }
  .filter-btn { padding: 8px 18px; font-size: 0.6rem; }
  .consignment-card { padding: 40px 28px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
