/* =============================================================
   JUAN PELUQUEROS — Dark Classic Craftsman
   Tres décadas de oficio, una paleta sobria y un serif con peso.
   =============================================================
   ÍNDICE
   1. Tokens
   2. Reset & base
   3. Tipografía & utilidades
   4. Componentes (kicker, botones, tarjetas)
   5. Splash + Cursor + Grain + Side mark
   6. Nav
   7. Hero
   8. Marquees
   9. Section 01 — El Salón
  10. Section 02 — Servicios (horizontal pin)
  11. Section 03 — La figura de Juan
  12. Section 04 — Reseñas
  13. Section 05 — Galería
  14. Section 06 — Reserva
  15. Footer
  16. Reveal animations (con red defensiva)
  17. Responsive
  18. Reduced-motion (solo lo intrusivo)
   ============================================================= */


/* =============================================================
   1. TOKENS
   ============================================================= */
:root {
  /* Paleta — cuero, madera, navaja */
  --bg:        #0F0E0C;
  --bg-2:      #14110D;
  --bg-3:      #1B1612;     /* tarjeta */
  --bg-4:      #221C16;     /* card hover */
  --cream:     #F2EDE4;
  --cream-2:   #D9D2C4;
  --cream-3:   #8C8579;     /* metadata, secundario */
  --cream-4:   #5C574F;     /* labels, líneas */
  --accent:    #8B1A1A;     /* granate de cuero */
  --accent-2:  #B72A2A;     /* hover */
  --gold:      #A8893A;     /* dorado viejo */
  --gold-2:    #C7A552;
  --line:      rgba(242,237,228,.10);
  --line-2:    rgba(242,237,228,.18);

  /* Tipografías */
  --serif:  "Playfair Display", "Iowan Old Style", Georgia, serif;
  --sans:   "Inter", "Helvetica Neue", system-ui, sans-serif;
  --mono:   "Space Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Geometría */
  --gutter:  clamp(1.25rem, 4vw, 3rem);
  --maxw:    1320px;
  --radius:  4px;

  /* Easings */
  --ease-out:    cubic-bezier(.16,1,.3,1);
  --ease-soft:   cubic-bezier(.25,.46,.45,.94);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
}

/* =============================================================
   2. RESET & BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.02em; font-weight: 600; }
::selection { background: var(--accent); color: var(--cream); }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: var(--radius);
}

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: var(--radius); font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. TIPOGRAFÍA & UTILIDADES
   ============================================================= */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.kicker-line {
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: var(--cream-3);
  opacity: .6;
}

.lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.5;
  color: var(--cream-2);
  max-width: 56ch;
}

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 5.2vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--cream);
  max-width: 22ch;
}
.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-2);
}

.section {
  position: relative;
  padding-block: clamp(5rem, 10vw, 9rem);
  padding-inline: var(--gutter);
}
.section-num {
  position: absolute;
  top: 0;
  right: var(--gutter);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(10rem, 28vw, 24rem);
  line-height: .85;
  color: var(--cream);
  opacity: .025;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.04em;
  z-index: 0;
}

/* =============================================================
   4. COMPONENTES — botones
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .95rem 1.5rem;
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .02em;
  border-radius: var(--radius);
  transition: transform .35s var(--ease-out),
              background .35s var(--ease-out),
              color .35s var(--ease-out),
              box-shadow .35s var(--ease-out);
  white-space: nowrap;
}
.btn-icon {
  display: inline-flex;
  width: 18px; height: 18px;
}
.btn-icon svg { width: 100%; height: 100%; }

.btn-primary {
  background: var(--accent);
  color: var(--cream);
  box-shadow: 0 0 0 1px var(--accent) inset, 0 18px 40px -22px rgba(139,26,26,.7);
}
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--accent-2) inset, 0 26px 50px -22px rgba(183,42,42,.65);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  box-shadow: 0 0 0 1px var(--line-2) inset;
}
.btn-ghost:hover {
  box-shadow: 0 0 0 1px var(--cream) inset;
  transform: translateY(-2px);
}
.btn-arrow { transition: transform .35s var(--ease-out); }
.btn:hover .btn-arrow { transform: translate(3px,-3px); }
.btn-ghost:hover .btn-arrow { transform: translateY(4px); }

/* =============================================================
   5. SPLASH + CURSOR + GRAIN + SIDE MARK
   ============================================================= */
