/* =========================================
   SmartWatches.fr — Feuille de styles
   ========================================= */

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

:root {
  --bg: #080a0e;
  --surface: #0e1117;
  --surface2: #151820;
  --border: rgba(255,255,255,0.07);
  --text: #e8eaf0;
  --muted: #6b7280;
  --accent: #c9a84c;
  --accent2: #e8c96a;
  --accent-dim: rgba(201,168,76,0.15);
  --red: #e05a5a;
  --blue: #4a9eff;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ---- CURSOR ---- */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s;
}
body:hover .cursor-ring { opacity: 1; }
a:hover ~ .cursor, button:hover ~ .cursor { width: 20px; height: 20px; }

/* ---- NOISE OVERLAY ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(8,10,14,0.85);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  transition: background 0.25s, transform 0.2s;
}
.nav-cta:hover { background: var(--accent2); transform: translateY(-1px); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
  gap: 48px;
}
.hero::after {
  content: '';
  position: absolute;
  top: 10%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.1);opacity:0.7} }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--accent);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-desc {
  margin-top: 28px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 44px;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}
.btn-primary {
  padding: 14px 36px;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.3s;
}
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.25);
}
.btn-ghost {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s, gap 0.2s;
  font-family: 'Outfit', sans-serif;
}
.btn-ghost:hover { color: var(--accent); gap: 16px; }
.btn-ghost::after { content: '→'; font-size: 1rem; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1.2s 0.6s forwards;
}
.watch-showcase {
  position: relative;
  width: 340px; height: 340px;
}
.watch-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
  animation: spin 20s linear infinite;
}
.watch-ring::before {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.watch-ring-2 {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px dashed rgba(201,168,76,0.1);
  animation: spin 30s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }

.watch-face {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 220px; height: 240px;
  background: linear-gradient(135deg, #1a1f2e 0%, #0e1117 60%, #1a1f2e 100%);
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.04),
    0 0 0 8px rgba(201,168,76,0.1),
    0 40px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
}
.watch-face::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 100%);
  border-radius: 32px 32px 0 0;
}
.watch-time {
  font-family: 'DM Mono', monospace;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  z-index: 1;
}
.watch-date {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  z-index: 1;
}
.watch-icons {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  z-index: 1;
}
.watch-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}
.watch-band-top, .watch-band-bottom {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 60px;
  background: linear-gradient(to bottom, #1e2230, #141720);
  border: 1px solid rgba(255,255,255,0.06);
}
.watch-band-top  { top: -28px;    height: 32px; border-radius: 4px 4px 0 0; }
.watch-band-bottom { bottom: -28px; height: 32px; border-radius: 0 0 4px 4px; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 0.9s 1.1s forwards;
}
.stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.stat-val span { color: var(--accent); }
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ---- KEYFRAMES ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ---- TICKER ---- */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: var(--surface);
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.ticker-item::after {
  content: '◆';
  color: var(--accent);
  font-size: 0.5rem;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- SECTION COMMONS ---- */
section { position: relative; z-index: 2; }
.section-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::after { content: ''; flex: 1; max-width: 48px; height: 1px; background: var(--accent); opacity: 0.5; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
}
.section-title em { font-style: italic; color: var(--accent); }
.section-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 560px;
  margin-top: 16px;
}

/* ---- FEATURES ---- */
.features { padding: 120px 48px; background: var(--surface); }
.features-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 80px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-card {
  background: var(--surface2);
  padding: 40px 36px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }
.feature-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 24px;
}
.feature-icon { font-size: 2rem; margin-bottom: 20px; display: block; }
.feature-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.feature-text { font-size: 0.88rem; line-height: 1.75; color: var(--muted); }

