/* ============================================================
   DELUXE HEALTH — Landing Mockup v1
   Designed by Syntro AI · 2026
   Palette: Champagne Gold + Pastel Rose + Carbon Black
   ============================================================ */

/* ============ TOKENS ============ */
:root {
  /* Colors - Luxury Medical Aesthetic */
  --gold: #C8AD58;
  --gold-light: #DECA7A;
  --gold-dark: #A88E44;
  --gold-deep: #8A7235;

  --rose: #F5E6E2;
  --rose-mid: #EDD5CF;
  --nude: #F7F1EC;
  --cream: #FBF7F2;
  --white: #FFFFFF;

  --carbon: #1A1718;
  --carbon-soft: #2D2929;
  --gray-700: #4A4544;
  --gray-500: #8B847E;
  --gray-300: #C9C3BC;
  --gray-100: #E8E3DD;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, system-ui, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-xxl: 10rem;

  --radius: 4px;
  --radius-lg: 16px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ RESET & BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--carbon);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 3rem; } }

/* ============ UTILITIES ============ */
.gold-italic {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.link-gold {
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: var(--transition);
}
.link-gold:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border: 1px solid var(--gold-dark);
  box-shadow: 0 4px 24px rgba(191, 164, 111, 0.4);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-deep) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(191, 164, 111, 0.6);
}
/* flecha que aparece al hacer hover en botón gold */
.btn--gold .btn-arrow {
  display: inline-block;
  transform: translateX(-6px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
}
.btn--gold:hover .btn-arrow {
  transform: translateX(0);
  opacity: 1;
}
.btn--ghost {
  background: transparent;
  color: var(--carbon);
  border: 1px solid rgba(26, 23, 24, 0.5);
}
.btn--ghost:hover {
  background: var(--carbon);
  color: var(--white);
  border-color: var(--carbon);
}
/* ghost dentro del hero: borde carbon sobre fondo claro */
.hero .btn--ghost {
  background: rgba(26, 23, 24, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(26, 23, 24, 0.85);
  border: 1px solid rgba(26, 23, 24, 0.28);
}
.hero .btn--ghost:hover {
  background: rgba(26, 23, 24, 0.12);
  border-color: rgba(26, 23, 24, 0.55);
  color: #1A1718;
}
.btn--lg {
  padding: 1.2rem 3rem;
  font-size: 0.95rem;
}

/* ============ NAVIGATION ============ */
@keyframes navEnter {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 0;
  background: linear-gradient(180deg, rgba(26, 23, 24, 0.97) 0%, rgba(26, 23, 24, 0.88) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: var(--transition);
  border-bottom: 1px solid rgba(191, 164, 111, 0.18);
  border-top: 2px solid rgba(191, 164, 111, 0.55);
  animation: navEnter 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation-delay: 0.1s;
}
.nav.scrolled {
  padding: 0.85rem 0;
  background: rgba(20, 17, 18, 0.99);
  border-bottom-color: rgba(191, 164, 111, 0.35);
  border-top-color: rgba(191, 164, 111, 0.7);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.45);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo img {
  height: 70px;
  width: auto;
  transition: var(--transition);
  display: block;
}
.nav.scrolled .nav__logo img { height: 55px; }
@media (max-width: 768px) {
  .nav__logo img { height: 55px; }
  .nav.scrolled .nav__logo img { height: 45px; }
}
.nav__menu {
  display: none;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) { .nav__menu { display: flex; } }

/* entrada escalonada de cada link */
@keyframes navItemIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav__menu li {
  animation: navItemIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation-delay: calc(0.25s + var(--i, 0) * 0.08s);
}

.nav__menu a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 238, 225, 0.75);
  position: relative;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

/* número pequeño antes de cada link */
.nav__num {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(191, 164, 111, 0.6);
  transition: color 0.3s ease;
  line-height: 1;
  margin-top: 1px;
}

/* línea que barre de izquierda a derecha en hover */
.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__menu a:hover { color: rgba(245, 238, 225, 1); }
.nav__menu a:hover .nav__num { color: var(--gold); }
.nav__menu a:hover::after { width: 100%; }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav__cta {
  display: none;
  font-size: 0.78rem;
  padding: 0.65rem 1.6rem;
  letter-spacing: 0.13em;
  border-radius: 50px;
}
@media (min-width: 1024px) { .nav__cta { display: inline-flex; } }

/* LANGUAGE TOGGLE EN/ES */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(191, 164, 111, 0.4);
  border-radius: 100px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}
.lang-toggle__btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray-300);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  border: none;
}
.lang-toggle__btn:hover { color: var(--gold-light); }
.lang-toggle__btn.is-active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(191, 164, 111, 0.4);
}

/* Mobile: el toggle queda visible siempre arriba a la derecha */
@media (max-width: 1023px) {
  .nav__actions { gap: 0.5rem; }
  .lang-toggle { order: 1; }
  .nav__burger { order: 2; }
}

.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
  z-index: 101;
}
.nav__burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
}
@media (min-width: 1024px) { .nav__burger { display: none; } }

.nav__menu.is-open {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--carbon);
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  z-index: 99;
}
.nav__menu.is-open a { font-size: 1.5rem; color: var(--cream); }

.nav__burger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10rem 0 4rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(245, 230, 226, 0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 70%, rgba(212, 189, 140, 0.25) 0%, transparent 50%),
    linear-gradient(135deg, #FBF8F3 0%, #F5EDE6 50%, #EDE0D4 100%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 2px,
      rgba(191, 164, 111, 0.04) 2px,
      rgba(191, 164, 111, 0.04) 3px
    );
}

/* ============ HERO SOCIAL BUBBLES ============ */
.hero__social {
  position: absolute;
  left: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 0;
}
@media (min-width: 1024px) { .hero__social { display: flex; } }

.hero__social-line {
  display: block;
  width: 1.5px;
  height: 4rem;
  background: linear-gradient(to bottom, transparent, rgba(191,164,111,0.55), transparent);
  flex-shrink: 0;
}

.hero__social-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin: 7px 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.94) 0%, rgba(253,247,238,0.88) 100%);
  border: 1.5px solid rgba(191,164,111,0.40);
  border-radius: 50%;
  color: #a0793a;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 4px 20px rgba(191,164,111,0.26),
    0 2px 7px rgba(26,23,24,0.11),
    inset 0 1px 0 rgba(255,255,255,0.75);
  transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
  will-change: transform;
}
.hero__social-btn svg {
  width: 21px;
  height: 21px;
}
.hero__social-btn:hover {
  background: linear-gradient(145deg, rgba(255,255,255,0.99) 0%, rgba(252,242,222,0.96) 100%);
  border-color: rgba(191,164,111,0.72);
  color: #7a5c24;
  box-shadow:
    0 8px 32px rgba(191,164,111,0.40),
    0 3px 12px rgba(26,23,24,0.13),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

.hero__social-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(191,164,111,0.62);
  pointer-events: none;
  opacity: 0;
}

