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

:root {
  --bg: #0c0a08;
  --bg2: #111009;
  --gold: #c9a96e;
  --gold-light: #e8d5a3;
  --gold-dim: #7a6340;
  --white: #f5f0e8;
  --muted: #7a7060;
  --border: rgba(201, 169, 110, 0.15);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Header ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  background: linear-gradient(to bottom, rgba(12,10,8,0.95) 0%, transparent 100%);
  transition: background 0.3s;
}
header.scrolled {
  background: rgba(12,10,8,0.97);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; flex-direction: column; }
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gold-light);
}
.brand-dates {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--gold-dim);
  text-transform: uppercase;
}
nav { display: flex; gap: 2.5rem; }
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav a:hover { color: var(--gold); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,169,110,0.07) 0%, transparent 70%);
}
.hero-glow {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  line-height: 1.9;
}
.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* ── Section labels ── */
.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ── Story ── */
.story {
  padding: 8rem 2rem;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6rem;
  align-items: center;
}
.story-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.story-text p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  max-width: 520px;
}

/* Timeline */
.story-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-width: 140px;
}
.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(201,169,110,0.5);
}
.timeline-bar {
  width: 1px;
  height: 160px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dim));
  opacity: 0.4;
}
.timeline-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  padding: 0.5rem 0;
  white-space: nowrap;
}

/* ── Collection ── */
.collection {
  padding: 8rem 2rem;
}
.collection-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.collection-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 4rem;
}
.watches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 2px;
}

/* Watch Card */
.watch-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #0f0d0b;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
  overflow: hidden;
}
.watch-card:hover { border-color: rgba(201,169,110,0.35); }
.watch-image-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: #1a1610;
}
.watch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.watch-card:hover .watch-img { transform: scale(1.04); }
.watch-info {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}
.watch-number {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.watch-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1.2;
}
.watch-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.8;
}
.watch-spec {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.watch-spec span {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.footer-dates {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.footer-copy {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  font-style: italic;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  header { padding: 1.2rem 1.5rem; }
  nav { gap: 1.5rem; }
  .story-inner { grid-template-columns: 1fr; }
  .story-line { flex-direction: row; min-width: unset; }
  .timeline-bar { width: 80px; height: 1px; background: linear-gradient(to right, var(--gold), var(--gold-dim)); }
  .watches-grid { grid-template-columns: 1fr; }
  .watch-card { grid-template-columns: 1fr; }
  .watch-image-wrap { aspect-ratio: 4/3; }
}