/* ---- PRODUCTS ---- */
.products { padding: 120px 48px; }
.products-header { text-align: center; margin-bottom: 80px; }
.products-header .section-tag { justify-content: center; }
.products-header .section-tag::after { display: none; }
.products-header .section-desc { margin: 16px auto 0; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.product-card:hover {
  border-color: rgba(201,168,76,0.25);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.1);
}
.product-card.featured {
  grid-row: span 2;
  background: linear-gradient(160deg, #151820 0%, #1a1f2e 100%);
  border-color: rgba(201,168,76,0.2);
}
.product-visual {
  height: 200px;
  background: linear-gradient(135deg, #0e1117 0%, #1a1f2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card.featured .product-visual { height: 320px; }
.product-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--accent-dim) 0%, transparent 70%);
}
.product-watch-mini {
  width: 100px; height: 110px;
  background: linear-gradient(135deg, #1e2535 0%, #0e1117 100%);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  z-index: 1;
}
.product-card.featured .product-watch-mini { width: 140px; height: 155px; border-radius: 28px; }
.mini-time {
  font-family: 'DM Mono', monospace;
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 300;
}
.product-card.featured .mini-time { font-size: 1.8rem; }
.mini-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.5rem;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.mini-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.product-info { padding: 28px; }
.product-brand {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.product-card.featured .product-name { font-size: 2rem; }
.product-desc { font-size: 0.85rem; line-height: 1.65; color: var(--muted); margin-bottom: 20px; }
.product-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.tag {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 4px 12px;
  transition: color 0.2s, border-color 0.2s;
}
.product-card:hover .tag { color: var(--accent); border-color: rgba(201,168,76,0.3); }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
}
.product-price span { font-size: 0.85rem; color: var(--muted); font-family: 'Outfit', sans-serif; }
.btn-view {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: none;
  border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 20px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: background 0.2s, color 0.2s;
}
.btn-view:hover { background: var(--accent); color: var(--bg); }

/* ---- COMPARISON ---- */
.comparison { padding: 120px 48px; background: var(--surface); }
.comparison-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.spec-table { width: 100%; border-collapse: collapse; margin-top: 40px; }
.spec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  align-items: center;
  transition: background 0.2s;
}
.spec-row:hover { background: rgba(201,168,76,0.03); }
.spec-key { font-size: 0.8rem; letter-spacing: 0.06em; color: var(--muted); }
.spec-val { font-family: 'DM Mono', monospace; font-size: 0.8rem; color: var(--text); text-align: right; }
.spec-val.highlight { color: var(--accent); }
.comparison-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.big-watch {
  width: 280px; height: 300px;
  background: linear-gradient(160deg, #1e2535 0%, #0d1019 100%);
  border-radius: 44px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 60px 100px rgba(0,0,0,0.7),
    0 0 0 6px rgba(255,255,255,0.03),
    0 0 80px rgba(201,168,76,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.big-watch::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 100%);
}
.big-watch-time {
  font-family: 'DM Mono', monospace;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.03em;
  z-index: 1;
}
.big-watch-date {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 1;
}
.big-watch-metrics { display: flex; gap: 20px; z-index: 1; margin-top: 8px; }
.metric { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.metric-val { font-family: 'DM Mono', monospace; font-size: 1rem; color: var(--accent); }
.metric-lbl { font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.big-watch-band {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 72px;
  background: linear-gradient(to bottom, #1e2535, #141820);
  border: 1px solid rgba(255,255,255,0.06);
}
.big-watch-band.top { top: -38px;    height: 42px; border-radius: 6px 6px 0 0; }
.big-watch-band.bot { bottom: -38px; height: 42px; border-radius: 0 0 6px 6px; }

/* ---- BRANDS ---- */
.brands { padding: 100px 48px; }
.brands-title {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 56px;
}
.brands-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.brand-item {
  padding: 20px 48px;
  border: 1px solid var(--border);
  border-left: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.06em;
  transition: color 0.3s, background 0.3s;
  cursor: default;
}
.brand-item:first-child { border-left: 1px solid var(--border); }
.brand-item:hover { color: var(--white); background: var(--surface); }

/* ---- GUIDE ---- */
.guide {
  padding: 120px 48px;
  background: linear-gradient(160deg, #0e1117 0%, #080a0e 100%);
}
.guide-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}
.guide-steps { display: flex; flex-direction: column; gap: 0; }
.guide-step {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  cursor: pointer;
  transition: padding-left 0.25s;
}
.guide-step:hover { padding-left: 8px; }
.step-num { font-family: 'DM Mono', monospace; font-size: 0.7rem; color: var(--accent); padding-top: 4px; }
.step-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: var(--white); margin-bottom: 8px; }
.step-text { font-size: 0.85rem; line-height: 1.7; color: var(--muted); }
.guide-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 48px;
  position: sticky;
  top: 120px;
}
.guide-checklist { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.check-item {
  display: flex;
  align-items: start;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.check-box {
  width: 20px; height: 20px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-box.done { background: var(--accent-dim); border-color: var(--accent); }
.check-box.done::after { content: '✓'; font-size: 0.65rem; color: var(--accent); }
.check-text { font-size: 0.88rem; line-height: 1.6; color: var(--muted); }
.check-text strong { color: var(--text); font-weight: 400; display: block; margin-bottom: 2px; }

/* ---- NEWSLETTER ---- */
.newsletter {
  padding: 120px 48px;
  text-align: center;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.newsletter-title em { font-style: italic; color: var(--accent); }
.newsletter-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 16px auto 48px;
  max-width: 480px;
  position: relative;
  z-index: 1;
}
.newsletter-form {
  display: flex;
  gap: 0;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.newsletter-input {
  flex: 1;
  padding: 16px 24px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s;
}
.newsletter-input:focus { border-color: rgba(201,168,76,0.4); }
.newsletter-input::placeholder { color: var(--muted); }
.newsletter-btn {
  padding: 16px 32px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
}
.newsletter-btn:hover { background: var(--accent2); }

/* ---- FOOTER ---- */
footer {
  padding: 80px 48px 48px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo span { color: var(--accent); }
.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.social-btn:hover { color: var(--accent); border-color: rgba(201,168,76,0.4); }
.footer-col-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 24px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.85rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  padding: 24px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.08em; color: var(--muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.75rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--accent); }

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); }

/* ---- LIVE CLOCK ---- */
#live-time { transition: opacity 0.2s; }

.footer-copy a {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  text-decoration: none;
}

.footer-copy a:hover {
  text-decoration: underline;
  opacity: 0.8;
}