/* ═══════════════════════════════════════════════════════════
   CHRONOS — Design System
   Palette: Noir Editorial + Gold Accents
   Fonts: Cormorant Garamond (display) + Syne (UI) + Space Mono (data)
═══════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --black:       #080808;
  --black-2:     #111111;
  --black-3:     #1a1a1a;
  --black-4:     #242424;
  --grey-dark:   #333333;
  --grey-mid:    #666666;
  --grey-light:  #999999;
  --cream:       #E8E4DF;
  --cream-2:     #F2EDE8;
  --gold:        #C8A96E;
  --gold-light:  #E2C98A;
  --gold-dark:   #9A7A45;
  --white:       #FAFAFA;
  --blue-accent: #4A7FA5;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Syne', sans-serif;
  --font-mono:    'Space Mono', monospace;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.87, 0, 0.13, 1);

  --nav-h: 80px;
  --section-pad: clamp(80px, 10vw, 140px);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-ui);
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, canvas { display: block; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Custom Cursor ──────────────────────────────────────── */
.cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; mix-blend-mode: difference; }
.cursor-dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease-out), width 0.3s var(--ease-out), height 0.3s var(--ease-out);
}
.cursor-ring {
  position: absolute;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-out), width 0.4s var(--ease-out), height 0.4s var(--ease-out), opacity 0.3s;
}
body.cursor-hover .cursor-dot { width: 10px; height: 10px; }
body.cursor-hover .cursor-ring { width: 60px; height: 60px; opacity: 0.4; }

/* ── Loader ─────────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: var(--font-ui);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--white);
  margin-bottom: 2rem;
}
.loader-bar {
  width: 200px; height: 1px;
  background: var(--grey-dark);
  margin: 0 auto 1rem;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 0.1s linear;
}
.loader-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--grey-mid);
  text-transform: uppercase;
}

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  z-index: 1000;
  transition: background 0.4s, backdrop-filter 0.4s, border-bottom 0.4s;
}
.nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,169,110,0.15);
}
.nav-logo { display: flex; flex-direction: column; gap: 2px; }
.nav-logo-text {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--white);
  line-height: 1;
}
.nav-logo-sub {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.nav-links {
  display: flex; gap: 2.5rem;
  align-items: center;
}
.nav-link {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-light);
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 1.5rem; }
.btn-reserve {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.6rem 1.4rem;
  transition: background 0.3s, transform 0.2s;
}
.btn-reserve:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:first-child { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:last-child  { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  transition: color 0.3s;
}
.mobile-nav-link:hover { color: var(--gold); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.9rem 2rem;
  border: 1px solid var(--gold);
  transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,169,110,0.3); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary svg { width: 16px; height: 16px; }

.btn-ghost {
  display: inline-flex; align-items: center;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-light);
  border-bottom: 1px solid var(--grey-dark);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(200,169,110,0.4);
  padding: 0.9rem 2rem;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,169,110,0.05); }

.btn-card {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 0.4rem;
  transition: gap 0.3s, color 0.3s;
}
.btn-card:hover { gap: 0.8rem; color: var(--gold-light); }

.btn-full { width: 100%; justify-content: center; }

/* ── Section Shared ─────────────────────────────────────── */
.section-label {
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.section-label.centered { justify-content: center; }
.label-line {
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* Reveal animation */
.reveal-text { opacity: 0; transform: translateY(40px); }
.reveal-text.revealed { opacity: 1; transform: translateY(0); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(8,8,8,0.2) 0%, rgba(8,8,8,0.85) 70%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
  max-width: 700px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0; transform: translateX(-20px);
  animation: fadeSlideIn 0.8s 1.2s var(--ease-out) forwards;
}
.eyebrow-line { display: block; width: 30px; height: 1px; background: var(--gold); }
.eyebrow-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  display: flex; flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 2rem;
}
.hero-title-line {
  display: block;
  opacity: 0; transform: translateY(60px);
  animation: heroLineIn 0.9s var(--ease-out) forwards;
}
.hero-title-line:nth-child(1) { animation-delay: 1.4s; }
.hero-title-line:nth-child(2) { animation-delay: 1.6s; color: var(--gold); font-style: italic; }
.hero-title-line:nth-child(3) { animation-delay: 1.8s; }

.hero-subtitle {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--grey-light);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeSlideIn 0.8s 2s var(--ease-out) forwards;
}
.hero-cta {
  display: flex; align-items: center; gap: 2rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideIn 0.8s 2.2s var(--ease-out) forwards;
}
.hero-scroll-indicator {
  position: absolute; bottom: 2.5rem; left: clamp(1.5rem, 6vw, 6rem);
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  z-index: 2;
  opacity: 0;
  animation: fadeSlideIn 0.8s 2.5s var(--ease-out) forwards;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero-scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-mid);
  writing-mode: vertical-rl;
}
.hero-stats {
  position: absolute; bottom: 2.5rem; right: clamp(1.5rem, 6vw, 6rem);
  display: flex; align-items: center; gap: 2rem;
  z-index: 2;
  opacity: 0;
  animation: fadeSlideIn 0.8s 2.5s var(--ease-out) forwards;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.stat-divider { width: 1px; height: 40px; background: var(--grey-dark); }

/* ── Ticker ──────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: var(--black-3);
  border-top: 1px solid rgba(200,169,110,0.2);
  border-bottom: 1px solid rgba(200,169,110,0.2);
  padding: 0.9rem 0;
}
.ticker-track {
  display: flex; gap: 3rem;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.ticker-dot { color: var(--gold) !important; }

/* ── Collections ─────────────────────────────────────────── */
.collections {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 4rem);
  background: var(--black);
}
.section-header {
  max-width: 600px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.collections-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5px;
  background: var(--black-3);
  border: 1px solid var(--black-3);
}
.watch-card {
  background: var(--black-2);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out);
  position: relative;
}
.watch-card:hover { z-index: 2; }
.watch-card--featured { grid-row: span 1; }
.watch-card-canvas-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: radial-gradient(ellipse at center, var(--black-3) 0%, var(--black) 100%);
}
.watch-canvas { width: 100%; height: 100%; }
.watch-card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.4s;
}
.glow--gold { background: radial-gradient(ellipse at center, rgba(200,169,110,0.12) 0%, transparent 70%); }
.glow--blue { background: radial-gradient(ellipse at center, rgba(74,127,165,0.12) 0%, transparent 70%); }
.watch-card:hover .watch-card-glow { opacity: 2; }
.watch-card-info { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }
.watch-card-meta { display: flex; align-items: center; gap: 0.75rem; }
.watch-ref {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--grey-mid);
}
.watch-badge {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 2px 8px;
}
.watch-badge--gold { background: var(--gold-light); }
.watch-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
}
.watch-desc {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--grey-mid);
  flex: 1;
}
.watch-specs {
  display: flex; flex-direction: column; gap: 0.4rem;
  padding: 1rem 0;
  border-top: 1px solid var(--black-4);
  border-bottom: 1px solid var(--black-4);
}
.spec { display: flex; justify-content: space-between; align-items: center; }
.spec-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-dark);
}
.spec-val {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--grey-light);
}
.watch-card-footer { display: flex; justify-content: space-between; align-items: center; }
.watch-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
}
.collections-cta { text-align: center; margin-top: 3rem; }

