/* ══════════════════════════════════════════════════════
   VOTOS SOLEMNES CO. — Premium Wedding Landing Page
   Style: Cinematic Luxury · Romantic Editorial · 2026
══════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─────────────────────────────────── */
:root {
  --pearl:       #faf8f5;
  --champagne:   #f5e6c8;
  --beige:       #ede0cc;
  --gold:        #c9a96e;
  --gold-light:  #e8d5a3;
  --gold-dark:   #9d7a45;
  --ink:         #0d0b09;
  --ink-mid:     #1e1a14;
  --ink-soft:    #2e2820;
  --text:        #4a3f30;
  --text-light:  #7a6a56;
  --white:       #ffffff;
  --glass-bg:    rgba(250, 248, 245, 0.08);
  --glass-border:rgba(201, 169, 110, 0.25);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Poppins', sans-serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);

  --section-pad: clamp(80px, 10vw, 140px);
  --container:   1200px;
  --radius:      16px;
  --radius-sm:   8px;
}

/* ─── RESET & BASE ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--pearl);
  color: var(--text);
  cursor: none;
  overflow-x: hidden;
}

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; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section { padding: var(--section-pad) 0; }
.section-dark { background: var(--ink); color: var(--pearl); }
.section-champagne { background: var(--champagne); }

/* ─── CURSOR ────────────────────────────────────────── */
.cursor {
  width: 10px; height: 10px;
  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 var(--ease-out),
              width 0.3s var(--ease-out),
              height 0.3s var(--ease-out),
              background 0.3s;
  mix-blend-mode: normal;
}

.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease-out),
              width 0.4s var(--ease-out),
              height 0.4s var(--ease-out),
              opacity 0.3s;
  opacity: 0.6;
}

body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower {
  width: 56px; height: 56px;
  opacity: 0.3;
}

/* ─── PARTICLES ─────────────────────────────────────── */
.particles {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0%   { opacity: 0; transform: translateY(100vh) scale(0); }
  10%  { opacity: 0.4; }
  90%  { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1.5); }
}

/* ─── NAVBAR ────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 60px);
  transition: all 0.5s var(--ease-out);
}

.navbar.scrolled {
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  background: rgba(13, 11, 9, 0.75);
  border-bottom: 1px solid var(--glass-border);
  padding-top: 16px; padding-bottom: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  color: var(--white);
  font-size: 15px;
}

.logo-monogram {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.logo-text em {
  color: var(--gold);
  font-style: italic;
}

.nav-links {
  display: flex; gap: 36px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 10px 22px;
  border-radius: 100px;
  transition: all 0.35s var(--ease-out);
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

/* ─── MOBILE MENU ───────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1100;
  background: var(--ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu ul { text-align: center; }

.mobile-link {
  font-family: var(--font-display);
  font-size: clamp(28px, 7vw, 48px);
  color: var(--pearl);
  display: block; padding: 12px 20px;
  transition: color 0.3s;
  font-style: italic;
}

.mobile-link:hover { color: var(--gold); }

.mobile-cta {
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-style: normal !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 14px 40px;
  border-radius: 100px;
  margin-top: 20px;
  transition: all 0.3s !important;
}

.mobile-cta:hover { background: var(--gold); color: var(--ink) !important; }

.mobile-close {
  position: absolute; top: 28px; right: 28px;
  font-size: 24px; color: var(--pearl);
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
}

.mobile-close:hover { color: var(--gold); transform: rotate(90deg); }

/* ─── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out);
  position: relative; overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
  border-radius: inherit;
}
.btn:hover::before { transform: scaleX(1); }

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 4px 30px rgba(201, 169, 110, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 50px rgba(201, 169, 110, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 6px 40px rgba(157, 122, 69, 0.5);
  font-size: 14px; padding: 18px 44px;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 60px rgba(157, 122, 69, 0.6);
}

/* ─── SECTION HEADER COMMON ─────────────────────────── */
.section-header { text-align: center; margin-bottom: clamp(48px, 7vw, 80px); }

.section-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-tag.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
}

