@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@1&family=Cormorant+Garamond:wght@300&display=swap');

@font-face {
  font-family: 'vintage-deco';
  src: url('../fuentes/Brier-Bold.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'vintage-deco-orig';
  src: url('../fuentes/VintageDeco-Bold.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BaiJamjuree';
  src: url('../fuentes/BaiJamjuree-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'CrimsonPro';
  src: url('../fuentes/CrimsonPro-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'CrimsonPro';
  src: url('../fuentes/CrimsonPro-Italic.woff2') format('woff2');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

/* ===== CSS VARIABLES ===== */
:root {
  --pink-deep: #c8547a;
  --pink-mid: #e87fa8;
  --pink-light: #f5b8d0;
  --pink-pale: #fce4ee;
  --pink-blush: #fff0f5;
  --cream: #fdf6f0;
  --gold: #e8a0b4;
  --gold-light: #f7ccd8;
  --dark: #1a0a10;
  --dark-mid: #2d1520;
  --text-light: #f5e6ed;
  --text-muted: #c9a0b0;
  --accent: #ff6b9d;
  --accent2: #ff9ec4;
  --white: #ffffff;

  --font-display: 'vintage-deco', serif;
  --font-body: 'BaiJamjuree', sans-serif;
  --font-serif: 'CrimsonPro', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--dark);
  color: var(--text-light);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
  padding-bottom: 32px;
}

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

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


/* ===== SVG CLIP PATHS ===== */
svg.defs {
  position: absolute;
  width: 0;
  height: 0;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease;
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 10, 16, 0.95), transparent);
  pointer-events: none;
  z-index: -1;
}

.site-header.scrolled::before {
  background: rgba(26, 10, 16, 0.92);
  backdrop-filter: blur(12px);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.3rem;
  color: var(--pink-light);
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(232, 127, 168, 0.4);
}

.logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--pink-mid);
  transition: width 0.2s;
}

.nav a:hover {
  color: var(--pink-light);
}

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


/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--dark);
  contain: layout style;
}


.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(200, 84, 122, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 70% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, rgba(26, 10, 16, 0.3) 0%, rgba(26, 10, 16, 0.1) 50%, rgba(26, 10, 16, 0.8) 100%);
}

/* Foreground transparent image — sits above tinted bg, below particles */
.hero-fg-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-fg-wrap picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-fg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

@media (max-width: 768px) {
  .hero-fg-img {
    object-position: right top;
  }
}

/* Forzar capa GPU en imágenes del hero — evita que desaparezcan al desbloquear móvil */
.hero-fg-img,
.hero-img-bg {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

/* Sparkle/star particles */
.hero-particles {

  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: twinkle var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Decorative bow element */
.hero-bow {
  position: absolute;
  top: 15%;
  right: 8%;
  z-index: 3;
  opacity: 0.6;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(-5deg);
  }

  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 5%;
  padding-bottom: 8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 2rem;
}

.hero-text {
  max-width: 600px;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: var(--pink-mid);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: tag-float-x 5s ease-in-out infinite;
}


@keyframes tag-float-x {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(20px);
  }
}


.hero-tag::before {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink-mid));
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.0;
  letter-spacing: 0.05rem;
  color: var(--text-light);
  text-shadow: 0 0 40px rgba(200, 84, 122, 0.3);
  margin-bottom: 1.5rem;
}

.hero-title .accent-name {
  display: block;
  color: var(--pink-light);
  -webkit-text-stroke: 0;
  font-family: 'vintage-deco-orig', serif;
}

.hero-title .outline-text {
  -webkit-text-stroke: 0.5px #e87fa8;
  color: transparent !important;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  text-shadow: none;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}


.btn-primary {
  background: linear-gradient(135deg, var(--pink-deep), var(--accent));
  color: white;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  position: relative;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(200, 84, 122, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 84, 122, 0.6);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 1px;
  background: linear-gradient(135deg, var(--accent), var(--pink-deep));
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  opacity: 0;
  transition: opacity 0.25s;
}

.btn-primary:hover::before {
  opacity: 1;
}


