/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #080808;
  --surface:    #111111;
  --surface2:   #1a1a1a;
  --border:     #222222;
  --gold:       #ffffff;
  --gold-light: rgba(255,255,255,.8);
  --text:       #f5f5f5;
  --muted:      #666;
  --radius:     12px;
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

/* Snap scroll solo en desktop con mouse — en touch queda libre */
@media (hover: hover) and (pointer: fine) {
  html { overscroll-behavior: none; scroll-snap-type: y proximity; }
  .hero { scroll-snap-align: start; }
  .manifiesto-section { scroll-snap-align: start; }
  .galeria-section { scroll-snap-align: start; }
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ── Utilities ────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #080808;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover { background: rgba(255,255,255,.85); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,.55);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.6); color: var(--text); }

/* ── Sections ─────────────────────────────────── */
.section { padding: 80px 0; }
.section-dark { background: #111; }

.section-header { text-align: center; margin-bottom: 52px; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 2px;
  color: var(--text);
}

/* ── Navbar ───────────────────────────────────── */
.navbar { display: none; }
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-fed { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-weight: 600; letter-spacing: 4px; color: var(--text); }
.logo-con { font-family: 'Inter', sans-serif; font-size: 7px; font-weight: 100; letter-spacing: 6px; color: rgba(255,255,255,.35); margin-top: 4px; }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  color: rgba(255,255,255,.4);
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 100px;
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--text); background: rgba(255,255,255,.07); }
.nav-cta {
  background: #ffffff;
  color: #080808;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
}
.nav-cta:hover { background: rgba(255,255,255,.85); }

.nav-mobile-book { display: none; }

/* ── Scroll dots (desktop only) ───────────────── */
.scroll-dots {
  display: none;
}
@media (min-width: 769px) {
  .scroll-dots {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 800;
  }
  .scroll-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .3s ease;
    position: relative;
  }
  .scroll-dot::after {
    content: attr(data-label);
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    white-space: nowrap;
    opacity: 0;
    transition: opacity .2s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    pointer-events: none;
    background: rgba(8,8,8,.7);
    padding: 3px 8px;
    border-radius: 4px;
  }
  .scroll-dot:hover { background: rgba(255,255,255,.6); }
  .scroll-dot:hover::after { opacity: 1; }
  .scroll-dot.active {
    background: #ffffff;
    height: 20px;
    border-radius: 3px;
  }
  .scroll-dot.active::after { opacity: 1; color: rgba(255,255,255,.8); }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 8px 10px;
  width: 40px; height: 40px;
  -webkit-tap-highlight-color: transparent;
  transition: var(--transition);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
