:root {
  --bg: #FAFAF8;
  --surface: #FFFFFF;
  --text: #18161A;
  --text-muted: #6B6070;
  --accent: #8B5FA8;
  --accent-hover: #7A4F96;
  --border: #E8E3EC;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  --shadow: 0 4px 24px rgba(24, 22, 26, 0.06);
  --radius: 12px;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 120px 0;
}

.section--alt {
  background: var(--surface);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-header {
  margin-bottom: 64px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.02em;
}


/* ---- SCROLL REVEAL ---- */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}


/* ---- BUTTONS ---- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--accent);
}

.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(139, 95, 168, 0.25);
}

.btn--primary:active {
  transform: scale(0.98);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn--outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.btn--outline:active {
  transform: scale(0.98);
}

.btn--white {
  background: #fff;
  color: var(--accent);
  border: 1.5px solid #fff;
}

.btn--white:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-1px);
}

.btn--white-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn--white-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-1px);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.83rem;
}


/* ---- NAVBAR ---- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transform: translateY(-100%);
  animation: navbarSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

@keyframes navbarSlideIn {
  to { transform: translateY(0); }
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: var(--transition);
}

.navbar.scrolled .navbar__inner {
  padding-top: 14px;
  padding-bottom: 14px;
}

.navbar.scrolled {
  background: rgba(250, 250, 248, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.navbar__logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-shrink: 0;
}

.logo-elvi {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
}

.logo-memories {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.navbar__links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar__links a:hover {
  color: var(--text);
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__cta {
  flex-shrink: 0;
}

.navbar__toggle {
  display: none;
  padding: 8px;
  color: var(--text);
  margin-left: auto;
}


/* ---- MOBILE MENU ---- */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--surface);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 40px;
  padding: 8px;
  color: var(--text);
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.mobile-menu__links a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  transition: color 0.2s;
}

.mobile-menu__links a:hover {
  color: var(--accent);
}

.mobile-menu__links .btn {
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-top: 8px;
}


/* ---- HERO — split editorial ---- */

.hero {
  min-height: 100dvh;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 20% 50%, rgba(139,95,168,0.06) 0%, transparent 70%),
              radial-gradient(ellipse 40% 50% at 80% 20%, rgba(232,121,160,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Split layout */
.hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: calc(100dvh - 80px);
  position: relative;
  z-index: 2;
}

/* LEFT side — text */
.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
}

/* Watermark "Elvi" behind content */
.hero__watermark {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(10rem, 20vw, 18rem);
  font-weight: 600;
  color: var(--accent);
  opacity: 0.04;
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* Eyebrow label */
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  opacity: 0;
  animation: hero-in 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s forwards;
}

/* Title */
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.hero__line {
  display: block;
  font-size: clamp(3rem, 6vw, 6rem);
  opacity: 0;
  transform: translateY(40px);
}

.hero__line:nth-child(1) { animation: hero-in 0.8s cubic-bezier(0.16,1,0.3,1) 0.2s forwards; }
.hero__line:nth-child(2) { animation: hero-in 0.8s cubic-bezier(0.16,1,0.3,1) 0.33s forwards; }
.hero__line:nth-child(3) { animation: hero-in 0.8s cubic-bezier(0.16,1,0.3,1) 0.46s forwards; }

.hero__line--accent {
  font-size: clamp(4rem, 8vw, 8rem);
  color: var(--accent);
  letter-spacing: -0.04em;
}

.hero__line--accent em {
  font-style: italic;
}

@keyframes hero-in {
  to { opacity: 1; transform: translateY(0); }
}

.hero__desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 420px;
  margin-bottom: 40px;
  opacity: 0;
  animation: hero-in 0.7s cubic-bezier(0.16,1,0.3,1) 0.6s forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  animation: hero-in 0.7s cubic-bezier(0.16,1,0.3,1) 0.75s forwards;
}

/* Pillars */
.hero__pillars {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: hero-in 0.8s cubic-bezier(0.16,1,0.3,1) 0.9s forwards;
}