/* ===== HERO FIGURE SECTION ===== */
.hero-figure-section {
  position: relative;
  background: linear-gradient(135deg, var(--dark-mid) 0%, #200d15 50%, var(--dark) 100%);
  padding: 0 0 100px 0;
  overflow: visible;
  display: flex;
  align-items: center;
  z-index: 2;
  min-height: 95vh;
}

.figure-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(200, 84, 122, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 107, 157, 0.08) 0%, transparent 50%);
}

/* Decorative geometric lines */
.figure-bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(-45deg,
      transparent,
      transparent 60px,
      rgba(200, 84, 122, 0.03) 60px,
      rgba(200, 84, 122, 0.03) 61px);
}

/* Decorative circle/bow shapes */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 84, 122, 0.2);
  pointer-events: none;
}

.figure-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 32px;
  padding: 4rem 5%;
  display: grid;
  grid-template-columns: 1fr 45%;
  align-items: center;
  gap: 4rem;
  overflow: visible;
}

.figure-text-side {
  position: relative;
  z-index: 10;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--pink-deep);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05rem;
}

.section-title .highlight {
  color: var(--pink-light);
}

.section-body {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Figure/model cutout side */
.figure-image-side {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  left: 20px;
  z-index: 10;
  padding-bottom: 80px;
  margin-bottom: -80px;
}


.figure-frame {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 400px;
  border: 1px solid rgba(200, 84, 122, 0.3);
  z-index: 0;
  clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
}

.figure-frame-inner {
  position: absolute;
  bottom: 10.5%;
  left: 50%;
  transform: translateX(-50%);
  width: 270px;
  height: 390px;
  border: 1px solid rgba(200, 84, 122, 0.15);
  z-index: 0;
  clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
}

.figure-png-wrapper {
  position: relative;
}

/* ── Luciérnagas ── */
.figure-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pink-light);
  box-shadow: 0 0 5px 2px rgba(240, 82, 122, 0.6), 0 0 10px 4px rgba(240, 82, 122, 0.25);
  pointer-events: none;
  z-index: 12;
  opacity: 0;
  will-change: transform, opacity;
}

/* Cada luciérnaga tiene su propia trayectoria mediante clases */
.figure-particle:nth-child(1) {
  animation: firefly1 var(--pdur) ease-in-out infinite var(--pdelay), firefly-glow calc(var(--pdur) * 0.6) ease-in-out infinite var(--pdelay);
}

.figure-particle:nth-child(2) {
  animation: firefly2 var(--pdur) ease-in-out infinite var(--pdelay), firefly-glow calc(var(--pdur) * 0.6) ease-in-out infinite var(--pdelay);
}

.figure-particle:nth-child(3) {
  animation: firefly3 var(--pdur) ease-in-out infinite var(--pdelay), firefly-glow calc(var(--pdur) * 0.6) ease-in-out infinite var(--pdelay);
}

.figure-particle:nth-child(4) {
  animation: firefly4 var(--pdur) ease-in-out infinite var(--pdelay), firefly-glow calc(var(--pdur) * 0.6) ease-in-out infinite var(--pdelay);
}

.figure-particle:nth-child(5) {
  animation: firefly5 var(--pdur) ease-in-out infinite var(--pdelay), firefly-glow calc(var(--pdur) * 0.6) ease-in-out infinite var(--pdelay);
}

.figure-particle:nth-child(6) {
  animation: firefly6 var(--pdur) ease-in-out infinite var(--pdelay), firefly-glow calc(var(--pdur) * 0.6) ease-in-out infinite var(--pdelay);
}

.figure-particle:nth-child(7) {
  animation: firefly7 var(--pdur) ease-in-out infinite var(--pdelay), firefly-glow calc(var(--pdur) * 0.6) ease-in-out infinite var(--pdelay);
}

.figure-particle:nth-child(8) {
  animation: firefly8 var(--pdur) ease-in-out infinite var(--pdelay), firefly-glow calc(var(--pdur) * 0.6) ease-in-out infinite var(--pdelay);
}

.figure-particle:nth-child(9) {
  animation: firefly9 var(--pdur) ease-in-out infinite var(--pdelay), firefly-glow calc(var(--pdur) * 0.6) ease-in-out infinite var(--pdelay);
}

