/* ==========================================================================
   Douglas Healer Academia — v2
   Paleta beige/dorado/naranja · Fraunces + Manrope · animaciones místicas
   ========================================================================== */

:root {
  --bg:        #FAF7F2;
  --bg-warm:   #F5EFE3;
  --surface:   #F0E8D8;
  --primary:   #C9932A;
  --primary-d: #AB7720;
  --accent:    #D4622A;
  --accent-d:  #B8511F;
  --gold:      #E8C46A;
  --gold-l:    #F2D88B;
  --ink:       #1C1410;
  --ink-soft:  #2A1F18;
  --muted:     #8A7560;
  --border:    rgba(201,147,42,0.20);
  --shadow:    0 4px 16px rgba(201,147,42,0.10), 0 1px 4px rgba(201,147,42,0.08);
  --shadow-h:  0 8px 32px rgba(201,147,42,0.18), 0 2px 8px rgba(201,147,42,0.12);
  --shadow-deep: 0 20px 60px rgba(28,20,16,0.18), 0 8px 24px rgba(201,147,42,0.12);
  --radius:    0.75rem;
  --radius-lg: 1.25rem;
  --max-w:     1200px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 4rem; } }

.section { padding: 5rem 0; position: relative; }
@media (min-width: 768px) { .section { padding: 7rem 0; } }
@media (min-width: 1024px) { .section { padding: 8rem 0; } }

.divider-gold {
  width: 64px;
  height: 2px;
  margin: 1.5rem auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  position: relative;
}
.divider-gold::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--primary);
}

/* ==========================================================================
   DECORATIVE — particles, blobs, mystical
   ========================================================================== */
.bg-blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
  opacity: 0.4;
}
.bg-blob--gold {
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
}
.bg-blob--accent {
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.18;
}
.section > .container { position: relative; z-index: 1; }