.section-title.light { color: var(--pearl); }

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-title.light em { color: var(--gold-light); }

/* ─── ANIMATIONS ────────────────────────────────────── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-up     { transform: translateY(50px); }
.reveal-left   { transform: translateX(-60px); }
.reveal-right  { transform: translateX(60px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1; transform: none;
}

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  position: relative; height: 100dvh;
  min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}

.hero-video {
  width: 100%; height: 100%; object-fit: cover;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(13,11,9,0.75) 0%,
    rgba(13,11,9,0.4) 50%,
    rgba(13,11,9,0.8) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 clamp(20px, 6vw, 80px);
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 104px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-family: var(--font-accent);
  font-size: clamp(16px, 2.5vw, 22px);
  color: rgba(255,255,255,0.72);
  margin-bottom: 44px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  font-family: var(--font-body);
  animation: bounce-hint 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: line-grow 2s ease-in-out infinite;
}

@keyframes bounce-hint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
@keyframes line-grow {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.6); opacity: 0.4; }
}

/* Floating petals */
.hero-petal {
  position: absolute; z-index: 1;
  border-radius: 50% 0 50% 0;
  background: rgba(201,169,110,0.15);
  animation: petal-float 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-petal.p1 { width: 180px; height: 180px; top: 10%; right: 8%; animation-delay: 0s; }
.hero-petal.p2 { width: 100px; height: 100px; bottom: 20%; left: 5%; animation-delay: 2s; border-radius: 0 50% 0 50%; }
.hero-petal.p3 { width: 60px;  height: 60px;  top: 40%; left: 15%; animation-delay: 4s; }

@keyframes petal-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(15deg); }
}

/* Hero reveal animation delays */
[data-delay="0"]   { transition-delay: 0ms !important; }
[data-delay="150"] { transition-delay: 150ms !important; }
[data-delay="300"] { transition-delay: 300ms !important; }
[data-delay="450"] { transition-delay: 450ms !important; }

/* ─── ESENCIA ───────────────────────────────────────── */
.esencia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.esencia-img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 24px 32px 80px rgba(13,11,9,0.18);
}

.esencia-img-frame img {
  transition: transform 0.8s var(--ease-out);
}

.esencia-img-frame:hover img { transform: scale(1.04); }

.esencia-img-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 160px; height: 160px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

.esencia-badge {
  position: absolute; bottom: 28px; left: -20px;
  background: var(--gold);
  color: var(--ink);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: 0 8px 30px rgba(201,169,110,0.4);
}

.badge-num {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600;
  line-height: 1;
}

.badge-txt {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.esencia-visual { position: relative; }

.esencia-copy { padding: 20px 0; }

.esencia-desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* ─── SERVICIOS ─────────────────────────────────────── */
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: transform 0.45s var(--ease-out),
              border-color 0.45s,
              box-shadow 0.45s;
  cursor: none;
}

.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.06), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(201,169,110,0.5);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 0 40px rgba(201,169,110,0.1);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px;
  color: var(--gold);
  margin-bottom: 24px;
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover .service-icon { transform: scale(1.1) translateY(-2px); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400;
  color: var(--pearl);
  margin-bottom: 12px;
  font-style: italic;
}

.service-card p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(250,248,245,0.6);
}

.service-hover-glow {
  position: absolute; bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,169,110,0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.5s var(--ease-out), opacity 0.5s;
  opacity: 0;
}

.service-card:hover .service-hover-glow { opacity: 1; transform: translate(-20px, -20px); }

/* ─── GALERÍA ───────────────────────────────────────── */
.gallery-filters {
  display: flex; gap: 10px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 9px 22px;
  border: 1px solid transparent;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
  cursor: none;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--gold-dark);
  border-color: var(--gold);
  background: rgba(201,169,110,0.08);
}

.masonry-grid {
  columns: 3;
  column-gap: 18px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: none;
}

.masonry-item img {
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.masonry-item.tall { /* already handled by natural image ratio */ }
.masonry-item.wide { /* if we had 2 cols it would span 2; in 3col just wide img */ }

.masonry-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,11,9,0.8) 0%, transparent 60%);
  display: flex; align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.masonry-overlay span {
  font-family: var(--font-accent);
  font-size: 15px;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  font-style: italic;
}