.hero__social-label {
  position: absolute;
  left: calc(100% + 16px);
  white-space: nowrap;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a6428;
  background: linear-gradient(135deg, rgba(255,255,255,0.97), rgba(253,246,234,0.93));
  padding: 5px 13px;
  border-radius: 100px;
  border: 1px solid rgba(191,164,111,0.32);
  box-shadow: 0 3px 12px rgba(191,164,111,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateX(-8px);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}
.hero__social-btn:hover .hero__social-label {
  opacity: 1;
  transform: translateX(0);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
}
.hero__left {
  text-align: left;
}
.hero__right {
  position: relative;
  min-height: 520px;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--carbon);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(26, 20, 14, 0.88);
  margin-bottom: 3rem;
  line-height: 1.75;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 12px rgba(245, 235, 210, 0.8), 0 2px 32px rgba(245, 235, 210, 0.5);
  position: relative;
  padding-top: 1.5rem;
}
/* línea dorada fina encima del subtítulo */
.hero__subtitle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
.hero__scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ============ TRUST BAR ============ */
.trust {
  background: var(--carbon);
  color: var(--white);
  padding: 3rem 0;
  position: relative;
}
.trust__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .trust__inner { grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 1rem; }
}
.trust__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.trust__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.trust__label {
  font-size: 0.875rem;
  color: var(--gray-300);
  line-height: 1.4;
}
.trust__label span {
  color: var(--gray-500);
  font-size: 0.75rem;
}
.trust__sep {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  display: none;
}
@media (min-width: 768px) { .trust__sep { display: block; } }

/* ============ SECTIONS ============ */
.section__head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}
.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--carbon);
  margin-bottom: 1.5rem;
}
.section__intro {
  font-size: 1.125rem;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ============ SERVICES ============ */
.services {
  padding: var(--space-xxl) 0;
  background: var(--cream);
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  border: 1px solid var(--gray-100);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: var(--gold-light);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card--featured {
  background: linear-gradient(180deg, var(--white) 0%, var(--nude) 100%);
  border-color: var(--gold-light);
}
.service-card__badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card__visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  color: var(--gold);
}
.service-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-light);
  opacity: 0.6;
}
.service-card__icon {
  width: 56px;
  height: 56px;
  color: var(--gold-dark);
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--carbon);
  margin-bottom: 1rem;
}
.service-card__desc {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.service-card__list {
  margin-bottom: 2rem;
}
.service-card__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--gray-700);
  font-size: 0.95rem;
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 1px;
  background: var(--gold);
}
.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-dark);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: var(--transition);
}
.service-card__cta:hover { gap: 1rem; color: var(--gold-deep); }

.services__more {
  text-align: center;
  margin-top: 4rem;
  font-size: 1rem;
  color: var(--gray-700);
}
.services__more strong { color: var(--carbon); font-weight: 600; }

/* ============ ABOUT ============ */
.about {
  padding: var(--space-xxl) 0;
  background: var(--rose);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about__inner { grid-template-columns: 5fr 6fr; gap: 6rem; }
}
.about__visual {
  position: relative;
}
.about__photo-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about__photo-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, var(--rose) 0%, var(--nude) 50%, var(--rose-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
}
.about__photo-placeholder::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: 20px; bottom: 20px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.about__photo-label {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold-dark);
  line-height: 1.4;
}
.about__photo-deco {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  z-index: -1;
  border-radius: var(--radius-lg);
  opacity: 0.3;
}
.about__content > * { margin-bottom: 1.5rem; }
.about__paragraph {
  color: var(--gray-700);
  font-size: 1.125rem;
  line-height: 1.7;
}
.about__credentials {
  background: var(--nude);
  padding: 2rem;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.about__credentials li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}
.about__credentials li:last-child { margin-bottom: 0; }
.about__credentials li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-dark);
  font-weight: 700;
}
.about__credentials strong {
  display: block;
  color: var(--carbon);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.about__credentials span {
  color: var(--gray-500);
  font-size: 0.9rem;
}
.about__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-dark);
  line-height: 1.4;
  padding-left: 2rem;
  border-left: 2px solid var(--gold);
}

/* ============ STUDIO ============ */
.studio {
  padding: var(--space-xxl) 0;
  background: var(--nude);
}
.studio__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .studio__grid { grid-template-columns: 1fr 1fr; }
}
.studio__photo {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-mid) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-light);
}
.studio__photo::before {
  content: '';
  position: absolute;
  top: 15px; left: 15px; right: 15px; bottom: 15px;
  border: 1px solid rgba(191, 164, 111, 0.4);
  pointer-events: none;
  z-index: 4;
  transition: border-color .6s var(--ease-out), inset .6s var(--ease-out);
}
/* ---- Hover premium (sin transform: no choca con el parallax GSAP) ---- */
.studio__photo {
  transition: box-shadow .6s var(--ease-out), border-color .6s var(--ease-out);
}
.studio__photo::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0; height: 58%;
  background: linear-gradient(to top, rgba(26, 23, 24, 0.62), rgba(26, 23, 24, 0));
  opacity: 0;
  transition: opacity .6s var(--ease-out);
  z-index: 2; pointer-events: none;
}
.studio__caption {
  position: absolute;
  left: 1.4rem; bottom: 1.2rem; z-index: 5;
  color: #fff;
  font-family: var(--font-display);
  font-style: italic; font-weight: 500;
  font-size: 1.25rem; letter-spacing: .01em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  transform: translateY(150%);
  opacity: 0;
  transition: transform .6s var(--ease-out), opacity .55s var(--ease-out);
  pointer-events: none;
}
@media (hover: hover) {
  .studio__photo:hover { box-shadow: 0 30px 64px -28px rgba(26, 23, 24, 0.55); border-color: var(--gold); }
  .studio__photo:hover::before { top: 12px; left: 12px; right: 12px; bottom: 12px; border-color: rgba(200, 173, 88, 0.85); }
  .studio__photo:hover::after { opacity: 1; }
  .studio__photo:hover img.fill { filter: brightness(1.05) saturate(1.06); }
  .studio__photo:hover .studio__caption { transform: translateY(0); opacity: 1; }
}
.studio__placeholder {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-dark);
  font-size: 1rem;
  text-align: center;
  padding: 0 1rem;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: var(--space-xxl) 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '"';
  position: absolute;
  top: -50px;
  left: 5%;
  font-family: var(--font-display);
  font-size: 30rem;
  color: var(--gold);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}
@media (min-width: 768px) { .testimonials__grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}
.testimonial__stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.2em;
}
.testimonial__text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--gray-700);
  margin-bottom: 2rem;
  font-style: italic;
}
.testimonial__person {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}
.testimonial__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--rose);
  border: 2px solid var(--gold-light);
  flex-shrink: 0;
}
.testimonial__avatar img { width: 100%; height: 100%; object-fit: cover; }

/* Avatares con iniciales (placeholder elegante) */
.testimonial__avatar--initials {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}
.testimonial__person strong { display: block; color: var(--carbon); }
.testimonial__person span { color: var(--gray-500); font-size: 0.875rem; }

/* ============ CTA FINAL ============ */
.cta {
  padding: var(--space-xxl) 0;
  background: var(--carbon);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(191, 164, 111, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(245, 230, 226, 0.06) 0%, transparent 50%);
}
.cta__inner {
  position: relative;
  text-align: center;
  z-index: 1;
}
.cta__eyebrow { color: var(--gold-light); }
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.cta__title .gold-italic { color: var(--gold-light); }
.cta__intro {
  font-size: 1.125rem;
  color: var(--gray-300);
  margin-bottom: 4rem;
  line-height: 1.7;
}

.cta__contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 4rem;
}
@media (min-width: 640px) { .cta__contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cta__contact-grid { grid-template-columns: repeat(4, 1fr); } }

.cta__contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(191, 164, 111, 0.3);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  transition: var(--transition);
  color: var(--white);
  text-decoration: none;
}
.cta__contact-card svg {
  color: var(--gold);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}
