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

:root {
  --bg:        #0a0a0a;
  --bg2:       #111111;
  --bg3:       #181818;
  --gold:      #c9a96e;
  --gold-lt:   #e2c98a;
  --gold-dk:   #9a7a48;
  --cream:     #f5f0eb;
  --muted:     #888880;
  --border:    rgba(201,169,110,.18);
  --font-head: 'Playfair Display', Georgia, serif;
  --font-sub:  'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor-dot {
  position: fixed; z-index: 9999; pointer-events: none;
  width: 8px; height: 8px; background: var(--gold);
  border-radius: 50%; transform: translate(-50%,-50%);
  transition: width .15s, height .15s;
  top: -100px; left: -100px;
}
.cursor-ring {
  position: fixed; z-index: 9998; pointer-events: none;
  width: 36px; height: 36px; border: 1px solid var(--gold);
  border-radius: 50%; transform: translate(-50%,-50%);
  transition: width .25s, height .25s, opacity .25s;
  opacity: .55;
  top: -100px; left: -100px;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 52px; height: 52px; opacity: 1; }
body:has(a:hover) .cursor-dot,
body:has(button:hover) .cursor-dot { width: 4px; height: 4px; }

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

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 1.4rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, backdrop-filter .4s, padding .4s;
}
nav.scrolled {
  background: rgba(10,10,10,.88);
  backdrop-filter: blur(18px);
  padding: 1rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: .02em;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--cream); opacity: .7;
  text-decoration: none; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
  transition: opacity .2s, color .2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-cta {
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold) !important; padding: .45rem 1.2rem;
  border-radius: 2px; opacity: 1 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--bg) !important; }
@media (max-width: 680px) {
  .nav-links { display: none; }
  nav { padding: 1.2rem 1.5rem; }
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 6rem 1.5rem 8rem;
  text-align: center;
}
#hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,.12) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%,-55%);
  pointer-events: none;
}

.particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; width: 2px; height: 2px;
  background: var(--gold); border-radius: 50%;
  animation: float linear infinite; opacity: 0;
}
@keyframes float {
  0%   { transform: translateY(100vh) translateX(0);   opacity: 0; }
  10%  { opacity: .5; }
  90%  { opacity: .3; }
  100% { transform: translateY(-10vh) translateX(30px); opacity: 0; }
}

.hero-content { position: relative; z-index: 2; }

.profile-ring {
  width: 160px; height: 160px; border-radius: 50%;
  padding: 3px;
  background: conic-gradient(var(--gold) 0deg, var(--gold-dk) 120deg, var(--gold-lt) 240deg, var(--gold) 360deg);
  margin: 0 auto 2rem;
  animation: ring-spin 8s linear infinite;
  box-shadow: 0 0 60px rgba(201,169,110,.25);
}
@keyframes ring-spin { to { transform: rotate(360deg); } }
.profile-ring img {
  width: 100%; height: 100%; border-radius: 50%;
  object-fit: cover; display: block;
  border: 3px solid var(--bg);
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: .72rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: .8rem; opacity: .9;
}

h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  font-weight: 600; line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: .5rem;
}
h1 em { font-style: italic; color: var(--gold); }

.hero-handle {
  font-family: var(--font-sub);
  font-size: 1rem; color: var(--muted);
  letter-spacing: .08em; margin-bottom: 1.5rem;
}

.gold-rule {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}

.hero-tagline {
  font-family: var(--font-sub);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-style: italic; color: var(--cream);
  opacity: .85; max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-badges {
  display: flex; gap: 2rem;
  justify-content: center; align-items: center;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.hero-badge { text-align: center; }
.hb-num {
  font-family: var(--font-head);
  font-size: 1.8rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hb-lbl {
  font-size: .68rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--muted);
  margin-top: .3rem;
}
.hb-div { width: 1px; height: 36px; background: var(--border); }

.hero-cta {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--gold); color: var(--bg);
  padding: .95rem 2.4rem; border-radius: 2px;
  text-decoration: none;
  font-size: .85rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  transition: background .2s, transform .2s;
}
.hero-cta:hover { background: var(--gold-lt); transform: translateY(-2px); }

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  opacity: .4; font-size: .68rem; letter-spacing: .15em; text-transform: uppercase;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:.4} 50%{opacity:.7} }
.scroll-hint svg { animation: bounce 1.6s ease-in-out infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(4px)} }

/* ── SECTIONS ── */
section { padding: 8rem 1.5rem; }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .8rem;
}
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.section-label.centered { justify-content: center; }
.section-label.centered::before { display: none; }