.hero__pillar {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hero__pillar-sep {
  color: var(--accent);
  opacity: 0.4;
  font-size: 0.7rem;
}

/* RIGHT side — photo */
.hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px 60px 40px;
  opacity: 0;
  animation: hero-photo-in 1s cubic-bezier(0.16,1,0.3,1) 0.4s forwards;
}

@keyframes hero-photo-in {
  from { opacity: 0; transform: translateX(40px) scale(0.97); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

.hero__photo-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3 / 4;
}

/* Marco 3D con perspectiva */
.hero__right {
  perspective: 1000px;
}

.hero__photo-frame {
  transform-style: preserve-3d;
  transition: transform 0.12s ease-out;
  will-change: transform;
}

/* Marco lila exterior — borde sólido con profundidad */
.hero__photo-frame::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 214px 214px 38px 38px;
  border: 2px solid var(--accent);
  opacity: 0.55;
  z-index: 0;
  transform: translateZ(-20px);
  transition: opacity 0.3s ease;
}

/* Segunda capa — sombra lila más difusa */
.hero__photo-frame::after {
  content: '';
  position: absolute;
  inset: -28px;
  border-radius: 228px 228px 52px 52px;
  border: 1px solid var(--accent);
  opacity: 0.18;
  z-index: 0;
  transform: translateZ(-40px);
}

.hero__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 200px 200px 24px 24px;
  box-shadow:
    0 32px 80px rgba(24,22,26,0.22),
    0 0 0 1px rgba(139,95,168,0.2),
    inset 0 0 0 1px rgba(255,255,255,0.1);
  transform: translateZ(0);
}

/* Resplandor lila detrás al hover */
.hero__photo-frame:hover::before {
  opacity: 0.9;
}

/* Tag badge */
.hero__photo-tag {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: -20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  box-shadow: 0 8px 24px rgba(24,22,26,0.12);
  white-space: nowrap;
  transform: translateZ(24px);
}

.hero__photo-tag svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .hero__split {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .hero__right {
    order: -1;
    padding: 0;
    width: 100%;
  }
  .hero__photo-frame {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 0 0 32px 32px;
  }
  .hero__photo {
    border-radius: 0 0 32px 32px;
    object-position: center 100%;
  }
  .hero__photo-frame::before {
    display: none;
  }
  .hero__photo-frame::after {
    display: none;
  }
  .hero__photo-tag {
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(250,250,248,0.92);
    backdrop-filter: blur(8px);
  }
  .hero__left {
    padding: 40px 24px 56px;
    align-items: center;
    text-align: center;
  }
  .hero__title { align-items: center; }
  .hero__watermark { display: none; }
  .hero__pillars { justify-content: center; }
  .hero__actions { justify-content: center; }
}

@media (max-width: 600px) {
  .hero__line { font-size: clamp(2.6rem, 11vw, 3.8rem); }
  .hero__line--accent { font-size: clamp(3.2rem, 13vw, 5rem); }
  .hero__left { padding: 32px 20px 48px; }
  .hero__photo-frame { aspect-ratio: 3 / 2; }
  .hero__pillar-sep { display: none; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}


/* ---- REEL GALLERY (portafolio) ---- */

@keyframes gallery-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes gallery-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.reel-gallery {
  position: relative;
  overflow: hidden;
  padding: 22px 0;
}

.reel-row {
  overflow: visible;
  margin-bottom: 12px;
}

.reel-track {
  display: flex;
  gap: 12px;
  will-change: transform;
}

.reel-track--left {
  animation: gallery-left 32s linear infinite;
}

.reel-track--right {
  animation: gallery-right 26s linear infinite;
}

.reel-track--slow {
  animation: gallery-left 48s linear infinite;
}

.reel-img {
  width: 250px;
  height: 195px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}

.reel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-img:hover img {
  transform: scale(1.13) rotate(1.5deg);
}

.reel-img::after {
  content: attr(data-cat);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 52px 14px 14px;
  background: linear-gradient(to top, rgba(14, 8, 20, 0.78) 0%, transparent 100%);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: 0.01em;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.reel-fade-left,
.reel-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 220px;
  z-index: 2;
  pointer-events: none;
}

.reel-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--bg) 20%, transparent);
}