/* Animación X cuando está abierto */
.nav-links.open ~ * .nav-toggle span:nth-child(1),
.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Hero ─────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 20px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  opacity: .5;
  filter: grayscale(100%) contrast(1.15);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,8,8,.5) 0%, rgba(8,8,8,.2) 40%, rgba(8,8,8,.7) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 20px;
  animation: blur-in 1.1s cubic-bezier(.4,0,.2,1) both;
  animation-delay: 0s;
}

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 28px;
  gap: 6px;
}
.hero-fed {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4.5rem, 14vw, 9.5rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: .08em;
  white-space: nowrap;
}
.hero-con {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 3.5vw, 1.8rem);
  font-weight: 100;
  letter-spacing: 12px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-style: italic;
  color: rgba(255,255,255,.45);
  margin-bottom: 44px;
  font-weight: 300;
  letter-spacing: .5px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: blur-in 1.1s cubic-bezier(.4,0,.2,1) both;
  animation-delay: 1.9s;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  animation: blur-in 1.1s cubic-bezier(.4,0,.2,1) both;
  animation-delay: 2.2s;
}
.pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 0 rgba(46,204,113,.5);
  animation: pulse-anim 2s infinite;
}
@keyframes pulse-anim {
  0%   { box-shadow: 0 0 0 0 rgba(46,204,113,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── Services Grid ────────────────────────────── */
/* ── Carousel ─────────────────────────────────── */
.carousel-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.carousel-viewport {
  overflow: hidden;
  flex: 1;
  border-radius: var(--radius);
}
.services-grid {
  display: flex;
  gap: 16px;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.service-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 calc(33.333% - 11px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.07);
  border-top: 1px solid var(--gold);
  border-radius: 0;
  padding: 36px 28px 32px;
  transition: background .3s ease, transform .3s ease;
  text-align: left;
}
.service-card:hover { background: rgba(255,255,255,.04); transform: translateY(-4px); }
.service-card::after { display: none; }
.service-wm {
  position: absolute;
  bottom: 18px; right: 18px;
  width: 130px; height: 130px;
  color: rgba(255,255,255,1);
  opacity: 0.05;
  pointer-events: none;
  transition: opacity .3s ease;
}
.service-card:hover .service-wm { opacity: 0.1; }
.service-wm svg, .service-wm img { width: 100%; height: 100%; object-fit: contain; }
.service-icon { display: none; }
.service-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  opacity: .55;
  margin-bottom: 22px;
}
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  margin-bottom: 28px;
  line-height: 1.65;
  flex: 1;
}
.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.service-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: -.5px;
}
.service-duration {
  font-size: 10px;
  color: rgba(255,255,255,.3);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.service-book {
  width: 100%;
  margin-top: auto;
  background: transparent;
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.14);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 12px;
  border-radius: 0;
  cursor: pointer;
  transition: all .25s ease;
}
.service-book:hover { background: var(--gold); border-color: var(--gold); color: #080808; }

.carousel-btn {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.carousel-btn:hover { background: var(--surface2); border-color: rgba(255,255,255,.3); }
.carousel-btn:disabled { opacity: .25; pointer-events: none; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.carousel-dot.active {
  background: var(--text);
  width: 20px;
  border-radius: 3px;
}

.service-skeleton {
  flex: 0 0 calc(33.333% - 11px);
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.07);
  border-top: 1px solid rgba(255,255,255,.15);
  border-radius: 0;
  height: 280px;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0%,100%{opacity:.4} 50%{opacity:.8}
}

/* ── About ────────────────────────────────────── */
.about-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100dvh;
  overflow: hidden;
  align-items: center;
}

.about-left {
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 2;
}

.about-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 12px 0 32px;
}

.about-quote {
  border-left: 1px solid rgba(255,255,255,.2);
  padding-left: 20px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  font-style: italic;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.about-tag {
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
}

.about-right {
  position: relative;
  height: 100%;
  min-height: 100dvh;
}

.about-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) contrast(1.05);
}

.about-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 45%);
  z-index: 1;
  pointer-events: none;
}

/* ── Steps ────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.6% + 28px);
  right: calc(16.6% + 28px);
  height: 1px;
  background: linear-gradient(to right, var(--gold), var(--border));
}
.step { text-align: center; padding: 0 12px; position: relative; }
.step-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}
.step-icon {
  width: 56px; height: 56px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Footer ───────────────────────────────────── */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 52px 0 40px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  position: relative;
}
.footer-logo { display: flex; flex-direction: column; line-height: 1; align-items: center; }
.footer-dev {
  font-size: 11px;
  color: rgba(255,255,255,.22);
  letter-spacing: 1.5px;
}
.footer-dev a {
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color .25s;
}
.footer-dev a:hover { color: rgba(255,255,255,.7); }
.footer-admin {
  position: absolute;
  bottom: 0; right: 40px;
  font-size: 11px;
  color: #333;
  text-decoration: none;
}
.footer-admin:hover { color: #555; }

/* ── Chat FAB ─────────────────────────────────── */
.chat-fab {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--gold);
  color: #0d0d0d;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  box-shadow: 0 4px 24px rgba(201,168,76,.35);
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.chat-fab:hover { transform: scale(1.08); background: var(--gold-light); }
.chat-fab:active { transform: scale(.96); }

.fab-icon-chat, .fab-icon-close { transition: var(--transition); }
.fab-icon-chat { display: block; }
.fab-icon-close { display: none; }
.chat-fab.open .fab-icon-chat { display: none; }
.chat-fab.open .fab-icon-close { display: block; }

.fab-badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 18px; height: 18px;
  background: #e74c3c;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
}
.fab-badge.show { display: flex; }

/* ── Chat Panel ───────────────────────────────── */
.chat-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 799;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.chat-overlay.show { display: block; }