h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600; line-height: 1.2;
  margin-bottom: 1.5rem;
}
h2 em { font-style: italic; color: var(--gold); }

/* ── SOBRE MÍ ── */
#sobre { background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%); }

.sobre-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
@media (max-width: 760px) { .sobre-grid { grid-template-columns: 1fr; gap: 3rem; } }

.sobre-text p {
  font-family: var(--font-sub);
  font-size: 1.1rem; line-height: 1.9;
  color: var(--cream); opacity: .85; margin-bottom: 1.4rem;
}
.sobre-ig {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--gold); text-decoration: none;
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  border-bottom: 1px solid var(--border); padding-bottom: .2rem;
  transition: border-color .2s; margin-top: .5rem;
}
.sobre-ig:hover { border-color: var(--gold); }

.sobre-right { display: flex; flex-direction: column; gap: 1.5rem; }

.sobre-foto-img {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--border);
}

.sobre-badges { display: flex; flex-direction: column; gap: .75rem; }
.sobre-badge {
  background: var(--bg3); border: 1px solid var(--border);
  border-left: 3px solid var(--gold); padding: 1rem 1.25rem;
  transition: background .2s, transform .2s;
}
.sobre-badge:hover { background: #1e1e1e; transform: translateX(4px); }
.sb-title {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 600;
  color: var(--gold-lt); margin-bottom: .25rem;
}
.sb-sub { font-size: .8rem; color: var(--muted); line-height: 1.5; }

/* ── GALERÍA ── */
#galeria { background: var(--bg); }

.gallery-header { text-align: center; margin-bottom: 2.5rem; }
.gallery-header .section-label { justify-content: center; }
.gallery-header .section-label::before { display: none; }

.gallery-tabs {
  display: flex; gap: .5rem; justify-content: center;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.gallery-tab {
  background: transparent; border: 1px solid var(--border);
  color: var(--muted);
  padding: .5rem 1.25rem;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer; transition: all .2s;
  font-family: var(--font-body); font-weight: 400;
}
.gallery-tab.active,
.gallery-tab:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,.05); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
}
@media (max-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.gallery-item {
  position: relative; overflow: hidden; aspect-ratio: 1;
  background: var(--bg3);
}
.gallery-item.hidden { display: none; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,.65) 0%, rgba(10,10,10,.5) 100%);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .35s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { color: white; }

.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .55rem .75rem;
  background: linear-gradient(0deg, rgba(10,10,10,.85) 0%, transparent 100%);
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cream);
  transform: translateY(100%); transition: transform .3s ease;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ── SERVICIOS ── */
#servicios { background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%); }

.servicios-header { text-align: center; margin-bottom: 4rem; }
.servicios-header .section-label { justify-content: center; }
.servicios-header .section-label::before { display: none; }
.servicios-header p {
  font-family: var(--font-sub);
  font-size: 1.05rem; font-style: italic;
  color: var(--muted); max-width: 480px; margin: 0 auto;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-bottom: 3rem;
}
.servicio-card {
  background: var(--bg3); border: 1px solid var(--border);
  padding: 2.5rem 2rem; text-align: center;
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s;
  display: flex; flex-direction: column;
}
.servicio-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,.06) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.servicio-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.servicio-card:hover::before { opacity: 1; }

.sc-icon { font-size: 2.2rem; margin-bottom: 1.2rem; display: block; line-height: 1; }
.sc-title {
  font-family: var(--font-head);
  font-size: 1.2rem; font-weight: 600;
  color: var(--cream); margin-bottom: .6rem;
}
.sc-desc {
  font-size: .85rem; color: var(--muted);
  line-height: 1.65; margin-bottom: 1rem; flex: 1;
}
.sc-price {
  font-size: .72rem; color: var(--gold); opacity: .75;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 1.5rem; font-family: var(--font-body);
}
.sc-btn {
  display: inline-block; border: 1px solid var(--gold); color: var(--gold);
  padding: .6rem 1.4rem; font-size: .75rem; letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none;
  transition: background .2s, color .2s; margin-top: auto;
}
.sc-btn:hover { background: var(--gold); color: var(--bg); }

.servicios-note {
  text-align: center;
  font-family: var(--font-sub); font-size: 1.05rem; font-style: italic;
  color: var(--muted); max-width: 480px; margin: 0 auto; line-height: 1.7;
}
.servicios-note a { color: var(--gold); text-decoration: none; }
.servicios-note a:hover { text-decoration: underline; }

/* ── CONTACTO ── */
#contacto { background: var(--bg); text-align: center; }
#contacto h2 { margin-bottom: .8rem; }