.reel-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--bg) 20%, transparent);
}

.portfolio-footer {
  text-align: center;
  margin-top: 48px;
}

.portfolio-footer .btn {
  gap: 10px;
}

@media (pointer: fine) {
  .reel-img:hover::after { opacity: 1; }
}

@media (max-width: 768px) {
  .reel-img { width: 170px; height: 135px; }
  .reel-fade-left, .reel-fade-right { width: 50px; }
}


/* ---- ABOUT ---- */

.about__grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 80px;
  align-items: center;
}

.about__img-wrap {
  position: relative;
}

/* ---- ABOUT PHOTO SLIDER ---- */
.about__photo-wrap {
  position: relative;
  height: 640px;
  overflow: hidden;
  border-radius: var(--radius);
}

.about__photo-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.about__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 55%;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.about__slide:nth-child(2) {
  object-position: 45% 88%;
}

.about__slide.active {
  opacity: 1;
}

.about__photo-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.about__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.3s, transform 0.3s;
}

.about__dot.active {
  background: #fff;
  transform: scale(1.35);
}

@media (max-width: 768px) {
  .about__photo-wrap { height: 360px; }
}

.about__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
}

.about__img-deco {
  position: absolute;
  top: 24px;
  left: -24px;
  right: 24px;
  bottom: -24px;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius);
  opacity: 0.35;
  z-index: 0;
}

.about__content .section-label {
  margin-bottom: 12px;
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 28px;
}

.about__title em {
  font-style: italic;
  color: var(--accent);
  display: block;
}

.about__content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about__features {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about__features li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.about__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 400;
}


/* ---- EXPERIENCIA SECTION ---- */

.exp-section {
  background: var(--surface);
}

.exp-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.exp-step:nth-child(1),
.exp-step:nth-child(2) {
  grid-column: span 3;
}

.exp-step:nth-child(3),
.exp-step:nth-child(4),
.exp-step:nth-child(5) {
  grid-column: span 2;
}

.exp-step {
  background: var(--accent);
  border-radius: 20px;
  padding: 36px 32px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(139,95,168,0.25);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}

.exp-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(139,95,168,0.35);
}

.exp-step__num {
  position: absolute;
  top: -14px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.exp-step__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.exp-step:hover .exp-step__icon {
  background: rgba(255,255,255,0.28);
  transform: scale(1.1) rotate(-4deg);
}

.exp-step__content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.exp-step__content p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin: 0;
}

.exp-steps .exp-step:nth-child(1) { transition-delay: 0ms; }
.exp-steps .exp-step:nth-child(2) { transition-delay: 70ms; }
.exp-steps .exp-step:nth-child(3) { transition-delay: 140ms; }
.exp-steps .exp-step:nth-child(4) { transition-delay: 210ms; }
.exp-steps .exp-step:nth-child(5) { transition-delay: 280ms; }

.exp-quote {
  text-align: center;
  margin-top: 72px;
  padding: 48px;
  position: relative;
}

.exp-quote::before,
.exp-quote::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.exp-quote::before { top: 0; }
.exp-quote::after  { bottom: 0; }

.exp-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
  letter-spacing: -0.02em;
}

@media (max-width: 600px) {
  .exp-steps { grid-template-columns: 1fr; gap: 14px; }
  .exp-step:nth-child(1), .exp-step:nth-child(2),
  .exp-step:nth-child(3), .exp-step:nth-child(4), .exp-step:nth-child(5) {
    grid-column: span 1;
  }
  .exp-step { padding: 28px 24px; }
  .exp-step__num { font-size: 5rem; top: -10px; right: 16px; }
  .exp-quote { padding: 40px 0; margin-top: 48px; }
}


