/* ============================================================
   HAVANA MASSAGE · STYLES
   Editorial Dark Warm — Cuban café aesthetic
   ============================================================ */

:root {
  /* Brand palette (from logo) */
  --black: #050505;
  --black-2: #0a0807;
  --brown-dark: #1a0f08;
  --brown: #2a1a12;
  --brown-warm: #3a2418;
  --gold: #f2b544;
  --gold-2: #e3a430;
  --amber: #d88a1c;
  --gold-soft: #cfa15a;
  --cream: #f4eadc;
  --cream-2: #e8dcc8;
  --line: rgba(242, 181, 68, 0.18);
  --line-soft: rgba(242, 181, 68, 0.08);

  /* Typography */
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'DM Mono', 'Courier New', monospace;

  /* Sizing */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 64px);
  --radius: 4px;

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--cream);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Subtle film grain texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  outline: 0;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

/* ============ TYPOGRAPHY ============ */
.h1,
.h2,
.h3 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--cream);
}

.h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.08;
}

.h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.2;
}

em,
.italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.mono {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: rgba(244, 234, 220, 0.78);
  line-height: 1.7;
}

/* ============ LAYOUT ============ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section__head {
  margin-bottom: clamp(40px, 6vw, 80px);
  max-width: 760px;
}

.section__head .h2 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.section__lede {
  font-size: 1.05rem;
  color: rgba(244, 234, 220, 0.62);
  max-width: 560px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.eyebrow .line-x {
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* ============ SPLASH ============ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: splashOut 4.5s var(--ease) forwards;
}

.splash__inner {
  text-align: center;
}

.splash__logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  animation: pulseGlow 2.2s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(242, 181, 68, 0.35));
}

.splash__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.splash__line {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin: 24px auto 0;
  animation: splashLine 2.5s var(--ease) forwards;
}

@keyframes splashLine {
  0% { width: 0; }
  60% { width: 160px; }
  100% { width: 160px; opacity: 0.5; }
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 30px rgba(242, 181, 68, 0.25)); }
  50% { transform: scale(1.04); filter: drop-shadow(0 0 60px rgba(242, 181, 68, 0.5)); }
}

@keyframes splashOut {
  0%, 70% { opacity: 1; pointer-events: all; }
  90%, 100% { opacity: 0; pointer-events: none; visibility: hidden; }
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.35s var(--ease);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.85) 0%, rgba(5, 5, 5, 0) 100%);
  backdrop-filter: blur(0);
}

.nav.is-scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}

/* Cuando el menú móvil está abierto, la nav también se vuelve coherente con el menú */
.nav:has(.nav__mobile.is-open) {
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--cream);
  transition: color 0.3s;
}

.nav__brand img {
  display: block;
}

/* Logo circle wrapper — escala la imagen para que el emblema dorado llene el círculo */
.logo-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  flex-shrink: 0;
  background: var(--black);
  position: relative;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-circle--lg {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
}

.nav__brand:hover {
  color: var(--gold);
}

.nav__menu {
  display: flex;
  gap: 32px;
}

.nav__menu a {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(244, 234, 220, 0.7);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s;
}

.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.nav__menu a:hover {
  color: var(--cream);
}

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

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--black);
  font-weight: 500;
  font-size: 0.88rem;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
}

.nav__cta:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(242, 181, 68, 0.25);
}

.nav__burger {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 4px;
}

.nav__burger span {
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s var(--ease);
}

.nav__burger.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.is-active span:nth-child(2) { opacity: 0; }
.nav__burger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.nav__mobile {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  z-index: 99;
  padding: clamp(100%, 4vh, 50%) var(--gutter);
  flex-direction: column;
  gap: clamp(8px, 1.6vh, 18px);
  transform: translateY(-100%);
  transition: transform 0.45s var(--ease);
  overflow-y: auto;
}

.nav__mobile.is-open {
  display: flex;
  transform: translateY(0);
}

.nav__mobile a {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 4.5vw, 1.7rem);
  font-weight: 500;
  color: var(--cream);
  padding-bottom: clamp(6px, 1.2vh, 12px);
  border-bottom: 1px solid var(--line-soft);
  line-height: 1.2;
}

