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

/* ===== CURSOR ===== */
.cur {
  position: fixed; width: 8px; height: 8px;
  border-radius: 50%; background: #f5f0e8;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cur-ring {
  position: fixed; width: 36px; height: 36px;
  border-radius: 50%; border: 1px solid rgba(245,240,232,0.4);
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
}

/* ===== TOKENS ===== */
:root {
  --gold: #c9a45a;
  --dark: #1a1612;
  --cream: #f5f0e8;
  --cream2: #ede8de;
  --muted: #8a7f72;
  --border: rgba(26,22,18,0.1);
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; padding: 1.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(245,240,232,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem; color: var(--dark);
}
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
  color: var(--muted); font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--dark); }
.nav-wa {
  background: var(--dark); color: var(--cream);
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.55rem 1.25rem;
  border-radius: 3px; transition: opacity 0.2s;
}
.nav-wa:hover { opacity: 0.85; }

/* ===== HERO ===== */
.hero {
  height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 3rem;
}
.hero-content { max-width: 700px; }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1493256338651-d82f7acb2b38?w=2000&q=90&auto=format');
  background-size: cover; background-position: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,22,18,0.9) 0%, rgba(26,22,18,0.35) 50%, rgba(26,22,18,0.1) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-tag {
  font-size: 0.65rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(245,240,232,0.5);
  margin-bottom: 1.5rem; overflow: hidden; display: block;
}
.hero-tag span { display: block; }
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-style: italic; font-size: clamp(4rem, 7vw, 7.5rem);
  line-height: 1; color: #f5f0e8; margin-bottom: 1.75rem;
}
.hero h1 .ln { overflow: hidden; display: block; }
.hero h1 .ln span { display: block; }
.italic { font-style: italic; color: var(--gold) !important; }
.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: rgba(245,240,232,0.55); max-width: 460px;
  line-height: 1.8; font-weight: 300;
  margin-bottom: 2.5rem; overflow: hidden;
}
.hero-sub span { display: block; }
.hero-btns { overflow: hidden; }
.hero-btns span { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn-gold {
  display: inline-block; background: var(--gold); color: var(--dark);
  padding: 0.9rem 2.2rem; border-radius: 3px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: none;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
.btn-gold:hover { transform: scale(1.05); }
.btn-ghost {
  display: inline-block; background: transparent;
  color: rgba(245,240,232,0.65);
  border: 1px solid rgba(245,240,232,0.25);
  padding: 0.9rem 2.2rem; border-radius: 3px;
  font-size: 0.78rem; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: none;
  transition: border-color 0.2s;
}
.btn-ghost:hover { border-color: rgba(245,240,232,0.65); }
.hero-scroll {
  position: absolute; bottom: 2.5rem; right: 3rem; z-index: 2;
  display: flex; align-items: center; gap: 0.75rem;
  color: rgba(245,240,232,0.3);
  font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-line { width: 40px; height: 1px; background: rgba(245,240,232,0.2); }

/* ===== SERVICIOS ===== */
.servicios {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.serv-item {
  background: var(--cream); padding: 2.5rem 2rem;
  transition: background 0.2s;
}
.serv-item:hover { background: var(--cream2); }
.serv-ico { font-size: 1.5rem; margin-bottom: 1rem; }
.serv-name {
  font-family: 'DM Serif Display', serif;
  font-style: italic; font-size: 1.2rem;
  color: var(--dark); margin-bottom: 0.4rem;
}
.serv-desc {
  font-size: 0.83rem; color: var(--muted);
  line-height: 1.65; font-weight: 300; margin-bottom: 1rem;
}
.serv-price {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; color: var(--gold);
}

/* ===== SOBRE ===== */
.sobre { display: grid; grid-template-columns: 1fr 1fr; }
.sobre-img { aspect-ratio: 1/1; overflow: hidden; }
.sobre-img-inner {
  width: 100%; height: 100%;
  background-image: url('https://images.unsplash.com/photo-1621605815971-fbc98d665033?w=900&q=85&auto=format');
  background-size: cover; background-position: center;
  transition: transform 0.8s ease;
}
.sobre-img:hover .sobre-img-inner { transform: scale(1.03); }
.sobre-text {
  padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--cream2);
}
.sec-label {
  display: block; font-size: 0.65rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.5rem;
}
.sec-title {
  font-family: 'DM Serif Display', serif;
  font-style: italic; font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  line-height: 0.95; color: var(--dark); margin-bottom: 1.5rem;
}
.sec-title .w { overflow: hidden; display: inline-block; margin-right: 0.08em; }
.sec-title .w span { display: block; }
.sec-body {
  font-size: 0.95rem; color: #6b6154;
  line-height: 1.85; font-weight: 300;
}
.sobre-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem; margin-top: 2rem;
}
.sstat-n {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; color: var(--gold); line-height: 1;
}
.sstat-l {
  font-size: 0.72rem; color: var(--muted);
  margin-top: 4px; letter-spacing: 0.06em; text-transform: uppercase;
}

/* ===== GALERÍA ===== */
.galeria { padding: 6rem 3rem; max-width: 1300px; margin: 0 auto; }
.gal-title {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  line-height: 0.95; color: var(--dark); margin-bottom: 3rem;
}
.gal-title .w { overflow: hidden; display: inline-block; margin-right: 0.08em; }
.gal-title .w span { display: block; }
.gal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 8px;
}
.gal-item:nth-child(6) .gal-inner {
  background-image: url('https://images.unsplash.com/photo-1493256338651-d82f7acb2b38?w=800&q=85&auto=format') !important;
}
.gal-item { overflow: hidden; border-radius: 3px; position: relative; }
.gal-item.tall { grid-row: span 2; }
.gal-inner {
  width: 100%; height: 100%;
  background-image: var(--img);
  background-size: cover; background-position: center;
  transition: transform 0.7s ease;
}
.gal-item:hover .gal-inner { transform: scale(1.05); }

/* ===== MARQUEE ===== */
.mq-wrap {
  overflow: hidden; padding: 3.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--cream2);
}
.mq-track { display: flex; gap: 2rem; white-space: nowrap; will-change: transform; }
.mq-item {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: clamp(2rem, 4vw, 3.5rem);
  opacity: 0.12; flex-shrink: 0; color: var(--dark);
}
.mq-item.hi { opacity: 1; color: var(--gold); }

