:root {
  --black: #0a0908;
  --black-deep: #050403;
  --panel: rgba(10, 9, 8, 0.72);
  --panel-solid: #0e0c0a;
  --gold: #d4af37;
  --gold-light: #f2d98a;
  --gold-dim: #a9862c;
  --copper: #b3702f;
  --cream: #ece3d2;
  --cream-dim: #c9beac;
  --border: rgba(212, 175, 55, 0.25);
  --font-title: 'Cinzel', serif;
  --font-body: 'Lora', serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.7;
  color: var(--cream);
  background: var(--black-deep);
  position: relative;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--gold-light);
  letter-spacing: 0.02em;
  font-weight: 600;
  margin: 0 0 0.6em;
}

p { margin: 0 0 1.1em; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { position: relative; padding: 110px 0; }

.eyebrow {
  font-family: var(--font-title);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 14px;
  margin-bottom: 1em;
}
.eyebrow.center { text-align: center; }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 0.9em;
}
.section-title.center { text-align: center; }

/* ---------- FIXED BACKGROUND ---------- */
.bg-fixed {
  position: fixed;
  inset: 0;
  background-image: url('../images/bg-fixed.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
}
.bg-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,4,3,0.55) 0%, rgba(5,4,3,0.82) 40%, rgba(5,4,3,0.93) 100%);
  z-index: -1;
}

/* ---------- NAV ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(6, 5, 4, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo img { height: 46px; width: auto; }
.nav-links {
  display: flex;
  gap: 30px;
  margin: 0 auto;
  font-family: var(--font-title);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--cream-dim);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.btn-nav-reservar { flex-shrink: 0; padding: 10px 22px !important; font-size: 13px !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--gold);
  display: block;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: 2px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--copper));
  color: #1a1207;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4); }

.btn-outline {
  background: transparent;
  color: var(--gold-light);
}
.btn-outline:hover {
  background: var(--gold);
  color: #1a1207;
}

/* ---------- FLOATING RESERVAR ---------- */
.fab-reservar {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--copper));
  color: #1a1207;
  padding: 14px 20px;
  border-radius: 40px;
  font-family: var(--font-title);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
  transition: transform 0.25s ease;
}
.fab-reservar:hover { transform: translateY(-3px) scale(1.03); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(5,4,3,0.35) 0%, rgba(5,4,3,0.75) 65%, rgba(5,4,3,0.95) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo { width: 130px; height: auto; margin-bottom: 28px; filter: drop-shadow(0 0 25px rgba(212,175,55,0.35)); }
.hero-title {
  font-size: clamp(44px, 8vw, 84px);
  color: var(--gold-light);
  text-shadow: 0 0 40px rgba(212,175,55,0.3);
  margin-bottom: 0.3em;
}
.hero-tagline {
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 26px);
  color: var(--cream);
  max-width: 640px;
  margin-bottom: 2em;
}
.hero-scrolldown {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 1px solid var(--gold);
  border-radius: 20px;
  z-index: 2;
}
.hero-scrolldown span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDown 1.8s infinite;
}
@keyframes scrollDown {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 22px; }
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 100px;
}
.about-image-wrap {
  position: sticky;
  top: 120px;
  border: 1px solid var(--border);
  padding: 14px;
  background: var(--panel);
}
.about-image { width: 100%; height: auto; }
.about-quote {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 24px;
  color: var(--gold-light);
  margin-bottom: 0.9em;
}
.about-text p { color: var(--cream-dim); }
.about-closing {
  font-family: var(--font-title);
  font-style: italic;
  color: var(--gold-light);
  font-size: 21px;
  margin-top: 1.4em;
}

.ethics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.ethics-card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 34px 32px;
}
.ethics-card h3 {
  font-size: 19px;
  color: var(--gold);
  margin-bottom: 0.5em;
}
.ethics-card p { color: var(--cream-dim); font-size: 17px; margin-bottom: 0; }

/* ---------- ONLINE ---------- */
.online { padding: 90px 0; }
.online-inner { text-align: center; max-width: 800px; margin: 0 auto; }
.online-text { color: var(--cream-dim); font-size: 21px; }