/* ---- SECTION HEADER CENTER ---- */

.section-header--center {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 64px;
}

.section-subtitle {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 14px;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ---- DYNAMIC TYPOGRAPHY ---- */

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

.section-title strong {
  font-weight: 600;
  font-style: normal;
}

/* ---- SERVICES CAROUSEL ---- */

@keyframes card-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.svc-carousel-wrap {
  margin: 0 -40px;
  padding: 24px 0 16px;
  overflow: hidden;
}

.svc-carousel {
  display: flex;
  gap: 24px;
  overflow-x: scroll;
  scroll-behavior: auto;
  padding: 20px 40px 44px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.svc-carousel::-webkit-scrollbar { display: none; }
.svc-carousel.is-dragging { cursor: grabbing; }

/* Individual card */
.svc-card {
  flex: 0 0 320px;
  height: 460px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 40px rgba(24,22,26,0.14);
  animation: card-float 5s ease-in-out infinite;
  transition: box-shadow 0.4s ease;
}

.svc-card:nth-child(1) { animation-delay: 0.0s; }
.svc-card:nth-child(2) { animation-delay: 0.5s; }
.svc-card:nth-child(3) { animation-delay: 1.0s; }
.svc-card:nth-child(4) { animation-delay: 1.5s; }
.svc-card:nth-child(5) { animation-delay: 2.0s; }
.svc-card:nth-child(6) { animation-delay: 2.5s; }

.svc-card:hover {
  box-shadow: 0 24px 56px rgba(139,95,168,0.28);
  animation-play-state: paused;
}

/* Image layer */
.svc-card__img {
  position: absolute;
  inset: 0;
}

.svc-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

.svc-card:hover .svc-card__img img {
  transform: scale(1.07);
}

/* Base dark gradient */
.svc-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,8,20,0.82) 0%,
    rgba(14,8,20,0.15) 55%,
    transparent 100%
  );
  transition: background 0.45s ease;
}

.svc-card:hover .svc-card__img::after {
  background: linear-gradient(
    to top,
    rgba(14,8,20,0.92) 0%,
    rgba(14,8,20,0.65) 50%,
    rgba(14,8,20,0.2) 100%
  );
}

/* Front label (default visible) */
.svc-card__front {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 22px;
  z-index: 2;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.svc-card:hover .svc-card__front {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.svc-card__num {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.svc-card__name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* Hover panel (slides up) */
.svc-card__hover {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 22px 28px;
  z-index: 2;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.16,1,0.3,1);
}

.svc-card:hover .svc-card__hover {
  opacity: 1;
  transform: translateY(0);
}

.svc-card__hover .svc-card__num { margin-bottom: 4px; }
.svc-card__hover .svc-card__name { margin-bottom: 10px; }

.svc-card__tagline {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-style: italic;
  color: rgba(255,255,255,0.72);
  margin-bottom: 10px;
  line-height: 1.35;
}

.svc-card__desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.68;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.svc-card__cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
  transition: border-color 0.25s, color 0.25s;
}

.svc-card__cta:hover {
  border-color: #fff;
  color: rgba(255,255,255,0.9);
}

/* Navigation */
.svc-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 8px 40px 0;
}

.svc-nav__btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  flex-shrink: 0;
}

.svc-nav__btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.svc-nav__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.svc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.3s, width 0.3s;
  cursor: pointer;
}

.svc-dot.active {
  background: var(--accent);
  width: 18px;
  border-radius: 4px;
}

@media (max-width: 600px) {
  .svc-carousel-wrap { margin: 0 -20px; }
  .svc-carousel { padding: 12px 20px 32px; gap: 14px; }
  .svc-card { flex: 0 0 260px; height: 390px; }
  .svc-nav { padding: 8px 20px 0; }
  .section-header--center { margin-bottom: 40px; }
}


/* ---- BOOKING / RESERVA ---- */

.booking-wrap {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.booking-block__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

/* --- Session cards --- */
.session-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}