.contacto-sub {
  font-family: var(--font-sub); font-size: 1.15rem; font-style: italic;
  color: var(--muted); margin-bottom: 3rem;
}

.contact-actions {
  display: flex; flex-wrap: wrap;
  gap: 1rem; justify-content: center; margin-bottom: 1rem;
}
.btn-wa {
  display: inline-flex; align-items: center; gap: .7rem;
  background: #25d366; color: white;
  padding: 1rem 2.6rem; border-radius: 2px; text-decoration: none;
  font-size: .95rem; font-weight: 500; letter-spacing: .06em;
  transition: background .2s, transform .2s;
  box-shadow: 0 8px 32px rgba(37,211,102,.25);
}
.btn-wa:hover { background: #1db954; transform: translateY(-2px); }

.btn-ig {
  display: inline-flex; align-items: center; gap: .7rem;
  background: transparent; border: 1px solid var(--border); color: var(--cream);
  padding: 1rem 2.4rem; border-radius: 2px; text-decoration: none;
  font-size: .9rem; font-weight: 400; letter-spacing: .06em;
  transition: border-color .2s, color .2s, transform .2s;
}
.btn-ig:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.contacto-reassurance {
  font-size: .8rem; color: var(--muted);
  letter-spacing: .06em; margin-bottom: 3rem;
}
.contacto-reassurance strong { color: var(--gold); font-weight: 400; }

.contact-info {
  display: flex; flex-wrap: wrap;
  gap: 2.5rem; justify-content: center; margin-top: 2rem;
}
.contact-info-item {
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
}
.ci-label {
  font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); opacity: .8;
}
.ci-value { font-size: .95rem; color: var(--cream); opacity: .85; }
.ci-value a { color: inherit; text-decoration: none; }
.ci-value a:hover { color: var(--gold); }

.contacto-ig-note {
  margin-top: 2rem;
  font-family: var(--font-sub); font-style: italic;
  font-size: .9rem; color: var(--muted);
}
.contacto-ig-note a { color: var(--gold); text-decoration: none; }
.contacto-ig-note a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem; text-align: center;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.15rem; color: var(--gold);
  margin-bottom: .5rem; letter-spacing: .04em;
}
.footer-meta {
  font-size: .78rem; color: var(--muted);
  letter-spacing: .08em; margin-bottom: .8rem;
}
.footer-links {
  display: flex; gap: 1.5rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 1rem;
}
.footer-links a {
  font-size: .74rem; color: var(--muted); text-decoration: none;
  letter-spacing: .1em; text-transform: uppercase; transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
footer .footer-copy {
  font-size: .72rem; color: var(--muted); opacity: .6; letter-spacing: .06em;
}

/* ── FLOATING WHATSAPP (solo desktop) ── */
.float-wa {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 600;
  width: 58px; height: 58px; background: #25d366;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.float-wa::before {
  content: ''; position: absolute; inset: -6px;
  border: 2px solid rgba(37,211,102,.3); border-radius: 50%;
  animation: wa-ping 2s ease-out infinite;
}
@keyframes wa-ping {
  0%  { transform: scale(1); opacity: .6; }
  100%{ transform: scale(1.5); opacity: 0; }
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }

/* ── MOBILE STICKY WA BAR ── */
.mobile-wa-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: #25d366;
  box-shadow: 0 -4px 24px rgba(37,211,102,.35);
}
.mobile-wa-bar a {
  display: flex; align-items: center; justify-content: center; gap: .7rem;
  color: white; text-decoration: none;
  padding: 1.1rem 1.5rem;
  font-size: 1rem; font-weight: 500; letter-spacing: .03em; width: 100%;
}

@media (max-width: 680px) {
  .mobile-wa-bar { display: block; }
  .float-wa { display: none; }
  body { padding-bottom: 64px; }
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.25,.46,.45,.94),
              transform .7s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }
.reveal-delay-4 { transition-delay: .48s; }

.hero-content > * {
  opacity: 0;
  animation: hero-in .9s cubic-bezier(.25,.46,.45,.94) forwards;
}
.hero-content > *:nth-child(1) { animation-delay: .1s; }
.hero-content > *:nth-child(2) { animation-delay: .25s; }
.hero-content > *:nth-child(3) { animation-delay: .35s; }
.hero-content > *:nth-child(4) { animation-delay: .45s; }
.hero-content > *:nth-child(5) { animation-delay: .55s; }
.hero-content > *:nth-child(6) { animation-delay: .65s; }
.hero-content > *:nth-child(7) { animation-delay: .75s; }
.hero-content > *:nth-child(8) { animation-delay: .85s; }
@keyframes hero-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