/* Splash */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--bg);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1.75rem;
  /* Red de seguridad #1: animación CSS pura */
  animation: splashSafety .01s 4.5s forwards;
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
}
.splash.is-out {
  opacity: 0;
  pointer-events: none;
  transition: opacity .8s var(--ease-out);
}
.splash-inner {
  display: flex;
  gap: clamp(.1rem, 2vw, 1rem);
}
.splash-letter {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 1;
  color: var(--cream);
  opacity: 0;
  transform: translateY(60%) rotate(8deg);
  animation: splashIn .85s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes splashIn {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}
.splash-bar {
  width: clamp(180px, 30vw, 320px);
  height: 1px;
  background: rgba(242,237,228,.15);
  overflow: hidden;
}
.splash-bar span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--accent);
  animation: splashBar 2.6s .8s var(--ease-out) forwards;
}
@keyframes splashBar { to { width: 100%; } }
.splash-meta {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--cream-3);
}

/* (cursor personalizado retirado — el navegador muestra el cursor del sistema) */

/* Grain */
.grain {
  position: fixed;
  inset: -10%;
  pointer-events: none;
  z-index: 8000;
  opacity: .18;
  mix-blend-mode: overlay;
  background-image:
    url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0.95  0 0 0 0 0.93  0 0 0 0 0.89  0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  animation: grainShift 1.8s steps(4) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0,0); }
  25%  { transform: translate(-2%,1%); }
  50%  { transform: translate(1%,-2%); }
  75%  { transform: translate(-1%,2%); }
  100% { transform: translate(0,0); }
}

/* Side mark vertical (lado derecho) */
.side-mark {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--cream-3);
  pointer-events: none;
}
.side-mark-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(139,26,26,.25);
  animation: pulse 2.2s var(--ease-soft) infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(139,26,26,.25); }
  50%     { box-shadow: 0 0 0 9px rgba(139,26,26,0); }
}
.side-mark-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, var(--cream-3), transparent);
}
@media (max-width: 1100px) { .side-mark { display: none; } }

