:root {
  --color-bg: #0a0a0a;
  --color-surface: #1a1a1a;
  --color-text: #f0f0f0;
  --color-text-muted: #a0a0a0;
  --color-gold: #c5a059;
  --color-rose-gold: #b76e79;
  --color-silver: #c0c0c0;
  --font-heading: 'Jura', sans-serif;
  --font-body: 'Jura', sans-serif;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 300;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Typography */
.text-gold { color: var(--color-gold); }
.text-rose { color: var(--color-rose-gold); }

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
}

/* Nav */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--color-gold);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 5rem;
  background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}
.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  mask-image: linear-gradient(to right, transparent, black);
  -webkit-mask-image: linear-gradient(to right, transparent, black);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
  background: transparent;
}
.btn:hover {
  background: var(--color-gold);
  color: var(--color-bg);
}

/* Story */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-gold);
}
.story-text p {
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}

/* Collection */
.collection-header {
  text-align: center;
  margin-bottom: 4rem;
}
.collection-header h2 {
  font-size: 2.5rem;
  color: var(--color-gold);
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.watch-card {
  background: var(--color-surface);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.05);
}
.watch-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-gold);
  box-shadow: 0 10px 30px rgba(197, 160, 89, 0.1);
}
.watch-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 1.5rem;
  transition: transform 0.5s ease;
}
.watch-card:hover img {
  transform: scale(1.05);
}
.watch-card h3 {
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.watch-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Specs */
.specs {
  background: var(--color-surface);
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.spec-item i {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}
.spec-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.spec-item p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Footer */
footer {
  background: #000;
  padding: 4rem 0 2rem;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-gold);
  letter-spacing: 3px;
  margin-bottom: 1rem;
}
.footer-motto {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-style: italic;
}
.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: #666;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .story-grid { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .nav-links { display: none; }
}