.figure-particle:nth-child(10) {
  animation: firefly10 var(--pdur) ease-in-out infinite var(--pdelay), firefly-glow calc(var(--pdur) * 0.6) ease-in-out infinite var(--pdelay);
}

/* Parpadeo orgánico de brillo */
@keyframes firefly-glow {

  0%,
  100% {
    opacity: 0.15;
    box-shadow: 0 0 4px 1px rgba(240, 82, 122, 0.4);
  }

  40% {
    opacity: 1;
    box-shadow: 0 0 8px 3px rgba(240, 82, 122, 0.8), 0 0 16px 6px rgba(240, 82, 122, 0.3);
  }

  70% {
    opacity: 0.6;
    box-shadow: 0 0 5px 2px rgba(240, 82, 122, 0.5);
  }
}

/* Trayectorias únicas — curvas irregulares tipo vuelo de insecto */
@keyframes firefly1 {
  0% {
    transform: translate(0, 0)
  }

  25% {
    transform: translate(-22px, -18px)
  }

  50% {
    transform: translate(-8px, -38px)
  }

  75% {
    transform: translate(-28px, -52px)
  }

  100% {
    transform: translate(0, 0)
  }
}

@keyframes firefly2 {
  0% {
    transform: translate(0, 0)
  }

  30% {
    transform: translate(18px, -25px)
  }

  55% {
    transform: translate(30px, -10px)
  }

  80% {
    transform: translate(12px, -40px)
  }

  100% {
    transform: translate(0, 0)
  }
}

@keyframes firefly3 {
  0% {
    transform: translate(0, 0)
  }

  20% {
    transform: translate(25px, -12px)
  }

  45% {
    transform: translate(14px, -35px)
  }

  70% {
    transform: translate(32px, -50px)
  }

  100% {
    transform: translate(0, 0)
  }
}

@keyframes firefly4 {
  0% {
    transform: translate(0, 0)
  }

  35% {
    transform: translate(-15px, -30px)
  }

  60% {
    transform: translate(-35px, -15px)
  }

  85% {
    transform: translate(-20px, -45px)
  }

  100% {
    transform: translate(0, 0)
  }
}

@keyframes firefly5 {
  0% {
    transform: translate(0, 0)
  }

  25% {
    transform: translate(10px, -40px)
  }

  50% {
    transform: translate(-5px, -20px)
  }

  75% {
    transform: translate(20px, -55px)
  }

  100% {
    transform: translate(0, 0)
  }
}

@keyframes firefly6 {
  0% {
    transform: translate(0, 0)
  }

  30% {
    transform: translate(-30px, -8px)
  }

  55% {
    transform: translate(-18px, -32px)
  }

  80% {
    transform: translate(-38px, -48px)
  }

  100% {
    transform: translate(0, 0)
  }
}

@keyframes firefly7 {
  0% {
    transform: translate(0, 0)
  }

  20% {
    transform: translate(22px, -20px)
  }

  50% {
    transform: translate(38px, -38px)
  }

  75% {
    transform: translate(15px, -28px)
  }

  100% {
    transform: translate(0, 0)
  }
}

@keyframes firefly8 {
  0% {
    transform: translate(0, 0)
  }

  40% {
    transform: translate(-12px, -42px)
  }

  65% {
    transform: translate(8px, -28px)
  }

  85% {
    transform: translate(-22px, -58px)
  }

  100% {
    transform: translate(0, 0)
  }
}

@keyframes firefly9 {
  0% {
    transform: translate(0, 0)
  }

  25% {
    transform: translate(28px, -15px)
  }

  50% {
    transform: translate(18px, -42px)
  }

  80% {
    transform: translate(35px, -30px)
  }

  100% {
    transform: translate(0, 0)
  }
}

@keyframes firefly10 {
  0% {
    transform: translate(0, 0)
  }

  30% {
    transform: translate(-8px, -35px)
  }

  60% {
    transform: translate(-25px, -18px)
  }

  85% {
    transform: translate(-14px, -50px)
  }

  100% {
    transform: translate(0, 0)
  }
}