.nav__mobile-cta {
  margin-top: clamp(8px, 1.6vh, 16px) !important;
  padding: clamp(12px, 1.8vh, 16px) !important;
  background: var(--gold);
  color: var(--black) !important;
  text-align: center;
  font-family: var(--sans) !important;
  font-size: clamp(0.92rem, 3.5vw, 1rem) !important;
  border: 0 !important;
  border-bottom: 0 !important;
  border-radius: 100px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 100px;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
}

.btn--primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(242, 181, 68, 0.4);
}

.btn--promo-live {
  animation: promoPulse 3s ease-in-out infinite;
}

.btn--promo-live::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.38), transparent);
  animation: promoShimmer 3s ease-in-out infinite;
  pointer-events: none;
}

.btn--promo-live:hover {
  animation: none;
}

.btn--promo-live:hover::after {
  display: none;
}

@keyframes promoPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(242, 181, 68, 0); }
  40%       { box-shadow: 0 0 20px 7px rgba(242, 181, 68, 0.5); }
  70%       { box-shadow: 0 0 8px 2px rgba(242, 181, 68, 0.18); }
}

@keyframes promoShimmer {
  0%        { left: -100%; opacity: 0; }
  12%       { opacity: 1; }
  50%, 100% { left: 160%; opacity: 0; }
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(242, 181, 68, 0.05);
}

.btn--large {
  padding: 18px 36px;
  font-size: 1rem;
}

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

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image {
  position: absolute;
  inset: -10%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45) saturate(1.15);
  animation: heroZoom 24s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.08) translateY(-2%); }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(216, 138, 28, 0.25) 0%, transparent 50%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.4) 0%, rgba(5, 5, 5, 0.65) 50%, rgba(5, 5, 5, 0.95) 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--ease) forwards;
}

.hero__eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 36px;
}

.hero__title .reveal-line {
  display: block;
  overflow: hidden;
}

.hero__title .reveal-line span {
  display: inline-block;
  transform: translateY(110%);
  animation: textRise 1s var(--ease-out) forwards;
}

.hero__title .reveal-line:nth-child(1) span { animation-delay: 0.6s; }
.hero__title .reveal-line:nth-child(2) span { animation-delay: 0.75s; }
.hero__title .reveal-line:nth-child(3) span { animation-delay: 0.9s; }

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

.hero__lede {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: rgba(244, 234, 220, 0.75);
  max-width: 540px;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 1.1s var(--ease) forwards;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 1.3s var(--ease) forwards;
}

.hero__ctas .btn {
  flex: 1 1 0;
  justify-content: center;
}

.hero__meta {
  display: flex;
  gap: clamp(20px, 4vw, 60px);
  border-top: 1px solid var(--line-soft);
  padding-top: 24px;
  max-width: 560px;
  opacity: 0;
  animation: fadeUp 1s 1.6s var(--ease) forwards;
}

.hero__meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__meta > div .mono {
  color: var(--gold);
}

.hero__meta > div span:last-child {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--cream);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 1s 2s var(--ease) forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--cream);
  animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes scrollLine {
  to { top: 100%; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--gold);
  color: var(--black);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marqueeRoll 35s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 500;
}

.marquee__track i {
  font-style: normal;
  opacity: 0.4;
}

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

/* ============ PHILOSOPHY ============ */
.philosophy {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}

.philosophy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
  margin-bottom: 100px;
}

.philosophy__left .eyebrow {
  margin-bottom: 28px;
}

.philosophy__right p + p {
  margin-top: 20px;
}

.pull-quote {
  font-family: var(--serif) !important;
  font-style: italic;
  font-size: clamp(1.4rem, 2.3vw, 1.9rem) !important;
  color: var(--gold) !important;
  line-height: 1.3 !important;
  padding: 32px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  margin-top: 32px !important;
  position: relative;
}

.pull-quote span {
  font-size: 1.8em;
  line-height: 0;
  vertical-align: -0.3em;
  color: rgba(242, 181, 68, 0.4);
  margin: 0 4px;
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.value {
  padding: 36px 28px;
  border-right: 1px solid var(--line-soft);
  position: relative;
  transition: background 0.35s;
}

.value:last-child { border-right: 0; }

.value:hover {
  background: rgba(242, 181, 68, 0.03);
}

.value__num {
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.value h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--cream);
}

.value p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(244, 234, 220, 0.6);
}

/* ============ SERVICES ============ */
.services {
  padding: clamp(80px, 12vw, 160px) 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--brown-dark) 100%);
  position: relative;
}