/* =============================================================
   6. NAV
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 1rem var(--gutter);
  background: linear-gradient(to bottom, rgba(15,14,12,.92), rgba(15,14,12,0));
  transition: background .4s var(--ease-out), padding .4s var(--ease-out);
}
.nav.is-pinned {
  background: rgba(15,14,12,.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding: .65rem var(--gutter);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 2rem;
  max-width: var(--maxw);
  margin-inline: auto;
}
.nav-logo {
  display: inline-flex;
  align-items: baseline;
  gap: .6rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
}
.nav-logo-mark {
  display: inline-flex;
  width: 32px; height: 32px;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--cream);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  font-style: italic;
}
.nav-logo-name {
  font-size: 1.1rem;
  color: var(--cream);
  font-style: normal;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.005em;
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
}
.nav-links a {
  display: inline-flex;
  align-items: baseline;
  gap: .5rem;
  font-family: var(--sans);
  font-size: .85rem;
  color: var(--cream-2);
  position: relative;
  transition: color .3s var(--ease-out);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease-out);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-n {
  font-family: var(--mono);
  font-size: .65rem;
  color: var(--gold);
  letter-spacing: .1em;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1.1rem;
  background: var(--accent);
  color: var(--cream);
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background .3s var(--ease-out), transform .3s var(--ease-out);
}
.nav-cta:hover { background: var(--accent-2); transform: translateY(-2px); }
.nav-cta .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 0 3px rgba(242,237,228,.25);
  animation: pulse 2.2s var(--ease-soft) infinite;
}

.nav-burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform .35s var(--ease-out), opacity .25s var(--ease-out);
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 480;
  padding: 6rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform .45s var(--ease-out), opacity .35s var(--ease-out);
  pointer-events: none;
}
.nav-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-drawer a {
  font-family: var(--serif);
  font-size: 1.65rem;
  color: var(--cream);
  padding-block: .35rem;
  display: flex;
  align-items: baseline;
  gap: .85rem;
}
.nav-drawer a .nav-n {
  font-family: var(--mono);
  font-size: .7rem;
}
.nav-drawer-cta {
  margin-top: 1rem;
  background: var(--accent);
  padding: 1rem 1.2rem !important;
  border-radius: var(--radius);
  font-family: var(--sans) !important;
  font-size: 1rem !important;
  text-align: center;
  justify-content: center;
}
.nav-drawer-cta.secondary {
  background: transparent;
  box-shadow: 0 0 0 1px var(--line-2) inset;
  margin-top: .5rem;
}

@media (max-width: 1100px) {
  .nav-links { display: none; }
}
@media (max-width: 720px) {
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* =============================================================
   7. HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 7rem var(--gutter) 4rem;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.55) contrast(1.15) saturate(.9);
  animation: heroBgZoom 22s var(--ease-soft) infinite alternate;
}
@keyframes heroBgZoom {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.12) translateY(-1.5%); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,14,12,.62) 0%, rgba(15,14,12,.45) 30%, rgba(15,14,12,.85) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(168,137,58,.10), transparent 60%);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 100% at 50% 50%, transparent 35%, rgba(15,14,12,.85));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: var(--maxw);
  width: 100%;
  margin-inline: auto;
  z-index: 1;
}
.hero-kicker {
  margin-bottom: clamp(1.2rem, 2.5vw, 2rem);
  color: var(--cream-2);
}
.hero-kicker .kicker-line { background: var(--gold); opacity: .8; }

.hero-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(3.5rem, 11vw, 10rem);
  line-height: .88;
  letter-spacing: -0.04em;
  color: var(--cream);
  margin-bottom: 1.75rem;
}
.hero-line {
  display: block;
  position: relative;
}
.hero-line.line-2 {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-2);
  padding-left: clamp(1.5rem, 4vw, 4rem);
}
.hero-line .period { color: var(--accent); }

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.7vw, 1.55rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--cream-2);
  max-width: 36ch;
  margin-bottom: 2.5rem;
}
.hero-tagline em {
  font-style: italic;
  color: var(--gold-2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.75rem;
}

.hero-foot {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.25rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  max-width: 720px;
}
.hero-rating {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.hero-rating strong {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: .15rem;
}
.hero-star { font-size: .8em; }
.hero-frac { font-size: .55em; color: var(--cream-3); font-weight: 400; }
.hero-rating span:last-child {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream-3);
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cream-3);
  z-index: 2;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--cream-3), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  animation: scrollLine 2.4s var(--ease-soft) infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* =============================================================
   8. MARQUEES
   ============================================================= */
.marquee {
  background: var(--accent);
  color: var(--cream);
  padding-block: .9rem;
  overflow: hidden;
  border-block: 1px solid rgba(0,0,0,.2);
  position: relative;
  z-index: 5;
}
.marquee-services { background: var(--bg-2); color: var(--cream-2); border-top: 1px solid var(--line); }
.marquee-track {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 38s linear infinite;
  will-change: transform;
}
.marquee-reverse {
  animation-direction: reverse;
  animation-duration: 48s;
}
.marquee-track > span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  letter-spacing: -.01em;
}
.marquee-services .marquee-track > span {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================================
   9. SECCIÓN 01 — EL SALÓN
   ============================================================= */
.section-salon {
  background: var(--bg);
}
.salon-grid {
  position: relative;
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  z-index: 1;
}
.salon-aside {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 4rem;
  position: sticky;
  top: 8rem;
  align-self: start;
}
.salon-tag {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  padding: .5rem .75rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  display: inline-block;
  width: max-content;
}
.salon-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--cream-2);
  position: relative;
  padding-left: .5rem;
  border-left: 2px solid var(--accent);
  padding-block: .4rem;
}
.salon-quote .quote-mark {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -.4em;
  margin-right: .15em;
  display: inline-block;
}
.salon-meta {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .15em;
  color: var(--cream-3);
}
.salon-main {
  padding-top: 4rem;
}
.salon-main .kicker { margin-bottom: 1.5rem; }
.salon-main .section-title { margin-bottom: 2rem; }
.salon-main .lead { margin-bottom: 2.5rem; }