/* ---------- TAROT PRICING ---------- */
.tarot { text-align: center; }
.pricing-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 60px 0 30px;
  flex-wrap: wrap;
  flex: 1;
}
.price-card {
  position: relative;
  background: linear-gradient(180deg, rgba(24,19,12,0.9), rgba(10,9,8,0.85));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 4px;
  width: 300px;
  text-align: center;
  transform: scale(0.94);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  z-index: 1;
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}
.price-card-inner {
  padding: 42px 32px;
  border-radius: 24px;
  border: 1px solid rgba(212,175,55,0.15);
  height: 100%;
}
.price-ornament {
  display: block;
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.2em;
}
.price-card-featured {
  transform: scale(1.06);
  border-color: var(--gold);
  box-shadow: 0 20px 55px rgba(212,175,55,0.22);
  z-index: 2;
}
.price-card-featured .price-card-inner {
  background: radial-gradient(circle at 50% 0%, rgba(212,175,55,0.12), transparent 60%);
  border-color: rgba(212,175,55,0.35);
}
@media (hover: hover) and (pointer: fine) {
  .pricing:hover .price-card { transform: scale(0.9); opacity: 0.75; }
  .pricing:hover .price-card:hover {
    transform: scale(1.08);
    opacity: 1;
    border-color: var(--gold);
    box-shadow: 0 24px 55px rgba(212,175,55,0.28);
    z-index: 3;
  }
}
.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light), var(--copper));
  color: #1a1207;
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  z-index: 4;
}
.price-name { font-size: 24px; }
.price-amount {
  font-family: var(--font-title);
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 0.5em;
}
.price-desc { color: var(--cream-dim); font-size: 16.5px; min-height: 110px; }
.pricing-note { color: var(--cream-dim); font-style: italic; margin-top: 20px; }
.pricing-prev, .pricing-next { display: none; }

/* ---------- RITUALS ---------- */
.rituals-hero {
  position: relative;
  text-align: center;
  padding: 0 24px;
  margin-bottom: 70px;
}
.rituals-image-wrap {
  width: min(420px, 90vw);
  margin: 0 auto 28px;
  border: 1px solid var(--border);
  padding: 14px;
  background: var(--panel);
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
}
.rituals-image { width: 100%; height: auto; }
.rituals-hero-caption {
  font-family: var(--font-title);
  font-style: italic;
  font-size: clamp(22px, 3vw, 34px);
  color: var(--gold-light);
}
.rituals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin: 50px 0 70px;
}
.ritual-card {
  background: linear-gradient(180deg, rgba(24,19,12,0.9), rgba(10,9,8,0.85));
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 22px 30px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, opacity 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.ritual-image-wrap {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0,0,0,0.35);
  margin-bottom: 22px;
  border: 1px solid rgba(212,175,55,0.15);
}
.ritual-image { width: 100%; height: 100%; object-fit: contain; }
@media (hover: hover) and (pointer: fine) {
  .ritual-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 20px 45px rgba(212,175,55,0.16); }
  .rituals-grid:hover .ritual-card:not(:hover) { opacity: 0.6; transform: scale(0.97); }
}
.ritual-card h3 { font-size: 22px; margin-bottom: 0.15em; }
.ritual-subtitle {
  font-family: var(--font-title);
  font-style: italic;
  color: var(--copper);
  font-size: 15px;
  letter-spacing: 0.04em;
  margin-bottom: 0.6em;
}
.ritual-price {
  font-family: var(--font-title);
  color: var(--gold);
  font-size: 26px;
  margin-bottom: 0.7em;
}
.ritual-desc { color: var(--cream-dim); font-size: 16px; flex-grow: 1; margin-bottom: 1.6em; }
.ritual-card .btn { align-self: flex-start; }

.filter-block {
  max-width: 820px;
  text-align: center;
}
.filter-text {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 21px;
  color: var(--gold-light);
  line-height: 1.6;
  padding: 40px 44px;
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 26px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials { padding-bottom: 90px; }
.testimonial-cta { text-align: center; margin: 30px 0 10px; }
.carousel-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 4px 20px;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) transparent;
}
.carousel::-webkit-scrollbar { height: 6px; }
.carousel::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 4px; }

.testimonial-card {
  flex: 0 0 auto;
  width: min(400px, 82vw);
  scroll-snap-align: start;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}
