/* ═══════════════════════════════════════════════════════════
   AMOR PROPIO MEDICINA DE BIENESTAR
   Archetype: Editorial Dark Warm (custom gold palette)
   v=20260523
═══════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --gold:        #C9A84C;
  --gold-dim:    rgba(201,168,76,.18);
  --gold-glow:   rgba(201,168,76,.35);
  --dark:        #0D0D0D;
  --dark-2:      #161616;
  --dark-3:      #1E1E1E;
  --cream:       #F5F0E8;
  --cream-2:     #EDE8DF;
  --off-white:   #FAFAF7;
  --ink:         #1A1A1A;
  --ink-soft:    #3A3A3A;
  --ink-mute:    #7A7A7A;
  --text-light:  #F2EBD9;
  --text-dim:    rgba(242,235,217,.65);
  --line-dark:   rgba(201,168,76,.2);
  --line-cream:  rgba(26,26,26,.12);
  --nav-h:       72px;
  --ease-out:    cubic-bezier(.16,1,.3,1);
  --ease-in-out: cubic-bezier(.76,0,.24,1);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  overflow-x: clip;
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--dark);
  overflow-x: clip;
  cursor: none;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font: inherit; }
blockquote { quotes: none; }

/* ── SPLASH ──────────────────────────────────────────────── */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: splashSafety .01s 4.5s forwards;
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; visibility: hidden; }
}
.splash.is-out {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .6s var(--ease-in-out);
}
.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.splash-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: invert(1);
  animation: splashRotate 2s ease-in-out forwards;
  opacity: 0;
}
@keyframes splashRotate {
  0%  { opacity: 0; transform: scale(.7) rotate(-15deg); }
  60% { opacity: 1; transform: scale(1.05) rotate(3deg); }
  100%{ opacity: 1; transform: scale(1) rotate(0deg); }
}
.splash-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .06em;
  opacity: 0;
  animation: splashFadeUp .6s .5s var(--ease-out) forwards;
}
.splash-sub {
  font-size: .75rem;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: 0;
  animation: splashFadeUp .6s .7s var(--ease-out) forwards;
}
.splash-bar {
  width: 160px;
  height: 1px;
  background: rgba(201,168,76,.2);
  margin-top: 1rem;
  overflow: hidden;
  opacity: 0;
  animation: splashFadeUp .3s .9s var(--ease-out) forwards;
}
.splash-bar-fill {
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: splashBar 1.2s 1s var(--ease-out) forwards;
}
@keyframes splashBar { to { width: 100%; } }
@keyframes splashFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── CURSOR ──────────────────────────────────────────────── */
.cursor { position: fixed; top: 0; left: 0; z-index: 9998; pointer-events: none; opacity: 0; transition: opacity .3s; }
.cursor.is-ready { opacity: 1; }
.cursor-dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  will-change: transform;
}
.cursor-ring {
  position: absolute;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(201,168,76,.6);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .25s var(--ease-out), height .25s var(--ease-out), border-color .25s;
  will-change: transform;
}
.cursor.is-hover .cursor-ring { width: 56px; height: 56px; border-color: var(--gold); }
.cursor.is-hover .cursor-dot  { background: var(--gold); }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background .4s, box-shadow .4s;
}
.nav.is-solid {
  background: rgba(13,13,13,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--line-dark);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.nav-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  mix-blend-mode: screen;   /* blanco desaparece sobre fondo oscuro */
  filter: invert(1);        /* negro → blanco, blanco → negro (invisible en fondo oscuro) */
}
.nav-brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .03em;
  line-height: 1.2;
}
.nav-brand-sub {
  font-style: normal;
  font-weight: 300;
  font-size: .82rem;
  display: block;
  opacity: .75;
  letter-spacing: .06em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-link {
  font-size: .82rem;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: .06em;
  padding: .5rem .75rem;
  border-radius: 4px;
  transition: color .2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px; left: .75rem; right: .75rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s var(--ease-out);
  transform-origin: left;
}
.nav-link:hover { color: var(--text-light); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  font-size: .8rem;
  font-weight: 500;
  color: var(--dark);
  background: var(--gold);
  padding: .55rem 1.25rem;
  border-radius: 4px;
  letter-spacing: .06em;
  transition: opacity .2s, transform .2s;
  margin-left: .5rem;
}
.nav-cta:hover { opacity: .88; transform: translateY(-1px); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  height: 1.5px;
  background: var(--gold);
  transition: transform .3s, opacity .3s;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(13,13,13,.98);
  border-top: 1px solid var(--line-dark);
  padding: 1rem 2rem 1.5rem;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile li { border-bottom: 1px solid rgba(201,168,76,.08); }
.nav-mobile .nav-link {
  display: block;
  padding: .9rem .25rem;
  font-size: .95rem;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(13,13,13,.92) 0%,
    rgba(13,13,13,.80) 50%,
    rgba(13,13,13,.95) 100%
  );
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) 2rem 6rem;
  max-width: 900px;
  margin: 0 auto;
}
.hero-kicker {
  font-size: .72rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 500;
  line-height: 1.02;
  color: var(--off-white);
  text-wrap: balance;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1em;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-line { display: block; }
.hero-sub {
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  color: var(--text-dim);
  max-width: 54ch;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-text {
  font-size: .62rem;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
}
@keyframes scrollPulse {
  0%,100% { opacity: .4; transform: scaleY(.7); }
  50%      { opacity: 1;  transform: scaleY(1); }
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  padding: .85rem 1.75rem;
  border-radius: 4px;
  transition: transform .2s var(--ease-out), opacity .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 4px 24px rgba(201,168,76,.25);
}
.btn-gold:hover { box-shadow: 0 8px 40px rgba(201,168,76,.45); }
.btn-ghost {
  border: 1px solid rgba(201,168,76,.4);
  color: var(--text-light);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost-light {
  border: 1px solid rgba(201,168,76,.4);
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  padding: .85rem 1.75rem;
  border-radius: 4px;
  transition: transform .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn-ghost-light:hover { transform: translateY(-2px); border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 1rem 2.25rem; font-size: .9rem; }

/* ── SECTIONS ────────────────────────────────────────────── */
.section { padding: 7rem 0; }
.section-dark  { background: var(--dark); }
.section-cream { background: var(--cream); }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 5rem;
}
.section-kicker {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1rem;
  display: block;
}
.section-kicker--gold { color: var(--gold); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title--light { color: var(--text-light); }
.section-desc {
  font-size: .95rem;
  color: var(--text-dim);
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── ABOUT ───────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.about-img-wrap {
  position: relative;
}
.about-img-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.about-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.about-img-border {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 2px;
  pointer-events: none;
}
.about-credential-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.cred-label {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: .25rem;
}
.cred-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold);
}
.about-content { padding-top: 1rem; }
.about-credentials {
  font-size: .8rem;
  letter-spacing: .12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.about-body {
  font-size: .97rem;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-body em { color: var(--ink); font-style: italic; }
.about-philosophy {
  border-left: 2px solid var(--gold);
  padding: 1rem 0 1rem 1.5rem;
  margin: 2rem 0;
}
.philosophy-line { display: none; }
.philosophy-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: .5rem;
}
.philosophy-author {
  font-size: .75rem;
  color: var(--ink-mute);
  letter-spacing: .08em;
}
.about-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.tag {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.3);
  padding: .35rem .85rem;
  border-radius: 100px;
}

/* ── GLASS CARDS ─────────────────────────────────────────── */
.glass-card {
  background: rgba(245,240,232,.75);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
@supports not (backdrop-filter: blur(12px)) {
  .glass-card { background: rgba(245,240,232,.92); }
}
.glass-card-dark {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
@supports not (backdrop-filter: blur(12px)) {
  .glass-card-dark { background: rgba(30,30,30,.95); }
}

/* ── SERVICES ────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-card-img {
  position: relative;
  margin: -2.5rem -2rem 0;
  height: 180px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  flex-shrink: 0;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s var(--ease-out);
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,.1) 0%,
    rgba(13,13,13,.65) 100%
  );
}
.service-card-img--trico {
  background:
    radial-gradient(ellipse at 60% 30%, rgba(201,168,76,.22) 0%, transparent 60%),
    linear-gradient(145deg, #0d0d0d 0%, #1a1408 55%, #0f0e08 100%);
}
.service-card-img--trico::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 18px,
    rgba(201,168,76,.06) 18px,
    rgba(201,168,76,.06) 19px
  );
}

.service-card {
  padding: 2.5rem 2rem 2rem;
  position: relative;
  transition: transform .4s var(--ease-out), box-shadow .4s;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(201,168,76,.12), 0 0 0 1px rgba(201,168,76,.3);
}
.service-card--featured {
  border-color: rgba(201,168,76,.45);
  background: rgba(201,168,76,.06);
}
.service-badge {
  position: absolute;
  top: -1px; right: 1.5rem;
  background: var(--gold);
  color: var(--dark);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 0 0 6px 6px;
}
.service-icon { flex-shrink: 0; }
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-light);
}
.service-title em { font-style: italic; color: var(--gold); }
.service-desc {
  font-size: .88rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}
.service-list li {
  font-size: .83rem;
  color: var(--text-dim);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 5px; height: 1px;
  background: var(--gold);
}
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--gold);
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid rgba(201,168,76,.12);
  transition: gap .2s, color .2s;
}
.service-cta:hover { gap: .7rem; }

/* ── WHY / DIFERENCIADORES ───────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.why-card {
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform .4s var(--ease-out), box-shadow .4s;
  overflow: hidden;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(201,168,76,.12);
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--hx,50%) var(--hy,50%), rgba(201,168,76,.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.why-card:hover::before { opacity: 1; }
.why-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201,168,76,.12);
  line-height: 1;
  position: absolute;
  top: 1rem; right: 1.5rem;
}
.why-icon { margin-bottom: 1rem; }
.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: .75rem;
}
.why-desc { font-size: .88rem; color: var(--ink-soft); line-height: 1.75; }

/* ── STATS ───────────────────────────────────────────────── */
.stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,.5);
}
.stat-item {
  flex: 1;
  padding: 2.5rem 2rem;
  text-align: center;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  display: inline-block;
}
.stat-plus {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  vertical-align: super;
}
.stat-label {
  font-size: .75rem;
  color: var(--ink-mute);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: .5rem;
}
.stat-sep {
  width: 1px;
  height: 60px;
  background: rgba(201,168,76,.2);
  flex-shrink: 0;
}

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
/* ── NUEVA GALERÍA 2×2 ─────────────────────────────────── */
.gallery-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.gallery-single {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
}
.gallery-single img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.gallery-single:hover img { transform: scale(1.04); }
.gal-label {
  position: absolute;
  top: .85rem;
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .28rem .7rem;
  border-radius: 100px;
  z-index: 2;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}
.gal-label--antes   { left: .85rem; background: rgba(13,13,13,.72); color: var(--text-dim); }
.gal-label--despues { right: .85rem; background: var(--gold); color: var(--dark); font-weight: 600; }
.gallery-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:first-child img { object-position: left center; }
.gallery-item:last-child img  { object-position: right center; }
.gallery-frame {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201,168,76,.35);
  pointer-events: none;
  border-radius: 2px;
}
.gallery-label-before,
.gallery-label-after {
  position: absolute;
  top: 1rem; left: 50%;
  transform: translateX(-50%);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 100px;
  z-index: 2;
}
.gallery-label-before { background: rgba(13,13,13,.7); color: var(--text-dim); }
.gallery-label-after  { background: var(--gold); color: var(--dark); font-weight: 600; }
.gallery-item--placeholder {
  background: var(--dark-3);
  border: 1px solid var(--line-dark);
}
.gallery-placeholder-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .75rem;
  color: var(--text-dim);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.gallery-placeholder-inner::before {
  content: '';
  width: 32px; height: 32px;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50%;
}
.gallery-consent {
  font-size: .75rem;
  color: var(--text-dim);
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.gallery-cta { text-align: center; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-wrap { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .6s var(--ease-in-out);
  will-change: transform;
}
.testimonial-card {
  min-width: calc(33.333% - 1rem);
  flex-shrink: 0;
  background: white;
  border: 1px solid var(--line-cream);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 4px 24px rgba(26,26,26,.06);
  transition: box-shadow .3s;
}
.testimonial-card:hover { box-shadow: 0 8px 40px rgba(201,168,76,.14); }
.stars { color: var(--gold); font-size: 1rem; letter-spacing: .1em; }
.testimonial-text {
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-size: .7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: .05em;
}
.author-name { font-size: .88rem; font-weight: 600; color: var(--ink); }
.author-loc  { font-size: .75rem; color: var(--ink-mute); }
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.t-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}
.t-btn:hover { background: var(--gold-dim); border-color: var(--gold); }
.t-dots { display: flex; gap: .5rem; }
.t-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(201,168,76,.25);
  border: none;
  transition: background .3s, width .3s;
  cursor: none;
}
.t-dot.is-active { background: var(--gold); width: 20px; border-radius: 3px; }

/* ── CITA ────────────────────────────────────────────────── */
.cita-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.cita-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}
.info-card { padding: 2.5rem; }
.info-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-dark);
}
.info-list { display: flex; flex-direction: column; gap: 1.5rem; }
.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-label { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: .2rem; }
.info-value { font-size: .88rem; color: var(--text-light); line-height: 1.6; }
.info-note  { font-size: .75rem; color: var(--text-dim); margin-top: .2rem; }
.info-link  { font-size: .88rem; color: var(--gold); transition: opacity .2s; }
.info-link:hover { opacity: .75; }
.map-link { display: block; margin-top: 1.5rem; }
.map-placeholder {
  background: rgba(201,168,76,.06);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--text-dim);
  font-size: .85rem;
  transition: background .2s, border-color .2s;
}
.map-placeholder:hover { background: rgba(201,168,76,.1); border-color: var(--gold); color: var(--text-light); }
.map-placeholder span { flex: 1; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: #080808;
  border-top: 1px solid var(--line-dark);
  padding: 4rem 0 2.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  gap: 3rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: invert(1);
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold);
}
.footer-brand-sub { font-size: .75rem; color: var(--text-dim); letter-spacing: .08em; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
}
.footer-links a {
  font-size: .8rem;
  color: var(--text-dim);
  letter-spacing: .06em;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: .75rem;
}
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: border-color .2s, color .2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-legal {
  border-top: 1px solid rgba(201,168,76,.08);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-legal p {
  font-size: .72rem;
  color: rgba(242,235,217,.35);
  line-height: 1.65;
  max-width: 80ch;
}

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 800;
  background: var(--gold);
  color: var(--dark);
  border-radius: 100px;
  padding: .85rem 1.25rem .85rem 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  box-shadow: 0 8px 32px rgba(201,168,76,.4);
  transition: transform .3s var(--ease-out), box-shadow .3s;
  animation: waPulse 3s ease-in-out infinite 2s;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(201,168,76,.55);
  animation: none;
}
.whatsapp-float-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 32px rgba(201,168,76,.4); }
  50%      { box-shadow: 0 8px 48px rgba(201,168,76,.65); }
}