@keyframes float-particle {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10%  { opacity: 0.8; }
  50%  { transform: translateY(-40px) translateX(15px) scale(1.1); opacity: 0.6; }
  100% { transform: translateY(-100px) translateX(-10px) scale(0.8); opacity: 0; }
}
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particles span {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-l);
  animation: float-particle 8s linear infinite;
}
.particles span:nth-child(1)  { left:  5%; bottom: 0; animation-delay: 0s;   animation-duration: 9s; }
.particles span:nth-child(2)  { left: 15%; bottom: 0; animation-delay: 2s;   animation-duration: 11s; }
.particles span:nth-child(3)  { left: 28%; bottom: 0; animation-delay: 4s;   animation-duration: 8s; }
.particles span:nth-child(4)  { left: 42%; bottom: 0; animation-delay: 1s;   animation-duration: 12s; }
.particles span:nth-child(5)  { left: 55%; bottom: 0; animation-delay: 3s;   animation-duration: 10s; }
.particles span:nth-child(6)  { left: 68%; bottom: 0; animation-delay: 5s;   animation-duration: 9s; }
.particles span:nth-child(7)  { left: 82%; bottom: 0; animation-delay: 6s;   animation-duration: 11s; }
.particles span:nth-child(8)  { left: 92%; bottom: 0; animation-delay: 1.5s; animation-duration: 13s; }
.particles span:nth-child(9)  { left: 35%; bottom: 0; animation-delay: 7s;   animation-duration: 10s; width: 3px; height: 3px; }
.particles span:nth-child(10) { left: 75%; bottom: 0; animation-delay: 4.5s; animation-duration: 12s; width: 3px; height: 3px; }

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.shimmer {
  background: linear-gradient(90deg, var(--primary) 30%, var(--gold-l) 50%, var(--primary) 70%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,247,242,0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.brand {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand small {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links {
  display: none;
  gap: 2rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a { color: var(--ink); transition: color 200ms ease; position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: all 250ms ease;
  transform: translateX(-50%);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
@media (min-width: 900px) { .nav-links { display: flex; } }

.nav-actions { display: flex; gap: 0.75rem; align-items: center; }

.lang-switcher {
  display: flex;
  background: var(--surface);
  border-radius: 9999px;
  padding: 3px;
}
.lang-btn {
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: all 220ms ease;
}
.lang-btn--active {
  background: var(--primary);
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(201,147,42,0.30);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
@media (min-width: 900px) { .nav-toggle { display: none; } }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a { padding: 0.6rem 0; font-weight: 500; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 250ms var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 600ms var(--ease);
}
.btn:hover::before { transform: translateX(100%); }
.btn--primary {
  background: var(--accent);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(212,98,42,0.35);
}
.btn--primary:hover {
  background: var(--accent-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,98,42,0.45);
}
.btn--ghost {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn--ghost:hover {
  background: var(--primary);
  color: var(--ink);
}
.btn--full { width: 100%; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: 4rem 0 4rem;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 6rem 0 5rem; } }
.hero .bg-blob--gold  { top: -10%; right: -10%; }
.hero .bg-blob--accent { bottom: -20%; left: -10%; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 4rem; }
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  background: var(--surface);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  border: 1px solid var(--border);
}
.badge .star { color: var(--gold); }
.badge--check::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
  display: block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 38rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero-photo-frame {
  position: relative;
  isolation: isolate;
}
.hero-carousel {
  position: relative;
}
.hero-photo {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  max-height: 80vh;
  margin: 0 auto;
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: -25%;
  background: radial-gradient(ellipse at center,
    rgba(232,196,106,0.55) 0%,
    rgba(201,147,42,0.25) 45%,
    transparent 75%);
  z-index: -1;
  animation: pulse-glow 6s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%      { transform: scale(1.08); opacity: 1; }
}
.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 700ms var(--ease-out), transform 1200ms var(--ease-out);
  pointer-events: none;
}
.hero-photo img.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.hero-photo:hover img.is-active { transform: scale(1.04); }
.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1.5px solid var(--gold);
  border-radius: 2rem;
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}

/* HERO dots indicator */
.hero-dots {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.25rem;
}
.hero-dot {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: rgba(201,147,42,0.25);
  transition: all 320ms var(--ease);
  cursor: pointer;
  padding: 0;
}
.hero-dot:hover { background: rgba(201,147,42,0.5); }
.hero-dot.is-active {
  background: linear-gradient(90deg, var(--primary), var(--gold));
  width: 56px;
  box-shadow: 0 0 12px rgba(232,196,106,0.5);
}

/* HERO GALLERY (drag carousel) */
.hero-gallery {
  margin-top: 4rem;
  position: relative;
}
.hero-gallery-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.dragstrip {
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  padding: 1rem 0;
}
.dragstrip:active,
.dragstrip.is-dragging { cursor: grabbing; }
.dragstrip-track {
  display: flex;
  gap: 1rem;
  will-change: transform;
}
.dragstrip-item {
  flex: 0 0 auto;
  width: 200px;
  height: 250px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 350ms var(--ease-out), box-shadow 350ms var(--ease-out);
  pointer-events: auto;
}
@media (min-width: 768px) {
  .dragstrip-item { width: 240px; height: 300px; }
}
.dragstrip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.dragstrip:not(.is-dragging) .dragstrip-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-h);
}
.dragstrip:not(.is-dragging) .dragstrip-item:hover img {
  transform: scale(1.08);
}
.dragstrip-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.dragstrip-fade--l { left: 0;  background: linear-gradient(90deg, rgba(250,247,242,1) 0%, rgba(250,247,242,0) 100%); }
.dragstrip-fade--r { right: 0; background: linear-gradient(-90deg, rgba(250,247,242,1) 0%, rgba(250,247,242,0) 100%); }

/* ==========================================================================
   STRIP CREDENCIALES
   ========================================================================== */
.strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.strip-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .strip-inner { grid-template-columns: repeat(4, 1fr); padding: 3rem 0; }
}
.strip-item {
  text-align: center;
  position: relative;
}
@media (min-width: 768px) {
  .strip-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    width: 1px;
    height: 60%;
    background: var(--gold);
    opacity: 0.4;
  }
}
.strip-item .num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}
.strip-item .lbl {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  display: block;
}

/* ==========================================================================
   MEDIA STRIP
   ========================================================================== */
.media-strip {
  background: var(--bg-warm);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.media-strip-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.media-strip-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
}
.media-strip-items a {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink-soft);
  opacity: 0.65;
  transition: all 280ms ease;
  position: relative;
}
.media-strip-items a:hover {
  opacity: 1;
  color: var(--primary);
  transform: translateY(-2px);
}

/* ==========================================================================
   TESTIMONIALS — marquee infinite + drag + lang filter
   ========================================================================== */