.session-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 10px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font-body);
}

.session-btn:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(139,95,168,0.12);
}

.session-btn.active {
  border-color: var(--accent);
  background: rgba(139,95,168,0.07);
  box-shadow: 0 0 0 3px rgba(139,95,168,0.15);
}

.session-btn__icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(139,95,168,0.08);
  color: var(--accent);
  transition: background 0.25s;
  flex-shrink: 0;
}

.session-btn.active .session-btn__icon {
  background: rgba(139,95,168,0.18);
}

.session-btn__name {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.25s;
  text-align: center;
}

.session-btn:hover .session-btn__name,
.session-btn.active .session-btn__name {
  color: var(--accent);
}

/* --- Style pills --- */
.booking-block--style {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.55s cubic-bezier(0.16,1,0.3,1),
              opacity 0.4s ease,
              margin-top 0.55s cubic-bezier(0.16,1,0.3,1);
  margin-top: -44px;
}

.booking-block--style.visible {
  max-height: 160px;
  opacity: 1;
  margin-top: 0;
}

.style-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.style-pill {
  padding: 10px 24px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: var(--surface);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.97rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.22s ease;
}

.style-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.style-pill.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* --- Bottom: calendar + info --- */
.booking-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Calendar */
.booking-cal {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin: 16px 0 12px;
}

.booking-cal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.booking-cal__nav {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.booking-cal__nav:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.booking-cal__month {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}

.booking-cal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 10px 12px 4px;
}

.booking-cal__weekdays span {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.booking-cal__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 4px 12px 14px;
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  border-radius: 50%;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--text);
  transition: background 0.18s, color 0.18s;
  font-family: var(--font-body);
}

.cal-day:hover:not(:disabled) {
  background: rgba(139,95,168,0.10);
  color: var(--accent);
}

.cal-day--today {
  font-weight: 700;
  color: var(--accent);
}

.cal-day--selected {
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 600;
}

.cal-day--past,
.cal-day--other {
  color: var(--border);
  cursor: default;
}

.booking-cal__pick {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(139,95,168,0.05);
  border: 1.5px dashed rgba(139,95,168,0.25);
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.booking-cal__pick svg {
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.7;
}

.booking-cal__pick.has-date {
  background: rgba(139,95,168,0.09);
  border-color: var(--accent);
  border-style: solid;
  color: var(--accent);
  font-weight: 500;
}

.booking-cal__pick.has-date svg {
  opacity: 1;
}

/* Info fields */
.booking-info-section {
  padding-top: 0;
}

.booking-fields {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Time slots */
.booking-time-wrap {
  margin-top: 14px;
}

.booking-time__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.time-slot {
  padding: 6px 13px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.18s ease;
}

.time-slot:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.time-slot.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 500;
}

/* Submit buttons */
.booking-submit-wrap {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.booking-submit-btn {
  flex: 1;
  justify-content: center;
  font-size: 0.88rem;
}

/* Success card */
.booking-success {
  display: none;
  text-align: center;
  padding: 36px 24px;
  background: linear-gradient(135deg, rgba(139,95,168,0.07), rgba(139,95,168,0.03));
  border: 1.5px solid rgba(139,95,168,0.22);
  border-radius: 16px;
  margin-top: 8px;
  animation: success-in 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
}

@keyframes success-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.booking-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.booking-success h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.booking-success p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .session-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .booking-bottom { grid-template-columns: 1fr; gap: 32px; }
  .session-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 480px) {
  .session-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .session-btn { padding: 14px 8px; }
  .session-btn__icon { width: 38px; height: 38px; }
}

/* ---- PACKAGES ---- */

.packages-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 24px;
  align-items: start;
}

.package-card {
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  transition: var(--transition);
}

.package-card--outline {
  background: var(--surface);
  border: 1.5px solid var(--border);
}

.package-card--outline:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.package-card--featured {
  background: var(--accent);
  color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(139, 95, 168, 0.28);
}