.testimonial-text { color: var(--cream-dim); font-style: italic; font-size: 17px; }
.testimonial-author {
  font-family: var(--font-title);
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 0;
}
.testimonial-author span { color: var(--cream-dim); font-family: var(--font-body); font-style: italic; }

.carousel-arrow {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--panel);
  color: var(--gold-light);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.carousel-arrow:hover { background: var(--gold); color: #1a1207; }

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(212, 175, 55, 0.28);
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-dot.active { background: var(--gold); width: 22px; border-radius: 5px; }
.carousel-dots:empty { display: none; margin: 0; }
#pricing-dots { display: none; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 50px auto 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel);
  margin-bottom: 18px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--gold-light);
  font-family: var(--font-title);
  font-size: 18px;
  line-height: 1.4;
  padding: 24px 56px 24px 26px;
  cursor: pointer;
  position: relative;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 24px;
}
.faq-item.open .faq-question::after { content: '\2212'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner { padding: 0 26px; }
.faq-answer p { color: var(--cream-dim); margin: 0; padding-bottom: 24px; }

/* ---------- CONTACT ---------- */
.contact { text-align: center; }
.contact-inner { display: flex; flex-direction: column; align-items: center; }
.contact-logo { width: 100px; margin-bottom: 20px; }
.contact-text { color: var(--cream-dim); font-size: 20px; }
.contact-number {
  font-family: var(--font-title);
  font-size: 32px;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 1.2em;
}

/* ---------- FOOTER ---------- */
.site-footer {
  position: relative;
  text-align: center;
  padding: 60px 24px 40px;
  border-top: 1px solid var(--border);
  background: rgba(5,4,3,0.6);
}
.footer-logo { width: 90px; margin: 0 auto 16px; }
.footer-name {
  font-family: var(--font-title);
  color: var(--gold-light);
  font-size: 18px;
  letter-spacing: 0.05em;
}
.footer-copy { color: var(--cream-dim); font-size: 14px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { position: static; max-width: 400px; margin: 0 auto; }
  .ethics-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-inner { justify-content: space-between; }
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(6,5,4,0.97);
    flex-direction: column;
    align-items: center;
    padding: 24px 0;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-150%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-toggle { display: flex; }
  .btn-nav-reservar { display: none; }
  .pricing-carousel-wrap { gap: 6px; }
  .pricing {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 30px 18vw 20px;
    margin: 30px 0 20px;
    gap: 18px;
  }
  .pricing::-webkit-scrollbar { display: none; }
  .price-card, .price-card-featured {
    flex: 0 0 72vw;
    max-width: 320px;
    scroll-snap-align: center;
    transform: scale(0.82);
    opacity: 0.55;
  }
  .price-card.active, .price-card-featured.active {
    transform: scale(1);
    opacity: 1;
    border-color: var(--gold);
  }
  .pricing-prev, .pricing-next {
    display: flex;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  #pricing-dots { display: flex; }

  .testimonial-card {
    width: min(320px, 78vw);
    padding: 22px 18px;
    min-height: unset;
  }
  .testimonial-text { font-size: 14.5px; line-height: 1.55; margin-bottom: 0.8em; }
  .testimonial-author { font-size: 13px; }
  .carousel { gap: 16px; align-items: flex-start; }
  .fab-reservar span { display: none; }
  .fab-reservar { padding: 14px; border-radius: 50%; }

  .ethics-card h3 {
    cursor: pointer;
    position: relative;
    padding-right: 28px;
    margin-bottom: 0;
    padding-bottom: 0.6em;
  }
  .ethics-card h3::after {
    content: '+';
    position: absolute;
    right: 0; top: -2px;
    font-family: var(--font-title);
    font-size: 22px;
    color: var(--gold);
    transition: transform 0.3s ease;
  }
  .ethics-card.open h3::after { content: '\2212'; }
  .ethics-card p {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-bottom: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease;
  }
  .ethics-card.open p {
    max-height: 600px;
    opacity: 1;
    margin-top: 0.6em;
  }

  .hero-content .btn,
  .contact-inner .btn {
    white-space: normal;
    max-width: 280px;
    text-align: center;
    line-height: 1.35;
  }
}
