@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('Brier-Bold.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

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

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

@font-face {
  font-family: 'CrimsonPro';
  src: url('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;
}

/* ===== CURVED SECTION SEPARATORS ===== */
/* section-curve kept for legacy, not used */
.section-curve {
  position: relative;
}

.curve-bottom {
  position: relative;
}

/* ===== 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%;
}

.header-cta {
  background: linear-gradient(135deg, var(--pink-deep), var(--accent));
  color: white;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.2s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.header-cta:hover {
  background: linear-gradient(135deg, var(--accent), var(--pink-deep));
  transform: scale(1.03);
}

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

.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.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%);
}

/* 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;
}

.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;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.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;
}

.btn-outline {
  background: transparent;
  color: var(--pink-light);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  padding: 0.95rem 1.8rem;
  border: 1px solid rgba(232, 127, 168, 0.4);
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
}

.btn-outline:hover {
  border-color: var(--pink-mid);
  background: rgba(200, 84, 122, 0.08);
  transform: translateY(-2px);
}

/* ===== HERO FIGURE SECTION (like Highguard warden cutout) ===== */
.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;
  animation:
    firefly-move-var(--pdur, 4s) ease-in-out infinite var(--pdelay, 0s),
    firefly-glow calc(var(--pdur, 4s) * 0.6) ease-in-out infinite var(--pdelay, 0s);
}

/* 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% 14rem;
  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 ===== */
/* ── Portfolio decoración ── */
.portfolio-deco-pattern {
  position: absolute;
  top: -220px;
  bottom: -220px;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(45deg,
      transparent,
      transparent 60px,
      rgba(200, 84, 122, 0.025) 60px,
      rgba(200, 84, 122, 0.025) 61px),
    repeating-linear-gradient(-45deg,
      transparent,
      transparent 60px,
      rgba(200, 84, 122, 0.025) 60px,
      rgba(200, 84, 122, 0.025) 61px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
}

.portfolio-arc {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(200, 84, 122, 0.1);
  pointer-events: none;
  z-index: 0;
}

.portfolio-arc::before {
  content: '';
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 1px solid rgba(200, 84, 122, 0.06);
}

.portfolio-arc--tl {
  top: -100px;
  left: -80px;
}

.portfolio-arc--br {
  bottom: -100px;
  right: -80px;
}

.portfolio-deco-dots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.portfolio-section {
  position: relative;
  background: var(--dark);
  padding: 0 5% 8rem;
  overflow: visible;
  margin-top: 0;
  z-index: 6;
}

.portfolio-mask-top {
  position: relative;
  width: 100%;
  height: 160px;
  margin-top: -160px;
  margin-bottom: -2px;
  z-index: 5;
  pointer-events: none;
  overflow: visible;
}

.portfolio-mask-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  object-fit: fill;
  display: block;
}

.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;
}

/* ===== LUXURY GALLERY ===== */
.gallery-luxe {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 10;
}

/* ── Hero foto ── */
.gl-hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gl-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.75);
}

.gl-hero:hover img {
  transform: scale(1.04);
  filter: brightness(0.65);
}

.gl-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(26, 10, 16, 0.7) 0%,
      rgba(26, 10, 16, 0.2) 50%,
      transparent 100%);
  z-index: 1;
}

/* Marco decorativo interior */
.gl-hero-frame {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(200, 84, 122, 0.2);
  z-index: 2;
  pointer-events: none;
  transition: border-color 0.4s;
}

.gl-hero:hover .gl-hero-frame {
  border-color: rgba(200, 84, 122, 0.45);
}

.gl-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 2.5rem 3rem;
}

.gl-hero-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.gl-edition {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: var(--pink-mid);
}

.gl-divider-dot {
  color: rgba(200, 84, 122, 0.4);
  font-size: 0.8rem;
}

.gl-year {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.2rem;
  color: rgba(255, 255, 255, 0.4);
}

.gl-cat {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.gl-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  color: white;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.gl-hero-title em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--pink-light);
  -webkit-text-stroke: 0.5px var(--pink-light);
}

.gl-hero-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--pink-deep), var(--pink-light), transparent);
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gl-hero:hover .gl-hero-line {
  width: 120px;
}

/* ── Grid inferior ── */
.gl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.gl-item {
  position: relative;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
  background: #0d0508;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.gl-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.4s ease;
  filter: brightness(0.7) saturate(0.9);
}

.gl-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.55) saturate(1.1);
}

/* Cortina que se cierra desde arriba al hover */
.gl-curtain {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(26, 10, 16, 0.0) 0%,
      rgba(26, 10, 16, 0.65) 100%);
  z-index: 1;
  transition: background 0.4s;
}

.gl-item:hover .gl-curtain {
  background: linear-gradient(180deg,
      rgba(26, 10, 16, 0.2) 0%,
      rgba(26, 10, 16, 0.88) 100%);
}

/* Esquinas decorativas */
.gl-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gl-item:hover .gl-corner {
  opacity: 1;
}

