/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; font-size: 16px; }
body {
  background: #f8f5ef;
  color: #1a1712;
  font-family: 'Cormorant Garamond', serif;
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }

/* ===== CURSOR ===== */
.cur {
  position: fixed; width: 6px; height: 6px; border-radius: 50%;
  background: #c9a84c; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
}
.cur-ring {
  position: fixed; width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.4); pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
}

/* ===== TOKENS ===== */
:root {
  --gold: #c9a84c;
  --dark: #1a1712;
  --cream: #f8f5ef;
  --cream2: #f0ebe0;
  --border: rgba(26,23,18,0.08);
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.75rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(248,245,239,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26,23,18,0.07);
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 1.4rem;
  letter-spacing: 0.35em; text-transform: uppercase; color: #1a1712;
}
.logo em { color: var(--gold); font-style: normal; }
.nav-links { display: flex; gap: 3rem; }
.nav-links a {
  font-family: 'DM Mono', monospace; font-size: 0.65rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(26,23,18,0.45); transition: color 0.2s;
}
.nav-links a:hover { color: #1a1712; }
.nav-cta {
  font-family: 'DM Mono', monospace; font-size: 0.65rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,168,76,0.4);
  padding: 0.55rem 1.5rem; transition: all 0.25s;
}
.nav-cta:hover { background: var(--gold); color: #f8f5ef; }

/* ===== HERO ===== */
.hero {
  height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column;
  justify-content: center; padding: 0 4rem 0 3rem;
  position: relative; z-index: 2;
  background: #f8f5ef;
}
.hero-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(26,23,18,0.35); margin-bottom: 2rem;
  display: flex; align-items: center; gap: 1rem; overflow: hidden;
}
.hero-eyebrow span { display: block; }
.gold-line { width: 40px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero h1 {
  font-weight: 300; font-style: italic;
  font-size: clamp(3.5rem, 5.5vw, 5.5rem);
  line-height: 1.05; letter-spacing: -0.01em;
  color: #1a1712; margin-bottom: 2rem;
}
.hero h1 .ln { overflow: hidden; display: block; }
.hero h1 .ln span { display: block; }
.hero h1 strong { font-weight: 600; font-style: normal; color: var(--gold); }
.hero-sub {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(26,23,18,0.55); max-width: 360px;
  line-height: 1.8; margin-bottom: 3rem; overflow: hidden;
}
.hero-sub span { display: block; }
.hero-btns { display: flex; gap: 1rem; align-items: center; }
.btn-dark {
  display: inline-block; background: #1a1712; color: #f8f5ef;
  padding: 1rem 2.5rem;
  font-family: 'DM Mono', monospace; font-size: 0.65rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: none; transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
.btn-dark:hover { transform: scale(1.03); }
.btn-outline {
  display: inline-block; background: transparent;
  color: rgba(26,23,18,0.55);
  border: 1px solid rgba(26,23,18,0.2);
  padding: 1rem 2.5rem;
  font-family: 'DM Mono', monospace; font-size: 0.65rem;
  letter-spacing: 0.14em; text-transform: uppercase; cursor: none;
}
.hero-bg-text {
  position: absolute; bottom: -2rem; right: -1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12rem; font-weight: 300; font-style: italic;
  color: rgba(201,168,76,0.04); line-height: 1;
  pointer-events: none; user-select: none; white-space: nowrap;
}

/* ===== HERO RIGHT ===== */
.hero-right {
  position: relative; overflow: hidden;
  background: url('https://images.unsplash.com/photo-1547996160-81dfa63595aa?w=1200&q=90&auto=format') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
}
.hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(10,8,5,0.5);
}

/* ===== RELOJ SVG ===== */
.watch-wrap {
  position: relative; width: 320px; height: 320px; z-index: 2;
}
.watch-face {
  width: 100%; height: 100%; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #2a2520, #0e0c09);
  border: 12px solid var(--gold);
  box-shadow: 0 0 60px rgba(201,168,76,0.15), inset 0 0 40px rgba(0,0,0,0.5);
  position: relative; display: flex; align-items: center; justify-content: center;
}
.watch-brand {
  position: absolute; top: 28%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(201,168,76,0.8);
}
.watch-sub {
  position: absolute; bottom: 32%;
  font-family: 'DM Mono', monospace;
  font-size: 0.5rem; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.25); text-transform: uppercase;
}
.hands { position: absolute; inset: 0; }
.hand { position: absolute; bottom: 50%; left: 50%; transform-origin: bottom center; }
.hand-hour {
  width: 3px; height: 90px; background: #f8f5ef;
  margin-left: -1.5px; border-radius: 2px 2px 0 0;
}
.hand-min {
  width: 2px; height: 120px; background: #f8f5ef;
  margin-left: -1px; border-radius: 2px 2px 0 0;
}
.hand-sec {
  width: 1px; height: 130px; background: var(--gold);
  margin-left: -0.5px;
}
.hand-sec::after {
  content: ''; position: absolute; bottom: -20px; left: -3px;
  width: 7px; height: 25px; background: var(--gold); border-radius: 2px;
}
.center-dot {
  position: absolute; width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); top: 50%; left: 50%;
  transform: translate(-50%, -50%); z-index: 10;
}
.num {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem; font-weight: 300; color: rgba(248,245,239,0.6);
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 3rem; z-index: 2;
  display: flex; align-items: center; gap: 0.75rem;
  color: rgba(26,23,18,0.3);
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-line { width: 40px; height: 1px; background: rgba(26,23,18,0.2); }

/* ===== STATS ===== */
.stats-band {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(26,23,18,0.1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item { padding: 2.5rem 2rem; text-align: center; background: #f8f5ef; }
.stat-n {
  font-size: 2.5rem; font-weight: 300; font-style: italic;
  color: #1a1712; line-height: 1;
}
.stat-gold { color: var(--gold); }
.stat-l {
  font-family: 'DM Mono', monospace; font-size: 0.6rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(26,23,18,0.35); margin-top: 6px;
}

/* ===== COLECCION ===== */
.coleccion { padding: 7rem 3rem; max-width: 1300px; margin: 0 auto; }
.sec-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(26,23,18,0.35); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1rem; overflow: hidden;
}
.sec-eyebrow span { display: block; }
.sec-title {
  font-weight: 300; font-style: italic;
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  line-height: 1; letter-spacing: -0.01em;
  color: #1a1712; margin-bottom: 4rem;
}
.sec-title .w { overflow: hidden; display: inline-block; margin-right: 0.08em; }
.sec-title .w span { display: block; }
.sec-title strong { font-weight: 600; font-style: normal; }
.col-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
}
.col-item {
  background: #f8f5ef; padding: 3rem 2.5rem;
  position: relative; overflow: hidden;
  transition: background 0.3s; cursor: none;
}
.col-item:hover { background: var(--cream2); }
.col-num {
  font-family: 'DM Mono', monospace; font-size: 0.6rem;
  letter-spacing: 0.15em; color: rgba(26,23,18,0.2);
  margin-bottom: 1.5rem;
}
.col-img {
  width: 100%; height: 200px;
  background-size: cover; background-position: center;
  border-radius: 2px; margin-bottom: 1.5rem;
  transition: transform 0.7s ease;
}
.col-item:hover .col-img { transform: scale(1.03); }
.col-name {
  font-size: 1.6rem; font-weight: 300; font-style: italic;
  color: #1a1712; margin-bottom: 0.5rem; line-height: 1;
}
.col-ref {
  font-family: 'DM Mono', monospace; font-size: 0.6rem;
  letter-spacing: 0.12em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 1rem;
}
.col-desc {
  font-size: 0.9rem; font-weight: 300;
  color: rgba(26,23,18,0.5); line-height: 1.7; margin-bottom: 2rem;
}
.col-cta {
  font-family: 'DM Mono', monospace; font-size: 0.6rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 0.5rem;
  transition: gap 0.2s;
}
.col-item:hover .col-cta { gap: 1rem; }

/* ===== ABOUT ===== */
.about {
  display: grid; grid-template-columns: 1fr 1fr;
  background: #1a1712;
}
.about-left {
  padding: 6rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.about-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(201,168,76,0.6); margin-bottom: 2rem;
  display: flex; align-items: center; gap: 1rem;
}
.about-title {
  font-weight: 300; font-style: italic;
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  line-height: 1.05; color: #f8f5ef; margin-bottom: 1.5rem;
}
.about-title .w { overflow: hidden; display: block; }
.about-title .w span { display: block; }
.about-body {
  font-size: 1rem; font-weight: 300;
  color: rgba(248,245,239,0.45);
  line-height: 1.85; margin-bottom: 1rem; overflow: hidden;
}
.about-body span { display: block; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; border-top: 1px solid rgba(248,245,239,0.08);
  padding-top: 2.5rem; margin-top: 2rem;
}
.astat-n {
  font-size: 2.5rem; font-weight: 300; font-style: italic;
  color: var(--gold); line-height: 1;
}
.astat-l {
  font-family: 'DM Mono', monospace; font-size: 0.6rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(248,245,239,0.25); margin-top: 6px;
}
.about-right {
  position: relative; overflow: hidden; min-height: 600px;
  background: url('https://images.unsplash.com/photo-1580480055273-228ff5388ef8?w=900&q=85&auto=format') center/cover no-repeat;
}
.about-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, #1a1712 0%, transparent 40%);
}
.about-badge {
  position: absolute; top: 2rem; right: 2rem;
  background: var(--gold); padding: 1.25rem 1.5rem; text-align: center;
}
.badge-year {
  font-size: 2rem; font-weight: 300; font-style: italic;
  color: #1a1712; line-height: 1; display: block;
}
.badge-label {
  font-family: 'DM Mono', monospace; font-size: 0.55rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(26,23,18,0.6); margin-top: 4px; display: block;
}

/* ===== SERVICIOS ===== */
.servicios { padding: 7rem 3rem; max-width: 1200px; margin: 0 auto; }
.serv-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border); margin-top: 4rem;
}
.serv-item {
  background: #f8f5ef; padding: 2.5rem 2rem; transition: background 0.2s;
}
.serv-item:hover { background: var(--cream2); }
.serv-ico {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 1.25rem;
}
.serv-name {
  font-size: 1.15rem; font-weight: 300; font-style: italic;
  color: #1a1712; margin-bottom: 0.5rem;
}
.serv-desc {
  font-family: 'DM Mono', monospace; font-size: 0.72rem;
  color: rgba(26,23,18,0.4); line-height: 1.65; font-weight: 300;
}