.cta__contact-card strong {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}
.cta__contact-card span {
  color: var(--gray-300);
  font-size: 0.9rem;
}
.cta__contact-card:hover {
  background: rgba(191, 164, 111, 0.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.cta__contact-card:hover svg { transform: scale(1.1); }

.cta__location {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  max-width: 500px;
  margin: 0 auto;
}
.cta__location h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.cta__location p { color: var(--gray-300); margin-bottom: 0.5rem; }
.cta__hours { margin-top: 1rem; }
.cta__hours strong { color: var(--white); }

/* ============ FOOTER ============ */
.footer {
  background: var(--carbon-soft);
  color: var(--gray-300);
  padding: 4rem 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; }
}
.footer__brand img {
  margin-bottom: 1rem;
  height: 80px;
  width: auto;
  display: block;
}
.footer__brand p {
  color: var(--gray-500);
  font-size: 0.875rem;
  line-height: 1.6;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer__col ul li {
  margin-bottom: 0.6rem;
}
.footer__col a {
  color: var(--gray-300);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer__col a:hover { color: var(--gold-light); }
.footer__col p { font-size: 0.9rem; line-height: 1.7; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--gray-500);
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.footer__by a { color: var(--gold-light); border-bottom: 1px solid var(--gold); }

/* ============ CHAT WIDGET — Deluxe Health ============ */
.dh-chat { position: fixed; bottom: 24px; right: 24px; z-index: 9999; }

/* Trigger button — chat bubble gold */
.dh-chat__trigger {
  background: linear-gradient(145deg, #CCA96A 0%, #BFA46F 52%, #A0793A 100%);
  border: none; cursor: pointer; padding: 0;
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  position: relative;
  perspective: 700px;
  will-change: transform;
  box-shadow:
    0 8px 28px rgba(191,164,111,0.55),
    0 4px 10px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.22);
}
.dh-chat__trigger-logo {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  will-change: transform;
}
.dh-chat__glow-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(191, 164, 111, 0.68);
  pointer-events: none;
  opacity: 0;
}

/* Popup panel */
.dh-chat__popup {
  position: absolute; bottom: 76px; right: 0;
  width: 300px;
  background: linear-gradient(168deg, #FDFAF7 0%, #F8F2EB 100%);
  border: 1px solid rgba(191,164,111,0.22);
  border-top: 2px solid #BFA46F;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(26,23,24,0.12), 0 2px 6px rgba(26,23,24,0.06);
  overflow: hidden;
  opacity: 0; transform: translateY(10px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
  transform-origin: bottom right;
}
.dh-chat.is-open .dh-chat__popup {
  opacity: 1; transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Popup header */
.dh-chat__popup-header {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(191,164,111,0.12) 0%, rgba(212,189,140,0.07) 100%);
  border-bottom: 1px solid rgba(191,164,111,0.15);
}
.dh-chat__popup-logo {
  width: 36px; height: 36px; object-fit: contain; flex-shrink: 0;
}
.dh-chat__popup-title {
  font-family: var(--font-display, serif);
  font-size: 0.95rem; font-weight: 500;
  color: #1A1718; margin: 0 0 1px;
  line-height: 1.2;
}
.dh-chat__popup-sub {
  font-size: 0.67rem; color: rgba(26,23,24,0.5);
  margin: 0; letter-spacing: 0.03em;
}
.dh-chat__close {
  margin-left: auto; background: none; border: none;
  cursor: pointer; color: rgba(26,23,24,0.4);
  font-size: 0.8rem; line-height: 1; padding: 4px;
  transition: color 0.2s ease;
}
.dh-chat__close:hover { color: #BFA46F; }

/* Popup body */
.dh-chat__popup-body { padding: 12px; display: flex; flex-direction: column; gap: 8px; }

/* Messages area */
.dh-chat__messages {
  display: flex; flex-direction: column; gap: 7px;
  max-height: 220px; overflow-y: auto;
  padding-right: 2px;
  scroll-behavior: smooth;
}
.dh-chat__messages::-webkit-scrollbar { width: 3px; }
.dh-chat__messages::-webkit-scrollbar-thumb { background: rgba(191,164,111,0.35); border-radius: 2px; }

/* Message bubbles */
.dh-chat__msg {
  max-width: 88%; padding: 8px 11px;
  border-radius: 14px; font-size: 0.78rem; line-height: 1.5;
  animation: msgIn 0.22s cubic-bezier(0.34,1.56,0.64,1) both;
  white-space: pre-line;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(6px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.dh-chat__msg--bot {
  align-self: flex-start;
  background: rgba(191,164,111,0.10);
  border: 1px solid rgba(191,164,111,0.18);
  color: #1A1718; border-bottom-left-radius: 4px;
}
.dh-chat__msg--user {
  align-self: flex-end;
  background: linear-gradient(135deg, #CCA96A 0%, #A0793A 100%);
  color: #fff; border-bottom-right-radius: 4px;
}
.dh-chat__msg--typing {
  align-self: flex-start;
  background: rgba(191,164,111,0.10);
  border: 1px solid rgba(191,164,111,0.18);
  padding: 10px 14px;
}
.dh-chat__typing-dots { display: flex; gap: 4px; align-items: center; }
.dh-chat__typing-dots span {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(160,121,58,0.6);
  animation: typingDot 1.2s infinite ease-in-out;
}
.dh-chat__typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.dh-chat__typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 80%, 100% { transform: scale(0.7); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* Quick reply chips */
.dh-chat__chips {
  display: flex; flex-wrap: wrap; gap: 5px;
  min-height: 0;
}
.dh-chat__chip {
  padding: 5px 10px; border-radius: 20px; border: none; cursor: pointer;
  font-size: 0.72rem; font-family: inherit; font-weight: 500;
  background: rgba(191,164,111,0.10);
  border: 1px solid rgba(191,164,111,0.28);
  color: rgba(26,23,24,0.78);
  transition: background 0.18s ease, transform 0.15s ease;
  white-space: nowrap;
}
.dh-chat__chip:hover {
  background: rgba(191,164,111,0.22);
  transform: translateY(-1px);
}

/* Input row */
.dh-chat__input-row {
  display: flex; gap: 6px; align-items: center;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(191,164,111,0.28);
  border-radius: 12px; padding: 5px 5px 5px 10px;
}
.dh-chat__input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 0.78rem; color: #1A1718; font-family: inherit;
}
.dh-chat__input::placeholder { color: rgba(26,23,24,0.38); }
.dh-chat__send {
  width: 28px; height: 28px; border-radius: 8px; border: none; cursor: pointer;
  background: linear-gradient(135deg, #CCA96A 0%, #A0793A 100%);
  color: #fff; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.18s ease, transform 0.15s ease;
}
.dh-chat__send:hover { opacity: 0.88; transform: scale(1.05); }

/* WhatsApp footer */
.dh-chat__wa-footer {
  border-top: 1px solid rgba(191,164,111,0.15);
  padding-top: 8px;
}
.dh-chat__wa-label {
  display: block; font-size: 0.65rem;
  color: rgba(26,23,24,0.42); text-align: center;
  margin-bottom: 6px; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.dh-chat__wa-row { display: flex; gap: 6px; }
.dh-chat__wa-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 5px;
  padding: 8px 10px;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.22);
  border-radius: 10px;
  text-decoration: none;
  color: #1A1718;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.18s ease;
}
.dh-chat__wa-btn:hover {
  background: rgba(37,211,102,0.16);
  border-color: rgba(37,211,102,0.4);
  transform: translateY(-1px);
}
.dh-chat__wa-btn svg { flex-shrink: 0; color: #25D366; }
.dh-chat__wa-btn span { font-size: 0.75rem; font-weight: 600; }

/* Wider popup for chat */
.dh-chat__popup { width: 320px; }

/* ============ REVEAL ANIMATIONS (a prueba de fallos) ============ */
/* Si JS no carga, todo se ve normal. Solo ocultamos cuando .js-ready */
.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Safety: después de 5 segundos forzar visibilidad por si algo falló */
.js-ready [data-reveal] {
  animation: revealSafety 0.1s ease 5s forwards;
}
.js-ready [data-reveal].is-visible {
  animation: none;
}
@keyframes revealSafety {
  to { opacity: 1; transform: translateY(0); }
}

/* ============ ACCESSIBILITY ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ============ SOCIAL BAR ============ */
.social-bar {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--nude) 0%, var(--rose) 100%);
  position: relative;
  overflow: hidden;
}
.social-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(191, 164, 111, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(212, 189, 140, 0.1) 0%, transparent 60%);
}
.social-bar__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  position: relative;
}
@media (min-width: 768px) {
  .social-bar__inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.social-bar__intro {
  color: var(--gray-700);
  font-size: 1rem;
  margin-top: 0.5rem;
  max-width: 380px;
}
.social-bar__icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.social-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.social-icon svg { width: 24px; height: 24px; transition: var(--transition); position: relative; z-index: 2; }
.social-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}
.social-icon:hover {
  transform: translateY(-4px) scale(1.08);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(191, 164, 111, 0.5);
}
.social-icon:hover::before { transform: scale(1); }

/* ============ BOOKING ============ */
.booking {
  padding: var(--space-xxl) 0;
  background: var(--white);
}
.booking__widget {
  max-width: 720px;
  margin: 0 auto;
}
.booking__placeholder {
  background: linear-gradient(135deg, var(--nude) 0%, var(--rose) 100%);
  padding: 4rem 2rem;
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(191, 164, 111, 0.4);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.booking__placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 20px,
      rgba(191, 164, 111, 0.03) 20px,
      rgba(191, 164, 111, 0.03) 21px
    );
  pointer-events: none;
}
.booking__icon {
  width: 80px;
  height: 80px;
  color: var(--gold-dark);
  margin: 0 auto 1.5rem;
  position: relative;
}
.booking__placeholder-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--carbon);
  margin-bottom: 1rem;
  position: relative;
}
.booking__placeholder-desc {
  color: var(--gray-700);
  margin-bottom: 2rem;
  font-size: 1rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* ============ CTA LOCATION GRID (con mapa) ============ */
/* ============ MAPA PREMIUM ============ */
.cta__map-premium {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-xl);
  box-shadow: 0 48px 96px -32px rgba(0,0,0,0.7);
  border: 1px solid rgba(191,164,111,0.18);
}
#deluxeMap {
  width: 100%;
  height: 560px;
  background: #1a1718;
  position: relative;
  z-index: 0; /* crea stacking context propio — aisla z-indexes internos de Leaflet (200-700) */
}
/* Vignettes — funden el mapa con el fondo carbon */
.map-vignette { position: absolute; pointer-events: none; z-index: 10; }
.map-vignette--top    { top: 0; left: 0; right: 0; height: 110px; background: linear-gradient(to bottom, var(--carbon) 0%, transparent 100%); }
.map-vignette--bottom { bottom: 0; left: 0; right: 0; height: 80px; background: linear-gradient(to top, var(--carbon) 0%, transparent 100%); }
.map-vignette--left   { top: 0; left: 0; bottom: 0; width: 200px; background: linear-gradient(to right, var(--carbon) 0%, transparent 100%); }
.map-vignette--right  { top: 0; right: 0; bottom: 0; width: 200px; background: linear-gradient(to left, var(--carbon) 0%, transparent 100%); }

/* Card glassmorphism flotante */
.cta__location-float {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  z-index: 20;
  max-width: 330px;
  background: rgba(20, 17, 18, 0.68);
  backdrop-filter: blur(22px) saturate(1.6);
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  border: 1px solid rgba(212,189,140,0.3);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.75rem;
}
.cta__location-float__eyebrow {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}
.cta__location-float__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.cta__location-float__address {
  font-style: normal;
  color: rgba(255,255,255,0.65);
  font-size: 0.84rem;
  line-height: 1.65;
}
.cta__location-float__divider {
  width: 36px;
  height: 1px;
  background: rgba(212,189,140,0.38);
  margin: 1.1rem 0;
}
.cta__location-float__hours {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}
.cta__location-float__hours svg { color: var(--gold); flex-shrink: 0; }
.cta__location-float__cta { font-size: 0.75rem; padding: 0.65rem 1.25rem; }

/* Leaflet overrides — tema oscuro */
.leaflet-container { background: #1a1718 !important; }
.leaflet-control-zoom a {
  background: rgba(20,17,18,0.85) !important;
  border-color: rgba(212,189,140,0.3) !important;
  color: var(--gold) !important;
  backdrop-filter: blur(8px);
}
.leaflet-control-zoom a:hover { background: rgba(212,189,140,0.15) !important; }
.leaflet-control-attribution {
  background: rgba(20,17,18,0.6) !important;
  color: rgba(255,255,255,0.35) !important;
  font-size: 0.6rem !important;
  backdrop-filter: blur(6px);
}
.leaflet-control-attribution a { color: rgba(212,189,140,0.6) !important; }

/* Custom gold marker */
.dh-map-marker { position: relative; width: 60px; height: 60px; }
.dh-marker-dot {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 14px; height: 14px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(212,189,140,0.25), 0 0 22px rgba(212,189,140,0.7);
  z-index: 2;
}
.dh-marker-ring {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%;
  border: 1.5px solid rgba(212,189,140,0.75);
}
.dh-marker-ring--1 {
  width: 14px; height: 14px;
  animation: dhMapPulse 2.4s ease-out infinite;
}
.dh-marker-ring--2 {
  width: 14px; height: 14px;
  animation: dhMapPulse 2.4s ease-out infinite 1s;
}
@keyframes dhMapPulse {
  0%   { transform: translate(-50%,-50%) scale(1);   opacity: 0.85; }
  100% { transform: translate(-50%,-50%) scale(3.8); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .dh-marker-ring { animation: none !important; } }

/* Mobile */
@media (max-width: 640px) {
  #deluxeMap { height: 420px; }
  .cta__location-float { left: 1rem; right: 1rem; bottom: 1rem; max-width: none; padding: 1.5rem; }
  .map-vignette--left, .map-vignette--right { width: 60px; }
}

/* ============ ANIMACIONES PREMIUM ============ */

/* MAGNETIC BUTTONS - se mueven sutilmente con el mouse */
.btn, .service-card__cta, .social-icon, .cta__contact-card {
  will-change: transform;
}

/* CARDS 3D TILT */
.service-card.tilt-active {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* SHIMMER EFFECT en botones gold */
.btn--gold {
  position: relative;
  overflow: hidden;
}
.btn--gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.7s ease;
}
.btn--gold:hover::before { left: 100%; }

/* LINK SHIMMER GOLD */
.link-gold {
  background-image: linear-gradient(90deg, var(--gold-dark), var(--gold-dark));
  background-size: 0 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s ease, color 0.3s;
  border-bottom: none !important;
  padding-bottom: 2px;
}
.link-gold:hover {
  background-size: 100% 1px;
}

/* FLOATING ANIMATION para isotipos/elementos decorativos */
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.about__photo-deco {
  animation: gentleFloat 6s ease-in-out infinite;
}

/* GOLD GLOW al hover en imágenes */
.testimonial__avatar {
  transition: transform 0.4s, box-shadow 0.4s;
}
.testimonial:hover .testimonial__avatar {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(191, 164, 111, 0.4);
  border-color: var(--gold);
}

/* SERVICE CARD - efecto profundidad mejorado */
.service-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}
.service-card__icon {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-card:hover .service-card__icon {
  transform: scale(1.15) rotate(-8deg);
}

/* HERO TITLE - efecto sutil al hover */
.hero__title .gold-italic {
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero__title:hover .gold-italic {
  transform: scale(1.05) rotate(-2deg);
}

/* ============ TRUST — Motion limpio ============ */

/* Nums: gold sólido, glow estático */
.trust__num {
  color: var(--gold) !important;
  -webkit-text-fill-color: unset !important;
  background: none !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
  text-shadow: 0 0 36px rgba(191,164,111,0.32) !important;
  animation: none !important;
  transition: none !important;
}

/* Hover: lift sutil en el item */
.trust__item {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: default;
}
.trust__item:hover {
  transform: translateY(-5px) !important;
}

/* SECTION TITLES con efecto subtítulo elegante */
.section__title {
  position: relative;
}

/* ============ RESPONSIVE TUNING ============ */

/* TABLET (768px - 1024px) */
@media (max-width: 1024px) {
  .container { padding: 0 2rem; }
  :root { --space-xxl: 6rem; --space-xl: 4rem; }

  .nav__inner { gap: 1rem; }
  .nav__logo img { height: 55px !important; }
  .nav.scrolled .nav__logo img { height: 45px !important; }

  .section__head { margin-bottom: 3rem; }

  .about__inner { gap: 3rem; }
  .about__photo-frame { max-width: 480px; margin: 0 auto; }
}

/* MOBILE (max 767px) */
@media (max-width: 767px) {
  /* Base mobile */
  body { font-size: 15px; }
  .container { padding: 0 1.25rem; }

  /* Nav */
  .nav { padding: 1rem 0; }
  .nav.scrolled { padding: 0.6rem 0; }
  .nav__logo img { height: 45px !important; }
  .nav.scrolled .nav__logo img { height: 38px !important; }
  .nav__actions { gap: 0.4rem; }
  .lang-toggle__btn { padding: 0.3rem 0.6rem; font-size: 0.7rem; }

  /* Hero */
  .hero { min-height: 85vh; padding: 7rem 0 3rem; }
  .hero__title { font-size: clamp(2rem, 9vw, 3rem); margin-bottom: 1.5rem; }
  .hero__subtitle { font-size: 1rem; margin-bottom: 2rem; }
  .hero__cta { flex-direction: column; width: 100%; gap: 0.75rem; }
  .hero__cta .btn { width: 100%; }
  .hero__scroll { margin-top: 1rem; }

  /* Trust bar */
  .trust { padding: 2.5rem 0; }
  .trust__inner { gap: 1.5rem; }
  .trust__num { font-size: 2.5rem; }
  .trust__label { font-size: 0.8rem; }

  /* Secciones */
  :root { --space-xxl: 4.5rem; }
  .section__title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .section__intro { font-size: 1rem; }

  /* Services */
  .service-card { padding: 2.5rem 1.75rem; }
  .service-card__title { font-size: 1.6rem; }
  .service-card__badge { top: 1rem; right: 1rem; padding: 0.25rem 0.6rem; font-size: 0.65rem; }

  /* About */
  .about__inner { gap: 2.5rem; }
  .about__photo-frame { aspect-ratio: 1/1; max-width: 100%; }
  .about__photo-deco { width: 120px; height: 120px; bottom: -15px; right: -15px; }
  .about__credentials { padding: 1.5rem; }
  .about__quote { font-size: 1.2rem; padding-left: 1.25rem; }

  /* Studio */
  .studio__grid { gap: 1rem; }
  @media (max-width: 767px) {
    .studio__grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
      grid-template-areas: none;
    }
    .studio__photo:nth-child(1) { grid-column: 1 / -1; grid-area: auto; min-height: 220px; }
    .studio__photo:nth-child(2),
    .studio__photo:nth-child(3),
    .studio__photo:nth-child(4) { grid-area: auto; }
    .studio__photo:nth-child(4) { grid-column: 1 / -1; }
  }

  /* Social bar */
  .social-bar { padding: 3rem 0; }
  .social-bar__inner { gap: 1.5rem; }
  .social-icon { width: 48px; height: 48px; }
  .social-icon svg { width: 20px; height: 20px; }

  /* Booking */
  .booking__placeholder { padding: 3rem 1.5rem; }
  .booking__placeholder-title { font-size: 1.5rem; }
  .booking__icon { width: 60px; height: 60px; }

  /* Testimonials */
  .testimonial { padding: 2rem 1.5rem; }
  .testimonial__text { font-size: 1.1rem; }
  .testimonials::before { font-size: 18rem; top: -30px; }

  /* CTA */
  .cta__title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .cta__intro { font-size: 1rem; margin-bottom: 2.5rem; }
  .cta__contact-card { padding: 1.5rem 1rem; }
  .cta__contact-card strong { font-size: 0.75rem; }
  .cta__contact-card span { font-size: 0.8rem; }
  .cta__location { padding: 1.75rem; }
  .cta__location h3 { font-size: 1.3rem; }
  .cta__map { min-height: 280px; }

  /* Footer */
  .footer { padding: 3rem 0 0; }
  .footer__inner { gap: 2rem; }
  .footer__brand img { height: 60px; }
  .footer__bottom { padding: 1rem 1.25rem; flex-direction: column; text-align: center; }

  /* WhatsApp flotante (no tapar contenido en mobile) */
  .wa-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 26px; height: 26px; }

  /* Quitar tilt 3D en mobile (no aplica) */
  .service-card.tilt-active { transform: none !important; }
}

/* MOBILE EXTRA SMALL (max 380px) */
@media (max-width: 380px) {
  .nav__logo img { height: 38px !important; }
  .lang-toggle__btn { padding: 0.25rem 0.5rem; }
  .hero__title { font-size: 1.85rem; }
  .service-card { padding: 2rem 1.5rem; }
  .about__quote { font-size: 1.05rem; }
}

/* ============================================================
   ELEVACIÓN PREMIUM — Syntro AI 2026
   (Solo agrega motion y pulido. No cambia la paleta del original.)
   ============================================================ */
:root { --ease-out: cubic-bezier(0.22, 1, 0.36, 1); }

/* Lenis smooth scroll */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

/* Entrada del hero (animación CSS pura, no se puede quedar invisible) */
@keyframes heroUp { from { opacity: 0; transform: translateY(38px); } to { opacity: 1; transform: none; } }
.js-ready .hero__eyebrow { animation: heroUp .9s var(--ease-out) both; animation-delay: .20s; }
.js-ready .hero__title    { animation: heroUp 1.1s var(--ease-out) both; animation-delay: .35s; }
.js-ready .hero__subtitle { animation: heroUp .9s var(--ease-out) both; animation-delay: .60s; }
.js-ready .hero__cta      { animation: heroUp .9s var(--ease-out) both; animation-delay: .80s; }
.js-ready .hero__scroll   { animation: heroUp .9s var(--ease-out) both; animation-delay: 1.0s; }

/* Sistema de reveal robusto en scroll */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); transition-delay: var(--rd, 0s); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Relleno de imágenes en los marcos (about + studio) */
.about__photo-frame img.fill,
.studio__photo img.fill {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; z-index: 1;
}
.studio__photo { position: relative; overflow: hidden; }
/* headroom para parallax suave (la imagen se mueve dentro del marco sin mostrar bordes) */
.studio__photo img.fill { inset: -8% 0 auto 0; height: 116%; transition: filter .6s var(--ease-out); }
.about__photo-frame { position: relative; overflow: hidden; }

/* Press feedback en botones (craft) */
.btn { transition: background .3s var(--ease-out), color .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out); }
.btn:active { filter: brightness(0.97); }

