/* ============================================
   MARLEEN LORENZO — Luxury Personal Brand
   Design System & Styles
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Core Palette */
  --clr-black:       #0B0C0C;
  --clr-petrol:      #172633;
  --clr-gold:        #CD834D;
  --clr-gold-light:  #D9C8C0;
  --clr-gold-dark:   #56271A;
  --clr-gold-gradient: linear-gradient(135deg, #CD834D 0%, #D9C8C0 50%, #CD834D 100%);
  --clr-white:       #F5F0EB;
  --clr-white-pure:  #FFFFFF;
  --clr-silver:      #8A9BAE;
  --clr-silver-dark: #5C6E80;

  /* Functional Colors */
  --bg-primary:      var(--clr-black);
  --bg-secondary:    var(--clr-petrol);
  --bg-card:         rgba(23, 38, 51, 0.6);
  --text-primary:    var(--clr-white);
  --text-secondary:  var(--clr-silver);
  --accent:          var(--clr-gold);
  --accent-hover:    var(--clr-gold-light);

  /* Typography */
  --font-heading:    'Playfair Display', 'Georgia', serif;
  --font-body:       'Inter', 'Helvetica Neue', sans-serif;
  --font-accent:     'Cormorant Garamond', 'Georgia', serif;

  /* Font Sizes (fluid) */
  --fs-hero:         clamp(3rem, 7vw, 7rem);
  --fs-hero-sub:     clamp(1rem, 2vw, 1.5rem);
  --fs-h1:           clamp(3rem, 6vw, 5.5rem);
  --fs-h2:           clamp(2.5rem, 5vw, 4rem);
  --fs-h3:           clamp(1.3rem, 2vw, 1.8rem);
  --fs-body:         clamp(0.95rem, 1.2vw, 1.1rem);
  --fs-small:        clamp(0.8rem, 1vw, 0.9rem);
  --fs-quote:        clamp(1.5rem, 3vw, 2.5rem);
  --fs-label:        clamp(0.7rem, 0.9vw, 0.85rem);

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   6rem;
  --space-2xl:  10rem;

  /* Layout */
  --max-width:  1280px;
  --nav-height: 80px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.27, 1.55);
  --ease-luxury: cubic-bezier(0.19, 1, 0.22, 1);
  --duration-fast:   0.3s;
  --duration-normal: 0.6s;
  --duration-slow:   1s;

  /* Borders */
  --border-subtle: 1px solid rgba(205, 131, 77, 0.15);
  --border-gold:   1px solid rgba(205, 131, 77, 0.4);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;

  /* Shadows */
  --shadow-card:   0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow:   0 0 40px rgba(205, 131, 77, 0.15);
  --shadow-gold:   0 4px 20px rgba(205, 131, 77, 0.2);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ---------- Utility Classes ---------- */
.italic { font-family: var(--font-heading); font-style: italic; font-weight: 300; }
.gold-text { background: var(--clr-gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-padding {
  padding: var(--space-2xl) 0;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
  display: block;
}

.gold-line--center {
  margin: var(--space-sm) auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: var(--clr-gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-slow) var(--ease-luxury),
              transform var(--duration-slow) var(--ease-luxury);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity var(--duration-slow) var(--ease-luxury),
              transform var(--duration-slow) var(--ease-luxury);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity var(--duration-slow) var(--ease-luxury),
              transform var(--duration-slow) var(--ease-luxury);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity var(--duration-slow) var(--ease-luxury),
              transform var(--duration-slow) var(--ease-luxury);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.25s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.55s; }

/* ---------- Grain Overlay ---------- */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 var(--space-md);
  transition: background var(--duration-fast) var(--ease-smooth),
              box-shadow var(--duration-fast) var(--ease-smooth);
}

.nav.scrolled {
  background: rgba(11, 12, 12, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(205, 131, 77, 0.1);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ---------- Signature Image Styles ---------- */
.signature-img {
  /* No more mix-blend-mode or filter hacks! The SVG mask handles it perfectly. */
  object-fit: contain;
}

.signature-img--preloader {
  height: 35vh; /* Much larger */
  max-height: 320px;
  width: auto;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  animation: logoWipe 2.5s cubic-bezier(0.77, 0, 0.175, 1) 0.3s forwards;
}

@keyframes logoWipe {
  0% { 
    opacity: 0; 
    transform: scale(0.95); 
    clip-path: inset(0 100% 0 0);
  }
  40% {
    opacity: 1;
  }
  100% { 
    opacity: 1; 
    transform: scale(1); 
    clip-path: inset(0 0 0 0);
  }
}

.signature-img--nav {
  height: 50px;
  width: auto;
}

.signature-img--footer {
  height: 40px;
  width: auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  height: 50px;
  transition: opacity var(--duration-fast);
}
.nav__logo img,
.nav__logo svg {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.nav__logo:hover {
  opacity: 0.8;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-left: auto;
}

.nav__link {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-silver);
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--duration-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-gold);
  transition: width var(--duration-fast) var(--ease-smooth);
}

.nav__link:hover {
  background: var(--clr-gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.nav__link:hover::after {
  width: 100%;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--clr-gold);
  transition: transform var(--duration-fast) var(--ease-smooth),
              opacity var(--duration-fast);
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(11, 12, 12, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.nav__mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-menu .nav__link {
  font-size: 1.2rem;
  letter-spacing: 4px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(23,38,51,0.6) 0%, transparent 65%),
    radial-gradient(ellipse at 100% 50%, rgba(23,38,51,0.9) 0%, transparent 55%),
    linear-gradient(to right, #040506 0%, #080e14 35%, #0f1e2b 60%, #172633 80%, #0d1a24 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(205, 131, 77, 0.04) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(23, 38, 51, 0.3) 0%, transparent 50%);
  animation: heroGlow 12s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(2%, -1%) scale(1.05); }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-md);
  max-width: 54%;
  padding-left: clamp(2rem, 6vw, 8rem);
}

.hero__label {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  background: var(--clr-gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  opacity: 0;
  animation: fadeUp 1s var(--ease-luxury) 0.5s forwards;
}

.hero__name {
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-primary);
  margin: var(--space-sm) 0;
  opacity: 0;
  animation: fadeUp 1s var(--ease-luxury) 0.8s forwards;
}

.hero__name > span {
  display: block;
}

.hero__gold-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-gold), transparent);
  margin: var(--space-md) 0;
  opacity: 0;
  animation: lineExpand 1.2s var(--ease-luxury) 1.3s forwards;
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-size: var(--fs-hero-sub);
  font-weight: 300;
  font-style: italic;
  color: var(--clr-silver);
  letter-spacing: 2px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-luxury) 1.6s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  opacity: 0;
  animation: fadeUp 1s var(--ease-luxury) 2.2s forwards;
}

.hero__scroll-text {
  font-size: var(--fs-label);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-silver-dark);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--clr-gold));
  animation: scrollLine 2s var(--ease-smooth) infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* Hero portrait */