.chat-panel {
  position: fixed;
  bottom: 96px;
  right: 20px;
  width: 360px;
  height: 560px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  z-index: 800;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(.96);
  transition: opacity var(--transition), transform var(--transition);
}
.chat-panel.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

.chat-header {
  padding: 16px 20px;
  background: #111;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.chat-header-info { display: flex; align-items: center; gap: 12px; }
.chat-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #080808;
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.chat-avatar img {
  width: 26px; height: 26px;
  object-fit: contain;
}
.chat-name { font-size: 14px; font-weight: 700; }
.chat-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--muted);
}
.pulse-green {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2ecc71;
  animation: pulse-anim 2s infinite;
}
.chat-close {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.chat-close:hover { color: var(--text); }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.chat-date-divider {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin: 4px 0;
}

.msg { display: flex; gap: 8px; }
.msg-bot { justify-content: flex-start; }
.msg-user { justify-content: flex-end; }

.msg-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-word;
}
.msg-bot .msg-bubble {
  background: var(--surface2);
  border-bottom-left-radius: 4px;
  color: var(--text);
}
.msg-user .msg-bubble {
  background: var(--gold);
  color: #0d0d0d;
  font-weight: 500;
  border-bottom-right-radius: 4px;
}

/* ── Bot word reveal ── */
.wv {
  display: inline;
  opacity: 0;
  filter: blur(6px);
  animation: word-reveal .35s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes word-reveal {
  from { opacity: 0; filter: blur(6px); }
  to   { opacity: 1; filter: blur(0); }
}

.typing-indicator .msg-bubble {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 12px 16px;
}
.typing-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--muted);
  animation: typing-bounce .9s infinite;
}
.typing-dot:nth-child(2) { animation-delay: .2s; }
.typing-dot:nth-child(3) { animation-delay: .4s; }
@keyframes typing-bounce { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-6px)} }

.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: -4px;
}
.quick-reply {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.quick-reply:hover { background: rgba(201,168,76,.1); border-color: var(--gold); }

.chat-input-area {
  flex-shrink: 0;
  padding: 10px 12px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: var(--bg);
  border-top: 1px solid var(--border);
}

/* Pills row */
.chat-pills-row {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.chat-pills-row::-webkit-scrollbar { display: none; }
.chat-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
  font-family: inherit;
  padding: 7px 14px;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.chat-pill img {
  width: 13px; height: 13px;
  object-fit: contain;
  filter: invert(1);
  opacity: .6;
  flex-shrink: 0;
}
.chat-pill:hover { border-color: var(--gold); color: var(--gold); }
.chat-pill:hover img { opacity: 1; }
.chat-pill:active { transform: scale(.96); }

/* Input card — la pieza central en mobile */
.chat-input-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 14px 16px 12px;
  transition: border-color var(--transition);
}
.chat-input-card:focus-within { border-color: rgba(201,168,76,.5); }

.chat-form { display: block; }

.chat-input {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 16px;
  font-family: inherit;
  line-height: 1.55;
  resize: none;
  outline: none;
  min-height: 26px;
  max-height: 130px;
  overflow-y: auto;
  scrollbar-width: none;
}
.chat-input::-webkit-scrollbar { display: none; }
.chat-input::placeholder { color: var(--muted); }

.chat-input-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.chat-brand-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--gold);
  opacity: .7;
  text-transform: uppercase;
}