@media (prefers-reduced-motion: reduce) {
  .js-ready .hero__eyebrow, .js-ready .hero__title, .js-ready .hero__subtitle,
  .js-ready .hero__cta, .js-ready .hero__scroll { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ EQUIPO ============ */
.team { padding: var(--space-xxl) 0; background: linear-gradient(180deg, var(--nude) 0%, var(--white) 100%); }
.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); margin-top: var(--space-lg); }
.team-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); overflow: hidden; transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out); }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -24px rgba(26,23,24,.28); }
.team-card__photo { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--carbon); }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: saturate(.9) brightness(.88); transition: transform 1s var(--ease-out); }
.team-card:hover .team-card__photo img { transform: scale(1.05); }
.team-card__photo::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(26,23,24,.55) 100%); }
.team-card__mono { position: absolute; z-index:2; bottom: 1rem; left: 1.4rem; font-family: var(--font-display); font-size: 2.7rem; font-weight: 300; color: var(--gold-light); }
.team-card__body { padding: var(--space-md); }
.team-card__role { font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dark); }
.team-card__name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--carbon); margin: .3rem 0 .8rem; }
.team-card__bio { font-size: .9rem; line-height: 1.7; color: var(--gray-700); font-weight: 300; }

/* ============ HISTORIA ============ */
.story { padding: var(--space-xxl) 0; background: linear-gradient(135deg, var(--rose) 0%, var(--nude) 50%, var(--rose-mid) 100%); }
.story__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-xl); align-items: center; }
.story__visual { position: relative; }
.story__visual img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: 0 30px 70px -30px rgba(26,23,24,.45); }
.story__badge { position: absolute; bottom: -1.4rem; right: -1.4rem; width: 7rem; height: 7rem; border-radius: 50%; background: var(--gold); display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(191,164,111,.4); }
.story__badge strong { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; color: var(--carbon); line-height: 1; }
.story__badge span { font-size: .55rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(26,23,24,.6); margin-top: .25rem; }
.story__content .section__title, .story__content .section__eyebrow { text-align: left; }
.story__timeline { margin-top: var(--space-md); border-left: 1px solid var(--gold); padding-left: var(--space-md); display: flex; flex-direction: column; gap: var(--space-md); }
.story__step p:last-child { font-size: .9rem; line-height: 1.7; color: var(--gray-700); font-weight: 300; margin-top: .3rem; }
.story__year { font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-dark); }
@media (max-width: 980px) {
  .team__grid { grid-template-columns: 1fr; }
  .story__inner { grid-template-columns: 1fr; gap: var(--space-lg); }
  .story__badge { right: 1rem; bottom: 1rem; }
}