.hero__portrait {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  /* Fade left edge only — transparent bg handles the rest */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 18%, rgba(0,0,0,1) 40%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 18%, rgba(0,0,0,1) 40%);
}

/* Side video — left half of hero, behind text */
.hero__side-video {
  position: absolute;
  left: 0;
  top: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero__side-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: sepia(70%) brightness(0.35) contrast(1.2) hue-rotate(5deg);
}

/* Gradient overlay: heavy black on left (legible text), fades to transparent on right */
.hero__side-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11, 12, 12, 0.82) 0%,
    rgba(11, 12, 12, 0.55) 45%,
    rgba(11, 12, 12, 0.15) 75%,
    transparent 100%
  );
  pointer-events: none;
}

/* z-index stack: aurora(0) → portrait(1) → particles+content(2) */
.hero__aurora {
  z-index: 0;
  position: absolute;
}

.hero__content,
.hero__scroll,
#hero-particles {
  z-index: 2;
  position: relative;
}

@media (max-width: 900px) {
  .hero__portrait {
    width: 100%;
    height: 65%;
    bottom: 0;
    opacity: 0.2;
  }
  .hero__portrait img {
    object-position: top center;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero__side-video {
    display: none;
  }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lineExpand {
  from { opacity: 0; width: 0; }
  to { opacity: 1; width: 80px; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  position: relative;
  background: var(--bg-primary);
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(23, 38, 51, 0.2) 100%);
  pointer-events: none;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about__image-wrapper {
  position: relative;
}

.about__image-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: var(--border-gold);
  border-radius: var(--radius-sm);
  z-index: 0;
}

.about__image {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  z-index: 1;
  aspect-ratio: 3/4;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.about__image:hover img {
  transform: scale(1.03);
}

.about__content {
  position: relative;
  z-index: 2;
}

.about__text {
  font-size: var(--fs-body);
  color: var(--clr-silver);
  margin-bottom: var(--space-md);
  line-height: 1.9;
}

.about__text strong {
  background: var(--clr-gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  font-weight: 500;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: var(--border-subtle);
}

.about__stat {
  text-align: center;
}

.about__stat-number {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  background: var(--clr-gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}

.about__stat-label {
  font-size: var(--fs-small);
  color: var(--clr-silver-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: var(--space-xs);
}

/* ============================================
   ACHIEVEMENTS / TIMELINE
   ============================================ */
.achievements {
  background: linear-gradient(180deg, var(--clr-petrol) 0%, var(--clr-black) 100%);
  position: relative;
}

.achievements__timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: var(--space-lg);
}

.achievements__timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, var(--clr-gold), rgba(205, 131, 77, 0.1));
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-xl);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item__dot {
  position: absolute;
  left: calc(-1 * var(--space-lg) - 5px);
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--clr-gold);
  box-shadow: 0 0 20px rgba(205, 131, 77, 0.4);
}

.timeline-item__dot::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 1px solid rgba(205, 131, 77, 0.3);
}

.timeline-item__year {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--clr-gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: var(--space-xs);
}

.timeline-item__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.timeline-item__desc {
  font-size: var(--fs-body);
  color: var(--clr-silver);
  line-height: 1.8;
}

/* ============================================
   ACHIEVEMENTS GROWTH CHART
   ============================================ */
.achievements__chart {
  position: relative;
  width: 100%;
  aspect-ratio: 1200 / 580;
  max-width: 1100px;
  margin: var(--space-xl) auto 0;
  overflow: visible;
}

.chart__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.chart__portrait {
  position: absolute;
  width: clamp(72px, 8vw, 100px);
  height: clamp(72px, 8vw, 100px);
  border-radius: 50%;
  overflow: hidden;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 3px #CD834D, 0 0 22px rgba(205,131,77,0.45);
  animation: chartPortraitPulse 2.8s ease-in-out infinite;
  z-index: 3;
}

.chart__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.chart__portrait-label {
  position: absolute;
  bottom: -1.6em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #CD834D;
  white-space: nowrap;
  font-family: var(--font-body);
}

@keyframes chartPortraitPulse {
  0%, 100% { box-shadow: 0 0 0 3px #CD834D, 0 0 22px rgba(205,131,77,0.45); }
  50%       { box-shadow: 0 0 0 5px #CD834D, 0 0 38px rgba(205,131,77,0.65); }
}

.chart__card {
  position: absolute;
  transform: translate(-50%, -50%);
  width: clamp(130px, 15vw, 185px);
  background: rgba(6, 6, 14, 0.88);
  border: 1px solid rgba(205,131,77,0.22);
  border-radius: 10px;
  padding: clamp(0.6rem, 0.8vw, 0.85rem) clamp(0.7rem, 0.9vw, 1rem);
  backdrop-filter: blur(14px);
  z-index: 2;
}

.chart__card--peak {
  border-color: rgba(205,131,77,0.38);
  background: rgba(12, 8, 4, 0.92);
}

.chart__year {
  display: block;
  font-size: clamp(0.55rem, 0.7vw, 0.65rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #CD834D;
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 0.3em;
}

.chart__card h4 {
  font-family: var(--font-heading);
  font-size: clamp(0.68rem, 0.95vw, 0.88rem);
  font-weight: 300;
  color: #D9C8C0;
  line-height: 1.3;
  margin-bottom: 0.35em;
}

.chart__card h4 em {
  color: #CD834D;
  font-style: italic;
}

.chart__card p {
  font-size: clamp(0.55rem, 0.75vw, 0.68rem);
  color: var(--clr-silver);
  line-height: 1.45;
  margin: 0;
}

/* Header centrado para el chart */
.achievements__header--chart {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto var(--space-lg);
}

.achievements__header--chart .section-label {
  display: block;
  margin-bottom: 0.6em;
  letter-spacing: 0.28em;
}

.achievements__chart-title {
  font-size: clamp(2rem, 3.8vw, 3.6rem) !important;
  white-space: nowrap;
  letter-spacing: 0.01em;
  max-width: none !important;
}

.achievements__gold-line--center {
  margin: var(--space-sm) auto 0;
}

/* Mobile: oculta el chart y muestra la lista */
.achievements__timeline--mobile { display: none; }

@media (max-width: 860px) {
  .achievements__chart { display: none; }
  .achievements__timeline--mobile { display: block; }
}

/* ============================================
   GROWTH CHART — ANIMATE ON SCROLL
   ============================================ */

/* Curve: draws itself left-to-right */
.chart__curve {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: achDrawCurve 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-play-state: paused;
}
.achievements__chart.is-animated .chart__curve { animation-play-state: running; }

@keyframes achDrawCurve {
  from { stroke-dashoffset: 2000; }
  to   { stroke-dashoffset: 0; }
}

/* Area fill fades in */
.chart__fill {
  opacity: 0;
  animation: achFadeIn 1.6s ease 0.4s both;
  animation-play-state: paused;
}
.achievements__chart.is-animated .chart__fill { animation-play-state: running; }

/* Connector dashes: staggered via --d */
.chart__connector {
  animation: achFadeIn 0.5s ease var(--d, 0s) both;
  animation-play-state: paused;
}
.achievements__chart.is-animated .chart__connector { animation-play-state: running; }

/* Milestone dots: pop in */
.chart__dot {
  transform-box: fill-box;
  transform-origin: center;
  animation: achDotPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) var(--d, 0s) both;
  animation-play-state: paused;
}
.achievements__chart.is-animated .chart__dot { animation-play-state: running; }

.chart__dot-ring {
  animation: achFadeIn 0.7s ease var(--d, 0s) both;
  animation-play-state: paused;
}
.achievements__chart.is-animated .chart__dot-ring { animation-play-state: running; }

/* Portrait rings */
.chart__portrait-ring {
  animation: achFadeIn 0.8s ease var(--d, 1.6s) both;
  animation-play-state: paused;
}
.achievements__chart.is-animated .chart__portrait-ring { animation-play-state: running; }

/* Portrait: hidden until animated, then reveal + pulse */
.achievements__chart .chart__portrait {
  animation: none;
  opacity: 0;
}
.achievements__chart.is-animated .chart__portrait {
  animation:
    achPortraitReveal 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) 1.85s both,
    chartPortraitPulse 2.8s ease-in-out 2.62s infinite;
}

/* Cards: slide up + fade in */
.achievements__chart .chart__card {
  animation: achCardReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0s) both;
  animation-play-state: paused;
}
.achievements__chart.is-animated .chart__card { animation-play-state: running; }

/* Shared keyframes */
@keyframes achFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes achDotPop {
  from { opacity: 0; transform: scale(0); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes achCardReveal {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 14px)); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}
@keyframes achPortraitReveal {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.72); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* ============================================
   EXPERTISE SECTION
   ============================================ */
.expertise {
  background: var(--bg-primary);
  position: relative;
}

.expertise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.expertise-card {
  position: relative;
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform var(--duration-fast) var(--ease-smooth),
              border-color var(--duration-fast),
              box-shadow var(--duration-fast);
  overflow: hidden;
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(205, 131, 77, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--duration-fast);
}

.expertise-card:hover {
  transform: translateY(-8px);
  border-color: rgba(205, 131, 77, 0.4);
  box-shadow: var(--shadow-glow);
}

.expertise-card:hover::before {
  opacity: 1;
}

.expertise-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.expertise-card__icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--clr-gold);
  stroke-width: 1.5;
  fill: none;
}