.chat-send {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: #0d0d0d;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.chat-send:hover { background: var(--gold-light); transform: scale(1.05); }
.chat-send:disabled { opacity: .35; cursor: not-allowed; transform: none; }

/* ── Mobile ───────────────────────────────────── */
@media (max-width: 768px) {
  /* Navbar oculto en mobile — bottom nav reemplaza toda la navegación */
  .navbar { display: none; }
  .hero { padding-top: 40px; }

  .hero { padding: 88px 20px 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; max-width: 280px; justify-content: center; }

  .service-card,
  .service-skeleton { flex: 0 0 calc(90% - 0px); }
  .carousel-btn { display: none; }
  .carousel-wrap { gap: 0; }

  .about-section {
    display: block;
    position: relative;
    overflow: hidden;
    grid-template-columns: unset;
    min-height: 0;
    padding-top: 88vw;
  }
  .about-right {
    position: absolute;
    inset: 0;
    min-height: 0;
    z-index: 0;
  }
  .about-left {
    position: relative;
    z-index: 2;
    padding: 0 28px 52px;
  }
  .about-name          { font-size: clamp(2.8rem, 11vw, 4rem); margin-bottom: 16px; }
  .about-quote         { font-size: 14px; margin-bottom: 20px; }
  .about-tags          { margin-bottom: 28px; }
  .about-left .btn-primary { width: auto; padding: 10px 22px; font-size: 12px; letter-spacing: 1.5px; }
  .about-fade {
    background:
      linear-gradient(to bottom, var(--bg) 0%, transparent 28%),
      linear-gradient(to top,    var(--bg) 20%, rgba(8,8,8,.7) 55%, transparent 100%);
  }

  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid::before { display: none; }

  .footer-inner { flex-direction: column; text-align: center; }

  /* Espacio para bottom nav */
  body { padding-bottom: 72px; }

  /* ── Chat full-screen Vercel-style ── */
  .chat-panel {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100dvh;
    border-radius: 0;
    overflow: hidden;
    background: #000;
    box-shadow: none;
  }
  .chat-header {
    background: #000;
    border-bottom: none;
    padding: max(14px, calc(env(safe-area-inset-top) + 8px)) 16px 10px;
    align-items: center;
  }
  .chat-avatar { display: none; }
  .chat-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: .08em;
    line-height: 1;
  }
  .chat-status { display: none; }
  .chat-messages {
    background: #000;
    min-height: 0;
    padding: 16px 20px;
  }
  .msg-bot .msg-bubble {
    background: #111;
    border: 1px solid rgba(255,255,255,.07);
  }
  .chat-input-area {
    background: #000;
    border-top: none;
    padding: 8px 16px max(24px, env(safe-area-inset-bottom));
  }
  .chat-pills-row {
    flex-direction: column;
    overflow-x: visible;
    overflow-y: visible;
    gap: 0;
    padding: 0 0 10px;
  }
  .chat-pill {
    flex-shrink: 1;
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.07);
    border-radius: 0;
    padding: 14px 4px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(255,255,255,.65);
    white-space: normal;
    justify-content: flex-start;
    gap: 10px;
    transform: none;
  }
  .chat-pill:first-child { border-top: 1px solid rgba(255,255,255,.07); }
  .chat-pill img { width: 15px; height: 15px; opacity: .4; filter: invert(1); }
  .chat-pill:hover, .chat-pill:active {
    background: none;
    border-color: rgba(255,255,255,.15);
    color: #fff;
    border-radius: 0;
    transform: none;
  }
  .chat-pill:hover img, .chat-pill:active img { opacity: .75; }
  .chat-input-card {
    border-radius: 24px;
    border-color: rgba(255,255,255,.1);
    background: #0e0e0e;
    padding: 24px 80px 24px 22px;
    position: relative;
    min-height: 140px;
  }
  .chat-input-card:focus-within { border-color: rgba(255,255,255,.22); }
  .chat-input {
    font-size: 18px;
    min-height: 90px;
    max-height: 200px;
  }
  .chat-input-actions {
    position: absolute;
    right: 16px;
    bottom: 16px;
    margin-top: 0;
  }
  .chat-brand-tag { display: none; }
  .chat-send {
    width: 50px; height: 50px;
    border-radius: 14px;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.4);
  }
  .chat-send:not(:disabled) { background: #fff; color: #000; }
  .chat-send svg { stroke: currentColor; }
  .chat-send:hover { transform: none; background: rgba(255,255,255,.85); }
  .chat-send:not(:disabled):hover { background: rgba(255,255,255,.85); }

  /* FAB oculto en mobile — chat está en bottom nav */
  .chat-fab { display: none; }
}

