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

:root {
  --rust:       #b84c2a;
  --rust-dark:  #8c3318;
  --deep:       #5a1e0a;
  --deepest:    #1a0805;
  --amber:      #c97c30;
  --gold:       #d4a04a;
  --gold-light: #e8c87a;
  --cream:      #f5ede0;
  --warm:       #faf4ec;
  --paper:      #f0e6d4;
  --text:       #2c1a0e;
  --muted:      #7a5c44;
  --muted2:     #9e7a5e;
  --border:     rgba(180,100,40,0.18);
  --border2:    rgba(212,160,74,0.15);

  --ff-display: 'Cinzel', serif;
  --ff-serif:   'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Lato', sans-serif;

  --radius:     0px;
  --shadow:     0 8px 40px rgba(80,30,10,0.12);
  --shadow-lg:  0 20px 60px rgba(80,30,10,0.18);
}

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

body {
  font-family: var(--ff-body);
  background: var(--warm);
  color: var(--text);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color .25s; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

/* ═══════════════════════════════════════════
   CANVAS THREADS
═══════════════════════════════════════════ */
#threads-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
}

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.section { padding: 7rem 0; position: relative; z-index: 1; }

.label {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section-header h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--deep);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-header p {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.85;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.4rem;
  background: var(--rust);
  color: var(--cream);
  font-family: var(--ff-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--rust);
  transition: background .3s, color .3s, border-color .3s;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--deepest);
  border-color: var(--gold);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.4rem;
  background: transparent;
  color: var(--cream);
  font-family: var(--ff-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(245,237,224,0.35);
  transition: border-color .3s, color .3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1.visible { transition-delay: .1s; }
.reveal-delay-2.visible { transition-delay: .2s; }
.reveal-delay-3.visible { transition-delay: .3s; }

/* SVG animation */
.petals-rotate {
  animation: rotatePetals 40s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.petals-rotate-reverse {
  animation: rotatePetals 25s linear infinite reverse;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes rotatePetals {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: rgba(8,3,1,0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212,160,74,0.12);
  transition: background .4s, padding .4s;
}
.nav.scrolled {
  background: rgba(8,3,1,0.92);
  padding: 0.9rem 2.5rem;
}
.nav.menu-open {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.nav-logo-main {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  line-height: 1;
}
.nav-logo-sub {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.62rem;
  color: rgba(212,160,74,0.55);
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--ff-display);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,237,224,0.65);
  transition: color .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  background: var(--rust);
  color: var(--cream) !important;
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--rust);
  transition: background .3s, border-color .3s;
}
.nav-links .nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deepest) !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 65% 35%, rgba(184,76,42,0.7) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 75%, rgba(90,30,10,0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(122,42,18,0.3) 0%, transparent 40%),
    linear-gradient(160deg, #0d0401 0%, #2d0e05 30%, #5a1e0a 60%, #8c3318 85%, #b84c2a 100%);
  z-index: 0;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--gold);
  animation: floatParticle var(--dur, 8s) ease-in-out infinite var(--delay, 0s);
  opacity: 0;
}
@keyframes floatParticle {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  20%  { opacity: var(--op, 0.6); }
  80%  { opacity: var(--op, 0.4); }
  100% { opacity: 0; transform: translateY(-80px) scale(0.5); }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  padding: 2rem;
  animation: heroFadeIn 1.2s ease forwards;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--ff-display);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: heroFadeIn 1.2s ease .2s both;
}
.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(4rem, 11vw, 8rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 0.6rem;
  text-shadow: 0 4px 60px rgba(0,0,0,0.4);
  animation: heroFadeIn 1.2s ease .3s both;
}
.hero-title-j {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.75em;
  color: var(--gold);
}

.hero-subtitle {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: rgba(212,160,74,0.8);
  letter-spacing: 0.1em;
  margin-bottom: 1.8rem;
  animation: heroFadeIn 1.2s ease .4s both;
}