.expertise-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.expertise-card__desc {
  font-size: var(--fs-body);
  color: var(--clr-silver);
  line-height: 1.8;
}

/* ============================================
   GALLERY / MEDIA SECTION
   ============================================ */
.gallery {
  background: linear-gradient(180deg, var(--clr-black) 0%, var(--clr-petrol) 50%, var(--clr-black) 100%);
  overflow: hidden;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery__item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery__item--vertical {
  aspect-ratio: 3/4;
}

/* Zoom & center on gallery-4 to highlight faces and handshake */
#gallery-item-4 img {
  object-position: 50% 35%;
  transform: scale(1.35);
  transform-origin: 50% 40%;
}

#gallery-item-4:hover img {
  transform: scale(1.45);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(11, 12, 12, 0.9) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform var(--duration-fast) var(--ease-smooth);
}

.gallery__item:hover .gallery__item-overlay {
  transform: translateY(0);
}

.gallery__item-overlay h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-primary);
}

.gallery__item-overlay p {
  font-size: var(--fs-small);
  color: var(--clr-silver);
  margin-top: 4px;
}

/* ============================================
   QUOTE SECTION
   ============================================ */
.quote-section {
  background: var(--bg-secondary);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.quote-section::before,
.quote-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205, 131, 77, 0.06) 0%, transparent 70%);
}

.quote-section::before {
  top: -100px;
  left: -100px;
}

.quote-section::after {
  bottom: -100px;
  right: -100px;
}

.quote__marks {
  font-family: var(--font-accent);
  font-size: 8rem;
  line-height: 1;
  color: rgba(205, 131, 77, 0.15);
  margin-bottom: -3rem;
  display: block;
  user-select: none;
}

.quote__text {
  font-family: var(--font-accent);
  font-size: var(--fs-quote);
  font-weight: 300;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto var(--space-md);
  position: relative;
  z-index: 1;
}

.quote__author {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: var(--clr-gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  background: linear-gradient(180deg, var(--clr-petrol) 0%, var(--clr-black) 100%);
  position: relative;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.contact__info-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__info-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--clr-gold);
  stroke-width: 1.5;
  fill: none;
}