.services__tabs {
  display: inline-flex;
  gap: 4px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-soft);
  border-radius: 100px;
  margin-bottom: 60px;
}

.tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.85rem;
  color: rgba(244, 234, 220, 0.6);
  transition: all 0.35s var(--ease);
}

.tab small {
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.7;
}

.tab.is-active {
  background: var(--gold);
  color: var(--black);
}

.tab.is-active .mono {
  color: var(--black);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  margin-bottom: 80px;
}

.services__grid[hidden] {
  display: none;
}

.services__catalog-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.services__hint {
  display: none;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  opacity: 0.55;
  margin-top: 16px;
}

.services__experience {
  max-width: 640px;
  margin: 64px auto 0;
  text-align: center;
  padding: 48px clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at top, rgba(242, 181, 68, 0.08) 0%, transparent 70%),
    var(--black);
}

.services__experience-lead {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 500;
  font-style: italic;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 18px;
}

.services__experience-text {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(244, 234, 220, 0.7);
  margin-bottom: 32px;
}

.services__experience .btn {
  font-size: 1rem;
}

.service {
  background: var(--black);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s var(--ease);
  min-height: 320px;
}

.service:hover {
  background: var(--brown-dark);
}

.service--premium {
  background: linear-gradient(180deg, var(--black) 0%, rgba(58, 36, 24, 0.4) 100%);
}

.service--premium:hover {
  background: linear-gradient(180deg, var(--brown-dark) 0%, rgba(58, 36, 24, 0.7) 100%);
}

.service--feature {
  background:
    radial-gradient(ellipse at top right, rgba(242, 181, 68, 0.08) 0%, transparent 60%),
    var(--black);
}

.service--feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.service__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.service__tag {
  color: var(--gold);
}

.service__price {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.service__name {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 14px;
}

.service__desc {
  font-size: 0.92rem;
  color: rgba(244, 234, 220, 0.6);
  margin-bottom: 20px;
  line-height: 1.55;
  flex: 1;
}

.service__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.service__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.dot-gold {
  width: 3px;
  height: 3px;
  background: var(--gold-soft);
  border-radius: 50%;
  opacity: 0.5;
}

.service__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gold);
  transition: all 0.3s;
  align-self: flex-start;
  width: 100%;
}

.service__cta span {
  transition: transform 0.35s var(--ease);
  display: inline-block;
  margin-left: auto;
}

.service__cta:hover {
  color: var(--cream);
}

.service__cta:hover span {
  transform: translateX(6px);
}

/* Adicionales */
.extras {
  padding: 56px clamp(28px, 5vw, 56px);
  background: rgba(242, 181, 68, 0.03);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.extras__head {
  margin-bottom: 32px;
}

.extras__head .h3 {
  margin-top: 12px;
}

.extras__list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.extras__list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
  transition: padding-left 0.3s;
}

.extras__list li:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.extras__list li:hover {
  padding-left: 14px;
}

.extras__name {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--cream);
}

.extras__time {
  color: var(--gold-soft);
}

.extras__price {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
  min-width: 80px;
  text-align: right;
}