/* ── Bottom Nav ───────────────────────────────── */
.bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .bottom-nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: calc(64px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    background: rgba(10,10,10,.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid var(--border);
    z-index: 800;
  }

  .bnav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--muted);
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .3px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    -webkit-tap-highlight-color: transparent;
    transition: color var(--transition);
    position: relative;
  }
  .bnav-item:hover, .bnav-item.active { color: var(--gold); }
  .bnav-item svg { transition: stroke var(--transition); }
  .bnav-item.active svg { stroke: var(--gold); }

  /* Botón Reservar — central elevado */
  .bnav-book {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: var(--gold);
    color: #0d0d0d;
    border: none;
    border-radius: 20px;
    width: 68px;
    height: 68px;
    cursor: pointer;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .3px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(201,168,76,.45);
    -webkit-tap-highlight-color: transparent;
    transition: var(--transition);
    flex-shrink: 0;
  }
  .bnav-book:active { transform: scale(.95); }
  .bnav-book svg { stroke: #0d0d0d; }

  /* Badge de mensajes no leídos en chat */
  .bnav-badge {
    position: absolute;
    top: 4px; right: 6px;
    background: #e53e3e;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
  }
  .bnav-badge.show { display: flex; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .section-title { font-size: 1.8rem; }
}

/* ── Carta ────────────────────────────────────── */
.carta-section {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.carta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,.028) 0%, transparent 65%);
  pointer-events: none;
}
.carta-inner {
  position: relative;
  max-width: 720px;
  width: 100%;
  text-align: center;
}
.carta-label {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  margin-bottom: 72px;
}
.carta-quote-wrap {
  position: relative;
}
.carta-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(14rem, 22vw, 22rem);
  line-height: 0.5;
  color: rgba(255,255,255,.045);
  position: absolute;
  top: -10px;
  left: -30px;
  pointer-events: none;
  user-select: none;
}
.carta-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  quotes: none;
  position: relative;
  z-index: 1;
}
.carta-divider {
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,.15);
  margin: 56px auto;
}
.carta-firma {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.35);
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .carta-section  { padding: 100px 32px; min-height: 0; }
  .carta-label    { margin-bottom: 48px; }
  .carta-mark     { font-size: 11rem; left: -16px; }
  .carta-divider  { margin: 40px auto; }
}

/* ── Scissors animation ───────────────────────── */
@keyframes bladeOpen {
  0%, 100% { transform: rotate(0deg); }
  50%       { transform: rotate(16deg); }
}
@keyframes bladeClose {
  0%, 100% { transform: rotate(0deg); }
  50%       { transform: rotate(-16deg); }
}
.scissors-blade-a {
  transform-origin: 12px 12px;
  animation: bladeOpen 1.8s ease-in-out infinite;
}
.scissors-blade-b {
  transform-origin: 12px 12px;
  animation: bladeClose 1.8s ease-in-out infinite;
}

/* ── Letter animation ─────────────────────────── */
@keyframes letterReveal {
  from { opacity: 0; transform: translateY(18px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
@keyframes letterFade {
  from { opacity: 0; filter: blur(10px); letter-spacing: 20px; }
  to   { opacity: 1; filter: blur(0); }
}

@keyframes blur-in {
  from { opacity: 0; filter: blur(14px); transform: translateY(10px); }
  to   { opacity: 1; filter: blur(0);   transform: translateY(0); }
}
.letter {
  display: inline-block;
  opacity: 0;
  animation: letterReveal 0.7s cubic-bezier(.25,.46,.45,.94) forwards;
}
.letter-sub {
  display: inline-block;
  opacity: 0;
  animation: letterFade 0.8s ease forwards;
}

/* ── Reveal on scroll ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s ease, transform .85s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.about-left.reveal              { transition-delay: .15s; }
.testimonio:nth-child(2)        { transition-delay: .14s; }
.testimonio:nth-child(3)        { transition-delay: .28s; }

/* ── Manifiesto ───────────────────────────────────── */
.manifiesto-section {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.manifiesto-watermark {
  position: absolute;
  width: min(700px, 90vw);
  height: min(700px, 90vw);
  opacity: .07;
  pointer-events: none;
  transform: rotate(-20deg);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.manifiesto-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
}

.manifiesto-inner { position: relative; z-index: 1; }

.manifiesto-line1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.2);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: .5px;
}

.rotating-word {
  display: inline-block;
  transition: opacity .28s ease, transform .28s ease;
  color: rgba(255,255,255,.45);
  font-style: italic;
}
.rotating-word.exit {
  opacity: 0;
  transform: translateY(-10px);
}
.rotating-word.enter {
  opacity: 0;
  transform: translateY(12px);
  transition: none;
}

.manifiesto-line2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 11vw, 9rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.0;
  letter-spacing: .5px;
}

/* ── Galería ──────────────────────────────────────── */
.galeria-section {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 60px 0 0;
  overflow-x: clip;
}
.galeria-section .container { margin-bottom: 32px; flex-shrink: 0; }

.galeria-track {
  display: flex;
  flex: 1;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 60px 30px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  overscroll-behavior-x: contain;
  cursor: grab;
  align-items: stretch;
}
.galeria-item, .galeria-item img { touch-action: pan-x pan-y; }
.galeria-track::-webkit-scrollbar { display: none; }
.galeria-track:active { cursor: grabbing; }

.galeria-item {
  flex: 0 0 280px;
  height: auto;
  min-height: 320px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform .4s ease;
}
.galeria-item:hover { transform: translateY(-4px); }
.galeria-item.tall  { height: auto; }
.galeria-item.wide  { flex: 0 0 440px; }

.galeria-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.08);
  transition: transform .6s ease, filter .4s ease;
}
.galeria-item:hover img {
  transform: scale(1.04);
  filter: grayscale(60%) contrast(1.1);
}
.galeria-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.15) 55%, transparent 100%);
  pointer-events: none;
  opacity: .5;
  transition: opacity .45s ease;
}
.galeria-item:hover .galeria-overlay,
.galeria-item.caption-active .galeria-overlay { opacity: 1; }