.hero-desc {
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(245,237,224,0.7);
  line-height: 1.95;
  margin-bottom: 2.8rem;
  animation: heroFadeIn 1.2s ease .5s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  animation: heroFadeIn 1.2s ease .6s both;
}

.hero-ornament {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(420px, 40vw);
  opacity: 0.35;
  z-index: 2;
  pointer-events: none;
  animation: heroFadeIn 2s ease .8s both;
}
.hero-ornament svg { width: 100%; height: auto; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: max-content;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  animation: heroFadeIn 1s ease 1.2s both;
}
.scroll-text {
  font-family: var(--ff-display);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(212,160,74,0.5);
}
.scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(212,160,74,0.6), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: .6; }
  50%       { transform: scaleY(1.3); opacity: 1; }
}

/* ═══════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════ */
.marquee-strip {
  background: var(--deep);
  border-top: 1px solid rgba(212,160,74,0.15);
  border-bottom: 1px solid rgba(212,160,74,0.15);
  padding: 0.9rem 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}
.marquee-track span {
  font-family: var(--ff-display);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(212,160,74,0.55);
  white-space: nowrap;
}
.marquee-track .dot { color: var(--gold); opacity: 0.5; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   NOSOTROS
═══════════════════════════════════════════ */
.nosotros { background: var(--warm); }

.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.visual-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.visual-mandala {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, rgba(180,76,42,0.08), transparent 70%);
  border: 1px solid var(--border2);
}
.visual-mandala svg { width: 85%; height: 85%; }

.visual-quote {
  background: var(--deep);
  padding: 2rem 2.2rem;
  border-left: 3px solid var(--gold);
}
.visual-quote p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(245,237,224,0.8);
  line-height: 1.8;
}

.visual-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
}
.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem 1rem;
}
.stat strong {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--rust);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat span {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.nosotros-text .label { display: block; }
.nosotros-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--deep);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.nosotros-text p {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.nosotros-values { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: var(--paper);
  border-left: 2px solid var(--amber);
}
.value-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--rust);
  margin-top: 2px;
}
.value-icon svg { width: 100%; height: 100%; }
.value-item strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep);
  margin-bottom: 0.25rem;
}
.value-item span {
  font-family: var(--ff-serif);
  font-size: 0.92rem;
  color: var(--muted);
  font-style: italic;
}

/* ═══════════════════════════════════════════
   QUOTE FULL
═══════════════════════════════════════════ */
.quote-full {
  position: relative;
  padding: 6rem 0;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}
.quote-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 40% 50%, rgba(184,76,42,0.5) 0%, transparent 60%),
    linear-gradient(135deg, #1a0805, #3d1408, #5a1e0a);
  z-index: 0;
}
.quote-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
}
.quote-mark {
  font-family: var(--ff-serif);
  font-size: 8rem;
  line-height: 0.5;
  color: rgba(212,160,74,0.2);
  margin-bottom: 1rem;
}
.quote-content blockquote {
  font-family: var(--ff-serif);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 300;
  color: rgba(245,237,224,0.88);
  line-height: 1.75;
}
.quote-content blockquote em {
  color: var(--gold);
  font-style: italic;
  display: block;
  margin-top: 0.8rem;
}

/* ═══════════════════════════════════════════
   CEREMONIAS
═══════════════════════════════════════════ */
.ceremonias { background: var(--paper); }

.ceremonias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.ceremonia-card {
  position: relative;
  padding: 2.5rem 2.2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
  transition: background .35s, transform .3s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ceremonia-card:nth-child(3n) { border-right: none; }
.ceremonia-card:nth-child(4),
.ceremonia-card:nth-child(5),
.ceremonia-card:nth-child(6) { border-bottom: none; }

.ceremonia-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rust), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.ceremonia-card:hover::before { transform: scaleX(1); }
.ceremonia-card:hover { background: var(--warm); }