/* ── REVEAL ANIMATIONS ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal[data-split] { opacity: 1; transform: none; }
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.why-card.reveal,
.service-card.reveal,
.gallery-pair.reveal,
.gallery-single.reveal,
.testimonial-card.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}

/* ── REVEAL SPECIFICITY FIX ──────────────────────────────── */
.why-card.reveal.is-visible,
.service-card.reveal.is-visible,
.gallery-pair.reveal.is-visible,
.gallery-single.reveal.is-visible,
.testimonial-card.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── TILT CARDS ──────────────────────────────────────────── */
[data-tilt] { transform-style: preserve-3d; will-change: transform; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .about-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .about-credential-card { right: 1rem; bottom: 1rem; }
  .cita-grid     { grid-template-columns: 1fr; gap: 3rem; }
  .why-grid      { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .section { padding: 5rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-2x2   { grid-template-columns: 1fr; }
  .testimonials-track .testimonial-card { min-width: 85vw; }
  .stats-row { flex-direction: column; }
  .stat-sep { width: 80%; height: 1px; }
  .whatsapp-float-label { display: none; }
  .whatsapp-float { padding: .9rem; border-radius: 50%; }
  .hero-actions { flex-direction: column; align-items: center; }
  .gallery-pair { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .section-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .why-grid { grid-template-columns: 1fr; }
  .cita-actions .btn { width: 100%; justify-content: center; }
}