.galeria-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 18px 18px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s cubic-bezier(.25,.46,.45,.94);
}
.galeria-item:hover .galeria-caption,
.galeria-item.caption-active .galeria-caption {
  opacity: 1;
  transform: translateY(0);
}
.galeria-caption-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 6px;
}
.galeria-caption-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: .3px;
}
.galeria-item.empty {
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: rgba(255,255,255,.06);
  border-style: dashed;
}
.galeria-item.loading-placeholder {
  animation: shimmer 1.5s ease-in-out infinite;
}

/* ── Reviews Carousel ────────────────────────────── */
.reviews-carousel-wrap {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 56px;
}
.reviews-viewport { overflow: hidden; }
.reviews-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.review-card {
  flex: 0 0 100%;
  padding: 56px 40px 40px;
  position: relative;
  text-align: center;
}
.review-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(7rem, 12vw, 12rem);
  line-height: .5;
  color: rgba(255,255,255,.04);
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}
.review-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.review-author {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .55;
}
.rev-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,.45);
  transition: all .25s ease;
  z-index: 2;
}
.rev-btn:hover { border-color: rgba(255,255,255,.4); color: var(--text); }
.rev-btn:disabled { opacity: .2; pointer-events: none; }
.rev-prev { left: 0; }
.rev-next { right: 0; }
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.reviews-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: none; cursor: pointer;
  transition: all .25s ease; padding: 0;
}
.reviews-dot.active { background: var(--gold); width: 22px; border-radius: 3px; }