.ceremonia-card.featured {
  background: linear-gradient(160deg, var(--deepest) 0%, var(--deep) 100%);
  color: var(--cream);
}
.ceremonia-card.featured .cc-body p { color: rgba(245,237,224,0.65); }
.ceremonia-card.featured .cc-body h3 { color: var(--cream); }
.ceremonia-card.featured .cc-details { border-top-color: rgba(212,160,74,0.2); }
.ceremonia-card.featured .cc-details li span { color: var(--gold); }
.ceremonia-card.featured .cc-details li { color: rgba(245,237,224,0.6); }
.ceremonia-card.featured .cc-icon { color: var(--gold); }
.ceremonia-card.featured .cc-tag { border-color: rgba(212,160,74,0.3); color: rgba(212,160,74,0.7); }
.ceremonia-card.featured .cc-number { color: rgba(212,160,74,0.2); }
.ceremonia-card.featured .cc-cta { color: var(--gold); border-top-color: rgba(212,160,74,0.2); }
.ceremonia-card.featured .cc-cta:hover { color: var(--gold-light); }

.cc-badge {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: var(--ff-display);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,160,74,0.4);
  padding: 0.25rem 0.7rem;
}

.cc-number {
  font-family: var(--ff-display);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(180,76,42,0.2);
  margin-bottom: 0.8rem;
}

.cc-icon {
  width: 50px;
  height: 50px;
  color: var(--rust);
  margin-bottom: 1rem;
}
.cc-icon svg { width: 100%; height: 100%; }

.cc-tag {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted2);
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.7rem;
}

.cc-body { flex: 1; }
.cc-body h3 {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--deep);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.cc-body p {
  font-family: var(--ff-serif);
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.cc-details {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.cc-details li {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  color: var(--muted2);
  display: flex;
  gap: 0.5rem;
}
.cc-details li span {
  font-family: var(--ff-display);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  min-width: 55px;
  padding-top: 2px;
}

.cc-cta {
  display: block;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  font-family: var(--ff-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
  transition: color .3s, letter-spacing .3s;
}
.cc-cta:hover { color: var(--amber); letter-spacing: 0.22em; }

/* ═══════════════════════════════════════════
   FACILITADORA
═══════════════════════════════════════════ */
.facilitadora { background: var(--warm); }

.facilitadora-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.fac-text .label { display: block; }
.fac-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 1.5rem;
}
.fac-intro {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 1rem;
  border-left: 3px solid var(--amber);
  padding-left: 1.2rem;
}
.fac-text p {
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.fac-certs { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.cert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--ff-serif);
  font-size: 0.95rem;
  color: var(--muted);
}
.cert-icon { color: var(--gold); font-size: 0.7rem; margin-top: 4px; flex-shrink: 0; }

.fac-frame {
  position: relative;
  padding: 2rem;
}
.fac-frame-deco {
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.4;
}
.fac-frame-deco.top-left    { top: 0; left: 0; border-width: 2px 0 0 2px; }
.fac-frame-deco.top-right   { top: 0; right: 0; border-width: 2px 2px 0 0; }
.fac-frame-deco.bottom-left  { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.fac-frame-deco.bottom-right { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.fac-portrait {
  aspect-ratio: 3/4;
  background: radial-gradient(ellipse at 50% 30%, rgba(180,76,42,0.18), rgba(26,8,5,0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,160,74,0.15);
  overflow: hidden;
}
.portrait-inner { width: 90%; height: 90%; }
.portrait-inner svg { width: 100%; height: 100%; }

/* ═══════════════════════════════════════════
   ESPACIO
═══════════════════════════════════════════ */
.espacio {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  z-index: 1;
}
.espacio-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 60%, rgba(184,76,42,0.55), transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(90,30,10,0.4), transparent 50%),
    linear-gradient(160deg, #100503 0%, #3d1408 45%, #5a1e0a 100%);
  z-index: 0;
}
.espacio .container { position: relative; z-index: 1; }
.espacio .section-header { margin-bottom: 4rem; }

.espacio-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(212,160,74,0.12);
}
.esp-feature {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(212,160,74,0.12);
  transition: background .3s;
}
.esp-feature:last-child { border-right: none; }
.esp-feature:hover { background: rgba(255,255,255,0.03); }

.esp-icon {
  width: 46px;
  height: 46px;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0.75;
}
.esp-icon svg { width: 100%; height: 100%; }

.esp-feature h4 {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.esp-feature p {
  font-family: var(--ff-serif);
  font-size: 0.92rem;
  color: rgba(245,237,224,0.55);
  line-height: 1.85;
}

/* ═══════════════════════════════════════════
   AGENDA
═══════════════════════════════════════════ */
.agenda { background: var(--warm); }

.agenda-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.agenda-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  padding: 2rem 2.2rem;
  transition: box-shadow .3s, transform .3s;
}
.agenda-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.agenda-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  border-right: 1px solid var(--border);
  padding-right: 2rem;
}
.ag-month {
  font-family: var(--ff-display);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
}
.ag-day {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--rust);
  line-height: 1;
  margin-top: 2px;
}

.agenda-info { flex: 1; }
.ag-tag {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.agenda-info h4 {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--deep);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.agenda-info p {
  font-family: var(--ff-serif);
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.ag-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  color: var(--muted2);
}

.ag-btn {
  white-space: nowrap;
  padding: 0.7rem 1.4rem;
  font-size: 0.62rem;
}

.agenda-note {
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
}
.agenda-note a { color: var(--rust); border-bottom: 1px solid transparent; transition: border-color .3s; }
.agenda-note a:hover { border-color: var(--rust); }

/* ═══════════════════════════════════════════
   TESTIMONIOS
═══════════════════════════════════════════ */
.testimonios-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  z-index: 1;
}
.testimonios-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(184,76,42,0.45), transparent 55%),
    linear-gradient(160deg, #100503 0%, #2d0e05 50%, #5a1e0a 100%);
  z-index: 0;
}
.testimonios-section .container { position: relative; z-index: 1; }
.testimonios-section .section-header { margin-bottom: 3.5rem; }