.figure-png {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  /* drop-shadow estático es aceptable; el coste viene de animarlo */
  filter:
    drop-shadow(0 -6px 20px rgba(240, 82, 122, 0.40)) drop-shadow(0 0 40px rgba(26, 10, 16, 0.45));
}


/* Decorative diamond ornament */
.figure-ornament {
  position: absolute;
  top: 15%;
  right: -20px;
  z-index: 6;
  opacity: 0.7;
}

/* Social stats */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200, 84, 122, 0.15);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--pink-light);
  display: block;
  letter-spacing: 0.05rem;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}


/* ===== ABOUT SECTION ===== */
.about-section {
  position: relative;
  background: var(--cream);
  padding: 12rem 5% 17rem;
  overflow: visible;
  z-index: 2;
  margin-top: 0px;
}

.about-mask-top {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 5;
  pointer-events: none;
}

.about-mask-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  display: block;
}

/* forma superior simulada con about-mask-top */
.about-section {
  clip-path: none;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.about-image-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 20px 40px rgba(200, 84, 122, 0.25);
}

/* Pink placeholder */
.img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--pink-pale) 0%, var(--pink-light) 50%, var(--gold-light) 100%);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-deep);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(200, 84, 122, 0.1), transparent 60%);
}

.img-placeholder-label {
  position: relative;
  z-index: 1;
  text-align: center;
}

.about-img-frame {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  right: -1.2rem;
  bottom: -1.2rem;
  border: 1px solid rgba(200, 84, 122, 0.35);
  border-radius: 2px;
  z-index: -1;
}

.about-text {
  color: var(--dark);
}

.about-section-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--pink-deep);
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05rem;
}

.about-title .pink {
  color: var(--pink-deep);
}

.about-body {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #5a3040;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tag {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(200, 84, 122, 0.4);
  color: var(--pink-deep);
  transition: all 0.2s;
}

.tag:hover {
  background: var(--pink-deep);
  color: white;
}

/* ===== GALLERY / PORTFOLIO SECTION ===== */


.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.section-header .section-label-centered {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  color: var(--pink-mid);
  margin-bottom: 1rem;
  display: block;
}

.section-header .section-title-centered {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text-light);
  letter-spacing: 0.05rem;
}

.section-header .section-title-centered .pink {
  color: var(--pink-light);
}

/* Decorative divider */
.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem auto;
  max-width: 300px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 84, 122, 0.4), transparent);
}

.divider-diamond {
  width: 6px;
  height: 6px;
  background: var(--pink-mid);
  transform: rotate(45deg);
}

.divider-heart {
  color: var(--pink-mid);
  font-size: 0.8rem;
}


/* ===== SOCIAL SECTION ===== */
.social-section {
  position: relative;
  background: linear-gradient(135deg, var(--dark-mid), #200d15, var(--dark));
  padding: 8rem 5%;
  overflow: hidden;
  z-index: 2;
  margin-top: -10rem;
}

.social-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(to bottom, transparent, #1a0a10);
  pointer-events: none;
  z-index: 5;
}

/* clip-path aplicado dinámicamente via JS */


.social-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 1.5rem;
  background: rgba(200, 84, 122, 0.06);
  border: 1px solid rgba(200, 84, 122, 0.15);
  min-width: 120px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.social-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink-deep), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.social-card:hover {
  background: rgba(200, 84, 122, 0.12);
  border-color: rgba(200, 84, 122, 0.35);
  transform: translateY(-4px);
}

.social-card:hover::before {
  transform: scaleX(1);
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-mid);
  font-size: 1.4rem;
}

.social-name {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.social-count {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--pink-light);
  letter-spacing: 0.05rem;
}

/* ===== FANOVA FEATURED CARD ===== */
.social-card-comunidad {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  padding: 2rem 2.5rem;
  width: auto;
  min-width: unset;
  flex: 0 0 auto;
  position: relative;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(200, 84, 122, 0.18) 0%, rgba(200, 84, 122, 0.06) 100%);
  border: 1px solid rgba(200, 84, 122, 0.45);
  transition: all 0.35s ease;
  overflow: hidden;
}

.social-card-comunidad::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink-mid), var(--accent), var(--pink-mid), transparent);
}