/* ===== TESTIMONIOS ===== */
.testis { padding: 6rem 3rem; max-width: 1100px; margin: 0 auto; }
.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.testi {
  background: var(--cream2); border-radius: 4px;
  padding: 2rem; transition: background 0.2s;
}
.testi:hover { background: #e5dfd4; }
.testi-stars { color: var(--gold); letter-spacing: 0.1em; margin-bottom: 1rem; font-size: 0.85rem; }
.testi-text {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 1rem; color: var(--dark); line-height: 1.7; margin-bottom: 1.25rem;
}
.testi-author { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* ===== CTA ===== */
.cta-section {
  position: relative; overflow: hidden;
  min-height: 72vh; display: flex;
  align-items: center; justify-content: center;
  text-align: center; padding: 6rem 2rem;
}
.cta-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1605497788044-5a32c7078486?w=2000&q=85&auto=format');
  background-size: cover; background-position: center;
  will-change: transform;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: rgba(26,22,18,0.82);
}
.cta-content { position: relative; z-index: 2; }
.cta-tag {
  font-size: 0.65rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(245,240,232,0.4);
  margin-bottom: 1.5rem; display: block;
}
.cta-title {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.88; color: #f5f0e8; margin-bottom: 1.5rem;
}
.cta-title .w { overflow: visible; display: inline-block; margin: 0 0.05em; }
.cta-title .w span { display: block; }
.cta-sub {
  font-size: 1rem; color: rgba(245,240,232,0.45);
  margin-bottom: 2rem; font-weight: 300;
}
.cta-info {
  display: flex; gap: 2rem; justify-content: center;
  flex-wrap: wrap; margin-top: 1.5rem;
}
.cta-info span {
  font-size: 0.73rem; color: rgba(245,240,232,0.35);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ===== FOOTER ===== */
footer {
  padding: 2.5rem 3rem; background: var(--cream2);
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; color: var(--dark);
}
footer p { font-size: 0.75rem; color: var(--muted); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-size: 0.72rem; color: var(--muted);
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 0 1.5rem 4.5rem; }
  .servicios { grid-template-columns: 1fr 1fr; }
  .sobre { grid-template-columns: 1fr; }
  .sobre-text { padding: 3rem 1.5rem; }
  .galeria, .testis { padding: 4rem 1.5rem; }
  .gal-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-item.tall { grid-row: span 1; }
  .gal-inner { min-height: 220px; }
  .testi-grid { grid-template-columns: 1fr; }
  footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
}
@media (max-width: 500px) {
  .servicios { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; }
}