/* ── Social Section ──────────────────────────────── */
.social-section { padding: 100px 0; }
.soc-tabs {
  display: flex;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 28px;
}
.soc-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  border-radius: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.12);
  background: transparent;
  color: rgba(255,255,255,.35);
  cursor: pointer;
  transition: all .25s ease;
}
.soc-tab:hover { color: var(--text); border-color: rgba(255,255,255,.3); }
.soc-tab.active { color: var(--text); border-color: var(--gold); background: rgba(255,255,255,.04); }
.soc-panel { display: none; }
.soc-panel.active { display: block; }
.soc-embed-wrap {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  position: relative;
}
.soc-embed-header {
  background: #0d0d0d;
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.soc-header-link {
  margin-left: auto;
  color: rgba(255,255,255,.25);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 1.5px;
  transition: color .25s;
}
.soc-header-link:hover { color: rgba(255,255,255,.7); }
.soc-iframe-clip {
  overflow: hidden;
  position: relative;
}
.soc-iframe {
  width: 100%;
  height: 580px;
  border: none;
  display: block;
}

/* ── reveal-slow (carta) ─────────────────────────── */
.reveal-slow {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 2.4s ease, transform 2.4s cubic-bezier(.25,.46,.45,.94);
  transition-delay: var(--rd, 0s);
}
.reveal-slow.visible { opacity: 1; transform: translateY(0); }

/* ── La Cita ──────────────────────────────────────── */
/* ── La Cita ──────────────────────────────────── */
.cita-section {
  min-height: 100dvh;
  background: #050505;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.cita-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 60vh;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,255,255,.026) 0%, transparent 100%);
  pointer-events: none;
}
.cita-wm {
  position: absolute;
  right: -6%;
  bottom: -6%;
  width: 52vw;
  max-width: 680px;
  aspect-ratio: 1;
  background: url('../icons/icon-scissors.png') no-repeat center / contain;
  opacity: .022;
  filter: invert(1);
  pointer-events: none;
  transform: rotate(-18deg);
}
.cita-content { width: 100%; }
.cita-eyebrow {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.22);
  margin-bottom: 22px;
}
.cita-headline {
  display: flex;
  flex-direction: column;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: .88;
  margin-bottom: 56px;
}
.cita-h-ghost {
  font-size: clamp(4rem, 11.5vw, 9.5rem);
  color: rgba(255,255,255,.1);
  letter-spacing: -3px;
}
.cita-h-solid {
  font-size: clamp(4rem, 11.5vw, 9.5rem);
  color: #f5f5f5;
  letter-spacing: -3px;
}
.cita-hr {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.03) 100%);
  margin-bottom: 48px;
}
.cita-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 60px;
}
.cita-col {
  padding-right: 40px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.cita-col:not(:first-child) { padding-left: 40px; }
.cita-col:last-child { border-right: none; padding-right: 0; }
.cita-col-num {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,.14);
  margin-bottom: 14px;
}
.cita-col-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: rgba(255,255,255,.88);
  letter-spacing: .3px;
  margin-bottom: 5px;
  line-height: 1.2;
}
.cita-col-info {
  font-size: 12px;
  color: rgba(255,255,255,.32);
  letter-spacing: .5px;
}
.cita-reserve-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 32px;
  background: #ffffff;
  color: #050505;
  border: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  transition: background .25s ease, transform .2s ease;
  border-radius: 0;
}
.cita-reserve-btn:hover {
  background: rgba(255,255,255,.9);
  transform: translateY(-3px);
}
.cita-reserve-btn svg { transition: transform .3s ease; flex-shrink: 0; }
.cita-reserve-btn:hover svg { transform: translateX(7px); }

/* ── Mobile: new sections ─────────────────────────── */
@media (max-width: 768px) {
  .manifiesto-section    { min-height: 100dvh; padding: 72px 28px; }

  .galeria-section       { min-height: 0; padding: 72px 0 110px; }
  .galeria-track         { padding: 0 20px 20px; flex: none; scroll-snap-type: none; gap: 12px; }
  .galeria-item          { flex: 0 0 260px; height: 400px; min-height: 0; scroll-snap-align: none; }
  .galeria-item.tall     { height: 400px; }
  .galeria-item.wide     { flex: 0 0 320px; }

  .reviews-carousel-wrap  { padding: 0 44px; }
  .review-card            { padding: 40px 20px 28px; }
  .soc-iframe { height: 420px; }

/* Desktop: solo Instagram, sin tabs */
@media (min-width: 769px) {
  .soc-tabs       { display: none; }
  #panel-tiktok   { display: none !important; }
  #panel-instagram { display: block !important; }
}

  .cita-section          { padding: 90px 0 80px; }
  .cita-headline         { margin-bottom: 40px; }
  .cita-h-ghost,
  .cita-h-solid          { letter-spacing: -2px; }
  .cita-grid             { grid-template-columns: 1fr; gap: 0; margin-bottom: 44px; }
  .cita-col              { border-right: none; padding-right: 0; border-bottom: 1px solid rgba(255,255,255,.07); padding-bottom: 28px; margin-bottom: 0; }
  .cita-col:not(:first-child) { padding-left: 0; padding-top: 28px; }
  .cita-col:last-child   { border-bottom: none; padding-bottom: 0; }
  .cita-reserve-btn      { padding: 20px 24px; }
}