.social-card-comunidad:hover {
  border-color: rgba(200, 84, 122, 0.8);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(200, 84, 122, 0.2);
}

.comunidad-label {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  color: var(--pink-mid);
}

.comunidad-logo {
  font-family: var(--font-display);
  font-size: 2.6rem;
  letter-spacing: 0.4rem;
  color: var(--pink-light);
  line-height: 1;
}

.comunidad-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.comunidad-cta {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: var(--pink-mid);
  margin-top: 0.4rem;
}

.social-card-comunidad:hover .comunidad-cta {
  color: var(--pink-light);
}


.footer-bottom {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  padding: 0.6rem 6%;
  height: 48px;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--pink-light);
}

/* ===== DECORATIVE ELEMENTS ===== */
/* Bow SVG shape decorations */


/* Gold line ornament */
.ornament-line {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.ornament-line .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 84, 122, 0.5), transparent);
}

.ornament-line .center {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ornament-dot {
  width: 4px;
  height: 4px;
  background: var(--pink-mid);
  transform: rotate(45deg);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--pink-deep);
  border-radius: 3px;
}

/* ===== MOBILE MENU BTN ===== */
.hamburger {
  display: none;
  background: none;
  border: 1px solid rgba(200, 84, 122, 0.4);
  color: var(--pink-light);
  padding: 0.5rem;
  cursor: pointer;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

/* ===== ANIMATIONS ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up:nth-child(2) {
  transition-delay: 0.1s;
}

.fade-in-up:nth-child(3) {
  transition-delay: 0.2s;
}

.fade-in-up:nth-child(4) {
  transition-delay: 0.3s;
}


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

  .figure-container {
    grid-template-columns: 1fr;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .social-grid {
    gap: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {}

/* ══════════════════════════════════════════════════
   SECTION BANNER
   Trapezoidal panel with label, sits between sections
   ══════════════════════════════════════════════════ */
.section-banner {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  margin-top: 0;
  overflow: visible;
  pointer-events: none;
}


.section-banner-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
  user-select: none;
}

/* Dark variant for light sections */


.section-banner.dark .section-banner-title {
  color: var(--pink-light);
}

/* Thin accent lines flanking the title */
.section-banner-title::before,
.section-banner-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 50px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.section-banner-title::before {
  right: calc(100% + 1rem);
}

.section-banner-title::after {
  left: calc(100% + 1rem);
}

/* ===== FANOVA ROW — layout con cards flanqueando ===== */
.comunidad-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 2.5rem;
  width: fit-content;
}

.comunidad-side-card {
  justify-content: center;
  width: 110px;
  flex: 0 0 110px;
}

.social-handle {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.1rem;
  color: var(--text-muted);
  margin-top: -0.3rem;
}


/* =====================================================
   MOBILE LINK-TREE VIEW (≤ 768px)
   En móvil, oculta el diseño completo de desktop y
   muestra una vista centrada tipo link-tree con el
   estilo oscuro/rosado de Sarah pero organización
   de links inspirada en Abril.
   ===================================================== */

