/* ============================================
   AURUM — Luxury Timepieces
   Noir Gold × Luxury Editorial
   ============================================ */

:root {
  --black: #080808;
  --deep: #0D0D0D;
  --dark: #141414;
  --gray: #1C1C1C;
  --mid: #2A2A2A;
  --border: rgba(201,168,76,0.15);
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dim: rgba(201,168,76,0.4);
  --white: #F0EBE0;
  --off: #8A8070;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Syne', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
select { font-family: inherit; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ---- PARTICLES ---- */
.particles-canvas {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: 0.6;
}

/* ---- CURSOR ---- */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.2s, width 0.2s, height 0.2s;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 28px; height: 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.2s;
  opacity: 0.6;
}

/* ---- GOLD ACCENT ---- */
.gold { color: var(--gold); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: all 0.35s var(--ease);
  position: relative; overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease);
  z-index: 0;
}
.btn > * { position: relative; z-index: 1; }
.btn:hover::before { transform: translateX(0); }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-gold::before { background: var(--gold-light); }
.btn-gold:hover { color: var(--black); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-outline::before { background: rgba(201,168,76,0.08); }
.btn-outline:hover { border-color: var(--gold); }

/* ---- SECTION SHARED ---- */
.section-tag {
  font-family: var(--font-sans);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.28em; color: var(--gold);
  display: block; margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold); }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; gap: 3rem;
  padding: 1.8rem 5rem;
  transition: background 0.5s, padding 0.4s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  padding: 1.2rem 5rem;
  border-bottom-color: var(--border);
}
.nav-logo { margin-right: auto; }
.logo-text {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem; font-weight: 600;
  letter-spacing: 0.25em; color: var(--gold);
  line-height: 1;
}
.logo-sub {
  display: block;
  font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.3em; color: var(--off);
  margin-top: 2px;
}
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(240,235,224,0.5);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-cta {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.16em;
  padding: 9px 20px;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.nav-cta:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--gold); transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77,0,0.175,1);
  display: flex; align-items: center; justify-content: center;
  border-left: 1px solid var(--border);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.mob-link {
  font-family: var(--font-serif);
  font-size: 2.8rem; font-weight: 400;
  color: rgba(240,235,224,0.6);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.mob-link:hover, .mob-link.gold { color: var(--gold); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 7rem 5rem 5rem;
  position: relative; overflow: hidden;
  gap: 4rem;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img { opacity: 0.12; filter: grayscale(100%); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.95) 40%, rgba(8,8,8,0.7) 100%);
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.22em; color: var(--off);
}
.eyebrow-line {
  flex: 1; max-width: 40px; height: 1px;
  background: var(--gold-dim);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 400; line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
  display: flex; flex-direction: column;
}
.ht-line { display: block; overflow: hidden; }
.ht-italic { font-style: italic; color: rgba(240,235,224,0.5); font-size: 0.85em; }
.ht-gold { color: var(--gold); }
.hero-desc {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 300;
  color: var(--off); line-height: 1.8;
  max-width: 440px; margin-bottom: 2.5rem;
  font-style: italic;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-scroll-hint {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.62rem; letter-spacing: 0.2em;
  color: var(--off);
}
.scroll-line-anim {
  width: 40px; height: 1px;
  background: var(--border);
  position: relative; overflow: hidden;
}
.scroll-line-anim::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* HERO WATCH SHOWCASE */
.hero-watch-showcase {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 2rem;
}
.watch-3d-wrap {
  position: relative;
  width: 380px; height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.watch-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.watch-3d-img {
  width: 300px; height: 300px;
  object-fit: contain;
  border-radius: 50%;
  position: relative; z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(201,168,76,0.2));
  animation: watchFloat 4s ease-in-out infinite;
  transition: transform 0.1s;
}
@keyframes watchFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}
.watch-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid var(--gold-dim);
  animation: ringRotate linear infinite;
}
.watch-ring-1 { width: 340px; height: 340px; animation-duration: 20s; opacity: 0.4; }
.watch-ring-2 { width: 380px; height: 380px; animation-duration: 30s; animation-direction: reverse; opacity: 0.2; border-style: dashed; }
.watch-ring-3 { width: 420px; height: 420px; animation-duration: 45s; opacity: 0.1; }
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.watch-specs {
  display: flex; align-items: center; gap: 2rem;
  padding: 1.2rem 2rem;
  background: rgba(28,28,28,0.8);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.spec-item { display: flex; flex-direction: column; gap: 3px; text-align: center; }
.spec-val {
  font-family: var(--font-serif);
  font-size: 1.3rem; font-weight: 500;
  color: var(--gold); line-height: 1;
}
.spec-key {
  font-size: 0.58rem; letter-spacing: 0.15em;
  color: var(--off); text-transform: uppercase;
}
.spec-divider { width: 1px; height: 36px; background: var(--border); }

/* ---- TICKER ---- */
.ticker-strip {
  background: var(--gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 1rem 0;
  position: relative; z-index: 1;
}
.ticker-inner {
  display: flex; white-space: nowrap;
  animation: tickerScroll 35s linear infinite;
}
.ticker-inner span {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.22em; color: var(--off);
  padding: 0 2rem;
}
.gold-dot { color: var(--gold) !important; }
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- COLLECTION ---- */
.collection {
  padding: 9rem 5rem;
  background: var(--deep);
  position: relative; z-index: 1;
}
.collection-inner { max-width: 1300px; margin: 0 auto; }
.col-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: end;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.col-header-left h2 { margin-top: 0.5rem; }
.col-header-right p {
  font-family: var(--font-serif);
  font-size: 1rem; font-weight: 300;
  color: var(--off); line-height: 1.8;
  font-style: italic; margin-bottom: 1.5rem;
}
.col-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.col-filter {
  font-family: var(--font-sans);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.14em;
  padding: 7px 16px;
  border: 1px solid rgba(240,235,224,0.1);
  color: var(--off);
  transition: all 0.25s;
}
.col-filter:hover { border-color: var(--gold-dim); color: var(--gold); }
.col-filter.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

.watches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.watch-card--hero {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.watch-card {
  background: var(--gray);
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.watch-card:hover {
  border-color: var(--border);
  transform: translateY(-5px);
}
.watch-card.hidden { display: none; }
.wc-img-wrap {
  position: relative;
  height: 240px; overflow: hidden;
}
.watch-card--hero .wc-img-wrap { height: 380px; }
.wc-img-wrap img { transition: transform 0.7s var(--ease); }
.watch-card:hover .wc-img-wrap img { transform: scale(1.06); }
.wc-overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.75);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem;
  opacity: 0; transition: opacity 0.3s;
}
.watch-card:hover .wc-overlay { opacity: 1; }
.wc-price {
  font-family: var(--font-serif);
  font-size: 1.6rem; font-weight: 500;
  color: var(--gold);
}
.wc-btn {
  font-family: var(--font-sans);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.16em;
  padding: 9px 20px;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: all 0.25s;
}
.wc-btn:hover { background: var(--gold); color: var(--black); }
.wc-info { padding: 1.5rem; }
.wc-cat {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.22em; color: var(--gold);
  display: block; margin-bottom: 0.5rem;
}
.wc-info h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem; font-weight: 500;
  margin-bottom: 0.6rem; letter-spacing: 0.01em;
}
.wc-info p {
  font-family: var(--font-serif);
  font-size: 0.9rem; font-weight: 300;
  color: var(--off); line-height: 1.7;
  font-style: italic; margin-bottom: 1rem;
}
.wc-meta { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.wc-meta span {
  font-size: 0.6rem; letter-spacing: 0.12em;
  padding: 4px 10px;
  border: 1px solid var(--border);
  color: var(--off);
}

/* ---- FEATURED ---- */
.featured {
  padding: 9rem 5rem;
  background: var(--black);
  position: relative; z-index: 1;
}
.featured-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.featured-img-col { position: relative; }
.featured-img-frame {
  position: relative; height: 560px;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
  overflow: hidden;
}
.featured-img-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
  z-index: 1; pointer-events: none;
}
.featured-img-frame img { transition: transform 0.8s var(--ease); }
.featured-img-frame:hover img { transform: scale(1.04); }
.featured-img-badge {
  position: absolute; top: 2rem; right: -1rem;
  background: var(--gold);
  padding: 0.8rem 1.2rem;
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
  z-index: 2;
}
.featured-img-badge span:first-child {
  font-size: 0.55rem; font-weight: 700;
  letter-spacing: 0.2em; color: var(--black);
}
.featured-img-badge span:last-child {
  font-family: var(--font-serif);
  font-size: 1rem; font-weight: 600;
  color: var(--black);
}
.featured-img-secondary {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 180px; height: 180px;
  border: 2px solid var(--border);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.featured-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400; line-height: 1.1;
  margin: 0.8rem 0 1.5rem;
}
.featured-title em { font-style: italic; color: var(--gold); }
.featured-desc {
  font-family: var(--font-serif);
  font-size: 1rem; font-weight: 300;
  color: var(--off); line-height: 1.9;
  font-style: italic; margin-bottom: 2.5rem;
}
.featured-specs-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.fs-item {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 3px;
}
.fs-item:nth-child(even) { border-right: none; }
.fs-item:nth-last-child(-n+2) { border-bottom: none; }
.fs-label {
  font-size: 0.58rem; letter-spacing: 0.18em;
  color: var(--off); text-transform: uppercase;
}
.fs-val {
  font-family: var(--font-serif);
  font-size: 0.95rem; font-weight: 500;
  color: var(--white);
}
.featured-price-row {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
}
.fp-label {
  display: block;
  font-size: 0.6rem; letter-spacing: 0.18em;
  color: var(--off); margin-bottom: 4px;
}
.fp-price {
  font-family: var(--font-serif);
  font-size: 2rem; font-weight: 500;
  color: var(--gold);
}

/* ---- CRAFTSMANSHIP ---- */
.craft {
  position: relative; overflow: hidden;
  padding: 10rem 5rem;
  z-index: 1;
}
.craft-bg {
  position: absolute; inset: 0; z-index: 0;
}
.craft-bg img { opacity: 0.15; filter: grayscale(80%); }
.craft-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.6) 0%, rgba(8,8,8,0.85) 100%);
}
.craft-inner {
  position: relative; z-index: 1;
  max-width: 1300px; margin: 0 auto;
  text-align: center;
}
.craft-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400; line-height: 1.1;
  margin: 1rem 0 5rem;
}
.craft-title em { font-style: italic; color: var(--gold); }
.craft-pillars {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.pillar {
  padding: 3rem 2rem;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(201,168,76,0.04); }
.pillar-num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 500; color: var(--gold);
  line-height: 1; margin-bottom: 0.8rem;
}
.pillar-label {
  font-size: 0.72rem; letter-spacing: 0.12em;
  color: var(--off); line-height: 1.5;
}