/* ============ PROMOS DEL MES ============ */
.promos {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.promos::before {
  content: '';
  position: absolute;
  bottom: -160px;
  right: -160px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(242, 181, 68, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.promo-eyebrow-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.promo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: dotActive 2s ease-in-out infinite;
}

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

.promo {
  background: var(--brown-dark);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
  position: relative;
}

.promo:hover {
  border-color: var(--line);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.promo--featured {
  background: linear-gradient(160deg, rgba(42, 26, 18, 0.9) 0%, var(--brown-dark) 100%);
}

.promo--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.promo__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.promo__label {
  padding: 22px 28px 0;
  color: var(--gold);
  font-size: 0.62rem;
}

.promo__body {
  padding: 14px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.promo__name {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.promo__desc {
  font-size: 0.92rem;
  color: rgba(244, 234, 220, 0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}

.promo__pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 20px;
}

.promo__original {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: rgba(244, 234, 220, 0.3);
  text-decoration: line-through;
}

.promo__arrow {
  color: var(--gold-soft);
  opacity: 0.5;
  flex-shrink: 0;
}

.promo__price {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}

.promo__save {
  font-size: 0.62rem;
  color: #22c55e;
  letter-spacing: 0.08em;
  background: rgba(34, 197, 94, 0.1);
  padding: 3px 8px;
  border-radius: 100px;
}

.promo__includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 24px;
  flex: 1;
}

.promo__includes li {
  font-size: 0.88rem;
  color: rgba(244, 234, 220, 0.7);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}

.promo__includes li::before {
  content: '·';
  position: absolute;
  left: 5px;
  color: var(--gold);
  font-weight: 700;
}

.promo__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
}

.promo__valid {
  font-size: 0.6rem;
  color: rgba(244, 234, 220, 0.38);
  flex: 1;
  min-width: 100px;
  line-height: 1.5;
}

.promo__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(242, 181, 68, 0.3);
  padding-bottom: 1px;
}

.promo__cta span { display: inline-block; transition: transform 0.35s var(--ease); }
.promo__cta:hover { color: var(--cream); border-color: var(--cream); }
.promo__cta:hover span { transform: translateX(5px); }

.promos__more { text-align: center; }

.promos__more .btn {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  white-space: normal;
  max-width: 100%;
  height: auto;
  padding: 14px 22px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

/* ============ TEAM ============ */
.team {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--brown-dark);
  position: relative;
  overflow: hidden;
}

.team::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(242, 181, 68, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.team__carousel {
  position: relative;
}

.team__viewport {
  overflow: hidden;
  margin: 0 -8px;
}

.team__track {
  display: flex;
  gap: 16px;
  padding: 4px 8px;
  transition: transform 0.6s var(--ease-out);
}

.member {
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 0;
  background: var(--black);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  position: relative;
}

.member:hover {
  border-color: var(--line);
  transform: translateY(-4px);
}

.member__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--brown-dark);
}

.member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  filter: brightness(0.92) contrast(1.02);
}

.member:hover .member__photo img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.05);
}

.member__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 5, 5, 0.4) 100%);
}

.member__info {
  padding: 28px 24px;
  position: relative;
}

.member__num {
  position: absolute;
  top: 28px;
  right: 24px;
  color: var(--gold);
  font-size: 0.65rem;
}

.member__name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.member__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 16px;
}

.member__meta .sep {
  opacity: 0.4;
}

.member__bio {
  font-size: 0.92rem;
  color: rgba(244, 234, 220, 0.65);
  line-height: 1.55;
}

/* Badge de disponibilidad del masajista */
.member__dot {
  display: none;
  align-items: center;
  gap: 6px;
  vertical-align: middle;
  margin-left: 8px;
  padding: 3px 10px 3px 8px;
  border-radius: 100px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #22c55e;
  position: relative;
  top: -3px;
}

.member__dot::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: dotActive 2s ease-in-out infinite;
  flex-shrink: 0;
}

.member[data-active="true"] .member__dot {
  display: inline-flex;
}

@keyframes dotActive {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  60%  { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.team__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.team__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.team__btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.team__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.team__dots {
  display: flex;
  gap: 10px;
}

.team__dots button {
  width: 30px;
  height: 2px;
  background: var(--line-soft);
  transition: all 0.3s;
}

.team__dots button.is-active {
  background: var(--gold);
  width: 50px;
}

/* ============ GALLERY ============ */
.gallery {
  padding: clamp(80px, 12vw, 160px) 0;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery__hint {
  display: none;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  opacity: 0.55;
  margin-top: 16px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--brown-dark);
  aspect-ratio: 3 / 4;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5, 5, 5, 0.7) 100%);
  pointer-events: none;
}

.gallery__label {
  position: absolute;
  bottom: 20px;
  left: 24px;
  color: var(--cream);
  z-index: 2;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 100px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(20px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-soft);
  color: var(--cream);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.lightbox__close:hover {
  background: var(--gold);
  color: var(--black);
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--brown-dark);
}

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

.testimonial {
  padding: 36px 32px;
  background: var(--black);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  position: relative;
  transition: all 0.4s var(--ease);
}

.testimonial:hover {
  border-color: var(--line);
  transform: translateY(-4px);
}

.testimonial__quote {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
  height: 32px;
}

.testimonial p {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.5;
  color: rgba(244, 234, 220, 0.85);
  margin-bottom: 24px;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}

.testimonial__name {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--cream);
}

.testimonial__role {
  color: var(--gold-soft);
}

.testimonials__hint {
  display: none;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  opacity: 0.55;
  margin-top: 16px;
}