.testimonios-slider { position: relative; overflow: hidden; }
.testimonios-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.testimonio-slide {
  min-width: 100%;
  padding: 0 4rem;
  text-align: center;
}
.ts-stars {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 2rem;
}
.ts-text {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: rgba(245,237,224,0.85);
  line-height: 1.85;
  max-width: 780px;
  margin: 0 auto 2.5rem;
}
.ts-author {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.ts-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rust);
  color: var(--cream);
  font-family: var(--ff-display);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(212,160,74,0.3);
}
.ts-author strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}
.ts-author span {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(212,160,74,0.55);
}

.testimonios-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}
.ts-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212,160,74,0.3);
  background: transparent;
  color: var(--gold);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, border-color .3s;
}
.ts-btn:hover { background: rgba(212,160,74,0.1); border-color: var(--gold); }

.testimonios-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.ts-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(212,160,74,0.25);
  border: 1px solid rgba(212,160,74,0.3);
  cursor: pointer;
  transition: background .3s;
}
.ts-dot.active { background: var(--gold); }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq { background: var(--paper); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.faq-item:nth-child(even) { border-right: none; }
.faq-item:nth-last-child(-n+2) { border-bottom: none; }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 1.8rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--deep);
  cursor: pointer;
  transition: color .3s, background .3s;
  line-height: 1.5;
}
.faq-q:hover { color: var(--rust); background: rgba(180,76,42,0.03); }
.faq-icon {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--amber);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .3s;
}
.faq-item[data-open="true"] .faq-icon { transform: rotate(45deg); }
.faq-item[data-open="true"] .faq-q { color: var(--rust); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s;
  padding: 0 1.8rem;
}
.faq-a p {
  font-family: var(--ff-serif);
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  padding-bottom: 1.5rem;
}
.faq-item[data-open="true"] .faq-a { max-height: 200px; }

/* ═══════════════════════════════════════════
   CONTACTO
═══════════════════════════════════════════ */
.contacto { background: var(--warm); }