.package-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
}

.package-card__name {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.7;
}

.package-card--featured .package-card__name {
  opacity: 0.8;
  color: rgba(255, 255, 255, 0.85);
}

.package-card__price {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--text);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}

.package-card--featured .package-card__price {
  color: #fff;
}

.package-card__currency {
  font-size: 1.5rem;
  margin-top: 6px;
}

.package-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.5;
}

.package-card--featured .package-card__desc {
  color: rgba(255, 255, 255, 0.72);
}

.package-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.package-card--featured .package-card__features {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.package-card__features li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}

.package-card--featured .package-card__features li {
  color: rgba(255, 255, 255, 0.85);
}

.package-card__features li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.package-card--featured .package-card__features li::before {
  color: rgba(255, 255, 255, 0.5);
}

.package-card__btn {
  width: 100%;
  justify-content: center;
}

.packages-note {
  text-align: center;
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-top: 40px;
}


/* ---- TESTIMONIALS ---- */

.testimonials-slider {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 56px 64px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.testimonial__quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 40px;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  flex-shrink: 0;
}

.testimonial__info strong {
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
}

.testimonial__info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

.testimonials-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.testimonials-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

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

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

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


/* ---- CTA BAND ---- */

.cta-band {
  background: var(--accent);
  padding: 100px 0;
}

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

.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cta-band__title em {
  font-style: italic;
  color: rgba(255,255,255,0.85);
}

.cta-band__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
  margin-bottom: 12px;
}


/* ---- CONTACT ---- */

.contact__grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 80px;
  align-items: start;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}

.contact__info > p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color 0.2s;
}

.contact__item:hover {
  color: var(--accent);
}

.contact__item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  transition: var(--transition);
}

.contact__item:hover .contact__item-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6070' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--border);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-submit {
  align-self: flex-start;
}


/* ---- FOOTER ---- */

.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.6);
  padding-top: 80px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand .navbar__logo {
  margin-bottom: 20px;
  display: inline-flex;
}

.footer__brand .logo-elvi {
  color: #fff;
}

.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 28px;
}

.footer__socials {
  display: flex;
  gap: 14px;
}