.salon-defs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.salon-defs > div { display: flex; flex-direction: column; gap: .35rem; }
.salon-defs dt {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.salon-defs dd {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--cream);
}

.salon-figure {
  position: relative;
  align-self: stretch;
}
.salon-figure-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px -25px rgba(0,0,0,.85);
}
.salon-figure-frame::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid var(--gold);
  z-index: 2;
  pointer-events: none;
  opacity: .5;
}
.salon-figure-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.85) contrast(1.15) saturate(.9) sepia(.08);
  transition: transform 1.2s var(--ease-out);
}
.salon-figure-frame:hover img { transform: scale(1.06); }
.salon-figure-cap {
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cream-3);
  display: flex;
  align-items: center;
  gap: .7rem;
}
.salon-figure-cap::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--cream-3);
}

/* =============================================================
   10. SECCIÓN 02 — SERVICIOS (horizontal pin)
   ============================================================= */
.section-services {
  background: var(--bg-2);
  padding-block: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}
.services-header {
  max-width: var(--maxw);
  margin-inline: auto;
  margin-bottom: 3rem;
}
.services-header-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}
.services-header .kicker { grid-column: 1 / 2; }
.services-header .section-title { grid-column: 1 / 2; grid-row: 2; margin-top: 1.5rem; }
.services-progress {
  grid-column: 2 / 3;
  grid-row: 2;
  align-self: end;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--mono);
}
.services-progress-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--gold-2);
  line-height: 1;
  font-weight: 600;
}
.services-progress-sep { color: var(--cream-3); font-size: 1.5rem; }
.services-progress > span:last-of-type {
  font-family: var(--mono);
  font-size: 1.25rem;
  color: var(--cream-2);
}
.services-progress-bar {
  width: 220px;
  height: 1px;
  background: var(--line-2);
  margin-left: 1.5rem;
  position: relative;
  align-self: center;
}
.services-progress-bar span {
  display: block;
  width: 12.5%;
  height: 100%;
  background: var(--gold);
  transition: width .5s var(--ease-out);
}

.services-pin {
  position: relative;
  width: 100%;
}
.services-track {
  display: flex;
  align-items: stretch;
  gap: clamp(1.5rem, 2vw, 2.5rem);
  padding: 1rem var(--gutter) 2.5rem;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  scrollbar-color: var(--gold) var(--bg-3);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
/* Barra de scroll horizontal con estilo editorial */
.services-track::-webkit-scrollbar {
  height: 10px;
}
.services-track::-webkit-scrollbar-track {
  background: var(--bg-3);
  border-radius: 0;
  border-top: 1px solid var(--line);
}
.services-track::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 0;
  border: 2px solid var(--bg-2);
  transition: background .3s var(--ease-out);
}
.services-track::-webkit-scrollbar-thumb:hover {
  background: var(--gold-2);
}
.service-card {
  flex: 0 0 clamp(280px, 30vw, 420px);
  height: clamp(420px, 65vh, 560px);
  scroll-snap-align: start;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .6s var(--ease-out), border-color .4s var(--ease-out), background .4s var(--ease-out);
}
.service-card:hover {
  background: var(--bg-4);
  border-color: var(--gold);
  transform: translateY(-6px);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% 0%, rgba(168,137,58,.08), transparent 60%);
  opacity: 0;
  transition: opacity .5s var(--ease-out);
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }

.service-num {
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .25em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.service-icon {
  width: clamp(90px, 9vw, 120px);
  height: clamp(90px, 9vw, 120px);
  color: var(--cream);
  margin-bottom: auto;
  margin-top: .5rem;
}
.service-icon svg { width: 100%; height: 100%; overflow: visible; }
.service-icon .icon-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.4s var(--ease-out);
}
.service-card.is-drawn .service-icon .icon-path { stroke-dashoffset: 0; }
/* Red defensiva: si JS no llega, los trazos se ven igual (animación CSS de respaldo) */
.service-card:hover .service-icon .icon-path { stroke-dashoffset: 0; }

.service-cat {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-top: 1.5rem;
  margin-bottom: .6rem;
}
.service-name {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: .5rem;
}
.service-italic {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold-2);
  margin-bottom: 1rem;
}
.service-italic em { font-style: italic; font-weight: 500; }
.service-desc {
  font-family: var(--sans);
  font-size: .92rem;
  line-height: 1.6;
  color: var(--cream-2);
}

/* =============================================================
   11. SECCIÓN 03 — LA FIGURA DE JUAN
   ============================================================= */
.section-juan {
  background: var(--bg);
  padding-block: clamp(6rem, 10vw, 9rem);
}
.juan-grid {
  position: relative;
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  z-index: 1;
}
.juan-figure {
  position: relative;
}
.juan-figure-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,.9);
}
.juan-figure-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid var(--gold);
  opacity: .3;
  z-index: 2;
  pointer-events: none;
}
.juan-figure-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.78) contrast(1.2) saturate(.65) sepia(.12);
}
.juan-figure-tag {
  position: absolute;
  bottom: -.5rem;
  left: 1rem;
  padding: .5rem 1rem;
  background: var(--bg);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.juan-text { padding-block: 2rem; }
.juan-text .kicker { margin-bottom: 2rem; }
.juan-quote {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 1rem;
  text-wrap: balance;
}
.juan-quote em {
  font-style: italic;
  font-weight: 400;
}
.juan-attr {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}
.juan-body { display: flex; flex-direction: column; gap: 1.1rem; max-width: 50ch; }
.juan-body p {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cream-2);
}
.juan-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.juan-stats > div { display: flex; flex-direction: column; gap: .3rem; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
}
.stat-lab {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-3);
}

/* =============================================================
   12. SECCIÓN 04 — RESEÑAS
   ============================================================= */
.section-reviews {
  background: var(--bg-2);
}
.reviews-head {
  max-width: var(--maxw);
  margin-inline: auto;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.reviews-head .kicker { margin-bottom: 1.5rem; }
.reviews-head .section-title { margin-bottom: 3rem; }

.reviews-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 1.75rem;
  background: var(--bg-3);
  border: 1px solid var(--gold);
  border-radius: 6px;
  max-width: 920px;
}
.reviews-bar-item {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.reviews-bar-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--gold-2);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: .15rem;
}
.reviews-bar-star { font-size: .7em; }
.reviews-bar-frac { font-size: .5em; color: var(--cream-3); font-weight: 400; }
.reviews-bar-lab {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.reviews-bar-sep { color: var(--cream-3); font-size: 1.5rem; opacity: .35; }

.reviews-grid {
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.review-card {
  padding: 2.25rem 1.85rem;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-left: 2px solid var(--accent);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform .5s var(--ease-out), border-color .4s var(--ease-out);
}
.review-card:hover {
  transform: translateY(-6px);
  border-left-color: var(--gold);
}
.review-stars {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: .12em;
}
.review-card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--cream);
  margin: 0;
}
.review-card figcaption {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--cream-2);
  margin-top: auto;
}
.review-meta {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-3);
}

/* =============================================================
   13. SECCIÓN 05 — GALERÍA
   ============================================================= */
.section-gallery {
  background: var(--bg);
  padding-inline: 0;
  overflow: hidden;
}
.gallery-head {
  padding-inline: var(--gutter);
  max-width: var(--maxw);
  margin-inline: auto;
  margin-bottom: 3rem;
}
.gallery-head .kicker { margin-bottom: 1.5rem; }