.contact__info-label {
  font-size: var(--fs-small);
  color: var(--clr-silver-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.contact__info-value {
  font-size: var(--fs-body);
  color: var(--text-primary);
}

.contact__info-value a {
  transition: color var(--duration-fast);
}

.contact__info-value a:hover {
  background: var(--clr-gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.contact__socials {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.contact__social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--duration-fast),
              background var(--duration-fast),
              transform var(--duration-fast);
}

.contact__social-link:hover {
  border-background: var(--clr-gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background: rgba(205, 131, 77, 0.1);
  transform: translateY(-3px);
}

.contact__social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--clr-silver);
  transition: fill var(--duration-fast);
}

.contact__social-link:hover svg {
  fill: var(--clr-gold);
}

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm) 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 300;
  color: var(--text-primary);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(138, 155, 174, 0.3);
  outline: none;
  transition: border-color var(--duration-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-background: var(--clr-gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.form-group label {
  position: absolute;
  top: var(--space-sm);
  left: 0;
  font-size: var(--fs-body);
  color: var(--clr-silver-dark);
  pointer-events: none;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -14px;
  font-size: var(--fs-label);
  background: var(--clr-gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact__submit {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  border: var(--border-gold);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #CD834D;
  background: transparent;
  transition: background var(--duration-fast),
              color var(--duration-fast),
              transform var(--duration-fast);
  align-self: flex-start;
}

.contact__submit:hover {
  background: rgba(205, 131, 77, 0.1);
  color: #CD834D;
  transform: translateY(-2px);
}

.contact__submit svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform var(--duration-fast);
}

.contact__submit:hover svg {
  transform: translateX(4px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--clr-black);
  padding: var(--space-lg) 0 var(--space-md);
  border-top: 1px solid rgba(205, 131, 77, 0.1);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo {
  display: inline-block;
  height: 50px;
}
.footer__logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.footer__copy {
  font-size: var(--fs-small);
  color: var(--clr-silver-dark);
}

.footer__back-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--duration-fast),
              background var(--duration-fast),
              transform var(--duration-fast);
}

.footer__back-top:hover {
  border-background: var(--clr-gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background: rgba(205, 131, 77, 0.1);
  transform: translateY(-3px);
}

.footer__back-top svg {
  width: 16px;
  height: 16px;
  stroke: var(--clr-silver);
  stroke-width: 2;
  fill: none;
  transition: stroke var(--duration-fast);
}

.footer__back-top:hover svg {
  stroke: var(--clr-gold);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .expertise__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__mobile-menu {
    display: flex;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about__image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
  }

  .expertise__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: var(--space-lg);
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery__item:nth-child(1) {
    grid-column: span 1;
    aspect-ratio: 16/9;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer__inner {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .section-padding {
    padding: var(--space-xl) 0;
  }
}

@media (max-width: 480px) {
  .about__stats {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .hero__name {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .contact__socials {
    justify-content: center;
  }
}
/* ============================================
   PRO FEATURES (Awwwards-level)
   ============================================ */

/* Hide Default Cursor */
body, a, button, input, textarea {
  cursor: none !important;
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1px solid #CD834D;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1), 
              height 0.3s cubic-bezier(0.19, 1, 0.22, 1),
              background 0.3s ease,
              border-color 0.3s ease;
  mix-blend-mode: difference;
}

.custom-cursor.hover {
  width: 60px;
  height: 60px;
  background: rgba(205, 131, 77, 0.2);
  border-color: rgba(205, 131, 77, 0.8);
  backdrop-filter: blur(2px);
}

/* Pre-loader */
.no-scroll {
  overflow: hidden;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #0B0C0C;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1);
}

}

.footer__copy {
  font-size: var(--fs-small);
  color: var(--clr-silver-dark);
}

.footer__back-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--duration-fast),
              background var(--duration-fast),
              transform var(--duration-fast);
}

.footer__back-top:hover {
  border-background: var(--clr-gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background: rgba(205, 131, 77, 0.1);
  transform: translateY(-3px);
}

.footer__back-top svg {
  width: 16px;
  height: 16px;
  stroke: var(--clr-silver);
  stroke-width: 2;
  fill: none;
  transition: stroke var(--duration-fast);
}

.footer__back-top:hover svg {
  stroke: var(--clr-gold);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .expertise__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__mobile-menu {
    display: flex;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about__image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
  }

  .expertise__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: var(--space-lg);
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery__item:nth-child(1) {
    grid-column: span 1;
    aspect-ratio: 16/9;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer__inner {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .section-padding {
    padding: var(--space-xl) 0;
  }
}

@media (max-width: 480px) {
  .about__stats {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .hero__name {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .contact__socials {
    justify-content: center;
  }
}
/* ============================================
   PRO FEATURES (Awwwards-level)
   ============================================ */

/* Hide Default Cursor */
body, a, button, input, textarea {
  cursor: none !important;
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1px solid #CD834D;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1), 
              height 0.3s cubic-bezier(0.19, 1, 0.22, 1),
              background 0.3s ease,
              border-color 0.3s ease;
  mix-blend-mode: difference;
}

.custom-cursor.hover {
  width: 60px;
  height: 60px;
  background: rgba(205, 131, 77, 0.2);
  border-color: rgba(205, 131, 77, 0.8);
  backdrop-filter: blur(2px);
}

/* Pre-loader */
.no-scroll {
  overflow: hidden;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #0B0C0C;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1);
}

.preloader.hide {
  transform: translateY(-100%);
}

.preloader__logo {
  height: 120px;
  width: 200px;
  opacity: 1;
}
.preloader__logo img,
.preloader__logo svg {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

@keyframes pulseLogo {
  0% { opacity: 0.2; filter: blur(4px); }
  100% { opacity: 1; filter: blur(0px); }
}

/* Magnetic Items */
.magnetic {
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

/* Image Mask Reveal */
.image-reveal {
  position: relative;
  overflow: hidden;
}

.image-reveal::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #172633;
  transform-origin: right;
  transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 2;
}

.image-reveal.active::after {
  transform: scaleX(0);
}

/* ============================================
   LUXURY ENHANCEMENTS
   ============================================ */

/* --- 1. Shimmer / Gold Glitter on text --- */
.gold-text,
.hero__label,
.section-label,
.about__stat-number,
.timeline-item__year,
.quote__author {
  position: relative;
  background-size: 200% 100%;
  animation: goldShimmer 4s ease-in-out infinite;
}

@keyframes goldShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* Hero name shimmer overlay */
.hero__name {
  position: relative;
}

.hero__name::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(217, 200, 192, 0.08) 40%,
    rgba(205, 131, 77, 0.15) 50%,
    rgba(217, 200, 192, 0.08) 60%,
    transparent 100%
  );
  animation: nameShimmer 5s cubic-bezier(0.4, 0, 0.2, 1) infinite 2s;
  pointer-events: none;
}

@keyframes nameShimmer {
  0%   { left: -100%; }
  100% { left: 200%; }
}

/* --- 2. Gold Particles Canvas --- */
#hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* --- 3. Lightbox --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-luxury), visibility 0.5s;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 12, 12, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.lightbox__content {
  position: relative;
  z-index: 2;
  max-width: 85vw;
  max-height: 85vh;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.6s var(--ease-luxury);
}

.lightbox.open .lightbox__content {
  transform: scale(1) translateY(0);
}

.lightbox__content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6),
              0 0 60px rgba(205, 131, 77, 0.1);
}

.lightbox__caption {
  text-align: center;
  margin-top: var(--space-md);
}

.lightbox__caption h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 300;
  color: var(--text-primary);
}

.lightbox__caption p {
  font-family: var(--font-accent);
  font-size: var(--fs-body);
  color: var(--clr-silver);
  font-style: italic;
  margin-top: 4px;
}

.lightbox__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 48px;
  height: 48px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(205, 131, 77, 0.3);
  background: rgba(11, 12, 12, 0.6);
  backdrop-filter: blur(10px);
  transition: border-color var(--duration-fast), transform var(--duration-fast), background var(--duration-fast);
  cursor: none !important;
}

.lightbox__close:hover {
  border-color: var(--clr-gold);
  background: rgba(205, 131, 77, 0.15);
  transform: rotate(90deg);
}

.lightbox__close svg {
  width: 20px;
  height: 20px;
  stroke: var(--clr-silver);
  stroke-width: 2;
  fill: none;
  transition: stroke var(--duration-fast);
}

.lightbox__close:hover svg {
  stroke: var(--clr-gold);
}

/* --- 4. Cinematic Section Dividers --- */
.section-divider {
  position: relative;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.section-divider__line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), rgba(217, 200, 192, 0.6), var(--clr-gold), transparent);
  transition: width 1.8s var(--ease-luxury);
}

.section-divider__line.active {
  width: 60%;
}

.section-divider__diamond {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid var(--clr-gold);
  transform: rotate(45deg) scale(0);
  transition: transform 0.8s var(--ease-luxury) 0.6s;
  background: var(--clr-black);
}

.section-divider__diamond.active {
  transform: rotate(45deg) scale(1);
}

.section-divider__diamond::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  transform: translate(-50%, -50%);
  background: var(--clr-gold);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(205, 131, 77, 0.6);
}

/* --- Gallery item glow on hover --- */
.gallery__item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius-sm);
  box-shadow: inset 0 0 0 1px rgba(205, 131, 77, 0);
  transition: box-shadow 0.4s var(--ease-smooth);
  pointer-events: none;
}