/* ── Showcase ────────────────────────────────────────────── */
.showcase {
  position: relative;
  padding: var(--section-pad) clamp(1.5rem, 5vw, 4rem);
  background: var(--black-2);
  overflow: hidden;
}
.showcase-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  position: relative; z-index: 2;
}
.showcase-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--grey-mid);
  margin: 1.5rem 0;
}
.showcase-controls { display: flex; gap: 2rem; margin-bottom: 2rem; }
.control-hint {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--grey-mid);
}
.control-hint svg { color: var(--gold); flex-shrink: 0; }
.showcase-canvas-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 560px;
  margin: 0 auto;
}
.showcase-main-canvas { width: 100%; height: 100%; border-radius: 50%; }
.showcase-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.15);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 4s ease-in-out infinite;
}
.showcase-ring--1 { width: 105%; height: 105%; animation-delay: 0s; }
.showcase-ring--2 { width: 115%; height: 115%; animation-delay: 0.8s; border-color: rgba(200,169,110,0.08); }
.showcase-ring--3 { width: 128%; height: 128%; animation-delay: 1.6s; border-color: rgba(200,169,110,0.04); }
.showcase-label-top, .showcase-label-bottom {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.showcase-label-top { top: -2rem; }
.showcase-label-bottom { bottom: -2rem; }

/* ── Craftsmanship ───────────────────────────────────────── */
.craftsmanship {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 4rem);
  background: var(--black);
}
.craft-header { max-width: 500px; margin-bottom: clamp(3rem, 6vw, 5rem); }
.craft-steps { display: flex; flex-direction: column; gap: 0; }
.craft-step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--black-3);
  position: relative;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.craft-step.visible { opacity: 1; transform: translateY(0); }
.craft-step--reverse { grid-template-columns: 80px 1fr 1fr; }
.craft-step--reverse .craft-step-visual { order: 3; }
.craft-step--reverse .craft-step-content { order: 2; }
.craft-step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--black-3);
  line-height: 1;
  user-select: none;
}
.craft-step-visual {
  aspect-ratio: 4/3;
  background: var(--black-2);
  border: 1px solid var(--black-4);
  overflow: hidden;
  position: relative;
}
.craft-canvas { width: 100%; height: 100%; }
.craft-step-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}
.craft-step-content p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--grey-mid);
}