/* ===== MARQUEE ===== */
.mq-wrap {
  overflow: hidden; padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--cream2);
}
.mq-track { display: flex; gap: 0; white-space: nowrap; will-change: transform; }
.mq-item {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300; font-style: italic;
  opacity: 0.15; flex-shrink: 0; padding: 0 2rem;
}
.mq-item.hi { opacity: 1; color: var(--gold); }

/* ===== TESTIMONIOS ===== */
.testis { padding: 7rem 3rem; background: #1a1712; }
.testis-inner { max-width: 1100px; margin: 0 auto; }
.testis-inner .sec-eyebrow { color: rgba(201,168,76,0.5); }
.testis-inner .sec-title { color: #f8f5ef; }
.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(248,245,239,0.06);
}
.testi {
  background: #1a1712; padding: 2.5rem 2rem;
  border-left: 1px solid rgba(248,245,239,0.06);
  transition: background 0.2s;
}
.testi:first-child { border-left: none; }
.testi:hover { background: #221e18; }
.testi-stars { color: var(--gold); letter-spacing: 0.1em; margin-bottom: 1rem; font-size: 0.85rem; }
.testi-text {
  font-size: 1.05rem; font-style: italic; font-weight: 300;
  color: rgba(248,245,239,0.6); line-height: 1.7; margin-bottom: 1.5rem;
}
.testi-author {
  font-family: 'DM Mono', monospace; font-size: 0.62rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(248,245,239,0.25);
}
.testi-piece {
  font-family: 'DM Mono', monospace; font-size: 0.6rem;
  letter-spacing: 0.1em; color: var(--gold);
  text-transform: uppercase; margin-top: 3px;
}

/* ===== CTA ===== */
.cta {
  position: relative; overflow: hidden;
  min-height: 85vh; display: grid;
  grid-template-columns: 1fr 1fr;
}
.cta-left {
  background: var(--gold); padding: 6rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.cta-bg-text {
  position: absolute; bottom: -3rem; left: -1rem;
  font-size: 14rem; font-weight: 300; font-style: italic;
  color: rgba(26,23,18,0.06); line-height: 1;
  pointer-events: none; user-select: none;
}
.cta-label {
  font-family: 'DM Mono', monospace; font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(26,23,18,0.5); margin-bottom: 2rem;
  position: relative; z-index: 1;
}
.cta-title {
  font-weight: 300; font-style: italic;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95; color: #1a1712;
  margin-bottom: 2rem; position: relative; z-index: 1;
}
.cta-title .ln { overflow: hidden; display: block; }
.cta-title .ln span { display: block; }
.cta-sub {
  font-size: 1rem; font-weight: 300;
  color: rgba(26,23,18,0.55); max-width: 360px;
  line-height: 1.75; margin-bottom: 2.5rem;
  position: relative; z-index: 1; overflow: hidden;
}
.cta-sub span { display: block; }
.btn-dark-cta {
  display: inline-block; background: #1a1712; color: #f8f5ef;
  padding: 1.1rem 2.5rem;
  font-family: 'DM Mono', monospace; font-size: 0.65rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: none; position: relative; z-index: 1;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
  align-self: flex-start;
}
.btn-dark-cta:hover { transform: scale(1.04); }
.cta-right {
  background: #1a1712; padding: 6rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.cta-info { display: flex; flex-direction: column; gap: 2rem; }
.cta-info-item {
  display: flex; align-items: flex-start; gap: 1.5rem;
  border-bottom: 1px solid rgba(248,245,239,0.06);
  padding-bottom: 2rem;
}
.cta-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.info-ico { font-size: 1.2rem; opacity: 0.5; flex-shrink: 0; margin-top: 0.2rem; }
.info-title { font-size: 1rem; font-style: italic; color: #f8f5ef; margin-bottom: 0.3rem; }
.info-desc {
  font-family: 'DM Mono', monospace; font-size: 0.68rem;
  color: rgba(248,245,239,0.3); line-height: 1.6;
}

/* ===== FOOTER ===== */
footer {
  padding: 2.5rem 3rem; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem; background: #f8f5ef;
}
.footer-logo {
  font-size: 1.2rem; font-weight: 300; letter-spacing: 0.3em;
  text-transform: uppercase; color: #1a1712;
}
.footer-logo em { color: var(--gold); font-style: normal; }
footer p {
  font-family: 'DM Mono', monospace; font-size: 0.6rem;
  letter-spacing: 0.08em; color: rgba(26,23,18,0.3); text-transform: uppercase;
}
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-family: 'DM Mono', monospace; font-size: 0.6rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(26,23,18,0.3); transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; height: auto; }
  .hero-left { padding: 7rem 1.5rem 4rem; }
  .hero-right { height: 60vw; min-height: 320px; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .coleccion, .servicios, .testis-inner { padding: 4rem 1.5rem; }
  .col-grid { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about-right { min-height: 300px; }
  .serv-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta { grid-template-columns: 1fr; }
  .cta-left, .cta-right { padding: 4rem 1.5rem; }
  footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
}
@media (max-width: 500px) {
  .serv-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr; }
}