/* ============ CTA BANNER ============ */
.cta-banner {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(242, 181, 68, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
}

.cta-banner .eyebrow { margin-bottom: 24px; }

/* ============ CONTACT ============ */
.contact {
  padding: clamp(80px, 12vw, 160px) 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--brown-dark) 100%);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}

.contact__info .h2 {
  margin-top: 16px;
  margin-bottom: 40px;
}

.contact__list {
  list-style: none;
  margin-bottom: 36px;
}

.contact__list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
  align-items: center;
}

.contact__list li:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.contact__list li a,
.contact__list li span:last-child {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--cream);
  transition: color 0.3s;
}

.contact__list li a:hover {
  color: var(--gold);
}

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  filter: grayscale(0.6) brightness(0.85) contrast(1.1);
  transition: filter 0.5s;
}

.contact__map:hover {
  filter: grayscale(0) brightness(0.95) contrast(1);
}

/* Form */
.contact__form {
  padding: clamp(32px, 4vw, 48px);
  background: rgba(5, 5, 5, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  position: relative;
}

.contact__form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact__form .h3 {
  margin-bottom: 8px;
}

.contact__form-lede {
  margin-bottom: 32px;
  font-size: 0.95rem;
  color: rgba(244, 234, 220, 0.6);
}

.field {
  margin-bottom: 20px;
  position: relative;
}

.field-desli-bajo {
  width: 100%;
  display: flex;
  grid-column: 2;
  justify-content: flex-end;
  margin-top: 24px;
}

.field-desli-bajo .hero__scroll {
  position: static;
  bottom: auto;
  right: auto;
  transform: translateX(clamp(24px, 4vw, 64px));
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.field-row .field {
  margin-bottom: 0;
}

.field label {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 10px;
}

.field label small {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(244, 234, 220, 0.4);
  margin-left: 4px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border-bottom: 1px solid var(--line-soft);
  font-size: 1rem;
  color: var(--cream);
  transition: border-color 0.3s;
}

.field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23cfa15a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.field select option {
  background: var(--black);
  color: var(--cream);
}

.field textarea {
  resize: vertical;
  min-height: 80px;
  padding-top: 12px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(244, 234, 220, 0.3);
}

.contact__form-foot {
  text-align: center;
  margin-top: 20px;
  font-size: 0.65rem;
  opacity: 0.5;
}

/* Form states */
.contact__form.is-sent .field,
.contact__form.is-sent .btn {
  pointer-events: none;
  opacity: 0.5;
}

.form-success {
  margin-top: 16px;
  padding: 16px;
  background: rgba(242, 181, 68, 0.1);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold);
  text-align: center;
  font-size: 0.9rem;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--black);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line-soft);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer__brand p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold);
  max-width: 280px;
}

.footer h4 {
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__nav,
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav a,
.footer__contact a,
.footer__contact span {
  font-size: 0.92rem;
  color: rgba(244, 234, 220, 0.6);
  transition: color 0.3s;
}

.footer__nav a:hover,
.footer__contact a:hover {
  color: var(--gold);
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(244, 234, 220, 0.4);
}

/* ============ SOCIAL LINKS ============ */
.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  transition: all 0.3s var(--ease);
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(242, 181, 68, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 181, 68, 0.15);
}

.social-links--contact {
  margin-top: 0;
  margin-bottom: 28px;
}

/* ============ FLOATING WHATSAPP ============ */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease);
}

.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}

.wa-fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid #25d366;
  opacity: 0.6;
  animation: waPulse 2.5s ease-out infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

/* Defensive: split-text never stays hidden if JS fails */
.reveal[data-split] {
  opacity: 1;
  transform: none;
}