/* ── Features ────────────────────────────────────────────── */
.features {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 4rem);
  background: var(--black-2);
}
.features-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.features-intro {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--grey-mid);
  margin: 1.5rem 0 2.5rem;
}
.features-right { display: flex; flex-direction: column; gap: 0; }
.feature-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--black-4);
  opacity: 0; transform: translateX(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.feature-item.visible { opacity: 1; transform: translateX(0); }
.feature-item:nth-child(1) { transition-delay: 0s; }
.feature-item:nth-child(2) { transition-delay: 0.1s; }
.feature-item:nth-child(3) { transition-delay: 0.2s; }
.feature-item:nth-child(4) { transition-delay: 0.3s; }
.feature-icon { color: var(--gold); padding-top: 4px; }
.feature-icon svg { width: 36px; height: 36px; }
.feature-text h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.feature-text p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--grey-mid);
}

/* ── About ───────────────────────────────────────────────── */
.about {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 4rem);
  background: var(--black);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--black-2);
  border: 1px solid var(--black-4);
  overflow: hidden;
}
.about-canvas { width: 100%; height: 100%; }
.about-visual-label {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  display: flex; flex-direction: column; gap: 4px;
}
.about-visual-label span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.about-text { display: flex; flex-direction: column; gap: 1.25rem; margin: 1.5rem 0 2.5rem; }
.about-text p { font-size: 0.9rem; line-height: 1.75; color: var(--grey-mid); }
.about-credentials {
  display: flex; gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--black-3);
}
.credential { display: flex; flex-direction: column; gap: 4px; }
.credential-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.credential-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 4rem);
  background: var(--black-2);
  overflow: hidden;
}
.testimonials-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.testimonials-track {
  position: relative;
  overflow: hidden;
  margin: 3rem 0 2rem;
}
.testimonial {
  display: none;
  flex-direction: column; gap: 1.5rem;
  animation: fadeIn 0.5s var(--ease-out);
}
.testimonial.active { display: flex; }
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
}
.testimonial cite {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}
.testimonials-nav { display: flex; align-items: center; justify-content: center; gap: 1.5rem; }
.testi-btn {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--grey-mid);
  transition: color 0.3s;
  padding: 0.5rem;
}
.testi-btn:hover { color: var(--gold); }
.testi-dots { display: flex; gap: 0.5rem; }
.testi-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grey-dark);
  transition: background 0.3s, transform 0.3s;
}
.testi-dot.active { background: var(--gold); transform: scale(1.3); }

/* ── Contact ─────────────────────────────────────────────── */
.contact {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 4rem);
  background: var(--black);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-left p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--grey-mid);
  margin: 1.5rem 0 2.5rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail { display: flex; flex-direction: column; gap: 4px; }
.contact-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-detail span:last-child {
  font-size: 0.88rem;
  color: var(--grey-light);
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black-2);
  border: 1px solid var(--black-4);
  color: var(--cream);
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-dark); }
.form-group select { color: var(--cream); }
.form-group select option { background: var(--black-2); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--black-2);
  border-top: 1px solid var(--black-4);
  padding: 4rem clamp(1.5rem, 5vw, 4rem) 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--black-4);
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: var(--font-ui);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--grey-mid);
}
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a {
  font-size: 0.85rem;
  color: var(--grey-mid);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--grey-dark);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--grey-dark);
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--grey-mid); }

/* ── Keyframes ───────────────────────────────────────────── */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroLineIn {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.7); }
}
@keyframes ringPulse {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.5; transform: translate(-50%, -50%) scale(1.02); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotateX(0deg); }
  50%       { transform: translateY(-12px) rotateX(3deg); }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .watch-card--featured { grid-column: span 2; flex-direction: row; }
  .watch-card--featured .watch-card-canvas-wrap { flex: 1; aspect-ratio: auto; min-height: 300px; }
  .watch-card--featured .watch-card-info { flex: 1; }
  .craft-step { grid-template-columns: 60px 1fr 1fr; gap: 2rem; }
  .features-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 500px; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .btn-reserve { display: none; }
  .nav-hamburger { display: flex; }
  .collections-grid { grid-template-columns: 1fr; }
  .watch-card--featured { flex-direction: column; }
  .watch-card--featured .watch-card-canvas-wrap { aspect-ratio: 1/1; }
  .craft-step { grid-template-columns: 1fr; gap: 1.5rem; }
  .craft-step-number { display: none; }
  .craft-step--reverse .craft-step-visual { order: unset; }
  .craft-step--reverse .craft-step-content { order: unset; }
  .showcase-content { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .about-credentials { flex-wrap: wrap; gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.8rem, 12vw, 4rem); }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── Selection ───────────────────────────────────────────── */
::selection { background: rgba(200,169,110,0.25); color: var(--white); }