.gl-corner--tl {
  top: 12px;
  left: 12px;
  border-top: 1px solid var(--pink-mid);
  border-left: 1px solid var(--pink-mid);
}

.gl-corner--br {
  bottom: 12px;
  right: 12px;
  border-bottom: 1px solid var(--pink-mid);
  border-right: 1px solid var(--pink-mid);
}

/* Info que sube al hover */
.gl-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 1.2rem 1.2rem;
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.4s ease;
}

.gl-item:hover .gl-info {
  transform: translateY(0);
  opacity: 1;
}

.gl-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(200, 84, 122, 0.4);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

.gl-item:hover .gl-num {
  color: rgba(200, 84, 122, 0.7);
}

.gl-info-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.gl-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: white;
  letter-spacing: 0.03rem;
  line-height: 1;
  display: block;
}

.gl-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: var(--pink-light);
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .gl-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gl-hero {
    height: 380px;
  }
}

@media (max-width: 560px) {
  .gl-grid {
    grid-template-columns: 1fr;
  }

  .gl-hero {
    height: 280px;
  }

  .gl-item {
    height: 220px;
  }
}

/* ===== EDITORIAL GALLERY (prev version) ===== */
.gallery-editorial {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
  position: relative;
  z-index: 10;
  align-items: start;
}

.ge-col-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ge-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-mid);
}

.ge-item--tall {
  height: 620px;
}

.ge-item--med {
  height: 300px;
}

.ge-item--tall2 {
  height: 420px;
}

.ge-item--sm {
  height: 192px;
}

.ge-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ge-item:hover img {
  transform: scale(1.06);
}

.ge-num {
  position: absolute;
  top: 1rem;
  left: 1.2rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2rem;
  color: rgba(255, 255, 255, 0.35);
  z-index: 5;
  transition: color 0.3s;
}

.ge-item:hover .ge-num {
  color: var(--pink-light);
}

.ge-tag {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-family: var(--font-body);
  font-size: 0.52rem;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(26, 10, 16, 0.5);
  backdrop-filter: blur(4px);
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(200, 84, 122, 0.2);
  z-index: 5;
  transition: all 0.3s;
}

.ge-item:hover .ge-tag {
  background: rgba(200, 84, 122, 0.25);
  border-color: rgba(200, 84, 122, 0.5);
  color: white;
}

.ge-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 40%,
      rgba(26, 10, 16, 0.5) 70%,
      rgba(26, 10, 16, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1.4rem;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 4;
}

.ge-item:hover .ge-overlay {
  opacity: 1;
}

.ge-overlay-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--pink-deep), var(--pink-light));
  margin-bottom: 0.75rem;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.05s;
}

.ge-item:hover .ge-overlay-line {
  width: 40px;
}

.ge-overlay-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: white;
  letter-spacing: 0.05rem;
  line-height: 1;
  display: block;
}

.ge-overlay-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-top: 0.3rem;
  display: block;
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  position: relative;
  z-index: 10;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 1;
  aspect-ratio: 16/9;
}

.gallery-item:nth-child(2) {
  aspect-ratio: 3/4;
}

.gallery-item:nth-child(3) {
  aspect-ratio: 1/1;
}

.gallery-item:nth-child(4) {
  aspect-ratio: 1/1;
}

.gallery-item:nth-child(5) {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 250px;
  background: linear-gradient(135deg, var(--dark-mid), #2d1525);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.gallery-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 84, 122, 0.1) 0%, transparent 50%, rgba(200, 84, 122, 0.05) 100%);
}

.gallery-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img-placeholder img {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 10, 16, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--pink-light);
}

/* ===== 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-section {
}



.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-fanova {
  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-fanova::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-fanova:hover {
  border-color: rgba(200, 84, 122, 0.8);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(200, 84, 122, 0.2);
}

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

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

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

.fanova-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-fanova:hover .fanova-cta {
  color: var(--pink-light);
}

/* ===== SERVICES/COLLABS SECTION ===== */
.services-section {
  position: relative;
  background: var(--cream);
  padding: 8rem 5%;
  overflow: hidden;
  z-index: 2;
  /* ← agrega esto */
  margin-top: 0rem;
  /* ← agrega esto */
}

/* clip-path aplicado dinámicamente via JS */
.services-section {
}