.reveal[data-split].is-visible {
  opacity: 1;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .philosophy__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .values {
    grid-template-columns: repeat(2, 1fr);
  }

  .value:nth-child(1),
  .value:nth-child(2) {
    border-bottom: 1px solid var(--line-soft);
  }

  .value:nth-child(2),
  .value:nth-child(4) {
    border-right: 0;
  }

  .member {
    flex: 0 0 calc((100% - 16px) / 2);
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .field-desli-bajo {
    grid-column: auto;
  }

  .cta-banner__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .footer__brand {
    grid-column: 1 / 3;
  }
}

@media (max-width: 720px) {
  .nav__menu { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero { padding: 100px 0 60px; }
  .hero__title { font-size: clamp(2.6rem, 12vw, 4.5rem); }
  .hero__meta {
    flex-direction: column;
    gap: 16px;
  }

  .marquee__track { font-size: 1.1rem; gap: 20px; }

  .values { grid-template-columns: 1fr; }
  .value { border-right: 0 !important; border-bottom: 1px solid var(--line-soft); }
  .value:last-child { border-bottom: 0; }

  .promos__grid { grid-template-columns: 1fr; }
  .services__grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
    background: none;
    border: none;
    margin-bottom: 40px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .services__grid::-webkit-scrollbar { display: none; }
  .services__grid .service {
    flex: 0 0 85%;
    scroll-snap-align: start;
    max-width: 340px;
    min-height: 0;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
  }
  .services__hint { display: block; }
  .extras__list li {
    grid-template-columns: 1fr auto;
    row-gap: 4px;
  }
  .extras__time { grid-column: 1; }
  .extras__price { grid-row: 1 / 3; }

  .member { flex: 0 0 calc(100% - 8px); }

  .testimonials__grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .testimonials__grid::-webkit-scrollbar { display: none; }
  .testimonials__grid .testimonial {
    flex: 0 0 85%;
    scroll-snap-align: start;
    max-width: 340px;
  }
  .testimonials__hint { display: block; }

  .gallery__grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .gallery__grid::-webkit-scrollbar { display: none; }
  .gallery__grid .gallery__item {
    flex: 0 0 80%;
    scroll-snap-align: start;
    max-width: 320px;
  }
  .gallery__hint { display: block; }

  .contact__list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__brand { grid-column: auto; }
  .footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .hero__scroll { display: none; }
  .field-desli-bajo .hero__scroll {
    display: flex;
    transform: none;
  }

  .wa-fab {
    width: 54px;
    height: 54px;
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .field-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .field-row .field { margin-bottom: 0; }
}

/* ============ ADMIN PANEL ============ */
.admin-panel {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.admin-panel.is-open {
  opacity: 1;
  pointer-events: all;
}

.admin-panel__card {
  width: min(420px, 100vw);
  background: var(--brown-dark);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}

.admin-panel.is-open .admin-panel__card {
  transform: translateX(0);
}

.admin-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 28px 24px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.3);
}

.admin-panel__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-panel__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 2px;
  line-height: 1;
}

.admin-panel__brand .mono {
  color: var(--gold);
}

.admin-panel__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244, 234, 220, 0.5);
  transition: all 0.25s;
  flex-shrink: 0;
}

.admin-panel__close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.admin-panel__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.admin-stat {
  background: var(--black);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.25s;
}

.admin-stat:hover {
  background: rgba(242, 181, 68, 0.04);
}

.admin-stat__value {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}

.admin-stat__label {
  color: rgba(244, 234, 220, 0.5);
  font-size: 0.65rem;
}

.admin-panel__section {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line-soft);
}

.admin-panel__section-label {
  color: rgba(244, 234, 220, 0.45);
  font-size: 0.62rem;
  margin-bottom: 16px;
}

/* Bar chart */
.admin-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 96px;
}

.admin-chart__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
}

.admin-chart__val {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: rgba(244, 234, 220, 0.5);
  height: 14px;
  display: flex;
  align-items: center;
}

.admin-chart__bar {
  flex: 1;
  width: 100%;
  background: rgba(242, 181, 68, 0.08);
  border-radius: 3px 3px 0 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.admin-chart__fill {
  width: 100%;
  background: linear-gradient(180deg, var(--gold) 0%, var(--amber) 100%);
  border-radius: 3px 3px 0 0;
  transition: height 0.6s var(--ease-out);
  min-height: 4px;
}

.admin-chart__day {
  font-size: 0.58rem;
  color: rgba(244, 234, 220, 0.4);
  text-align: center;
}

.admin-panel__last {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: rgba(244, 234, 220, 0.7);
  font-style: italic;
}

.admin-panel__foot {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid var(--line-soft);
}

.admin-panel__hint {
  font-size: 0.6rem;
  color: rgba(244, 234, 220, 0.3);
  line-height: 1.5;
}

.admin-panel__hint code {
  font-family: var(--mono);
  color: var(--gold-soft);
  opacity: 0.8;
}

.admin-panel__reset {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 234, 220, 0.3);
  padding: 8px 12px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  white-space: nowrap;
  transition: all 0.25s;
  flex-shrink: 0;
}