.gallery__item:hover::before {
  box-shadow: inset 0 0 0 1px rgba(205, 131, 77, 0.4),
              inset 0 0 30px rgba(205, 131, 77, 0.05);
}

/* ============================================
   CONSULTORÍA SECTION
   ============================================ */
.consultoria {
  position: relative;
  background: linear-gradient(180deg, var(--clr-black) 0%, var(--clr-petrol) 50%, var(--clr-black) 100%);
  overflow: hidden;
}

.consultoria::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(205, 131, 77, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.consultoria__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.consultoria__images {
  display: flex;
  flex-direction: column;
}

.consultoria__video-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 9/16;
  position: relative;
}

.consultoria__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.consultoria__image-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.consultoria__image-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(205, 131, 77, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.consultoria__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.consultoria__image-main:hover img {
  transform: scale(1.04);
}

.consultoria__image-secondary {
  grid-column: 1 / -1;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.consultoria__image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.consultoria__image-secondary:hover img {
  transform: scale(1.04);
}

.consultoria__content {
  position: relative;
  z-index: 2;
}

.consultoria__text {
  font-size: var(--fs-body);
  color: var(--clr-silver);
  margin-bottom: var(--space-lg);
  line-height: 1.9;
}

.consultoria__text strong {
  background: var(--clr-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

.consultoria__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.consultoria__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.consultoria__feature-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 2px;
}

.consultoria__feature-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--clr-gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.consultoria__feature-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.consultoria__feature-desc {
  font-size: var(--fs-small);
  color: var(--clr-silver-dark);
  line-height: 1.5;
}

.consultoria__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--clr-gold) 0%, #A8873F 100%);
  color: var(--clr-black);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--duration-fast) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.consultoria__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s var(--ease-smooth);
}

.consultoria__cta:hover::before {
  left: 100%;
}

.consultoria__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(205, 131, 77, 0.4);
}

.consultoria__cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--duration-fast);
}

.consultoria__cta:hover svg {
  transform: translateX(4px);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
  position: relative;
  background: var(--bg-primary);
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(23, 38, 51, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

.pricing__subtitle {
  font-family: var(--font-accent);
  font-size: var(--fs-body);
  font-style: italic;
  color: var(--clr-silver);
  margin-top: var(--space-sm);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: center;
  position: relative;
  z-index: 2;
}

.pricing-card {
  position: relative;
  background: rgba(23, 38, 51, 0.4);
  border: 1px solid rgba(205, 131, 77, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--duration-fast) var(--ease-smooth);
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(205, 131, 77, 0.3), transparent);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(205, 131, 77, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(205, 131, 77, 0.08);
}

/* Featured Card */
.pricing-card--featured {
  background: rgba(23, 38, 51, 0.6);
  border: 1px solid rgba(205, 131, 77, 0.35);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 60px rgba(205, 131, 77, 0.1);
}

.pricing-card--featured::before {
  height: 3px;
  background: var(--clr-gold-gradient);
}

.pricing-card--featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, var(--clr-gold) 0%, #A8873F 100%);
  color: var(--clr-black);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 0 var(--radius-lg) 0 var(--radius-md);
}

.pricing-card__header {
  margin-bottom: var(--space-md);
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pricing-card__tagline {
  font-family: var(--font-accent);
  font-size: var(--fs-small);
  font-style: italic;
  color: var(--clr-silver-dark);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-md);
}

.pricing-card__currency {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--clr-gold);
}

.pricing-card__amount {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  background: var(--clr-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.pricing-card__period {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--clr-silver-dark);
}

.pricing-card__divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  margin: 0 auto var(--space-md);
}

.pricing-card__features {
  text-align: left;
  margin-bottom: var(--space-lg);
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: var(--fs-small);
  color: var(--clr-silver);
  border-bottom: 1px solid rgba(205, 131, 77, 0.06);
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

.pricing-card__features svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--clr-gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-card__cta {
  display: inline-block;
  width: 100%;
  padding: 16px 24px;
  border: 1px solid rgba(205, 131, 77, 0.4);
  color: var(--clr-gold);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  border-radius: 4px;
  transition: all var(--duration-fast) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.pricing-card__cta:hover {
  background: rgba(205, 131, 77, 0.1);
  border-color: var(--clr-gold);
  transform: translateY(-2px);
}

.pricing-card__cta--featured {
  background: linear-gradient(135deg, var(--clr-gold) 0%, #A8873F 100%);
  color: var(--clr-black);
  border: none;
  font-weight: 600;
}

.pricing-card__cta--featured:hover {
  background: linear-gradient(135deg, #D9C8C0 0%, var(--clr-gold) 100%);
  box-shadow: 0 8px 30px rgba(205, 131, 77, 0.4);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  position: relative;
  background: linear-gradient(180deg, var(--clr-petrol) 0%, var(--clr-black) 100%);
  overflow: hidden;
}

.testimonials__carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.testimonials__track {
  display: flex;
  gap: var(--space-md);
  animation: testimonialScroll 40s linear infinite;
  width: max-content;
}

.testimonials__track:hover {
  animation-play-state: paused;
}

@keyframes testimonialScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - var(--space-md) / 2)); }
}

.testimonial-card {
  flex-shrink: 0;
  width: 420px;
  max-width: 90vw;
  background: rgba(23, 38, 51, 0.5);
  border: 1px solid rgba(205, 131, 77, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(205, 131, 77, 0.3);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  background: var(--clr-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: -1rem;
  opacity: 0.6;
}

.testimonial-card__text {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--clr-silver);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(205, 131, 77, 0.1);
}

.testimonial-card__author-info h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}

.testimonial-card__author-info p {
  font-size: var(--fs-small);
  color: var(--clr-silver-dark);
}

/* ============================================
   PRENSA / MEDIA SECTION
   ============================================ */
.prensa {
  position: relative;
  background: var(--bg-primary);
  overflow: hidden;
}

/* legacy rule removed */

.prensa__logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 1;
  transition: opacity var(--duration-fast);
}

.prensa__logo-item:hover {
  opacity: 1;
}

.prensa__logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 1px;
  background: var(--clr-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all var(--duration-fast);
}

.prensa__logo-item:hover .prensa__logo-text {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
}

/* Press Gallery */
.prensa__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: var(--space-sm);
}

.prensa__gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.prensa__gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.prensa__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