.footer__socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer__socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.footer__col nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col nav a,
.footer__col span {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer__col nav a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer__bottom {
  padding: 24px 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}


/* ---- RESPONSIVE ---- */

@media (max-width: 1100px) {
  .container {
    padding: 0 32px;
  }

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

  .package-card {
    padding: 32px 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 80px 0;
  }

  .navbar__links,
  .navbar__cta {
    display: none;
  }

  .navbar__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__img-wrap,
  .about__photo-wrap {
    max-width: 480px;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row--reverse {
    direction: ltr;
  }

  .service-row__img {
    aspect-ratio: 16 / 9;
  }

  .service-row__content {
    padding: 40px 32px;
  }

  .packages-row {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .package-card--featured {
    transform: none;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .masonry-grid {
    columns: 2;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-slide {
    padding: 40px 36px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 64px 0;
  }

  .hero__title {
    font-size: 2.6rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__pillars {
    gap: 8px;
  }

  .masonry-grid {
    columns: 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .testimonial-slide {
    padding: 32px 24px;
  }

  .cta-band {
    padding: 72px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }
}


/* =====================================================
   DYNAMIC LAYER — Petals, Cursor, Scroll, Interactions
   ===================================================== */

/* ---- Petals canvas ---- */
#petals-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}

/* ---- Focus visible — accesibilidad teclado ---- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ---- Skip to content ---- */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}

/* ---- Cursor flor (desktop only) ---- */
@media (pointer: fine) {
  *, *::before, *::after {
    cursor: url('cursor-flower.svg') 16 16, auto !important;
  }
}

/* cursor-dot / cursor-ring (legacy) */
.cursor-dot {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s, opacity 0.2s;
}

.cursor-ring {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.35s cubic-bezier(0.16,1,0.3,1),
              height 0.35s cubic-bezier(0.16,1,0.3,1),
              opacity 0.3s,
              border-color 0.3s;
  opacity: 0.6;
}

.cursor-dot.cursor--hover {
  width: 14px; height: 14px;
  background: #E879A0;
}

.cursor-ring.cursor--hover {
  width: 56px; height: 56px;
  opacity: 0.35;
  border-color: #E879A0;
}

/* ---- Scroll progress bar ---- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #E879A0, #C4B5E0);
  z-index: 10001;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(139,95,168,0.5);
}

/* ---- Staggered reveal delays ---- */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---- Hero title word animation ---- */
.hero__title .word {
  display: inline-block;
  overflow: hidden;
}
.hero__title .word-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.75s cubic-bezier(0.16,1,0.3,1), opacity 0.5s ease;
}
.hero__title.words-visible .word-inner {
  transform: translateY(0);
  opacity: 1;
}
.hero__title .word:nth-child(1) .word-inner { transition-delay: 0.05s; }
.hero__title .word:nth-child(2) .word-inner { transition-delay: 0.14s; }
.hero__title .word:nth-child(3) .word-inner { transition-delay: 0.23s; }
.hero__title .word:nth-child(4) .word-inner { transition-delay: 0.32s; }
.hero__title .word:nth-child(5) .word-inner { transition-delay: 0.41s; }
.hero__title .word:nth-child(6) .word-inner { transition-delay: 0.50s; }

/* ---- Magnetic buttons ---- */
.btn {
  will-change: transform;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1),
              background 0.3s ease,
              color 0.3s ease,
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}

/* ---- 3D Tilt cards ---- */
.masonry-card,
.package-card,
.service-zig__img-wrap {
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease;
  transform-style: preserve-3d;
}


/* ---- Shimmer on stat numbers ---- */

/* ---- Pulse on WhatsApp FAB (if present) ---- */
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ---- Enhanced masonry overlay ---- */
.masonry-card__overlay {
  transition: opacity 0.4s cubic-bezier(0.16,1,0.3,1),
              transform 0.4s cubic-bezier(0.16,1,0.3,1);
  transform: translateY(8px);
}
.masonry-card:hover .masonry-card__overlay {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Service zig image parallax on hover ---- */
.service-zig__img-wrap img {
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.service-zig__img-wrap:hover img {
  transform: scale(1.06);
}

/* ---- Filter btn ripple ---- */
.filter-btn {
  position: relative;
  overflow: hidden;
}
.filter-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  opacity: 0;
  border-radius: inherit;
  transform: scale(0.6);
  transition: opacity 0.25s, transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.filter-btn:active::after {
  opacity: 0.12;
  transform: scale(1);
}

/* ---- Floating label animation ---- */
@keyframes float-label {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-5px); }
}
.section-label {
  animation: float-label 3.5s ease-in-out infinite;
}

/* ---- CTA band text glow ---- */
.cta-band h2 {
  text-shadow: 0 0 40px rgba(255,255,255,0.15);
}

/* ---- Scroll indicator arrow drift (ease-out, sin rebote) ---- */
@keyframes scroll-drift {
  0%, 100% { transform: translateY(0) translateX(-50%); opacity: 1; }
  50%       { transform: translateY(7px) translateX(-50%); opacity: 0.6; }
}

/* ---- Input focus glow ---- */
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  box-shadow: 0 0 0 3px rgba(139,95,168,0.15), 0 2px 8px rgba(139,95,168,0.1);
  transform: none;
}

/* ---- Package card tilt perspective container ---- */
.packages-grid {
  perspective: 1200px;
}

/* ---- Testimonial slide enter animation ---- */
.testimonial-slide {
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

/* ---- Footer link hover line animation ---- */
.footer__links a,
.footer__services a {
  position: relative;
  display: inline-block;
}
.footer__links a::after,
.footer__services a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(0.16,1,0.3,1);
}
.footer__links a:hover::after,
.footer__services a:hover::after {
  width: 100%;
}

/* ---- Masonry item hidden transition ---- */
.masonry-item {
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.masonry-item.hidden {
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}


/* ================================================================
   VISUAL ENHANCEMENTS
   ================================================================ */

/* ---- HERO ANIMATED BLOBS ---- */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero__blob--1 {
  width: 640px; height: 640px;
  top: -180px; right: -120px;
  background: radial-gradient(circle at 40% 40%, rgba(139,95,168,0.14) 0%, transparent 68%);
  animation: blob-drift 10s ease-in-out infinite;
}
.hero__blob--2 {
  width: 440px; height: 440px;
  bottom: -100px; left: -80px;
  background: radial-gradient(circle, rgba(249,196,216,0.20) 0%, transparent 68%);
  animation: blob-drift 13s ease-in-out infinite reverse;
}
.hero__blob--3 {
  width: 320px; height: 320px;
  top: 25%; left: 15%;
  background: radial-gradient(circle, rgba(201,160,220,0.10) 0%, transparent 68%);
  animation: blob-drift 7s ease-in-out infinite 1.5s;
}
@keyframes blob-drift {
  0%, 100% { transform: translate(0,    0)    scale(1); }
  33%       { transform: translate(-28px, 22px) scale(1.07); }
  66%       { transform: translate(16px, -16px) scale(0.96); }
}
.hero__center { position: relative; z-index: 1; }


/* ---- MARQUEE STRIP ---- */
.marquee-strip {
  background: var(--accent);
  overflow: hidden;
  padding: 15px 0;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 22s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  padding: 0 20px;
  letter-spacing: 0.05em;
}
.marquee-sep {
  color: rgba(255,255,255,0.40) !important;
  font-style: normal !important;
  padding: 0 4px !important;
  opacity: 1;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ---- PACKAGE TIER ICONS ---- */
.pkg-tier-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background: rgba(139,95,168,0.10);
  color: var(--accent);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.package-card:hover .pkg-tier-icon {
  transform: scale(1.12) rotate(-5deg);
}
.package-card--featured .pkg-tier-icon {
  background: rgba(255,255,255,0.18);
  color: #fff;
}


/* ---- TESTIMONIAL DECORATION ---- */
.testimonial__deco {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.7;
  color: var(--accent);
  opacity: 0.18;
  display: block;
  margin-bottom: 0;
  pointer-events: none;
  user-select: none;
}
.testimonial__stars {
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
  display: block;
  opacity: 0.85;
}


/* ---- TESTIMONIALS — rating banner + reviews grid ---- */

.rating-banner {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 36px;
  margin-bottom: 48px;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}

.rating-banner__left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.rating-big {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}

.rating-stars-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rating-stars {
  color: #F5A623;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.rating-count {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.rating-banner__divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

.rating-banner__google {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 220px;
  flex-wrap: wrap;
}

.rating-banner__google-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.rating-banner__google-text strong {
  font-size: 0.95rem;
  color: var(--text);
}

.rating-banner__google-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Reviews grid */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 8px 32px rgba(139, 95, 168, 0.12);
  transform: translateY(-3px);
}

.review-card--featured {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(139, 95, 168, 0.1);
  position: relative;
  overflow: hidden;
}

.review-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #C4748C);
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-card__stars {
  color: #F5A623;
  font-size: 1rem;
  letter-spacing: 1px;
}

.review-card__text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.review-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-card__info strong {
  font-size: 0.9rem;
  color: var(--text);
}

.review-card__info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Google reviews embed section */

.google-reviews-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.google-reviews-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.google-reviews-widget {
  min-height: 80px;
}

.google-reviews-placeholder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.google-reviews-placeholder p {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 360px;
}

@media (max-width: 600px) {
  .rating-banner { flex-direction: column; align-items: flex-start; gap: 20px; padding: 20px; }
  .rating-banner__divider { width: 100%; height: 1px; }
  .google-reviews-placeholder { flex-direction: column; align-items: flex-start; }
}