.contacto-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contacto-form-wrap { position: relative; }

.contacto-form { display: flex; flex-direction: column; gap: 0; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  margin-bottom: 1.5px;
}
.fg {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5px;
}
.fg label {
  font-family: var(--ff-display);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
  padding-left: 0.1rem;
}
.fg input,
.fg select,
.fg textarea {
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid rgba(180,100,40,0.15);
  padding: 0.85rem 1rem;
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--text);
  outline: none;
  width: 100%;
  transition: border-color .3s, background .3s;
  appearance: none;
  border-radius: 0;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-bottom-color: var(--amber);
  background: rgba(250,244,236,0.5);
}
.fg textarea { resize: vertical; min-height: 120px; }

.select-wrap { position: relative; }
.select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--amber);
  font-size: 0.9rem;
  pointer-events: none;
}

.btn-submit {
  margin-top: 0.5rem;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem;
  font-size: 0.72rem;
}
.btn-submit .btn-icon { font-size: 0.9rem; opacity: 0.7; }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--paper);
  border: 1px solid rgba(212,160,74,0.3);
}
.form-success.visible { display: block; }
.success-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.form-success h4 {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  color: var(--deep);
  margin-bottom: 0.5rem;
}
.form-success p {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--muted);
}

.contacto-info { display: flex; flex-direction: column; gap: 2.5rem; }

.ci-block .label { display: block; }
.ci-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.ci-icon {
  width: 32px;
  height: 32px;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}
.ci-item strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep);
  margin-bottom: 0.3rem;
}
.ci-item p {
  font-family: var(--ff-serif);
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}
.ci-item p em { font-size: 0.82rem; opacity: 0.7; }

.ci-social .label { display: block; }
.social-links { display: flex; flex-direction: column; gap: 0.8rem; }
.social-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: var(--muted);
  transition: color .3s;
}
.social-link svg { width: 18px; height: 18px; color: var(--amber); }
.social-link:hover { color: var(--rust); }