/* ============ HERO WEBGL (imagen interactiva de fondo) ============ */
.hero { overflow: hidden; }
.hero__bg { top: -12%; bottom: -12%; }
.hero__canvas { position: absolute; inset: 0; width: 100% !important; height: 100% !important; display: block; }
/* Velo crema para legibilidad del texto sobre la imagen */
.hero__overlay {
  background: radial-gradient(ellipse at 50% 44%,
    rgba(251, 247, 242, 0.74) 0%,
    rgba(251, 247, 242, 0.52) 46%,
    rgba(251, 247, 242, 0.42) 78%) !important;
}
.hero__title { text-shadow: 0 1px 34px rgba(251, 247, 242, 0.55); }
.hero__subtitle { text-shadow: 0 1px 18px rgba(251, 247, 242, 0.7); }
@media (prefers-reduced-motion: reduce) {
  .hero__canvas { display: none; }
}

/* ============ HERO: foto estética + objeto 3D (anillos dorados) ============ */
.hero__bg {
  background-image: linear-gradient(135deg, rgba(251,247,242,0.40), rgba(245,230,226,0.40)), url("img/team-3.webp") !important;
  background-size: cover !important;
  background-position: center !important;
}
.hero__canvas { z-index: 1; pointer-events: none; }
.hero__overlay {
  background: radial-gradient(ellipse at 50% 46%,
    rgba(251,247,242,0.70) 0%,
    rgba(251,247,242,0.50) 45%,
    rgba(251,247,242,0.36) 82%) !important;
}