@media (max-width: 768px) {

  /* Ocultar secciones que no aplican en móvil */
  .hero-figure-section,
  .about-section,
  .section-banner,
  .social-section,
  .footer-bottom {
    display: none !important;
  }

  /* Resetear body para layout de una columna — usamos block para evitar reflow al cargar */
  body {
    background: var(--dark);
    display: block;
    min-height: 100svh;
    padding-bottom: 0;
    overflow-x: hidden;
  }

  /* Header móvil: solo logo centrado */
  .site-header {
    display: none;
  }

  .site-header::before {
    display: none;
  }

  .nav,
  .header-cta,
  .hamburger {
    display: none !important;
  }

  .logo {
    font-size: 1.8rem;
    letter-spacing: 0.25rem;
  }

  /* Hero: mostrar solo como banner compacto con foto */
  .hero {
    min-height: 100svh !important;
    height: 100svh !important;
    padding: 0;
    display: block;
    position: relative;
    contain: none;
  }

  .hero-bow {
    display: none;
  }

  /* Foto de fondo hero compacta */
  .hero>div[style*="position:absolute"] {
    position: relative !important;
    height: 100vh;
    height: 100svh;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
  }

  .hero-content {
    position: absolute !important;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem 5.5rem;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 0;
    grid-template-columns: unset;
  }

  /* Scroll indicator: subir en móvil para que no se corte */
  .hero-scroll {
    bottom: 3rem !important;
  }

  /* Ocultar la columna derecha (platform links) en hero móvil */
  .hero-content>div:last-child {
    display: none !important;
  }

  .hero-tag {
    font-size: 0.58rem;
    letter-spacing: 0.22rem;
    justify-content: center;
    margin-bottom: 0.4rem;
  }

  .hero-title {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 0.3rem;
  }

  .hero-subtitle {
    font-size: 0.82rem;
    text-align: center;
    margin-bottom: 0.8rem;
    line-height: 1.55;
  }



  .btn-primary,
  .btn-outline {
    font-size: 0.62rem;
    padding: 0.7rem 1.2rem;
  }

  /* ── CONTENEDOR LINK-TREE MÓVIL ── */
  /* Se inserta via CSS como bloque visual entre hero y footer simplificado */

  /* Las social cards se reorganizan como lista vertical de links */
  /* Usamos la social-section pero la mostramos de otra forma */
  .social-section {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.2rem 3rem;
    margin-top: 0 !important;
    clip-path: none !important;
    background: var(--dark) !important;
  }

  .social-inner {
    width: 100%;
    max-width: 400px;
  }

  /* Bio label centrada */
  .social-inner>span {
    text-align: center;
    display: block;
    margin-bottom: 0.4rem;
  }

  /* Título Follow & Subscribe más compacto */
  .social-inner>h2 {
    font-size: 1.6rem !important;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 0.5rem;
  }

  .social-inner>p {
    font-size: 0.82rem !important;
    text-align: center;
    margin-bottom: 1.5rem !important;
  }

  /* Fanova row: stack vertical */
  .comunidad-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .comunidad-side-card {
    width: 100% !important;
    flex: 1 1 auto !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    min-height: 64px;
  }

  .comunidad-side-card .social-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .comunidad-side-card .social-name {
    font-size: 0.7rem;
    letter-spacing: 0.15rem;
  }

  .comunidad-side-card .social-count {
    font-size: 1rem;
    margin-left: auto;
  }

  .comunidad-side-card .social-handle {
    display: none;
  }

  /* Fanova card central: estilo destacado */
  .social-card-comunidad {
    width: 100% !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 1rem;
    padding: 1.1rem 1.2rem;
    border-radius: 10px;
    min-height: 68px;
    order: -1;
  }

  .comunidad-label {
    display: none;
  }

  .comunidad-logo {
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
    flex-shrink: 0;
  }

  .comunidad-tagline {
    font-size: 0.72rem;
    margin: 0 0 0.3rem 0;
    text-align: left;
    flex: unset;
  }

  .comunidad-cta {
    font-size: 0.58rem;
    margin-top: 0;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-end;
  }

  /* Social grid: lista vertical de links */
  .social-grid {
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 0.75rem;
    width: 100%;
  }

  .social-card {
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 1rem;
    padding: 0.9rem 1.2rem;
    min-width: 0;
    width: 100%;
    border-radius: 8px;
    background: rgba(200, 84, 122, 0.07);
    border: 1px solid rgba(200, 84, 122, 0.18);
  }

  .social-card .social-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
  }

  .social-card .social-name {
    font-size: 0.68rem;
    letter-spacing: 0.12rem;
    flex: 1;
    text-align: left;
  }

  .social-card .social-count {
    font-size: 0.95rem;
    margin-left: auto;
  }

  /* Ornamento divisor */
  .divider-ornament {
    margin: 1rem auto;
  }

  /* Footer simplificado en móvil */
  .footer-bottom {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem;
    background: var(--dark);
    text-align: center;
    font-size: 0.52rem;
    letter-spacing: 0.15rem;
    color: rgba(255, 255, 255, 0.25);
  }

  .footer-bottom a {
    color: rgba(255, 255, 255, 0.25);
  }

  /* Ocultar el after que crea gradiente sobre social-section */
  .social-section::after {
    display: none;
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}