/* Item 1 wide: desk woman looking down — face in center of frame */
#press-gallery-1 img { object-position: center 62%; }
/* Item 5 wide: Taller Mentoría poster — face in upper third */
#press-gallery-5 img { object-position: center 20%; }
/* Item 6: woman leaning over floor plans — head at top of frame */
#press-gallery-6 img { object-position: center 15%; }
/* Item 7: TV studio set — show the women at bottom of frame */
#press-gallery-7 img { object-position: center 80%; }
/* Item 9: Capitol building — Marleen is at the very bottom of the photo */
#press-gallery-9 img { object-position: center bottom; }

.prensa__gallery-item:hover img {
  transform: scale(1.06);
}

.prensa__gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(0deg, rgba(11, 12, 12, 0.9) 0%, rgba(11, 12, 12, 0.4) 60%, transparent 100%);
  transform: translateY(30%);
  opacity: 0;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.prensa__gallery-item:hover .prensa__gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.prensa__gallery-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--clr-gold) 0%, #A8873F 100%);
  color: var(--clr-black);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 8px;
}

.prensa__gallery-overlay h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.prensa__gallery-overlay p {
  font-size: var(--fs-small);
  color: var(--clr-silver);
}

/* Glow on hover for press gallery items */
.prensa__gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius-sm);
  box-shadow: inset 0 0 0 1px rgba(205, 131, 77, 0);
  transition: box-shadow 0.4s var(--ease-smooth);
  pointer-events: none;
}

.prensa__gallery-item:hover::before {
  box-shadow: inset 0 0 0 1px rgba(205, 131, 77, 0.4),
              inset 0 0 30px rgba(205, 131, 77, 0.05);
}

.prensa__gallery-overlay {
  z-index: 2;
}

/* ============================================
   FORM SELECT STYLING (New)
   ============================================ */
.form-group select {
  width: 100%;
  padding: 16px 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text-primary);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(205, 131, 77, 0.2);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color var(--duration-fast);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23CD834D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}

.form-group select:focus {
  border-bottom-color: var(--clr-gold);
}

.form-group select + label {
  top: -12px;
  font-size: var(--fs-label);
  color: var(--clr-gold);
}

.form-group select option {
  background: var(--clr-petrol);
  color: var(--text-primary);
  padding: 8px;
}

/* ============================================
   RESPONSIVE — NEW SECTIONS
   ============================================ */
@media (max-width: 920px) {
  .consultoria__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .consultoria__images {
    order: -1;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing-card--featured {
    transform: scale(1);
  }

  .pricing-card--featured:hover {
    transform: translateY(-8px);
  }

  .prensa__gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .prensa__gallery-item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__mobile-menu {
    display: flex;
  }

  .prensa__logos {
    gap: var(--space-sm) var(--space-md);
  }

  .testimonial-card {
    width: 320px;
  }
}

@media (max-width: 544px) {
  .prensa__gallery {
    grid-template-columns: 1fr;
  }

  .prensa__gallery-item--wide {
    grid-column: span 1;
    aspect-ratio: 16/9;
  }

  .prensa__gallery-item {
    aspect-ratio: 4/3;
  }

  .consultoria__images {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    width: 280px;
    padding: var(--space-md);
  }
}




/* ============================================
   TOP WORLD / AWWWARDS ELEVATION
   ============================================ */

/* ---------- 1. Aurora Gradient (Hero) ---------- */
.hero__aurora {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(ellipse at 50% 50%, rgba(205, 131, 77, 0.15), transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(23, 38, 51, 0.4), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(86, 39, 26, 0.3), transparent 50%);
  background-size: 100% 100%;
  animation: auroraFlow 20s ease-in-out infinite alternate;
  z-index: 1;
  pointer-events: none;
  filter: blur(40px);
}

@keyframes auroraFlow {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(10deg) scale(1.1) translateX(5%); }
  100% { transform: rotate(-5deg) scale(1.05) translateY(-5%); }
}

/* Adjust hero content z-index */
.hero__content, .hero__scroll, #hero-particles {
  z-index: 2;
}

/* ---------- 2. Text Reveal (SplitText Effect) ---------- */
.split-text {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.char {
  transform: translateY(110%);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  display: inline-block;
}

.split-text.active .char {
  transform: translateY(0);
}

/* Base override for animated text */
.hero__label.split-text,
.hero__name.split-text,
.hero__subtitle.split-text,
.section-title.split-text {
  opacity: 1;
  animation: none;
}

/* ---------- 3. About Section — Tony Robbins Inspired ---------- */
.about-tr {
  padding: var(--space-2xl) var(--space-lg);
  background: var(--clr-bg);
}

.about-tr__card {
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: #1a1612;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

/* --- Image Column --- */
.about-tr__image-col {
  position: relative;
  background: linear-gradient(135deg, #2c1e10 0%, #1a3a5c 50%, #0d1b2a 100%);
  min-height: 400px;
  overflow: hidden;
}

.about-tr__image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 0.6s ease;
}

.about-tr__card:hover .about-tr__image-col img {
  transform: scale(1.03);
}

/* --- Text Column --- */
.about-tr__text-col {
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-tr__text-col .section-label {
  color: var(--clr-gold);
  margin-bottom: var(--space-sm);
}

.about-tr__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--clr-white-pure);
  margin-bottom: var(--space-md);
}

.about-tr__heading em {
  font-style: italic;
  color: var(--clr-gold);
}

.about-tr__body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--clr-silver-light);
  margin-bottom: var(--space-sm);
}

.about-tr__body strong {
  color: var(--clr-white-pure);
  font-weight: 600;
}

/* --- CTA Button --- */
.about-tr__cta {
  display: inline-block;
  margin-top: var(--space-md);
  padding: 16px 36px;
  background: var(--clr-white-pure);
  color: #0d0d0d;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.about-tr__cta:hover {
  background: var(--clr-gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(205, 131, 77, 0.3);
}

/* --- Stats Row --- */
.about-tr__stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  max-width: 1400px;
  margin: var(--space-xl) auto 0;
  padding: var(--space-lg) 0;
}

.about-tr__stat {
  text-align: center;
}

.about-tr__stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400;
  color: var(--clr-white-pure);
  line-height: 1;
}

.about-tr__stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-silver-dark);
  margin-top: var(--space-xs);
}

.about-tr__stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
}

/* --- Desktop: Side-by-side asymmetric layout --- */
@media (min-width: 992px) {
  .about-tr__card {
    flex-direction: row;
    min-height: 600px;
  }
  
  .about-tr__image-col {
    flex: 0 0 60%;
    min-height: auto;
  }
  
  .about-tr__text-col {
    flex: 1;
    padding: var(--space-2xl) var(--space-xl);
  }
}

/* --- Mobile adjustments --- */
@media (max-width: 991px) {
  .about-tr {
    padding: var(--space-xl) var(--space-md);
  }
  
  .about-tr__image-col {
    min-height: 350px;
  }
  
  .about-tr__stats-row {
    gap: var(--space-md);
    flex-wrap: wrap;
  }
  
  .about-tr__stat-divider {
    display: none;
  }
}