.testimonials {
  background: var(--bg);
  text-align: center;
  position: relative;
}
.testimonials .bg-blob--gold { top: 10%; left: -10%; opacity: 0.25; }
.testimonials h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.5rem;
}
.testimonials .sub {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}
.testimonials-meta-info {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.testimonials-meta-info strong { color: var(--primary); font-weight: 600; }

/* Marquee carousel */
.marquee {
  position: relative;
  overflow: hidden;
  margin: 2rem -1rem 0;
  cursor: grab;
  user-select: none;
}
.marquee:active { cursor: grabbing; }
.marquee-track {
  display: flex;
  gap: 1.25rem;
  will-change: transform;
}
.marquee-card {
  flex: 0 0 88%;
  pointer-events: none;
}
@media (min-width: 700px)  { .marquee-card { flex: 0 0 48%; } }
@media (min-width: 1100px) { .marquee-card { flex: 0 0 32%; } }
.tcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: all 320ms var(--ease);
  pointer-events: auto;
}
.tcard::before {
  content: "“";
  position: absolute;
  top: -8px; right: 14px;
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  pointer-events: none;
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-h); border-color: var(--primary); }
.tcard .stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-shadow: 0 0 10px rgba(232,196,106,0.4);
}
.tcard blockquote {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  flex: 1;
}
.tcard .who {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}
.tcard .name { font-weight: 600; font-size: 0.92rem; }
.tcard .src {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tcard .lang-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: rgba(201,147,42,0.10);
  padding: 3px 10px;
  border-radius: 9999px;
  align-self: flex-start;
}

.marquee-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.marquee-fade--l {
  left: 0;
  background: linear-gradient(90deg,
    rgba(250,247,242,1)   0%,
    rgba(250,247,242,0.92) 35%,
    rgba(250,247,242,0.55) 65%,
    rgba(250,247,242,0)   100%);
}
.marquee-fade--r {
  right: 0;
  background: linear-gradient(-90deg,
    rgba(250,247,242,1)   0%,
    rgba(250,247,242,0.92) 35%,
    rgba(250,247,242,0.55) 65%,
    rgba(250,247,242,0)   100%);
}

.testimonials-cta {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 220ms ease;
}
.testimonials-cta:hover { border-color: var(--primary); transform: translateY(-1px); }
.testimonials-cta .star { color: var(--gold); }

/* ==========================================================================
   WORKSHOPS
   ========================================================================== */
.workshops {
  background: var(--surface);
  position: relative;
}
.workshops .bg-blob--gold { bottom: -15%; right: -10%; }
.workshops .section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.workshops h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.5rem;
}
.workshops .sub {
  color: var(--muted);
  max-width: 42rem;
  margin: 0 auto;
}

.wgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 700px) {
  .wgrid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .wgrid { grid-template-columns: repeat(3, 1fr); }
}

.wcard {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 350ms var(--ease);
  box-shadow: var(--shadow);
  position: relative;
}
.wcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
  border-color: var(--gold);
}
.wcard-art {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}
.wcard-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.wcard:hover .wcard-art img { transform: scale(1.08); }
.wcard-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(28,20,16,0.4) 100%);
}
.wcard-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-block;
  padding: 4px 10px;
  background: rgba(28,20,16,0.85);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.wcard-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}
.wcard h3 {
  font-size: 1.35rem;
  font-weight: 600;
}
.wcard-desc {
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
}
.wcard-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.wcard-meta span::before {
  content: "·";
  margin-right: 0.5rem;
  color: var(--gold);
}
.wcard-meta span:first-child::before { content: ""; margin: 0; }
.wcard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  gap: 1rem;
}
.wcard-price {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.wcard-price small {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
}
.wcard .btn {
  padding: 0.65rem 1.1rem;
  font-size: 0.88rem;
}

/* ==========================================================================
   COMO ES UNA SESION
   ========================================================================== */
.process {
  background: var(--bg);
  position: relative;
}
.process .section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.process h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.5rem;
}
.process .sub {
  color: var(--muted);
  max-width: 42rem;
  margin: 0 auto;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  counter-reset: step;
}
@media (min-width: 700px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}
@media (min-width: 1024px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
}
.step {
  position: relative;
  padding: 2rem 1.5rem 1.75rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 320ms var(--ease);
  counter-increment: step;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-h); border-color: var(--gold); }
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -1rem; left: 1.5rem;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bg);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(201,147,42,0.4);
}
.step-icon {
  width: 36px; height: 36px;
  margin-bottom: 1rem;
  color: var(--primary);
}
.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.step p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about {
  background: var(--bg-warm);
  position: relative;
}
.about .bg-blob--gold { top: -10%; left: -10%; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 5fr 7fr; gap: 4rem; }
}