/* ---- HERITAGE ---- */
.heritage {
  padding: 9rem 5rem;
  background: var(--deep);
  position: relative; z-index: 1;
}
.heritage-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7rem; align-items: center;
}
.heritage-text .section-title { margin: 0.5rem 0 1.5rem; }
.heritage-text p {
  font-family: var(--font-serif);
  font-size: 1rem; font-weight: 300;
  color: var(--off); line-height: 1.9;
  font-style: italic; margin-bottom: 1.2rem;
}
.heritage-text .btn { margin-top: 1rem; }
.heritage-visual { position: relative; }
.hv-main {
  height: 480px;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  overflow: hidden;
}
.hv-main img { transition: transform 0.7s var(--ease); }
.hv-main:hover img { transform: scale(1.04); }
.hv-secondary {
  position: absolute; bottom: -2rem; left: -2rem;
  width: 160px; height: 160px;
  border: 1px solid var(--border);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.hv-quote {
  position: absolute; top: 2rem; right: -1.5rem;
  max-width: 220px;
  background: var(--gray);
  border-left: 2px solid var(--gold);
  padding: 1.2rem 1.5rem;
}
.hv-quote blockquote {
  font-family: var(--font-serif);
  font-size: 0.85rem; font-weight: 300;
  font-style: italic; color: var(--off);
  line-height: 1.7;
}

/* ---- NEWSLETTER ---- */
.newsletter {
  padding: 9rem 5rem;
  background: var(--black);
  position: relative; z-index: 1;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.nl-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7rem; align-items: start;
  position: relative; z-index: 1;
}
.nl-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400; line-height: 1.1;
  margin: 0.5rem 0 1.2rem;
}
.nl-title em { font-style: italic; color: var(--gold); }
.nl-content > p {
  font-family: var(--font-serif);
  font-size: 1rem; font-weight: 300;
  color: var(--off); line-height: 1.8;
  font-style: italic; margin-bottom: 2rem;
}
.nl-perks { display: flex; flex-direction: column; gap: 0.7rem; }
.nl-perk {
  font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--off);
}
.nl-form { display: flex; flex-direction: column; gap: 1.2rem; }
.nl-field { display: flex; flex-direction: column; gap: 0.4rem; }
.nl-field label {
  font-size: 0.6rem; letter-spacing: 0.2em;
  color: var(--gold); text-transform: uppercase;
}
.nl-field input, .nl-field select {
  padding: 12px 16px;
  background: rgba(240,235,224,0.03);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 0.95rem; outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
.nl-field input::placeholder { color: rgba(240,235,224,0.2); }
.nl-field input:focus, .nl-field select:focus { border-color: var(--gold-dim); }
.nl-field select option { background: var(--gray); }
.nl-submit { width: 100%; justify-content: center; }
.nl-note {
  font-family: var(--font-serif);
  font-size: 0.75rem; font-style: italic;
  color: rgba(240,235,224,0.2); text-align: center;
}
.nl-success {
  display: none; padding: 1rem;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 0.85rem; font-style: italic;
  text-align: center; letter-spacing: 0.05em;
}
.nl-success.show { display: block; }

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 5rem 5rem 2.5rem;
  position: relative; z-index: 1;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem; margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 2rem; font-weight: 600;
  letter-spacing: 0.2em; color: var(--gold);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-family: var(--font-serif);
  font-size: 0.9rem; font-weight: 300;
  color: var(--off); line-height: 1.7;
  font-style: italic; max-width: 240px;
}
.footer-col { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col h5 {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.22em; color: var(--gold);
  margin-bottom: 0.3rem;
}
.footer-col a {
  font-family: var(--font-serif);
  font-size: 0.9rem; font-weight: 300;
  color: var(--off); transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between;
  font-size: 0.62rem; letter-spacing: 0.14em;
  color: rgba(240,235,224,0.2);
}

/* ---- REVEAL ---- */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; padding: 8rem 3rem 5rem; }
  .hero-watch-showcase { display: none; }
  .col-header { grid-template-columns: 1fr; gap: 2rem; }
  .watches-grid { grid-template-columns: repeat(2, 1fr); }
  .watch-card--hero { grid-column: auto; grid-row: auto; }
  .featured-inner { grid-template-columns: 1fr; gap: 4rem; }
  .featured-img-secondary { display: none; }
  .craft-pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(2) { border-right: none; }
  .pillar:nth-child(3) { border-right: 1px solid var(--border); }
  .pillar:nth-child(3), .pillar:nth-child(4) { border-top: 1px solid var(--border); }
  .heritage-inner { grid-template-columns: 1fr; gap: 4rem; }
  .hv-quote { display: none; }
  .nl-inner { grid-template-columns: 1fr; gap: 4rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav { padding: 1.2rem 1.5rem; }
  .nav.scrolled { padding: 0.9rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .collection { padding: 6rem 1.5rem; }
  .watches-grid { grid-template-columns: 1fr; }
  .featured { padding: 6rem 1.5rem; }
  .craft { padding: 6rem 1.5rem; }
  .craft-pillars { grid-template-columns: repeat(2, 1fr); }
  .heritage { padding: 6rem 1.5rem; }
  .newsletter { padding: 6rem 1.5rem; }
  .footer { padding: 4rem 1.5rem 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  .featured-price-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn { justify-content: center; }
  .craft-pillars { grid-template-columns: 1fr 1fr; }
  .featured-specs-grid { grid-template-columns: 1fr; }
  .fs-item { border-right: none !important; }
  .fs-item:last-child { border-bottom: none; }
}