/* ============ HERO: fondo pastel — Deluxe Health ============ */
.hero__bg {
  background: #E8DDD3 !important;
  background-image: none !important;
  background-color: #E8DDD3 !important;
}

.hero__img    { display: none !important; }
.hero__canvas { display: none !important; }

/* canvas activo — anillos + partículas */
.hero__particles {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

/* overlay desactivado — fondo plano limpio */
.hero__overlay {
  display: none !important;
}

/* ============ HERO STATS — contadores animados gold (brand presence) ============ */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 2rem 0 2.4rem;
  padding: 1.4rem 1.8rem;
  background: rgba(251,247,242,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(191,164,111,0.20);
  border-radius: 14px;
  width: fit-content;
  box-shadow: 0 4px 24px rgba(191,164,111,0.10), 0 1px 0 rgba(255,255,255,0.8) inset;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0 1.6rem;
  min-width: 90px;
  text-align: center;
}
.hero__stat-num {
  font-family: var(--font-display, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 600;
  color: var(--gold, #BFA46F);
  line-height: 1;
  letter-spacing: 0.01em;
}
.hero__stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26,23,24,0.55);
  line-height: 1.3;
}
.hero__stat-div {
  width: 1px;
  height: 2.4rem;
  background: linear-gradient(to bottom, transparent, rgba(191,164,111,0.35), transparent);
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .hero__stats { padding: 1.1rem 1rem; border-radius: 12px; }
  .hero__stat { padding: 0 1rem; min-width: 72px; }
  .hero__stat-num { font-size: 1.4rem; }
}

.hero__eyebrow {
  color: #BFA46F !important;
  text-shadow: none;
  letter-spacing: 0.18em;
}
.hero__title {
  color: #1A1718 !important;
  text-shadow: none !important;
}
.hero__title .gold-italic {
  color: #BFA46F !important;
  text-shadow: none;
}
.hero__subtitle {
  color: rgba(26, 23, 24, 0.68) !important;
  text-shadow: none !important;
}

/* ============ BOOKING CARD — Awwwards premium ============ */
.hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-card-wrap {
  perspective: 1000px;
  perspective-origin: 50% 45%;
}

@keyframes bc-shimmer {
  from { background-position: -250% center; }
  to   { background-position: 250% center; }
}
@keyframes bc-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}

.booking-card {
  background: linear-gradient(168deg, #FDFAF7 0%, #F8F2EB 100%);
  border: 1px solid rgba(191,164,111,0.22);
  border-top: 2px solid #BFA46F;
  border-radius: 28px;
  padding: 1.8rem 2.2rem 1.6rem;
  width: 100%;
  max-width: 390px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  box-shadow:
    0 2px 4px  rgba(26,23,24,0.04),
    0 8px 20px rgba(26,23,24,0.07),
    0 24px 48px rgba(26,23,24,0.09),
    0 48px 80px rgba(26,23,24,0.06),
    0 0 0 1px rgba(191,164,111,0.08) inset;
}

/* Border sweep — luz gold que recorre el borde superior */
.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(212,189,140,0.7),
    rgba(255,248,210,1),
    rgba(212,189,140,0.7),
    transparent
  );
  z-index: 10;
  animation: bc-sweep 4.5s ease-in-out infinite 2.2s;
  pointer-events: none;
}

@keyframes bc-sweep {
  0%   { left: -55%; opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 1; }
  100% { left: 108%; opacity: 0; }
}

/* Cursor glow */
.booking-card__glow {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  pointer-events: none;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.35s ease;
}

/* Todos los hijos encima del glow */
.booking-card > *:not(.booking-card__glow) {
  position: relative;
  z-index: 1;
}

/* — Brand logo — */
.booking-card__brand {
  display: flex;
  justify-content: center;
  padding-bottom: 1.2rem;
}
.booking-card__brand img {
  width: 240px;
  height: auto;
  object-fit: contain;
}