.masonry-item:hover img       { transform: scale(1.06); }
.masonry-item:hover .masonry-overlay { opacity: 1; }

.masonry-item.hidden { display: none; }

/* ─── LIGHTBOX ──────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(13,11,9,0.97);
  display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(12px);
  animation: lb-fade-in 0.3s ease;
}

.lightbox.open { display: flex; }

@keyframes lb-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox-img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  width: auto; height: auto;
  box-shadow: 0 30px 100px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  font-size: 28px; color: var(--pearl);
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
  z-index: 10;
}
.lightbox-close:hover { color: var(--gold); transform: rotate(90deg); }

.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 48px; color: var(--pearl);
  cursor: pointer;
  transition: color 0.3s;
  z-index: 10;
  padding: 10px 20px;
  user-select: none;
}

.lightbox-nav:hover { color: var(--gold); }
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }

.lightbox-caption {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-accent);
  font-size: 16px;
  color: var(--gold-light);
  font-style: italic;
  letter-spacing: 0.05em;
}

/* ─── STATS ─────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--radius);
  background: rgba(201,169,110,0.06);
  border: 1px solid rgba(201,169,110,0.2);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(201,169,110,0.12);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  color: var(--gold-dark);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

/* ─── TESTIMONIOS ───────────────────────────────────── */
.testimonials-wrap { position: relative; overflow: hidden; }

.testimonials-slider {
  display: flex;
  transition: transform 0.6s var(--ease-out);
}

.testimonial-card {
  flex: 0 0 100%;
  padding: clamp(36px, 6vw, 64px) clamp(24px, 8vw, 120px);
  text-align: center;
}

.test-stars {
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 28px;
}

.test-quote {
  font-family: var(--font-accent);
  font-size: clamp(18px, 2.5vw, 26px);
  line-height: 1.7;
  color: var(--text);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 36px;
  position: relative;
}

.test-quote::before {
  content: '\201C';
  font-size: 80px; line-height: 0;
  color: var(--gold);
  opacity: 0.25;
  position: absolute; top: 20px; left: -10px;
  font-family: var(--font-display);
}

.test-author {
  display: flex; align-items: center;
  gap: 16px; justify-content: center;
}

.test-author img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.test-author div { text-align: left; }
.test-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px; font-weight: 400;
  color: var(--ink);
}

.test-author span {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.08em;
}

.slider-controls {
  display: flex; align-items: center;
  justify-content: center; gap: 20px;
  margin-top: 32px;
}

.slider-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-dark);
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  transition: all 0.3s var(--ease-out);
  line-height: 1;
}

.slider-btn:hover {
  background: var(--gold);
  color: var(--ink);
}

.slider-dots {
  display: flex; gap: 8px;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--beige);
  transition: all 0.3s;
  cursor: none;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ─── TIMELINE / PROCESO ────────────────────────────── */
.timeline {
  max-width: 800px; margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-dark) 10%, var(--gold-dark) 90%, transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 56px;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}

.tl-num {
  font-family: var(--font-display);
  font-size: 52px; font-weight: 600;
  color: var(--gold-dark);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0; width: calc(50% - 20px);
  padding-right: 20px;
  text-align: right;
}

.timeline-item:nth-child(even) .tl-num {
  text-align: left;
  padding-right: 0; padding-left: 20px;
}

.tl-content {
  flex: 0 0 calc(50% - 20px);
  padding-left: 20px;
}

.timeline-item:nth-child(even) .tl-content {
  padding-left: 0; padding-right: 20px;
}

.tl-content h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400;
  color: var(--pearl);
  font-style: italic;
  margin-bottom: 8px;
}

.tl-content p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(250,248,245,0.55);
}

/* ─── CTA FINAL ─────────────────────────────────────── */
.cta-final {
  position: relative; min-height: 75vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute; inset: 0;
}