.admin-panel__reset:hover {
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.05);
}

.admin-panel__ga {
  background: rgba(242, 181, 68, 0.02);
}

/* Setup / hint messages */
.admin-ga__msg {
  font-size: 0.82rem;
  color: rgba(244, 234, 220, 0.6);
  line-height: 1.55;
  margin-bottom: 10px;
}

.admin-ga__msg code {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--gold-soft);
  background: rgba(242, 181, 68, 0.08);
  padding: 1px 5px;
  border-radius: 3px;
}

.admin-ga__hint {
  font-size: 0.6rem;
  color: rgba(244, 234, 220, 0.35);
  line-height: 1.5;
}

/* Sign in button */
.admin-ga__signin {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  margin-bottom: 10px;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}

.admin-ga__signin:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

/* Loading */
.ga-loading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.ga-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(242, 181, 68, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: gaSpin 0.7s linear infinite;
  flex-shrink: 0;
}

@keyframes gaSpin { to { transform: rotate(360deg); } }

/* Real-time active users */
.ga-realtime {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0 14px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 14px;
}

.ga-realtime__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: gaPulse 1.8s ease-in-out infinite;
}

@keyframes gaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.ga-realtime__num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: #22c55e;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* KPI grid */
.ga-kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
}

.ga-kpi {
  background: var(--black);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: background 0.2s;
}

.ga-kpi:hover { background: rgba(242, 181, 68, 0.04); }

.ga-kpi__val {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}

.ga-kpi__lbl {
  font-size: 0.6rem;
  color: rgba(244, 234, 220, 0.45);
}

/* Footer: countdown + sign out */
.ga-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  margin-top: 4px;
}

.ga-countdown {
  font-size: 0.6rem;
  color: rgba(244, 234, 220, 0.35);
}

.admin-ga__signout {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 234, 220, 0.3);
  padding: 6px 10px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: all 0.25s;
  cursor: pointer;
}

.admin-ga__signout:hover {
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.4);
}

/* Error state */
.admin-ga__error {
  font-size: 0.82rem;
  color: rgba(244, 234, 220, 0.6);
  margin-bottom: 10px;
  line-height: 1.5;
}

.admin-ga__retry {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  padding: 8px 0;
  transition: color 0.2s;
}

.admin-ga__retry:hover { color: var(--cream); }

/* ============ STORY / EDITORIAL PAGES ============ */
.page-hero {
  padding: clamp(140px, 20vh, 220px) 0 clamp(60px, 8vw, 100px);
  position: relative;
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
}

.page-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero .eyebrow {
  justify-content: center;
}

.page-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream);
  margin: 20px 0 24px;
}

.page-hero__title em {
  font-style: italic;
  color: var(--gold);
}

.page-hero__lede {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  color: rgba(244, 234, 220, 0.7);
  max-width: 620px;
  margin: 0 auto;
  font-weight: 300;
}

.story {
  padding: clamp(70px, 10vw, 130px) 0;
}

.story__body {
  max-width: 720px;
  margin: 0 auto;
}

.story__body p {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.8;
  color: rgba(244, 234, 220, 0.78);
  margin-bottom: 26px;
  font-weight: 300;
}

.story__body p.story__lead {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 40px;
  font-weight: 400;
}

.story__body .story__highlight {
  font-family: var(--serif) !important;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--gold);
  line-height: 1.35;
  text-align: center;
  padding: 40px 0;
  margin: 44px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  font-weight: 400;
}

.story__divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 48px auto;
}

.story__cta {
  text-align: center;
  margin-top: clamp(50px, 8vw, 80px);
  padding-top: clamp(50px, 8vw, 80px);
  border-top: 1px solid var(--line-soft);
}

.story__cta h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
}

.story__cta h3 em {
  font-style: italic;
  color: var(--gold);
}

.story__cta p {
  color: rgba(244, 234, 220, 0.62);
  margin-bottom: 32px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.story__values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 720px;
  margin: clamp(50px, 8vw, 80px) auto 0;
}

.story__value {
  background: var(--black);
  padding: 32px 28px;
}

.story__value h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 10px;
}

.story__value p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(244, 234, 220, 0.6);
  margin: 0;
}

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__image,
  .splash__logo,
  .marquee__track,
  .wa-fab::before,
  .hero__scroll-line::after {
    animation: none !important;
  }
  html { scroll-behavior: auto; }
}