/* — Ornament divider — */
.booking-card__orn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}
.booking-card__orn span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(191,164,111,0.45), transparent);
}
.booking-card__orn em {
  font-style: normal;
  color: #BFA46F;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

/* — Specialty header — */
.booking-card__head {
  text-align: center;
  margin-bottom: 1.1rem;
}
.booking-card__studio {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #BFA46F;
  margin: 0 0 0.7rem;
}
.booking-card__dr {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: #1A1718;
  margin: 0;
  line-height: 1.25;
}
.booking-card__dr em {
  font-style: italic;
  font-size: 1rem;
  color: rgba(26,23,24,0.5);
  display: block;
  margin-top: 0.2rem;
}

/* — Service list — */
.booking-card__services {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  display: flex;
  flex-direction: column;
}
.booking-card__services li {
  font-size: 0.82rem;
  color: rgba(26,23,24,0.68);
  padding: 0.45rem 0;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.booking-card__services li::before {
  content: '';
  width: 18px;
  height: 1px;
  background: #BFA46F;
  flex-shrink: 0;
  opacity: 0.7;
}
.booking-card__services li + li {
  border-top: 1px solid rgba(191,164,111,0.20);
}

/* — Availability — */
.booking-card__avail {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(26,23,24,0.52);
  letter-spacing: 0.04em;
  margin-bottom: 1.1rem;
  padding: 0.65rem 1.1rem;
  background: rgba(191,164,111,0.06);
  border: 1px solid rgba(191,164,111,0.15);
  border-radius: 100px;
  justify-content: center;
}
.booking-card__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: bc-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(74,222,128,0.55);
}

/* — CTA button — */
.booking-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-image: linear-gradient(
    115deg,
    #BFA46F 0%,
    #D4BD8C 35%,
    #BFA46F 55%,
    #a8913e 100%
  );
  background-size: 250% auto;
  background-position: 0% center;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.1rem 1.8rem;
  border-radius: 14px;
  margin-bottom: 0.9rem;
  transition: background-position 0.65s ease, box-shadow 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 20px rgba(191,164,111,0.38), 0 2px 6px rgba(191,164,111,0.22);
}
.booking-card__cta:hover {
  background-position: 100% center;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(191,164,111,0.50), 0 4px 10px rgba(191,164,111,0.28);
}
.booking-card__cta span {
  font-size: 1rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}
.booking-card__cta:hover span {
  transform: translateX(4px);
}

/* — Fine print — */
.booking-card__note {
  font-size: 0.65rem;
  color: rgba(26,23,24,0.36);
  text-align: center;
  margin: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* — Responsive — */
@media (max-width: 768px) {
  .hero__content { grid-template-columns: 1fr; }
  .hero__right   { display: none; }
}

/* ============ NAV: frosted glass premium — oscuro ============ */
.nav {
  background: rgba(12, 9, 10, 0.88);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  border-top: none;
  border-bottom: 1px solid rgba(191, 164, 111, 0.14);
  box-shadow: 0 1px 0 rgba(191, 164, 111, 0.06);
  transition: background 0.5s ease, backdrop-filter 0.5s ease, padding 0.4s ease, box-shadow 0.5s ease;
}
.nav.scrolled {
  background: rgba(10, 7, 8, 0.92);
  backdrop-filter: blur(32px) saturate(1.5);
  -webkit-backdrop-filter: blur(32px) saturate(1.5);
  border-bottom: 1px solid rgba(191, 164, 111, 0.22);
  border-top: none;
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.nav__menu a { color: rgba(245, 238, 225, 0.88); }
.nav__menu a:hover { color: rgba(245, 238, 225, 1); }

/* número dorado sube en hover */
.nav__num {
  display: inline-block;
  transition: color 0.3s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.nav__menu a:hover .nav__num {
  color: var(--gold);
  transform: translateY(-3px);
}

/* shimmer gold sweep en CTA al hover */
@keyframes navShimmer {
  from { background-position: -200% center; }
  to   { background-position: 200% center; }
}
.nav__cta {
  background-image: linear-gradient(
    90deg,
    var(--gold-dark) 0%,
    var(--gold) 35%,
    rgba(245,218,138,0.95) 50%,
    var(--gold) 65%,
    var(--gold-dark) 100%
  );
  background-size: 220% auto;
  background-position: 0% center;
  transition: background-position 0.65s ease, box-shadow 0.4s ease, transform 0.3s ease;
}
.nav__cta:hover {
  background-position: 100% center;
  box-shadow: 0 0 22px rgba(191,164,111,0.50), 0 4px 20px rgba(0,0,0,0.3);
  transform: translateY(-1px);
}

/* entrada nav más cinematográfica */
@keyframes navEnter {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============ ACORDEÓN DE TRATAMIENTOS (interactivo) ============ */
.svc-accordion { display: flex; gap: 0.85rem; height: 460px; margin-top: var(--space-lg); }
.acc__panel {
  position: relative; flex: 1 1 0%; min-width: 0;
  border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; outline: none;
  transition: flex-grow 0.7s var(--ease-out);
}
.acc__panel.is-active { flex-grow: 7; box-shadow: 0 26px 60px -28px rgba(26,23,24,0.55); }
.acc__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out), opacity 0.85s ease; }
.acc__panel.is-active .acc__img { transform: scale(1.06); }
.acc__img--b { opacity: 0; }
.acc__panel.show-alt .acc__img--a { opacity: 0; }
.acc__panel.show-alt .acc__img--b { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .acc__img--b { display: none !important; } }
.acc__shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,23,24,0.82) 0%, rgba(26,23,24,0.12) 55%, rgba(26,23,24,0.30) 100%); }
.acc__panel::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg); box-shadow: inset 0 0 0 0 rgba(212,189,140,0); transition: box-shadow 0.5s var(--ease-out); pointer-events: none; }
.acc__panel.is-active::after { box-shadow: inset 0 0 0 1.5px rgba(212,189,140,0.6); }
.acc__vtitle {
  position: absolute; bottom: 1.6rem; left: 50%;
  writing-mode: vertical-rl; transform: translateX(-50%) rotate(180deg);
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 500;
  color: #fff; white-space: nowrap; letter-spacing: 0.02em;
  transition: opacity 0.3s var(--ease-out); text-shadow: 0 2px 14px rgba(0,0,0,0.4);
}
.acc__panel.is-active .acc__vtitle { opacity: 0; }
.acc__detail {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2.2rem 2rem;
  opacity: 0; transform: translateY(14px); pointer-events: none; width: max(380px, 100%);
  transition: opacity 0.5s 0.12s var(--ease-out), transform 0.5s 0.12s var(--ease-out);
}
.acc__panel.is-active .acc__detail { opacity: 1; transform: none; pointer-events: auto; }
.acc__name { font-family: var(--font-display); font-size: clamp(1.5rem,2.4vw,2.1rem); font-weight: 500; color: #fff; line-height: 1.1; }
.acc__desc { margin-top: 0.5rem; font-size: 0.9rem; line-height: 1.6; color: rgba(255,255,255,0.82); font-weight: 300; max-width: 34ch; }
.acc__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.acc__tags span { border: 1px solid rgba(212,189,140,0.45); color: var(--gold-light); padding: 0.25rem 0.7rem; border-radius: 100px; font-size: 0.68rem; font-weight: 500; white-space: nowrap; }
.acc__cta { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.2rem; color: var(--gold-light); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.acc__cta span:last-child { transition: transform 0.3s var(--ease-out); }
.acc__cta:hover span:last-child { transform: translateX(5px); }
.acc__panel:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
@media (max-width: 860px) {
  .svc-accordion { flex-direction: column; height: auto; gap: 1rem; }
  .acc__panel { flex: none; height: 130px; transition: height 0.6s var(--ease-out); }
  .acc__panel.is-active { height: 430px; }
  .acc__vtitle { writing-mode: horizontal-tb; transform: translateX(-50%); bottom: 1.3rem; }
  .acc__detail { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .acc__panel, .acc__img, .acc__detail, .acc__vtitle { transition: none; }
}

/* ============ ACORDEÓN: legibilidad del texto sobre las fotos ============ */
.acc__shade {
  background: linear-gradient(to top,
    rgba(20,17,18,0.95) 0%,
    rgba(20,17,18,0.72) 30%,
    rgba(20,17,18,0.22) 62%,
    rgba(20,17,18,0.42) 100%) !important;
}
/* Velo extra justo detrás del bloque de texto del panel activo */
.acc__detail { background: linear-gradient(to top, rgba(20,17,18,0.6) 0%, rgba(20,17,18,0.25) 55%, transparent 85%); }
.acc__name { text-shadow: 0 2px 18px rgba(0,0,0,0.6); }
.acc__desc { color: rgba(255,255,255,0.94) !important; text-shadow: 0 1px 14px rgba(0,0,0,0.65); }
.acc__vtitle { text-shadow: 0 2px 20px rgba(0,0,0,0.7), 0 0 4px rgba(0,0,0,0.5) !important; }
.acc__tags span { background: rgba(20,17,18,0.4); }

/* ============ HERO: partículas doradas ============ */
.hero__particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; width: 100%; height: 100%; }
@media (prefers-reduced-motion: reduce) { .hero__particles { display: none; } }

/* ============ ABOUT — motion additions ============ */

/* Deco square gentle infinite float */
@keyframes aboutDecoFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  40%       { transform: translate(-7px, -11px) rotate(1.3deg); }
  70%       { transform: translate(-10px, -4px) rotate(-0.7deg); }
}
.about__photo-deco {
  animation: aboutDecoFloat 8s ease-in-out infinite;
  will-change: transform;
}

/* Ken Burns: photo starts slightly zoomed, contracts to natural on reveal */
.about__photo-frame img.fill {
  transform: scale(1.06);
  transform-origin: center center;
  transition: transform 9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about--revealed .about__photo-frame img.fill {
  transform: scale(1);
}

/* Light sweep across photo on reveal */
.about__photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, transparent 28%, rgba(255,255,255,0.13) 50%, transparent 72%);
  transform: translateX(-120%);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
  z-index: 2;
  pointer-events: none;
}
.about--revealed .about__photo-frame::after {
  transform: translateX(220%);
}