.cta-bg img {
  object-position: center 30%;
  filter: brightness(0.4);
  transition: transform 0.8s var(--ease-out);
}

.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,11,9,0.5), rgba(13,11,9,0.7));
}

.cta-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 clamp(20px, 6vw, 80px);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin: 16px 0 24px;
}

.cta-title em {
  font-style: italic; color: var(--gold-light);
}

.cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 44px;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 18px;
}

/* ─── CONTACTO ──────────────────────────────────────── */
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.contact-desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-light);
  margin: 20px 0 36px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }

.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
}

.ci-icon {
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1.4;
}

.contact-item strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 2px;
}

.contact-item a, .contact-item span {
  font-size: 15px; color: var(--text);
  transition: color 0.3s;
}

.contact-item a:hover { color: var(--gold-dark); }

.social-links { display: flex; gap: 14px; }

.social-link {
  width: 44px; height: 44px;
  border: 1px solid var(--beige);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light);
  transition: all 0.3s var(--ease-out);
}

.social-link svg { width: 18px; height: 18px; }

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
  background: rgba(201,169,110,0.06);
}

/* ─── FORM ──────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: clamp(32px, 5vw, 56px);
  box-shadow: 0 20px 80px rgba(13,11,9,0.08);
  border: 1px solid rgba(201,169,110,0.15);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-group {
  position: relative;
}

.form-group.full { grid-column: 1 / -1; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 20px 18px 8px;
  border: 1.5px solid rgba(201,169,110,0.25);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  background: var(--pearl);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,169,110,0.12);
}

.form-group label {
  position: absolute; top: 14px; left: 18px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  pointer-events: none;
  transition: all 0.3s var(--ease-out);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: 6px;
  font-size: 9px;
  color: var(--gold-dark);
}

.full-btn { width: 100%; justify-content: center; margin-top: 4px; }

.form-success {
  display: none;
  grid-column: 1 / -1;
  text-align: center;
  color: var(--gold-dark);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 16px;
  padding: 12px;
}

.form-success.visible { display: block; }

/* ─── FOOTER ────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--pearl);
  padding: clamp(50px, 8vw, 80px) clamp(20px, 5vw, 60px) 32px;
}

.footer-top {
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 20px;
}

.footer .nav-logo,
.footer .logo-monogram { color: var(--pearl); }

.footer-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 17px;
  color: rgba(250,248,245,0.5);
}

.footer-copy {
  font-size: 13px;
  color: rgba(250,248,245,0.35);
  line-height: 1.7;
}

.footer-line {
  margin: 40px 0 24px;
  border: none; border-top: 1px solid rgba(201,169,110,0.12);
}

.footer-bottom {
  display: flex; justify-content: space-between;
  font-size: 12px;
  color: rgba(250,248,245,0.3);
  letter-spacing: 0.08em;
}

/* ─── WHATSAPP ──────────────────────────────────────── */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 6px 30px rgba(37,211,102,0.4);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.whatsapp-btn svg { width: 30px; height: 30px; }

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(37,211,102,0.55);
}

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .servicios-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .esencia-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .esencia-grid { grid-template-columns: 1fr; }
  .esencia-badge { left: 12px; }
  .esencia-img-accent { display: none; }

  .servicios-grid { grid-template-columns: 1fr; gap: 16px; }

  .masonry-grid { columns: 2; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .timeline::before { left: 20px; }
  .timeline-item { flex-direction: row !important; text-align: left !important; gap: 20px; }
  .tl-num { width: 40px; font-size: 28px; text-align: center; padding: 0; }
  .tl-content { width: auto; padding: 0; }
  .timeline-item:nth-child(even) .tl-num { padding: 0; }
  .timeline-item:nth-child(even) .tl-content { padding: 0; }

  .contacto-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }

  .footer-bottom { flex-direction: column; gap: 8px; align-items: center; }
  .hero-ctas { flex-direction: column; align-items: center; }

  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  a { cursor: pointer; }
}

@media (max-width: 480px) {
  .masonry-grid { columns: 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-item { padding: 24px 12px; }
  .hero-headline { font-size: 38px; }
}