.services-grid {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.service-card {
  background: white;
  padding: 2.5rem 2rem;
  border-bottom: 3px solid var(--pink-light);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(200, 84, 122, 0.08);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(200, 84, 122, 0.04) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(200, 84, 122, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrap {
  width: 50px;
  height: 50px;
  margin-bottom: 1.5rem;
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  color: var(--pink-deep);
  font-size: 1.4rem;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05rem;
}

.service-desc {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: #5a3040;
  line-height: 1.75;
}

/* ===== FOOTER ===== */
/* ===== FOOTER WRAPPER — contexto de posicionamiento para la imagen que sobresale ===== */
.footer-wrapper {
  position: relative;
  width: min(1688px, 100%);
  margin: 0 auto;
  /* Espacio superior para que la imagen pueda sobresalir hacia arriba */
  padding-top: 180px;
  margin-top: -180px;
}

/* Imagen de Sarah que rompe los límites de la máscara del footer */
.footer-sarah-img {
  position: absolute;
  /* Ajustar: left coloca la imagen en la zona encerrada en amarillo (izquierda-centro) */
  left: calc(14% + 10px);
  /* bottom alineado con el footer: 0 = base del footer-wrapper */
  bottom: 0;
  /* Altura: sobresale ~180px por encima del borde superior del footer */
  height: calc(100% + 20px);
  width: auto;
  max-height: 900px;
  object-fit: contain;
  object-position: bottom center;
  z-index: 20;
  /* No tiene clip-path, así que "rompe" el footer libremente */
  pointer-events: none;
  /* Sutil sombra para integrarse visualmente */
  filter: drop-shadow(0 -8px 32px rgba(240, 82, 122, 0.35)) drop-shadow(0 0 60px rgba(26, 10, 16, 0.5));
}

/* clip-path aplicado dinámicamente via JS */
.site-footer {
  position: relative;
  background: #F0527A;
  overflow: hidden;
  width: min(1688px, 100%);
  height: auto;
  aspect-ratio: 1688 / 896;
  margin: 0 auto;
}

.footer-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(26, 10, 16, 0.88) 20%, rgba(26, 10, 16, 0.45) 50%, rgba(26, 10, 16, 0.88) 80%),
    url('footer.webp') center top / cover no-repeat;
  z-index: 0;
}

.footer-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  height: calc(896px - 48px);
  padding: 0 6%;
}

.footer-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.footer-col-left {
  align-items: flex-start;
}

.footer-col-center {
  align-items: center;
  text-align: center;
  padding: 4rem 3rem;
}

.footer-col-right {
  align-items: flex-end;
}

.footer-links-title {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  color: var(--pink-mid);
  margin-bottom: 2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-links li a {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: white;
  transition: color 0.2s;
  display: inline-block;
  line-height: 1;
}

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

.footer-logo {
  font-family: 'vintage-deco', serif;
  font-size: clamp(2.5rem, 6vw, 6rem);
  letter-spacing: -0.025em;
  line-height: 0.85;
  color: white;
  margin-bottom: 1.4rem;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
  margin-bottom: 1.8rem;
  max-width: 320px;
}

.footer-bottom {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  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 */
.deco-bow-top {
  position: absolute;
  top: 5%;
  left: 5%;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.deco-bow-bottom {
  position: absolute;
  bottom: 10%;
  right: 5%;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  transform: rotate(180deg);
}

/* Gold line ornament (like Highguard) */
.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;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    padding: 0 4%;
  }

  .footer-col-center {
    grid-column: span 2;
    order: -1;
  }
}

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

  .hamburger {
    display: flex;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) {
    grid-column: span 2;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    gap: 1rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 0 5%;
  }

  .footer-col-left,
  .footer-col-right {
    align-items: center;
    padding: 2rem 0;
  }

  .footer-col-right .footer-links {
    align-items: center;
  }

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

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) {
    grid-column: span 1;
  }
}

/* ══════════════════════════════════════════════════
   SECTION BANNER — inspired by Highguard gold band
   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: -56px;
  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-inner {
  background: var(--dark);
}

.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 ===== */
.fanova-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 2.5rem;
  width: fit-content;
}

.fanova-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;
}

/* ===== SECTION GAP — separacion entre about y portfolio ===== */
.section-gap {
  height: 10rem;
  background: var(--cream);
}
/* =====================================================
   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,
  .portfolio-mask-top,
  .portfolio-section,
  .section-banner,
  .services-section,
  .social-section,
  .footer-wrapper,
  .footer-bottom {
    display: none !important;
  }

  /* Resetear body para layout de una columna */
  body {
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding-bottom: 0;
  }

  /* 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: 0;
    height: 100vh;
    height: 100svh;
    padding: 0;
    display: block;
    position: relative;
  }

  .hero-particles,
  .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;
  }

  /* 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;
  }

  .hero-actions {
    display: none;
  }

  .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 */
  .fanova-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .fanova-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;
  }

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

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

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

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

  /* Fanova card central: estilo destacado */
  .social-card-fanova {
    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;
  }

  .fanova-label {
    display: none;
  }

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

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

  .fanova-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;
  }
}

/* ===== COMUNIDAD BUTTON ===== */
.comunidad-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 2.5rem;
  background: linear-gradient(135deg, var(--pink-deep), var(--pink-mid));
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  border: 1px solid rgba(245, 184, 208, 0.3);
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.comunidad-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.comunidad-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 84, 122, 0.4);
  border-color: rgba(245, 184, 208, 0.6);
}

.comunidad-btn-icon {
  font-size: 0.65rem;
  color: var(--pink-pale);
  opacity: 0.85;
}

.comunidad-btn-label {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2rem;
}