/* Quote border-left grows from 0 height */
.about__quote {
  position: relative;
  padding-left: 2rem;
  border-left: none;
}
.about__quote::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 2px; height: 0;
  background: var(--gold);
  transition: height 1.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.about__quote.quote-visible::before {
  height: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .about__photo-deco { animation: none !important; }
  .about__photo-frame img.fill { transform: scale(1) !important; transition: none !important; }
  .about__photo-frame::after { display: none; }
  .about__quote::before { height: 100% !important; transition: none !important; }
}

/* ============ HERO TEXT MOTION — GSAP ScrollTrigger char reveal + mouse parallax ============ */
.hero__title {
  opacity: 1;
  filter: none;
}
.hc,
.hc-space {
  display: inline-block;
  vertical-align: baseline;
}
@media (prefers-reduced-motion: reduce) {
  .hero__title { opacity: 1 !important; }
}

/* ============ HERO WATERMARK — logo isotipo en marca de agua ============ */
.hero__watermark {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}
.hero__watermark-img {
  width: min(68%, 700px);
  opacity: 0.22;
  user-select: none;
  -webkit-user-drag: none;
}
@media (max-width: 768px) {
  .hero__watermark-img { width: min(90%, 380px); }
}



/* ============ MARCAS / BRANDS — brand wall premium ============ */
.brands {
  padding: var(--space-xxl) 0;
  background: var(--rose);
  position: relative;
}
.brands__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  max-width: 1120px;
  margin: 0 auto;
}
.brand-card {
  flex: 1 1 224px;
  max-width: 264px;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.75rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out), border-color .55s var(--ease-out);
}
.brand-card::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
  transition: width .6s var(--ease-out);
}
.brand-card__logo {
  height: 58px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-card__logo img {
  max-height: 52px;
  max-width: 90%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.9;
  transition: transform .55s var(--ease-out), opacity .55s var(--ease-out);
}
.brand-card__name {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-500);
  transition: color .45s var(--ease-out);
}
@media (hover: hover) {
  .brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 54px -30px rgba(26, 23, 24, 0.55);
    border-color: rgba(200, 173, 88, 0.42);
  }
  .brand-card:hover::after { width: 72%; }
  .brand-card:hover .brand-card__logo img { transform: scale(1.06); opacity: 1; }
  .brand-card:hover .brand-card__name { color: var(--gold-dark); }
}
.brands__footnote {
  text-align: center;
  margin-top: 3.25rem;
  font-size: 0.875rem;
  font-style: italic;
  letter-spacing: 0.01em;
  color: var(--gray-500);
}
@media (max-width: 600px) {
  .brands__grid { gap: 0.9rem; }
  .brand-card { flex: 0 1 calc(50% - 0.5rem); min-width: 0; max-width: calc(50% - 0.5rem); padding: 1.9rem 1rem 1.3rem; gap: 1.1rem; }
  .brand-card__logo { height: 44px; }
  .brand-card__logo img { max-height: 40px; max-width: 86%; }
  .brand-card__name { font-size: 0.62rem; letter-spacing: 0.18em; }
}

/* ============ TEAM — título con texto rotante (TextRotate adaptado) ============ */
.team__title > span[data-i18n] { display: block; }
.team__title .text-rotate {
  display: inline-flex;
  overflow: hidden;
  vertical-align: top;
  line-height: 1.12;
  min-height: 1.12em;
  padding-block: 0.06em;
}
.text-rotate__char {
  display: inline-block;
  white-space: pre;
  will-change: transform, opacity;
}

/* ============ FOOTER LEGAL LINKS ============ */
.footer__legal {
  text-align: center;
  padding: 1.4rem 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .75rem;
  align-items: center;
  justify-content: center;
}
.footer__legal a {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: .02em;
  transition: color .3s var(--ease-out);
}
.footer__legal a:hover { color: var(--gold-light); }
.footer__legal span { color: var(--gray-700); }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  max-width: 720px;
  margin: 0 auto;
  z-index: 1200;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1.1rem 1.4rem;
  background: rgba(26, 23, 24, 0.97);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 173, 88, 0.28);
  border-radius: 14px;
  box-shadow: 0 18px 50px -20px rgba(0,0,0,0.6);
  transform: translateY(140%);
  opacity: 0;
  transition: transform .5s var(--ease-out), opacity .5s var(--ease-out);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner__text {
  flex: 1 1 320px;
  margin: 0;
  color: #d9d2cd;
  font-size: 0.86rem;
  line-height: 1.55;
}
.cookie-banner__text a { color: var(--gold-light); }
.cookie-banner__actions { display: flex; gap: .6rem; flex-shrink: 0; }
.cookie-banner__btn {
  border: 0;
  cursor: pointer;
  padding: .6rem 1.3rem;
  border-radius: 999px;
  font: 600 0.8rem var(--font-body);
  letter-spacing: .03em;
  transition: transform .25s var(--ease-out), background .25s var(--ease-out), color .25s var(--ease-out);
}
.cookie-banner__btn--gold { background: var(--gold); color: #1a1718; }
.cookie-banner__btn--gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.cookie-banner__btn--ghost { background: transparent; color: #cfc7c2; border: 1px solid rgba(255,255,255,.25); }
.cookie-banner__btn--ghost:hover { color: #fff; border-color: rgba(255,255,255,.5); }
@media (max-width: 560px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner__actions { justify-content: center; }
}