.gallery-rails {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.gallery-rail {
  overflow: hidden;
  padding-block: .25rem;
}
.gallery-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  will-change: transform;
}
.gallery-track.reverse { animation-direction: reverse; }
.rail-a .gallery-track { animation: galleryScroll 42s linear infinite; }
.rail-b .gallery-track { animation: galleryScroll 58s linear infinite reverse; }
.rail-c .gallery-track { animation: galleryScroll 36s linear infinite; }
@keyframes galleryScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.gallery-track figure {
  flex: 0 0 auto;
  width: clamp(200px, 22vw, 320px);
  height: clamp(160px, 16vw, 220px);
  overflow: hidden;
  border-radius: 4px;
  margin: 0;
  position: relative;
}
.gallery-track figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15,14,12,.5));
  pointer-events: none;
}
.gallery-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.82) contrast(1.1) saturate(.85) sepia(.06);
  transition: transform .8s var(--ease-out), filter .5s var(--ease-out);
}
.gallery-track figure:hover img {
  transform: scale(1.06);
  filter: brightness(.95) contrast(1.1) saturate(1) sepia(0);
}

/* =============================================================
   14. SECCIÓN 06 — RESERVA
   ============================================================= */
.section-booking {
  background: var(--bg-2);
}
.booking-grid {
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}
.booking-main .kicker { margin-bottom: 1.5rem; }
.booking-main .section-title { margin-bottom: 1.75rem; }
.booking-main .lead { margin-bottom: 2.5rem; }

.booking-ctas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.btn-call {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  background: var(--accent);
  color: var(--cream);
  border-radius: 6px;
  transition: transform .35s var(--ease-out), background .35s var(--ease-out);
  box-shadow: 0 24px 60px -28px rgba(139,26,26,.7);
}
.btn-call:hover {
  background: var(--accent-2);
  transform: translateY(-4px);
}
.btn-call-secondary {
  background: transparent;
  box-shadow: 0 0 0 1px var(--line-2) inset;
  color: var(--cream);
}
.btn-call-secondary:hover {
  box-shadow: 0 0 0 1px var(--gold) inset;
  background: rgba(168,137,58,.08);
}
.btn-call-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: grid;
  place-items: center;
}
.btn-call-icon svg { width: 20px; height: 20px; }
.btn-call-text {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.btn-call-lab {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .7;
}
.btn-call strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -.01em;
}

.booking-form-wrap {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.booking-form-intro {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cream-2);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.booking-form label {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.booking-form label.full { grid-column: 1 / -1; }
.booking-form span {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.booking-form input,
.booking-form textarea {
  font-family: var(--sans);
  font-size: 1rem;
  background: transparent;
  border: 1px solid var(--line-2);
  border-bottom: 1px solid var(--cream-3);
  border-radius: 0;
  color: var(--cream);
  padding: .85rem 1rem;
  transition: border-color .3s var(--ease-out), background .3s var(--ease-out);
  resize: vertical;
}
.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(168,137,58,.05);
}
.booking-form input::placeholder,
.booking-form textarea::placeholder { color: var(--cream-4); font-style: italic; }
.booking-form button {
  justify-self: start;
  grid-column: 1 / -1;
  margin-top: .5rem;
}
.booking-form-note {
  grid-column: 1 / -1;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .15em;
  color: var(--cream-3);
  margin-top: .25rem;
}

.booking-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-self: start;
  position: sticky;
  top: 7rem;
}
.booking-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.5rem 1.6rem;
}
.booking-card h3 {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 700;
}
.booking-card p {
  font-family: var(--sans);
  color: var(--cream-2);
  font-size: .95rem;
  line-height: 1.5;
  margin-bottom: .15rem;
}
.booking-card .day {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cream);
}
.booking-card .closed { color: var(--cream-3); margin-top: .5rem; }
.booking-ref {
  margin-top: .75rem !important;
  padding-top: .75rem;
  border-top: 1px solid var(--line);
  color: var(--cream-3) !important;
  font-style: italic;
  font-family: var(--serif) !important;
}
.amenities {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.amenities li {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .35rem .6rem;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  color: var(--cream-2);
}
.booking-card-contact a {
  color: var(--cream);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color .3s var(--ease-out);
}
.booking-card-contact a:hover { color: var(--gold-2); }

/* =============================================================
   15. FOOTER
   ============================================================= */
.footer {
  background: var(--bg);
  padding-block: 4rem 2rem;
  padding-inline: var(--gutter);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.footer-mega {
  overflow: hidden;
  margin-inline: calc(var(--gutter) * -1);
  margin-bottom: 4rem;
  padding-block: 1rem;
}
.footer-mega-track {
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
  animation: marqueeScroll 22s linear infinite;
  will-change: transform;
}
.footer-mega-track > span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(5rem, 14vw, 12rem);
  line-height: .9;
  color: transparent;
  -webkit-text-stroke: 1px var(--cream-4);
  letter-spacing: -.04em;
}
.footer-mega-track .bullet {
  color: var(--accent);
  -webkit-text-stroke: 0;
}

.footer-grid {
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col p,
.footer-col address {
  font-family: var(--sans);
  font-style: normal;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--cream-2);
  margin-bottom: .25rem;
}
.footer-col address strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
  font-weight: 600;
}
.footer-col a {
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease-out), color .3s var(--ease-out);
}
.footer-col a:hover {
  border-color: var(--gold);
  color: var(--cream);
}
.muted { color: var(--cream-3) !important; font-style: italic; font-family: var(--serif); }
.footer-map iframe {
  border-radius: 4px;
  filter: grayscale(.4) contrast(1.1) brightness(.85) sepia(.05);
  border: 1px solid var(--line) !important;
}