/* ---------- 4. 3D Tilt Effect Utility ---------- */
.tilt-element {
  transform-style: preserve-3d;
  transform: perspective(1000px);
}
.tilt-element > * {
  transform: translateZ(30px);
}
.pricing-card.tilt-element:hover, .expertise-card.tilt-element:hover {
  transform: none; 
}

/* ---------- 5. Seamless Marquee (Prensa) ---------- */
.prensa__logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl) var(--space-2xl);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(23, 38, 51, 0.2);
}

.prensa__logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-md);
  transition: opacity 0.3s var(--ease-luxury);
}

.prensa__logo-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--clr-silver);
  text-transform: uppercase;
  letter-spacing: 4px;
  opacity: 0.6;
  transition: opacity var(--duration-fast), color var(--duration-fast);
}

.prensa__logo-item:hover .prensa__logo-text {
  opacity: 1;
  color: var(--clr-gold);
}


/* Adjustments for sticky trajectory — when timeline visible */
@media (min-width: 992px) {
  .achievements .container:has(.achievements__timeline--mobile:not([style*="display:none"])) {
    display: flex;
    gap: var(--space-2xl);
    align-items: flex-start;
  }
  .achievements .container:has(.achievements__timeline--mobile:not([style*="display:none"])) .achievements__header {
    flex: 0 0 35%;
    position: sticky;
    top: calc(var(--nav-height) + var(--space-xl));
  }
  .achievements__timeline {
    flex: 1;
    margin: 0;
    min-width: 0;
  }
}

/* Growth chart: header stacked above, chart full-width */
@media (min-width: 861px) {
  .achievements .container {
    display: block !important;
  }
  .achievements__header {
    margin-bottom: var(--space-xl);
    max-width: 600px;
    position: static !important;
  }
  .achievements__chart {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }
}

/* ============================================
   HERO — CTA BUTTONS
   ============================================ */
.hero__ctas {
  display: flex;
  gap: var(--space-md);
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
  opacity: 0;
  animation: fadeUp 1s var(--ease-luxury) 2s forwards;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--duration-fast) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.hero__cta--primary {
  background: linear-gradient(135deg, var(--clr-gold) 0%, #A8873F 100%);
  color: var(--clr-black);
}

.hero__cta--primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s var(--ease-smooth);
}

.hero__cta--primary:hover::before { left: 100%; }

.hero__cta--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(205, 131, 77, 0.4);
}

.hero__cta--secondary {
  border: 1px solid rgba(205, 131, 77, 0.5);
  color: var(--clr-gold);
  background: transparent;
}

.hero__cta--secondary:hover {
  background: rgba(205, 131, 77, 0.08);
  border-color: var(--clr-gold);
  transform: translateY(-3px);
}

/* ============================================
   VISIÓN SECTION
   ============================================ */
.vision {
  position: relative;
  background: linear-gradient(180deg, var(--clr-black) 0%, #0d1a24 50%, var(--clr-black) 100%);
  overflow: hidden;
}

.vision::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at 50% 20%, rgba(205, 131, 77, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.vision__statement {
  font-family: var(--font-accent);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-style: italic;
  color: var(--clr-silver);
  max-width: 720px;
  margin: var(--space-lg) auto 0;
  line-height: 1.9;
  text-align: center;
}

.vision__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.vision__pillar {
  position: relative;
  padding: var(--space-lg) var(--space-md);
  border: var(--border-subtle);
  border-top: 2px solid var(--clr-gold);
  background: rgba(23, 38, 51, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast), transform var(--duration-fast);
}

.vision__pillar:hover {
  border-color: rgba(205, 131, 77, 0.25);
  border-top-color: var(--clr-gold-light);
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px);
}

.vision__pillar-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1;
  background: var(--clr-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: var(--space-sm);
  opacity: 0.5;
}

.vision__pillar-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.vision__pillar-title em {
  font-style: italic;
  display: block;
  background: var(--clr-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vision__pillar-desc {
  font-size: var(--fs-body);
  color: var(--clr-silver);
  line-height: 1.8;
}

.vision__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-primary);
  max-width: 680px;
  margin: 0 auto var(--space-sm);
  line-height: 1.5;
}

.vision__quote em {
  background: var(--clr-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.vision__quote-attr {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  letter-spacing: 3px;
  color: var(--clr-silver-dark);
  text-transform: uppercase;
}

/* ============================================
   VIDEO / MEDIOS SECTION
   ============================================ */
.media-videos {
  position: relative;
  background: linear-gradient(180deg, var(--clr-petrol) 0%, var(--clr-black) 100%);
  overflow: hidden;
}

.media-videos__subtitle {
  font-family: var(--font-accent);
  font-size: var(--fs-body);
  font-style: italic;
  color: var(--clr-silver);
  margin-top: var(--space-sm);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.videos__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  align-items: start;
}

.video-card {
  position: relative;
  cursor: pointer;
}

.video-card--featured .video-card__thumbnail {
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.video-card__thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.video-card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.video-card:hover .video-card__thumbnail img {
  transform: scale(1.05);
}

.video-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 12, 12, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-fast);
}

.video-card:hover .video-card__overlay {
  background: rgba(11, 12, 12, 0.2);
}

.video-card__play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(205, 131, 77, 0.12);
  border: 2px solid var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  transition: all var(--duration-fast) var(--ease-smooth);
  backdrop-filter: blur(10px);
}

.video-card__play svg {
  width: 26px;
  height: 26px;
  margin-left: 4px;
}

.video-card:hover .video-card__play {
  background: var(--clr-gold);
  color: var(--clr-black);
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(205, 131, 77, 0.4);
}

.video-card__play--sm {
  width: 44px;
  height: 44px;
}

.video-card__play--sm svg {
  width: 16px;
  height: 16px;
  margin-left: 3px;
}

.video-card__info {
  padding: var(--space-sm) 0;
}

.video-card__channel {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--clr-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 6px;
}

.video-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.video-card--featured .video-card__title {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}

.video-card__desc {
  font-size: var(--fs-body);
  color: var(--clr-silver);
  line-height: 1.7;
}

.videos__side {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.videos__side .video-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: var(--space-sm);
  align-items: start;
  background: rgba(23, 38, 51, 0.3);
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: var(--space-sm);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.videos__side .video-card:hover {
  border-color: rgba(205, 131, 77, 0.3);
  box-shadow: var(--shadow-gold);
}

.video-card__thumbnail--small {
  aspect-ratio: 16/9;
  border-radius: 6px;
}

.videos__side .video-card__title {
  font-size: 0.95rem;
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-luxury), visibility 0.4s;
}

.video-modal.open {
  opacity: 1;
  visibility: visible;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 12, 12, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.video-modal__content {
  position: relative;
  z-index: 2;
  width: 90vw;
  max-width: 1000px;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.5s var(--ease-luxury);
}

.video-modal.open .video-modal__content {
  transform: scale(1) translateY(0);
}

.video-modal__iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--clr-black);
  min-height: 200px;
}

