/* ============================================================
   Emi Moon — Landing personal
   Dirección visual: Dark Luxury con acento neón
   Paleta: Noir Blush — negro + fucsia + rosa suave
   ============================================================ */

:root {
  --bg: #0b0b0f;          /* negro base */
  --bg-deep: #1f1b22;     /* sección alterna */
  --ink: #f4f1f6;         /* texto principal (off-white) */
  --ink-soft: #b3adbb;    /* texto secundario */
  --ink-mute: #6f6a77;    /* texto terciario / notas */
  --accent: #ff4f9a;      /* fucsia neón — acento fuerte */
  --accent-soft: #ffb6d5; /* rosa suave — acentos cálidos */
  --line: rgba(244, 241, 246, 0.12);
  --glass: rgba(255, 255, 255, 0.04);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.7s;

  --pad-x: clamp(1.25rem, 5vw, 6rem);
  --maxw: 1240px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  /* Disuasión de descarga casual: no seleccionable ni arrastrable.
     NO es protección real — captura de pantalla y DevTools funcionan igual. */
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}

/* ---------- Barra de progreso ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-soft) 100%);
  box-shadow: 0 0 12px rgba(255, 79, 154, 0.6);
  z-index: 100;
}

/* ---------- Reveal base (motion) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  padding: var(--pad-x);
  padding-bottom: clamp(3rem, 8vh, 6rem);
  overflow: hidden;
  background: var(--bg);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.hero__content,
.hero__cue { z-index: 1; }
.hero__img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1) contrast(1.02);
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 70% 15%, rgba(255, 79, 154, 0.12) 0%, rgba(255, 79, 154, 0) 55%),
    linear-gradient(0deg, rgba(11, 11, 15, 0.85) 0%, rgba(11, 11, 15, 0.1) 45%, rgba(11, 11, 15, 0) 75%);
}

.hero__content {
  position: relative;
  max-width: var(--maxw);
  width: 100%;
  margin-inline: auto;
  color: var(--ink);
  opacity: 1 !important;
}
.hero__eyebrow {
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  color: var(--accent-soft);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(4.5rem, 18vw, 16rem);
  line-height: 0.86;
  letter-spacing: -0.04em;
  margin: 0;
}
.hero__title .line {
  display: block;
  padding-block: 0.08em;
}
/* El título SIEMPRE visible. Nada (JS, GSAP, scroll) lo puede esconder. */
.hero__title .line__inner {
  display: block;
  transform: none !important;
  opacity: 1 !important;
}
.line__inner--accent {
  font-style: italic;
  color: var(--accent);
  text-shadow: 0 0 40px rgba(255, 79, 154, 0.45);
}
.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  max-width: 32ch;
  margin: 1.5rem 0 2rem;
  color: var(--ink-soft);
}

/* Botón */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--bg);
  background: var(--ink);
  padding: 0.9rem 2.4rem;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 30px rgba(255, 79, 154, 0.5);
}
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Cue de scroll */
.hero__cue {
  position: absolute;
  bottom: clamp(1.5rem, 4vh, 2.5rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink-soft);
}
.hero__cue-text {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero__cue-line {
  width: 1px;
  height: 40px;
  background: var(--accent-soft);
  transform-origin: top;
  animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue {
  0%   { transform: scaleY(0); transform-origin: top; }
  40%  { transform: scaleY(1); transform-origin: top; }
  60%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   SOBRE — texto + foto (2 columnas)
   ============================================================ */
.about {
  padding: clamp(4rem, 12vh, 9rem) var(--pad-x);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}
.about__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.about__col { min-width: 0; }

.about__eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--accent-soft);
  margin: 0 0 1.5rem;
}
.about__text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.6vw, 3.2rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  max-width: 15ch;
}
.about__text .word {
  display: inline-block;
  opacity: 0.18;
  transition: opacity 0.5s var(--ease);
}
.about__text .word.is-lit { opacity: 1; }
.about__text .word--accent {
  color: var(--accent);
  font-style: italic;
}

.about__sign {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: clamp(2rem, 5vh, 3.5rem) 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.about__heart {
  width: 15px;
  height: 15px;
  color: var(--accent);
  flex: none;
}

.about__media {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 70px -30px rgba(255, 79, 154, 0.35);
  border: 1px solid var(--line);
  will-change: transform;
}
.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   CTA CARD — "Si te dio curiosidad…"
   ============================================================ */
.cta {
  padding: clamp(3rem, 8vh, 6rem) var(--pad-x);
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 100%);
}
.cta__card {
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(255, 79, 154, 0.16) 0%, rgba(255, 79, 154, 0) 55%),
    linear-gradient(135deg, #17131b 0%, #221a26 55%, #2c1f30 100%);
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px -40px rgba(255, 79, 154, 0.3);
}

/* Columna foto */
.cta__media {
  margin: 0;
  min-height: 560px;
  background: #17131b;
}
.cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Panel derecho */
.cta__panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 5rem);
}
.cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 79, 154, 0.12);
  border: 1px solid rgba(255, 79, 154, 0.35);
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.cta__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 1.4rem;
}
.cta__title-accent {
  color: var(--accent);
  text-shadow: 0 0 30px rgba(255, 79, 154, 0.4);
}
.cta__lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--ink-soft);
  margin: 0 0 1.4rem;
  max-width: 30ch;
}
.cta__note {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 2.2rem;
}
.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(255, 79, 154, 0);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.cta__btn:hover {
  background: #ff6aa9;
  box-shadow: 0 0 34px rgba(255, 79, 154, 0.55);
  transform: translateY(-2px);
}
.cta__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.cta__btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease);
}
.cta__btn:hover svg { transform: translateX(4px); }

/* ============================================================
   REDES — "Seguime por acá"
   ============================================================ */
.links {
  padding: clamp(4rem, 12vh, 8rem) var(--pad-x) clamp(5rem, 14vh, 9rem);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  text-align: center;
}
.links__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.7rem, 4.5vw, 2.8rem);
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 auto clamp(2.5rem, 6vh, 4rem);
  max-width: 22ch;
}
.links__title-accent { color: var(--accent-soft); }
.links__sparkle {
  font-style: normal;
  margin-left: 0.35rem;
}

.links__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.75rem, 1.6vw, 1.1rem);
  max-width: 760px;
  margin-inline: auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--glass);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease),
    color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.pill:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 26px rgba(255, 79, 154, 0.45);
  transform: translateY(-2px);
}
.pill:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.pill__icon {
  width: 18px;
  height: 18px;
  flex: none;
}
.pill__text { line-height: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: clamp(3rem, 8vh, 5rem) var(--pad-x);
  background: var(--bg-deep);
  color: var(--ink);
  text-align: center;
  border-top: 1px solid var(--line);
}
.footer__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  margin: 0 0 0.5rem;
  color: var(--accent-soft);
}
.footer__copy {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 6vh, 3rem);
  }
  .about__media { order: -1; }        /* foto arriba en mobile */
  .about__text { max-width: 100%; }

  .cta__card { grid-template-columns: 1fr; }
  .cta__media { min-height: 380px; }
}

@media (max-width: 640px) {
  .pill {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    padding: 0.75rem 1.2rem;
  }
}

/* ============================================================
   ACCESIBILIDAD — reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__title .line__inner { transform: none; }
  .about__text .word { opacity: 1; }
}