.footer-bottom {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom small {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .15em;
  color: var(--cream-3);
}
.footer-top {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cream-2);
  padding: .65rem 1rem;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  transition: border-color .3s var(--ease-out), color .3s var(--ease-out);
}
.footer-top:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}

/* =============================================================
   16. REVEAL ANIMATIONS
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1.1s var(--ease-out),
    transform 1.1s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* ⚠️ Red defensiva: si un elemento es reveal + split, anula el opacity:0
   para que el split-text no deje texto invisible si JS no termina */
.reveal[data-split] {
  opacity: 1 !important;
  transform: none !important;
}

/* Split words */
.split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%) rotate(2deg);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.split-word.is-in {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

/* =============================================================
   17. RESPONSIVE
   ============================================================= */
@media (max-width: 1100px) {
  .salon-grid {
    grid-template-columns: 1fr 1.4fr;
  }
  .salon-figure { grid-column: 1 / -1; max-width: 600px; margin-top: 2rem; }
  .salon-aside { position: static; }
  .juan-grid { grid-template-columns: 1fr; gap: 3rem; }
  .juan-figure-frame { aspect-ratio: 16 / 11; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-aside { position: static; }
  .services-header-inner { grid-template-columns: 1fr; }
  .services-progress { grid-column: 1; grid-row: 3; margin-top: 1rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  :root { --gutter: 1.15rem; }
  .nav-cta { display: none; }
  .salon-grid { grid-template-columns: 1fr; }
  .salon-aside { padding-top: 1rem; }
  .salon-main { padding-top: 1.5rem; }
  .salon-defs { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .booking-ctas { grid-template-columns: 1fr; }
  .booking-form { grid-template-columns: 1fr; }
  .juan-stats { grid-template-columns: 1fr; gap: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .service-card {
    flex: 0 0 82%;
    height: auto;
    min-height: 460px;
  }
  .hero-foot { gap: 1.5rem 2rem; }
  .hero-line.line-2 { padding-left: 1rem; }
}

@media (min-width: 1600px) {
  :root { --gutter: 4rem; }
}

/* =============================================================
   18. REDUCED-MOTION — solo lo intrusivo (NUNCA micro-interacciones)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg img { animation: none; }
  .side-mark-dot { animation: none; box-shadow: 0 0 0 4px rgba(139,26,26,.2); }
  .hero-scroll-line::after { animation: none; }
  .grain { animation: none; }
  /* Marquees y reveals SE QUEDAN: no son intrusivos, son la identidad */
}