.ci-mandala { opacity: 0.5; margin-top: 1rem; }
.ci-mandala svg { width: 180px; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer { background: var(--deepest); }

.footer-top { padding: 5rem 0 3rem; border-bottom: 1px solid rgba(212,160,74,0.08); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-brand-col .footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
}
.fl-main {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.fl-sub {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.75rem;
  color: rgba(212,160,74,0.45);
  letter-spacing: 0.1em;
  margin-top: 2px;
}
.footer-brand-col p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(245,237,224,0.35);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(212,160,74,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(212,160,74,0.5);
  transition: border-color .3s, color .3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 15px; height: 15px; }

.footer-col h5 {
  font-family: var(--ff-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(212,160,74,0.1);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col li a {
  font-family: var(--ff-serif);
  font-size: 0.88rem;
  color: rgba(245,237,224,0.35);
  transition: color .3s;
}
.footer-col li a:hover { color: rgba(212,160,74,0.7); }

.footer-fechas li {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  font-family: var(--ff-serif);
  font-size: 0.85rem;
  color: rgba(245,237,224,0.3);
}
.ff-date {
  font-family: var(--ff-display);
  font-size: 0.6rem;
  color: var(--amber);
  opacity: 0.6;
  white-space: nowrap;
  letter-spacing: 0.08em;
}

.footer-bottom {
  padding: 1.8rem 0;
  display: flex;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  color: rgba(245,237,224,0.18);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform .3s, box-shadow .3s;
}
.wa-float svg { width: 26px; height: 26px; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--deepest);
  color: var(--cream);
  font-family: var(--ff-display);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
  white-space: nowrap;
  border: 1px solid rgba(212,160,74,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .ceremonias-grid { grid-template-columns: repeat(2, 1fr); }
  .ceremonia-card:nth-child(3n)   { border-right: 1px solid var(--border); }
  .ceremonia-card:nth-child(even) { border-right: none; }
  .ceremonia-card:nth-child(3),
  .ceremonia-card:nth-child(4) { border-bottom: 1px solid var(--border); }
  .ceremonia-card:nth-child(5),
  .ceremonia-card:nth-child(6) { border-bottom: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .espacio-features { grid-template-columns: repeat(2, 1fr); }
  .esp-feature:nth-child(2) { border-right: none; }
  .esp-feature:nth-child(3) { border-right: 1px solid rgba(212,160,74,0.12); }
  .esp-feature:nth-child(3),
  .esp-feature:nth-child(4) { border-top: 1px solid rgba(212,160,74,0.12); }
}

@media (max-width: 900px) {
  .nosotros-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .nosotros-visual { order: -1; }
  .visual-mandala { max-width: 340px; margin: 0 auto; }
  .facilitadora-grid { grid-template-columns: 1fr; gap: 3rem; }
  .fac-visual { order: -1; max-width: 400px; margin: 0 auto; }
  .agenda-grid { grid-template-columns: 1fr; }
  .agenda-card { grid-template-columns: auto 1fr; }
  .ag-btn { grid-column: 1 / -1; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item:nth-child(even) { border-right: none; }
  .faq-item { border-right: none; }
  .faq-item:nth-last-child(1) { border-bottom: none; }
  .faq-item:nth-last-child(2) { border-bottom: 1px solid var(--border); }
  .contacto-wrap { grid-template-columns: 1fr; gap: 4rem; }
  .hero-ornament { display: none; }
}

@media (max-width: 700px) {
  /* NAV */
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,3,1,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 998;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .nav-burger { display: flex; position: relative; z-index: 999; }

  /* HERO */
  .hero-content { padding: 1.2rem; }
  .hero-eyebrow { font-size: 0.55rem; gap: 0.6rem; }
  .eyebrow-line { width: 24px; }
  .hero-title {
    font-size: clamp(2.6rem, 13vw, 4rem);
    letter-spacing: 0.02em;
    word-break: break-word;
  }
  .hero-title-j { font-size: 0.7em; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 1.2rem; }
  .hero-desc { font-size: 0.95rem; margin-bottom: 2rem; padding: 0 0.5rem; }
  .hero-actions { flex-direction: column; align-items: center; gap: 0.8rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 1rem 1.5rem;
  }
  .hero-scroll-indicator { bottom: 1.5rem; }

  /* SECTIONS */
  .section { padding: 4rem 0; }
  .container { padding: 0 1.3rem; }
  .section-header { margin-bottom: 3rem; }
  .section-header h2 { font-size: 1.9rem; }

  /* NOSOTROS */
  .visual-stat-row { flex-direction: row; }
  .stat strong { font-size: 1.3rem; }

  /* CEREMONIAS */
  .ceremonias-grid { grid-template-columns: 1fr; }
  .ceremonia-card { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .ceremonia-card:last-child { border-bottom: none !important; }
  .cc-body h3 { font-size: 1.25rem; }

  /* ESPACIO */
  .espacio-features { grid-template-columns: 1fr; }
  .esp-feature { border-right: none !important; border-top: 1px solid rgba(212,160,74,0.12); }
  .esp-feature:first-child { border-top: none; }

  /* AGENDA */
  .agenda-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .agenda-date {
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 1rem;
  }
  .ag-day { font-size: 1.6rem; }
  .ag-btn { width: 100%; text-align: center; justify-content: center; }
  .ag-meta { flex-direction: column; gap: 0.3rem; }

  /* TESTIMONIOS */
  .testimonio-slide { padding: 0 0.5rem; }
  .ts-text { font-size: 1rem; }

  /* CONTACTO */
  .form-row-2 { grid-template-columns: 1fr; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom .container { justify-content: center; text-align: center; flex-direction: column; gap: 0.4rem; }

  /* WHATSAPP FLOAT */
  .wa-float { bottom: 1.2rem; right: 1.2rem; width: 48px; height: 48px; }
  .wa-float svg { width: 22px; height: 22px; }
}