.video-modal__iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal__meta {
  padding: var(--space-sm) 0;
}

.video-modal__channel {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--clr-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 4px;
}

.video-modal__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 300;
  color: var(--text-primary);
}

.video-modal__close {
  position: absolute;
  top: -56px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(205, 131, 77, 0.3);
  background: rgba(11, 12, 12, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast);
  cursor: pointer;
}

.video-modal__close:hover {
  border-color: var(--clr-gold);
  background: rgba(205, 131, 77, 0.15);
  transform: rotate(90deg);
}

.video-modal__close svg {
  width: 20px;
  height: 20px;
  stroke: var(--clr-silver);
  stroke-width: 2;
  fill: none;
  transition: stroke var(--duration-fast);
}

.video-modal__close:hover svg {
  stroke: var(--clr-gold);
}

/* ============================================
   LEAD MAGNET SECTION
   ============================================ */
.lead-magnet {
  position: relative;
  background: linear-gradient(180deg, var(--clr-black) 0%, var(--clr-petrol) 50%, var(--clr-black) 100%);
  overflow: hidden;
}

.lead-magnet::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(205, 131, 77, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.lead-magnet__card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-xl);
  align-items: center;
}

.lead-magnet__text {
  font-size: var(--fs-body);
  color: var(--clr-silver);
  margin: var(--space-md) 0 var(--space-lg);
  line-height: 1.9;
}

.lead-magnet__benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--space-lg);
}

.lead-magnet__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-body);
  color: var(--clr-silver);
}

.lead-magnet__benefits svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--clr-gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lead-magnet__form {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.lead-magnet__form input {
  flex: 1;
  padding: 15px 20px;
  background: rgba(23, 38, 51, 0.5);
  border: var(--border-gold);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  outline: none;
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.lead-magnet__form input::placeholder {
  color: var(--clr-silver-dark);
}

.lead-magnet__form input:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 2px rgba(205, 131, 77, 0.1);
}

.lead-magnet__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: linear-gradient(135deg, var(--clr-gold) 0%, #A8873F 100%);
  color: var(--clr-black);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-smooth);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.lead-magnet__btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s var(--ease-smooth);
}

.lead-magnet__btn:hover::before { left: 100%; }

.lead-magnet__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(205, 131, 77, 0.4);
}

.lead-magnet__btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.lead-magnet__disclaimer {
  font-size: var(--fs-label);
  letter-spacing: 1px;
  color: var(--clr-silver-dark);
}

/* Book Visual */
.lead-magnet__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--space-lg) 0;
}

.lead-magnet__book {
  position: relative;
  perspective: 800px;
}

.lead-magnet__book-cover {
  display: flex;
  position: relative;
  transform: rotateY(-20deg) rotateX(5deg);
  transition: transform 0.6s var(--ease-luxury);
  box-shadow: 20px 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(205, 131, 77, 0.1);
}

.lead-magnet__visual:hover .lead-magnet__book-cover {
  transform: rotateY(-10deg) rotateX(3deg) translateY(-8px);
}

.lead-magnet__book-spine {
  width: 28px;
  background: linear-gradient(135deg, #3a2008 0%, var(--clr-gold-dark) 50%, #3a2008 100%);
  border-radius: 3px 0 0 3px;
  flex-shrink: 0;
}

.lead-magnet__book-face {
  width: 210px;
  min-height: 280px;
  background: linear-gradient(160deg, #0d1a24 0%, #0B0C0C 60%, #172633 100%);
  border: 1px solid rgba(205, 131, 77, 0.3);
  border-radius: 0 6px 6px 0;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.lead-magnet__book-face::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(205, 131, 77, 0.07) 0%, transparent 50%);
}

.lead-magnet__book-face::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--clr-gold-gradient);
}

.lead-magnet__book-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  background: var(--clr-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  position: relative;
  z-index: 1;
}

.lead-magnet__book-label {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-primary);
  display: block;
  position: relative;
  z-index: 1;
  margin-top: -8px;
  margin-bottom: var(--space-sm);
}

.lead-magnet__book-divider {
  width: 40px;
  height: 1px;
  background: var(--clr-gold);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.lead-magnet__book-sub,
.lead-magnet__book-sub2 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-silver);
  display: block;
  position: relative;
  z-index: 1;
  line-height: 1.9;
}

.lead-magnet__book-author {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--clr-gold);
  display: block;
  margin-top: var(--space-sm);
  position: relative;
  z-index: 1;
}

.lead-magnet__book-shadow {
  position: absolute;
  bottom: -15px;
  left: 15px;
  right: -5px;
  height: 35px;
  background: rgba(0,0,0,0.35);
  filter: blur(12px);
  border-radius: 50%;
}

.lead-magnet__glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(205, 131, 77, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-btn {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #172633;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(23, 38, 51, 0.4);
  transition: transform var(--duration-fast) var(--ease-smooth), box-shadow var(--duration-fast);
}

.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  position: relative;
  z-index: 1;
}

.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(23, 38, 51, 0.6);
}

.whatsapp-btn__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(23, 38, 51, 0.35);
  animation: whatsappPulse 2.5s ease-out infinite;
}

@keyframes whatsappPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ============================================
   RESPONSIVE — NUEVAS SECCIONES
   ============================================ */
@media (max-width: 920px) {
  .vision__pillars {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .videos__grid {
    grid-template-columns: 1fr;
  }

  .lead-magnet__card {
    grid-template-columns: 1fr;
  }

  .lead-magnet__visual {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    justify-content: center;
    text-align: center;
  }
  .hero__content {
    max-width: 100%;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }
  .hero__gold-line {
    margin: var(--space-md) auto;
    background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  }
  .hero__ctas {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }

  .hero__cta {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .videos__side .video-card {
    grid-template-columns: 110px 1fr;
  }

  .lead-magnet__form {
    flex-direction: column;
  }

  .whatsapp-btn {
    bottom: var(--space-md);
    right: var(--space-md);
    width: 52px;
    height: 52px;
  }
}

/* ── Testimonial Avatars ─────────────────────────────────── */
.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--av-bg, #1e3a4a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(205, 131, 77, 0.2);
}

.testimonial-card__avatar::before {
  content: attr(data-initials);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--clr-gold) 0%, #A8873F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* ── Press Logo Images ───────────────────────────────────── */
.prensa__logo-img {
  height: 26px;
  width: auto;
  max-width: 160px;
  display: block;
  opacity: 0.65;
  transition: opacity 0.35s var(--ease-luxury), filter 0.35s var(--ease-luxury);
}

.prensa__logo-item:hover .prensa__logo-img {
  opacity: 1;
  filter: sepia(1) saturate(3) hue-rotate(5deg) brightness(1.1);
}