/* About gallery click carousel */
.about-gallery {
  position: relative;
}
.about-gallery-main {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  position: relative;
}
.about-gallery-main::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(ellipse at center,
    rgba(232,196,106,0.35) 0%,
    transparent 70%);
  z-index: -1;
}
.about-gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 500ms var(--ease), transform 1200ms var(--ease-out);
}
.about-gallery-main:hover img { transform: scale(1.06); }
.about-gallery-thumbs {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.about-gallery-thumbs::-webkit-scrollbar { display: none; }
.about-gallery-thumbs button {
  flex: 0 0 60px;
  height: 70px;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 220ms ease;
  opacity: 0.55;
}
.about-gallery-thumbs button.is-active {
  border-color: var(--primary);
  opacity: 1;
  transform: scale(1.05);
}
.about-gallery-thumbs button img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}
.about-gallery-thumbs button:hover img { transform: scale(1.12); }

.about h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.about p {
  color: var(--ink);
  margin-bottom: 1.1rem;
  font-size: 1.02rem;
  line-height: 1.7;
}
.about-quote {
  margin-top: 2rem;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  border-left: 3px solid var(--gold);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--primary);
  position: relative;
}
.about-quote::before {
  content: "“";
  position: absolute;
  left: -0.3rem; top: -1rem;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.5;
  font-family: 'Fraunces', serif;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  background: var(--bg);
  position: relative;
}
.faq .section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.faq h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.5rem;
}
.faq .sub {
  color: var(--muted);
  max-width: 42rem;
  margin: 0 auto;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 220ms ease;
}
.faq-item[open] { border-color: var(--primary); }
.faq-item summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 12px; height: 12px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  transition: transform 250ms ease;
  margin-right: 6px;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-bottom: -6px; }
.faq-item .faq-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  background: var(--surface);
  text-align: center;
  position: relative;
}
.contact .bg-blob--gold { bottom: -10%; right: -10%; }
.contact h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.75rem;
}
.contact .sub {
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}
.contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  text-align: left;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--bg);
  color: var(--ink);
  transition: all 200ms ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201,147,42,0.15);
}
.field textarea { min-height: 110px; resize: vertical; }

.contact-direct {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  font-size: 0.95rem;
}
.contact-direct a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--primary);
  font-weight: 600;
  transition: color 200ms ease;
}
.contact-direct a:hover { color: var(--accent); }
.contact-direct .ico-wa {
  width: 18px; height: 18px;
  color: #25D366;
  transition: transform 220ms var(--ease);
}
.contact-direct a:hover .ico-wa { transform: scale(1.15); }

/* ==========================================================================
   WHATSAPP FLOATING
   ========================================================================== */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5);
  z-index: 60;
  transition: transform 220ms var(--ease);
  animation: wa-pulse 2.5s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }
@media (min-width: 768px) {
  .wa-float { right: 2rem; bottom: 2rem; width: 64px; height: 64px; }
  .wa-float svg { width: 32px; height: 32px; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--ink);
  color: #F5F3EE;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 4rem; }
}
.footer-brand .brand { color: #F5F3EE; }
.footer-brand .brand small { color: rgba(245,243,238,0.6); }
.footer-tagline {
  margin-top: 1rem;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  max-width: 22rem;
}
.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  color: rgba(245,243,238,0.85);
  font-size: 0.92rem;
  transition: color 200ms ease;
}
.footer-col a:hover { color: var(--gold); }

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245,243,238,0.10);
  font-size: 0.82rem;
  color: rgba(245,243,238,0.65);
}
.footer-bar .badge {
  background: rgba(245,243,238,0.06);
  border: 1px solid rgba(245,243,238,0.12);
  color: rgba(245,243,238,0.85);
}

/* ==========================================================================
   STATE HELPERS
   ========================================================================== */
.is-hidden { display: none !important; }

/* ==========================================================================
   ACCESSIBILITY HELPERS
   ========================================================================== */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track, .dragstrip-track { transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
