/* styles.css - completo y consolidado
   - Zamora @font-face
   - HERO (centrado verticalmente)
   - QUIENES (fondo img-quienessomos.jpg + tarjeta)
   - EXPERIENCIAS (video background, poster fallback)
   - PRODUCTOS / EVENTOS (background images)
   - product cards, modal, grids, footer
*/

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Zamora';
  src: url('Zamora-Regular.ttf') format('truetype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Quentin';
  src: url('Quentin.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Satoshi Font Family - Local */
@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Variables ---------- */
:root{
  --black: #000;
  --bg-dark: #070507;
  --muted: #F5F0FA;
  --accent-orange: #FF7A18;
  --accent-violet: #7B2FF7;
  --primary-violet: #AE57C0;
  --dark-violet: #8B3FA8;
  --light-violet: #C77DD4;
  --max-width: 1400px;
  --header-h: 45px;
  --radius: 20px;
  --radius-lg: 32px;
  --glass-1: rgba(255,255,255,0.12);
  --glass-2: rgba(255,255,255,0.06);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.16);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.24);
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 32px;
  --spacing-lg: 64px;
  --spacing-xl: 96px;
}

/* ---------- Base / Reset ---------- */
*{box-sizing:border-box}
html{
  scroll-behavior: smooth;
}
html,body{
  height:100%; 
  margin:0; 
  font-family:"Satoshi",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif; 
  color:#fff; 
  background:#000; 
  -webkit-font-smoothing:antialiased; 
  -moz-osx-font-smoothing:grayscale;
  font-size: 16px;
  line-height: 1.6;
}
a{
  color:inherit;
  text-decoration: none;
  transition: all 300ms ease;
}
a:hover{
  opacity: 0.85;
}
p{
  font-family:"Satoshi"; 
  font-weight:400; 
  line-height:1.75;
  margin: 0 0 1em 0;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
}
h1, h2, h3, h4, h5, h6{
  font-family: 'Zamora', serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}
.container{
  max-width:var(--max-width); 
  margin:0 auto; 
  padding:0 var(--spacing-md);
}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

/* ---------- Header ---------- */
.site-header{
  position:fixed;
  inset:0 0 auto 0;
  height:var(--header-h);
  z-index:110;
  display:flex;
  align-items:center;
  border-bottom:1px solid transparent;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: transparent;
}

/* Transparent on scroll down */
.site-header.scroll-down{
  background: transparent;
  border-bottom: 1px solid transparent;
}

.site-header.scroll-down .logo-img,
.site-header.scroll-down .main-nav a{
  color: #fff !important;
  filter: brightness(0) invert(1);
}

.site-header.scroll-down .main-nav a{
  filter: none;
  color: #fff !important;
}

.site-header.scroll-down .hamburger .bar{
  background: #fff;
}

/* Black on scroll up or hover */
.site-header.scroll-up,
.site-header:hover{
  background: rgba(0,0,0,0.95);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.site-header.scroll-up .logo-img,
.site-header:hover .logo-img{
  filter: brightness(0) invert(1);
}

.site-header.scroll-up .main-nav a,
.site-header:hover .main-nav a{
  color: #fff !important;
}

.site-header.scroll-up .hamburger .bar,
.site-header:hover .hamburger .bar{
  background: #fff;
}

/* White background for Nude style */
.page-index .site-header{
  background: transparent;
  border-bottom: 1px solid transparent;
}

.site-header::before{
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: -1;
  transition: opacity 400ms ease;
}

.header-inner{
  width:100%;
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 var(--spacing-md);
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
  z-index:1;
}

.logo{
  display:flex;
  gap:12px;
  align-items:center;
  text-decoration:none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 4px;
  border-radius: 12px;
  opacity: 1;
  visibility: visible;
}

.logo:hover{
  transform: translateY(-2px);
  background: rgba(174,87,192,0.05);
}

.logo-img{
  height: 18px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all 300ms ease;
}

.page-index .logo-img{
  filter: brightness(0) invert(1); /* White logo on index */
}

.logo:hover .logo-img{
  opacity: 0.8;
}

/* Header title - completely hidden, we use logo instead */
.header-title{
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Hide header title on index page (uses hero scroll effect instead) */
.page-index .header-title{
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Header title fades out in place (no movement) */
@keyframes fadeOutPlace {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.main-nav{
  display:flex; 
  gap:8px; 
  font-family:'Satoshi', sans-serif; 
  font-weight:700;
  font-size: 13px;
  letter-spacing: -0.01em;
}

.main-nav a{
  padding:8px 16px; 
  color:#fff;
  text-decoration:none;
  position: relative;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
}

.page-index .main-nav a{
  color: #fff; /* White text by default (transparent header) */
}

.main-nav a::before{
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(174,87,192,0.08);
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 250ms ease;
}

.main-nav a:hover::before{
  opacity: 1;
}

.main-nav a:hover{
  transform: translateY(-2px);
  color: var(--primary-violet);
}

/* Hamburger hidden on desktop by default */
.hamburger{display:none}

/* main spacing */
main{padding-top: var(--header-h);} /* Account for fixed header */

/* ================= SECTIONS ================= */
.section-black{
  background: #000;
  padding: var(--spacing-xl) 0;
  position: relative;
}

/* Meditaciones page specific background */
body:has([class*="meditation-"]) .section-black,
.meditation-section .section-black {
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('meditation-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.section-title{
  font-family: 'Zamora', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 var(--spacing-md) 0;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.lead{
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ================= HERO ================= */
/* Hero fills viewport minus header so content centers vertically with no extra white gap */
.hero{
  position:relative;
  min-height: calc(100vh - var(--header-h));
  height: calc(100vh - var(--header-h));
  background: #000;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:visible;
}
.hero-bg{
  position:absolute; 
  inset:0; 
  z-index:0; 
  background: #000;
  opacity: 1;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}
.hero-inner{
  position:relative;
  z-index:2;
  width:100%;
  max-width:var(--max-width);
  margin:0 auto;
  padding: 0 28px;
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:center;
  text-align:center;
  justify-content:center;
}

/* TITLE - Proyecto Guiarte (large, scales down on scroll) */
.hero-title{
  margin:0;
  font-family:'Zamora', 'Fredoka One', cursive;
  font-size: clamp(48px, 10vw, 120px);
  line-height:0.95;
  color: var(--accent-orange); /* fallback */
  transition: all 800ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: translateY(0) scale(1);
  white-space: nowrap;
  position: relative;
  padding: 0 20px;
  overflow: visible;
}

/* gradient-as-text only if supported (avoids rectangle fallback) */
@supports ((-webkit-background-clip:text) or (background-clip:text)) {
  .hero-title{
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-violet));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

/* Hero Logo Image */
.hero-logo{
  max-width: 80vw;
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.3));
  transition: all 800ms cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInScale 1s ease-out;
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* SUBTITLE and REDES */
.hero-sub{
  margin:10px 0 0 0;
  font-family: 'Satoshi', sans-serif;
  font-weight:400;
  color: #fff;
  font-size: clamp(18px, 2.5vw, 24px);
  white-space:nowrap;
  transition: all 600ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  animation: fadeInUp 1s ease-out 0.3s both;
  letter-spacing: -0.01em;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-follow{margin-top:24px; display:flex; gap:12px; align-items:center; justify-content:center; flex-direction:column}
.hero-follow-text{margin:0; font-weight:600}
.hero-icons{display:flex; gap:12px}

.icon{
  width:48px; 
  height:48px; 
  display:inline-flex; 
  align-items:center; 
  justify-content:center; 
  border-radius:var(--radius); 
  background:rgba(255,255,255,0.08);
  transition: all 300ms ease;
  backdrop-filter: blur(8px);
}

.icon:hover{
  background:rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.social-logo{
  width:24px; 
  height:24px; 
  display:block; 
  object-fit:contain;
  filter: brightness(0) invert(1);
}

.socials{
  display:flex; 
  gap:16px; 
  align-items:center;
}

.socials a{
  display:flex; 
  align-items:center; 
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:var(--radius);
  background:rgba(255,255,255,0.08);
  transition: all 300ms ease;
  backdrop-filter: blur(8px);
}

.socials a:hover{
  background:rgba(255,255,255,0.15);
  transform: translateY(-3px) scale(1.05);
}

.footer-logo{
  width:22px; 
  height:22px; 
  object-fit:contain;
  filter: brightness(0) invert(1);
  transition: all 300ms ease;
}

.socials a:hover .footer-logo{
  transform: scale(1.1);
}

/* SCROLLED state: hero title hides on scroll down */
.hero.scrolled.scroll-down .hero-title{
  opacity: 0;
  transform: translateY(-30px) scale(0.9);
  pointer-events: none;
  transition: all 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hero title visible again on scroll up */
.hero.scrolled.scroll-up .hero-title{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition: all 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Header title fades in at its position (no movement) */
@keyframes fadeInPlace {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero.scrolled .hero-sub{
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* ================ QUIENES SOMOS (with background image) ================ */
#quienes{
  background-image: url('img-quienessomos.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
}
.quienes-card{
  max-width:920px;
  margin:0 auto;
  padding:28px;
  border-radius:16px;
  background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.28));
  border:1px solid rgba(255,255,255,0.03);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}
.quienes-card .section-title{font-size:28px; margin:0 0 12px 0; font-family:'Zamora'}
.quienes-card .lead{color:rgba(255,255,255,0.95); margin-bottom:12px}

/* ================ EXPERIENCIAS (video bg) ================ */
.section-media{
  min-height:73vh;
  width:100%;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
}
.section-experiencias{background-color:#000;}
.section-experiencias .bg-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
  display:block;
}
.section-experiencias .media-content{position:relative; z-index:2; padding:42px 24px; color:#fff}

/* ================ PRODUCTOS & EVENTOS (image backgrounds) ================ */
.section-productos{background-image: url('img-productos.jpg');}
.section-meditaciones{background-image: url('img-meditaciones.jpg');}
.section-eventos{background-image: url('img-eventos.jpg');}

/* ================ EXPERIENCIAS SECTIONS (image backgrounds) ================ */
.section-exp-creativos{background-image: url('img-exp-creativos.jpg');}
.section-exp-autoconocimiento{background-image: url('img-exp-autoconocimiento.jpg');}
.section-exp-yoga{background-image: url('img-exp-yoga.jpg');}
.section-exp-meditacion{background-image: url('img-exp-meditacion.jpg');}
.section-exp-orientacion{background-image: url('img-exp-orientacion.jpg');}
.section-exp-retiros{background-image: url('img-exp-retiros.jpg');}

/* ================ EVENTOS SECTIONS (image backgrounds) ================ */
.section-evento-oraculos{background-image: url('img-evento-oraculos.jpg');}
.section-evento-manifestacion{background-image: url('img-evento-manifestacion.jpg');}
.section-evento-coffee-rave{background-image: url('img-evento-coffee-rave.jpg');}

/* media-content common */
.media-content{position:relative; z-index:2; padding:42px 24px; color:#fff; text-align:center}
.media-title{font-size: clamp(36px, 7vw, 72px); margin:0; font-weight:800}
.media-title.zamora{font-family:'Zamora'}
.media-sub{margin-top:16px}
.media-sub .link{display:inline-block; margin-top:10px; color:rgba(255,255,255,0.92); text-decoration:none; font-weight:600; font-size: clamp(18px, 2vw, 22px)}
.media-description{
  font-family: "Satoshi", "Inter", system-ui;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6;
  max-width: 800px;
  margin: 20px auto 0;
  color: rgba(255,255,255,0.95);
  font-weight: 400;
}

/* ================ PRODUCTS / CARDS / MODAL ================ */
.section-products{padding:36px 0 80px}
.page-title{font-size:28px; margin:0 0 18px; font-family:'Zamora'}
.cards{display:grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap:18px; max-width:100%}
.card{position:relative; border-radius:12px; overflow:hidden; background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.006)); border:1px solid rgba(255,255,255,0.03); max-width:100%}
.card-media{width:100%; height:180px; background-size:cover; background-position:center; position:relative}
.card figcaption{padding:14px}

/* Badge overlay on image */
.badge-overlay{
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-block;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.badge{display:inline-block; background:rgba(0,0,0,0.6); color:#fff; padding:6px 10px; border-radius:8px; font-weight:700; margin-right:8px}
.coming-cta{margin-top:10px; display:flex; gap:10px; align-items:center}
.btn-buy{
  background: #8B3FA8;
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 200ms ease;
  margin: 16px auto 0;
  display: block;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.btn-buy:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  background: #1a1a1a;
}
.btn-buy:active{transform: translateY(0) scale(0.98)}
.btn-primary{
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-violet));
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 200ms ease;
}
.btn-primary:hover{opacity: 0.9}
.btn-primary:active{transform: scale(0.98)}

/* modal */
.modal{position:fixed; inset:0; display:none; align-items:center; justify-content:center; background:rgba(0,0,0,0.9); z-index:300}
.modal.open, .modal.active{display:flex}
.modal-dialog{background:#1a1a1a; border-radius:12px; padding:22px; width:100%; max-width:480px; max-height:90vh; box-shadow:0 12px 48px rgba(0,0,0,0.6); position: relative; display: flex; flex-direction: column;}
.modal-close{position:absolute; right:18px; top:18px; background:transparent; border:none; color:#fff; font-size:20px; cursor:pointer; transition: transform 200ms ease;}
.modal-close:hover{transform: scale(1.2);}
.modal input{width:100%; padding:12px 14px; border-radius:8px; border:1px solid rgba(255,255,255,0.06); background:rgba(255,255,255,0.02); color:#fff; margin-bottom:12px}
.modal input:focus{outline: 2px solid rgba(255,255,255,0.3); background:rgba(255,255,255,0.05);}
#cartItems{max-height: 50vh; overflow-y: auto; margin: 16px 0; padding-right: 8px;}
#cartItems::-webkit-scrollbar{width: 8px;}
#cartItems::-webkit-scrollbar-track{background: rgba(255,255,255,0.05); border-radius: 4px;}
#cartItems::-webkit-scrollbar-thumb{background: rgba(255,255,255,0.2); border-radius: 4px;}
#cartItems::-webkit-scrollbar-thumb:hover{background: rgba(255,255,255,0.3);}
.msg{
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

/* ================ EXPERIENCIAS GRID ================ */
.exper-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:24px}
.exper-card{background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.006)); border-radius:12px; padding:18px; min-height:160px; border:1px solid rgba(255,255,255,0.03)}
.exper-card h3{margin:0 0 8px 0; font-size:1.05rem; font-family:'Zamora'}
.exper-card p{margin:0; color:rgba(255,255,255,0.92)}

/* ================ EVENTS GRID ================ */
.events-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:18px}
.event-card{min-height:240px; border-radius:12px; overflow:hidden; background-size:cover; background-position:center; display:flex; align-items:flex-end}
.event-inner{background:linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.6)); padding:18px; width:100%}
.event-inner h3{margin:0 0 8px 0; font-family:'Zamora'}

/* ================ MEDITACIONES PAGE ================ */
.meditation-section{margin-top: 40px;}
.meditation-platform-title{
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: 24px;
  text-align: center;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.meditation-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.meditation-card{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.meditation-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.meditation-placeholder{
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.01);
  color: rgba(255,255,255,0.6);
}

/* Spotify & YouTube iframe styling */
.meditation-card iframe{
  width: 100%;
  border: none;
  border-radius: 12px;
}

.btn-platform{
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-violet));
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 300ms ease;
  font-family: 'Zamora', cursive;
}

.btn-platform:hover{
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(255,122,24,0.3);
}

/* ================ EXPERIENCIAS CARDS ================ */
.experience-card{
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  margin-bottom: var(--spacing-lg);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
}

.experience-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  border-color: rgba(255,255,255,0.2);
}

.experience-image img,
.experience-video video{
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.experience-card:hover .experience-image img,
.experience-card:hover .experience-video video{
  transform: scale(1.03);
}

.experience-content{
  padding: var(--spacing-lg);
}

.experience-date{
  margin-bottom: var(--spacing-md);
}

.date-badge{
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-violet));
  color: white;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 16px rgba(255,122,24,0.3);
}

.experience-title{
  font-size: clamp(32px, 5vw, 48px);
  margin: 0 0 var(--spacing-sm) 0;
  color: white;
  font-weight: 400;
  font-family: 'Zamora', serif;
  text-shadow: 0 2px 16px rgba(0,0,0,0.15);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.experience-description{
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: var(--spacing-md);
  font-weight: 400;
}

.experience-info{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
}

.experience-info span{
  display: flex;
  align-items: center;
  gap: 8px;
}

.past-experience{
  opacity: 0.85;
}

.past-experience:hover{
  opacity: 1;
}

/* Responsive para experiencias */
@media (max-width:700px){
  .experience-image img,
  .experience-video video{
    height: 250px;
  }
  
  .experience-content{
    padding: 24px;
  }
  
  .experience-info{
    flex-direction: column;
    gap: 12px;
  }
}

/* ================ PRODUCT CATEGORIES ================ */
.product-categories-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.category-card{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 400ms ease, box-shadow 400ms ease;
  border: 1px solid rgba(255,255,255,0.06);
}

.category-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.category-image{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.category-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
  transition: background 400ms ease;
}

.category-card:hover .category-overlay{
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.9) 100%);
}

.category-content{
  position: relative;
  z-index: 1;
  padding: 40px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.category-title{
  font-size: clamp(28px, 4vw, 36px);
  margin: 0;
  color: #fff;
  font-family: 'Zamora', serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.category-description{
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.category-cta{
  font-weight: 600;
  color: white;
  font-size: 16px;
  margin-top: 8px;
  transition: transform 300ms ease;
  display: inline-block;
}

.category-card:hover .category-cta{
  transform: translateX(8px);
}

.back-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: all 300ms ease;
  padding: 8px 0;
}

.back-link:hover{
  color: white;
  transform: translateX(-4px);
}

/* Responsive para categorías */
@media (max-width:700px){
  .product-categories-grid{
    grid-template-columns: 1fr;
  }
  
  .category-card{
    min-height: 380px;
  }
  
  .category-content{
    padding: 28px;
  }
}

/* ================ Footer ================ */
.site-footer{
  padding: 60px 0 40px; 
  background: #070507; 
  color: #fff; 
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-inner{
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Top Grid: Newsletter (left) + Links & Socials (right) */
.footer-top-grid{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: start;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Newsletter Section */
.footer-newsletter{
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
}

.footer-newsletter h3{
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  color: #fff;
}

.footer-newsletter p{
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 8px 0;
  font-weight: 400;
}

.newsletter-form{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.newsletter-form input{
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: #fff;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  transition: all 300ms ease;
}

.newsletter-form input::placeholder{
  color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus{
  outline: none;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
}

.newsletter-form button{
  padding: 12px 32px;
  background: #fff;
  color: #070507;
  border: none;
  border-radius: 4px;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 300ms ease;
}

.newsletter-form button:hover{
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

.newsletter-message{
  font-size: 13px;
  margin-top: 8px;
  min-height: 20px;
  color: rgba(255,255,255,0.7);
  transition: all 300ms ease;
}

.newsletter-message.success{
  color: #b8ffd6;
}

.newsletter-message.error{
  color: #ffb0b0;
}

/* Right Section: Links + Socials */
.footer-right-section{
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
}

/* Footer Links (horizontal) */
.footer-links{
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.footer-links a{
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 300ms ease;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.footer-links a:hover{
  color: #fff;
  transform: translateY(-2px);
}

/* Socials (horizontal) */
.footer-socials{
  display: flex;
  gap: 20px;
}

.footer-socials a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  transition: all 300ms ease;
}

.footer-socials a:hover{
  background: rgba(255,255,255,1);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

.footer-logo{
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: none;
  transition: all 300ms ease;
}

.footer-socials a:hover .footer-logo{
  transform: scale(1.1);
}

/* Logo Section (Full Width at Bottom) */
.footer-logo-section{
  width: 100%;
  padding-top: 60px;
  display: flex;
  justify-content: center;
}

.footer-main-logo{
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 300ms ease;
}

.footer-main-logo:hover{
  opacity: 1;
}

/* Responsive Footer */
@media (max-width: 900px){
  .footer-top-grid{
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .footer-right-section{
    align-items: flex-start;
  }
  
  .footer-links{
    justify-content: flex-start;
  }
}

@media (max-width: 600px){
  .footer-links{
    flex-direction: column;
    gap: 16px;
  }
  
  .newsletter-form{
    flex-direction: column;
  }
  
  .newsletter-form input{
    width: 100%;
  }
  
  .footer-main-logo{
    max-width: 100%;
  }
}

/* ================ Responsive ================ */
@media (max-width:1000px){
  .exper-grid{grid-template-columns:repeat(2,1fr)}
  .events-grid{grid-template-columns:repeat(2,1fr)}
  .hero-title{font-size: clamp(48px, 10vw, 96px)}
  .hero-logo{max-width: 80vw; width: 80%;}
  .hero-sub{white-space:normal}
}
@media (max-width:700px){
  .exper-grid{grid-template-columns:1fr}
  .events-grid{grid-template-columns:1fr}
  .main-nav{gap:16px}
  .hero-inner{padding:28px 16px}
  .hero-title{font-size: clamp(40px, 9vw, 80px); padding: 0 15px;}
  .hero-logo{max-width: 80vw; width: 80%;}
  .hero-sub{white-space:normal}
  /* Video se muestra en todas las pantallas ahora */

  /* Mobile: hide desktop nav and show hamburger */
  .main-nav{display:none}

  /* Mobile: adjust header title */
  .header-title{
    font-size: 11px;
    left: 20px;
    padding-right: 10px;
  }

  /* Mobile: adjust hero title position when scrolled */
  .hero.scrolled .hero-title{
    font-size: 13px !important;
    left: 58px !important;
    max-width: calc(100vw - 130px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hamburger{display:flex; position:absolute; right:18px; top:50%; transform:translateY(-50%); width:44px; height:36px; align-items:center; justify-content:center; background:transparent; border:0; cursor:pointer; z-index:140}
  .hamburger .bar{display:block; width:24px; height:2px; background:#fff; border-radius:2px; transition: transform 200ms ease, opacity 200ms ease}
  .hamburger .bar-1{transform: translateY(-6px)}
  .hamburger .bar-3{transform: translateY(6px)}

  /* When menu is open transform bars into X */
  .menu-open .hamburger .bar-1{transform: rotate(45deg)}
  .menu-open .hamburger .bar-2{opacity:0}
  .menu-open .hamburger .bar-3{transform: rotate(-45deg)}

  /* Mobile menu panel (appears when .menu-open is present on body) */
  .menu-panel{display:none}
  .menu-open .menu-panel{display:block; position:fixed; inset:var(--header-h) 12px auto auto; right:12px; top:var(--header-h); background:rgba(0,0,0,0.9); padding:12px; border-radius:12px; border:1px solid rgba(255,255,255,0.04); z-index:130}
  .menu-open .menu-panel .main-nav{display:flex; flex-direction:column; gap:10px}
  .menu-open .menu-panel .main-nav a{display:block; padding:8px 12px}
}

/* ================ NUDE PROJECT STYLE REDESIGN ================ */

/* Announcement Bar */
.announcement-bar{
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-violet));
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.announcement-bar a{
  color: #fff;
  text-decoration: underline;
  margin-left: 8px;
}

.announcement-bar a:hover{
  opacity: 0.8;
}

/* Hero Nude Style */
/* Hero Centered - New Design */
.hero-centered{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
  padding: 60px 20px;
}

.hero-centered-video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-centered-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(174,87,192,0.2));
  z-index: 2;
}

.hero-centered-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 900px;
  z-index: 3;
  position: relative;
}

.hero-centered-logo{
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin-bottom: 40px;
  opacity: 0.95;
  transition: all 600ms ease;
  filter: brightness(0) invert(1) drop-shadow(0 4px 20px rgba(255,255,255,0.2));
}

.hero-centered:hover .hero-centered-logo{
  opacity: 1;
  transform: translateY(-4px);
  filter: brightness(0) invert(1) drop-shadow(0 8px 32px rgba(255,255,255,0.3));
}

.hero-centered-tagline{
  font-size: clamp(16px, 3vw, 24px);
  color: rgba(255,255,255,0.95);
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.02em;
  font-family: 'Satoshi', sans-serif;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Old Hero Nude styles - kept for other pages */
.hero-nude{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-h) - 48px);
  background: #fff;
  overflow: hidden;
}

.hero-nude-content{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  background: var(--primary-violet);
  position: relative;
  z-index: 2;
}

.hero-nude-text{
  max-width: 500px;
}

.hero-nude-logo{
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.3));
  transition: all 600ms ease;
}

.hero-nude:hover .hero-nude-logo{
  transform: scale(1.02);
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.4));
}

.hero-badge{
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 24px;
}

.hero-nude-title{
  font-family: 'Zamora', serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 32px 0;
  letter-spacing: -0.02em;
}

.hero-nude-ctas{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-nude-primary{
  display: inline-block;
  padding: 16px 32px;
  background: #fff;
  color: var(--primary-violet);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: all 300ms ease;
  text-decoration: none;
}

.btn-nude-primary:hover{
  background: var(--accent-orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-nude-secondary{
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #fff;
  border-radius: 4px;
  transition: all 300ms ease;
  text-decoration: none;
}

.btn-nude-secondary:hover{
  background: #fff;
  color: var(--primary-violet);
  transform: translateY(-2px);
}

.hero-nude-image{
  position: relative;
  overflow: hidden;
}

.hero-nude-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.hero-nude:hover .hero-nude-image img{
  transform: scale(1.05);
}

/* Collections Grid */
.collections-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 0;
  background: #f5f5f5;
}

.collection-card{
  position: relative;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: all 400ms ease;
}

.collection-large{
  grid-column: span 2;
  min-height: 700px;
}

.collection-image{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 600ms ease;
}

.collection-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.collection-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.7) 100%);
  transition: background 400ms ease;
}

.collection-card:hover .collection-overlay{
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.8) 100%);
}

.collection-card:hover .collection-image,
.collection-card:hover .collection-video{
  transform: scale(1.05);
}

.collection-content{
  position: relative;
  z-index: 2;
  padding: 48px;
  color: #fff;
  width: 100%;
}

.collection-badge{
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.collection-title{
  font-family: 'Zamora', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}

.collection-description{
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 24px 0;
  opacity: 0.95;
}

.btn-collection{
  display: inline-block;
  padding: 14px 28px;
  background: #fff;
  color: #000;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: all 300ms ease;
  text-decoration: none;
}

.btn-collection:hover{
  background: var(--accent-orange);
  color: #fff;
  transform: translateY(-2px);
}

/* Simple collection link style */
.collection-link{
  display: inline-block;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 300ms ease;
  opacity: 0.95;
}

.collection-link:hover{
  opacity: 1;
  transform: translateX(8px);
}

/* Banner Full Width */
.banner-fullwidth{
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.banner-fullwidth::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(174,87,192,0.85), rgba(123,47,247,0.85));
  z-index: 1;
}

.banner-content{
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 600px;
  padding: 40px;
}

.banner-badge{
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.banner-title{
  font-family: 'Zamora', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.banner-description{
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 32px 0;
  opacity: 0.95;
}

/* About Section Nude Style */
/* About Editorial - Typography Playground */
.about-editorial{
  background: #000;
  min-height: 100vh;
  height: 100vh;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-editorial::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img-qs.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.about-editorial-container{
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
  text-align: left;
  position: relative;
  z-index: 2;
}

.about-editorial-title{
  font-family: 'Zamora', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  font-style: normal;
  color: #fff;
  margin: 0 0 60px 0;
  line-height: 1.1;
}

.about-editorial-content{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-editorial-description{
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin: 0;
  font-weight: 400;
}

/* Old About Nude - kept for compatibility */
.about-nude{
  background: #fff;
  padding: 100px 0;
}

.about-nude-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-nude-title{
  font-family: 'Zamora', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--primary-violet);
  margin: 0 0 32px 0;
  letter-spacing: -0.02em;
}

.about-nude-text p{
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 24px;
}

.about-quote{
  font-family: 'Zamora', serif;
  font-size: 20px;
  line-height: 1.6;
  color: var(--accent-orange);
  font-style: italic;
  margin: 32px 0 0 0;
  padding-left: 24px;
  border-left: 3px solid var(--accent-orange);
}

.about-nude-image{
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}

.about-nude-image img{
  width: 100%;
  height: auto;
  display: block;
  transition: transform 600ms ease;
}

.about-nude:hover .about-nude-image img{
  transform: scale(1.03);
}

/* Categories Section */
.categories-section{
  background: #f5f5f5;
  padding: 100px 0;
}

.section-heading{
  font-family: 'Zamora', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  text-align: center;
  color: #000;
  margin: 0 0 60px 0;
  letter-spacing: -0.02em;
}

.categories-grid-nude{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.category-nude-card{
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: all 400ms ease;
  text-decoration: none;
}

.category-nude-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.category-nude-image{
  position: relative;
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  transition: transform 600ms ease;
}

.category-nude-card:hover .category-nude-image{
  transform: scale(1.05);
}

.category-nude-content{
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}

.category-nude-content h3{
  font-family: 'Satoshi', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin: 0;
  letter-spacing: -0.01em;
}

.category-arrow{
  font-size: 24px;
  color: var(--accent-orange);
  transition: transform 300ms ease;
}

.category-nude-card:hover .category-arrow{
  transform: translateX(8px);
}

/* Instagram Section */
.instagram-section{
  background: #fff;
  padding: 100px 0;
  text-align: center;
}

.instagram-subtitle{
  font-size: 16px;
  color: #666;
  margin: 16px 0 32px 0;
}

/* Responsive Adjustments */
@media (max-width: 900px){
  .hero-centered{
    min-height: 80vh;
    padding: 80px 20px;
  }
  
  .hero-centered-logo{
    max-width: 500px;
    margin-bottom: 32px;
  }
  
  .hero-centered-tagline{
    font-size: 18px;
  }
  
  .about-editorial{
    min-height: auto;
    padding: 80px 0;
  }
  
  .about-editorial-container{
    padding: 0 24px;
  }
  
  .about-editorial-title{
    margin-bottom: 60px;
  }
  
  .about-uppercase{
    font-size: 56px;
    letter-spacing: 0.03em;
  }
  
  .about-lowercase{
    font-size: 80px;
    margin-top: -15px;
  }
  
  .about-editorial-lead{
    font-size: 22px;
  }
  
  .about-editorial-body{
    font-size: 17px;
  }
  
  .about-editorial-quote{
    padding: 32px;
    margin-top: 40px;
  }
  
  .hero-nude{
    grid-template-columns: 1fr;
  }
  
  .hero-nude-image{
    min-height: 400px;
  }
  
  .collections-grid{
    grid-template-columns: 1fr;
  }
  
  .collection-large{
    grid-column: span 1;
  }
  
  .about-nude-container{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .categories-grid-nude{
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 600px){
  .hero-centered{
    min-height: 70vh;
  }
  
  .hero-centered-logo{
    max-width: 90%;
  }
  
  .about-editorial{
    padding: 60px 0;
  }
  
  .about-editorial-container{
    padding: 0 20px;
  }
  
  .about-editorial-title{
    margin-bottom: 40px;
  }
  
  .about-uppercase{
    font-size: 42px;
  }
  
  .about-lowercase{
    font-size: 60px;
    margin-top: -10px;
  }
  
  .about-editorial-lead{
    font-size: 20px;
    line-height: 1.5;
  }
  
  .about-editorial-body{
    font-size: 16px;
  }
  
  .about-editorial-quote{
    padding: 24px;
    margin-top: 32px;
  }
  
  .quote-text,
  .quote-text-alt{
    font-size: 18px;
  }
  
  .quote-text-emphasis{
    font-size: 22px;
    margin-top: 12px;
  }
  
  .hero-nude-content{
    padding: 40px 24px;
  }
  
  .hero-nude-ctas{
    flex-direction: column;
    width: 100%;
  }
  
  .btn-nude-primary,
  .btn-nude-secondary{
    width: 100%;
    text-align: center;
  }
  
  .collection-content{
    padding: 32px 24px;
  }
  
  .banner-content{
    padding: 40px 24px;
  }
  
  .about-nude{
    padding: 60px 0;
  }
  
  .about-nude-container{
    padding: 0 24px;
  }
  
  .categories-section{
    padding: 60px 0;
  }
  
  .instagram-section{
    padding: 60px 0;
  }
}

/* ===============================================
   EXPERIENCIAS PAGE - UX/UI MODERN REDESIGN
   =============================================== */

/* SECCIÓN 1: Hero con Video Full Screen */
.exp-hero-video{
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.exp-hero-video-bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.exp-hero-video-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(174,87,192,0.3));
  z-index: 2;
}

.exp-hero-video-content{
  position: relative;
  z-index: 3;
  text-align: center;
}

.exp-hero-video-title{
  font-size: clamp(64px, 12vw, 120px);
  margin: 0;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp{
  from{
    opacity: 0;
    transform: translateY(30px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* Old Hero Section */
.exp-hero{
  padding: 140px 0 80px;
  background: #000;
  text-align: center;
}

.exp-hero-content{
  max-width: 800px;
  margin: 0 auto;
}

.exp-hero-title{
  font-size: clamp(48px, 8vw, 72px);
  margin: 0 0 24px 0;
  color: #fff;
  letter-spacing: -0.02em;
}

.exp-hero-subtitle{
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
}

/* Section Layout */
.exp-section{
  padding: 100px 0;
  background: #000;
}

.exp-section-dark{
  background: #070507;
}

.exp-section-header{
  text-align: center;
  margin-bottom: 60px;
}

.exp-section-title{
  font-size: clamp(32px, 5vw, 48px);
  margin: 0 0 16px 0;
  color: #fff;
}

.exp-section-subtitle{
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin: 0;
  font-weight: 400;
}

/* SECCIÓN 2: Grid de Eventos (4 columnas) */
.exp-single-event{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.exp-event-featured{
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 400ms ease;
  display: flex;
  flex-direction: column;
}

.exp-event-featured:hover{
  transform: translateY(-8px);
  border-color: rgba(174,87,192,0.5);
  box-shadow: 0 20px 60px rgba(174,87,192,0.2);
}

.exp-event-image{
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.exp-event-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.exp-event-featured:hover .exp-event-image img{
  transform: scale(1.05);
}

.exp-event-badge{
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(174,87,192,0.95);
  color: #fff;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
}

.exp-event-content{
  padding: 24px;
}

.exp-event-title{
  font-family: 'Zamora', serif;
  font-size: 24px;
  margin: 0 0 12px 0;
  color: #fff;
  line-height: 1.2;
}

.exp-event-description{
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.exp-event-details{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
}

.exp-detail-item{
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}

.exp-detail-item svg{
  flex-shrink: 0;
  color: #AE57C0;
}

.exp-event-cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: #AE57C0;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: all 400ms ease;
  white-space: nowrap;
}

.exp-event-cta:hover{
  background: #9747ab;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(174,87,192,0.4);
  gap: 12px;
}

/* SECCIÓN 3: Grid de Eventos Pasados (4 columnas) */
.exp-past-single{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.exp-event-past{
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 400ms ease;
  display: flex;
  flex-direction: column;
}

.exp-event-past:hover{
  border-color: rgba(174,87,192,0.3);
  transform: translateY(-4px);
}

.exp-event-video-wrapper{
  position: relative;
  width: 100%;
  height: 175px;
  overflow: hidden;
}

.exp-event-video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exp-event-meta{
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.exp-meta-date{
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Grid 4 Columnas - Responsive */
.exp-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px){
  .exp-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px){
  .exp-grid{
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Event Cards */
.exp-card{
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  overflow: hidden;
  transition: all 400ms ease;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
}

.exp-card:hover{
  transform: translateY(-8px);
  border-color: rgba(174,87,192,0.4);
  box-shadow: 0 12px 40px rgba(174,87,192,0.15);
}

.exp-card-image{
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}

.exp-card-image img,
.exp-card-image video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.exp-card:hover .exp-card-image img,
.exp-card:hover .exp-card-image video{
  transform: scale(1.08);
}

.exp-card-badge{
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(174,87,192,0.95);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
}

/* Placeholder Cards */
.exp-card-placeholder{
  background: linear-gradient(135deg, rgba(174,87,192,0.1), rgba(123,47,247,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

.exp-placeholder-content{
  text-align: center;
}

.exp-placeholder-text{
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Card Content */
.exp-card-content{
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.exp-card-title{
  font-family: 'Zamora', serif;
  font-size: 22px;
  margin: 0;
  color: #fff;
  line-height: 1.3;
}

.exp-card-description{
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.exp-card-meta{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.exp-meta-item{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.exp-meta-item svg{
  flex-shrink: 0;
  opacity: 0.7;
}

.exp-card-cta{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #AE57C0;
  text-decoration: none;
  transition: all 300ms ease;
  margin-top: auto;
  padding-top: 12px;
}

.exp-card-cta:hover{
  color: #fff;
  gap: 12px;
}

/* Past Event Cards (less emphasis) */
.exp-card-past{
  opacity: 0.85;
}

.exp-card-past:hover{
  opacity: 1;
  transform: translateY(-4px);
}

/* Types of Experiences Grid */
.exp-types-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px){
  .exp-types-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px){
  .exp-types-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

.exp-type-card{
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: all 400ms ease;
}

.exp-type-card:hover{
  background: rgba(255,255,255,0.05);
  border-color: rgba(174,87,192,0.3);
  transform: translateY(-4px);
}

.exp-type-icon{
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(174,87,192,0.1);
  color: #AE57C0;
  transition: all 400ms ease;
}

.exp-type-card:hover .exp-type-icon{
  background: rgba(174,87,192,0.2);
  transform: scale(1.1);
}

.exp-type-title{
  font-family: 'Zamora', serif;
  font-size: 20px;
  margin: 0 0 12px 0;
  color: #fff;
}

.exp-type-description{
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0;
}

/* Contact Section */
.exp-contact-section{
  padding: 120px 0;
  background: linear-gradient(135deg, #070507 0%, #000 100%);
  position: relative;
}

.exp-contact-section::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(174,87,192,0.3), transparent);
}

.exp-contact-container{
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
}

@media (min-width: 1024px){
  .exp-contact-container{
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.exp-contact-content{
  max-width: 540px;
}

.exp-contact-title{
  font-family: 'Zamora', serif;
  font-size: clamp(32px, 5vw, 48px);
  margin: 0 0 24px 0;
  color: #fff;
  line-height: 1.2;
  font-weight: 400;
}

.exp-contact-text{
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin: 0 0 32px 0;
}

.exp-contact-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.exp-contact-list li{
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}

.exp-contact-list li::before{
  content: '→';
  color: #AE57C0;
  font-weight: 700;
  font-size: 18px;
}

/* Contact Form */
.exp-contact-form-wrapper{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 40px;
}

.exp-contact-form{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.exp-form-group{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.exp-form-group label{
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.8);
}

.exp-form-group input,
.exp-form-group textarea{
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  color: #fff;
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  transition: all 300ms ease;
}

.exp-form-group input::placeholder,
.exp-form-group textarea::placeholder{
  color: rgba(255,255,255,0.4);
}

.exp-form-group input:focus,
.exp-form-group textarea:focus{
  outline: none;
  background: rgba(255,255,255,0.08);
  border-color: #AE57C0;
}

.exp-form-group textarea{
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.exp-form-submit{
  padding: 16px 40px;
  background: #AE57C0;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 400ms ease;
  margin-top: 8px;
}

.exp-form-submit:hover{
  background: #9747ab;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(174,87,192,0.3);
}

.exp-form-submit:active{
  transform: translateY(0);
}

.exp-form-message{
  font-size: 14px;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  margin-top: 8px;
}

.exp-form-message.success{
  background: rgba(76,175,80,0.2);
  color: #4CAF50;
  border: 1px solid rgba(76,175,80,0.3);
}

.exp-form-message.error{
  background: rgba(244,67,54,0.2);
  color: #f44336;
  border: 1px solid rgba(244,67,54,0.3);
}

/* Responsive - Experiencias Grid */
@media (max-width: 1200px){
  .exp-single-event,
  .exp-past-single{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px){
  .exp-single-event,
  .exp-past-single{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .exp-single-event,
  .exp-past-single{
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PRODUCTOS PAGE
   ============================================ */

/* Hero Productos */
.prod-hero{
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-hero-image{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img-productos.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.prod-hero-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
  z-index: 2;
}

.prod-hero-content{
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 20px;
}

.prod-hero-title{
  font-family: 'Zamora', serif;
  font-size: clamp(64px, 12vw, 120px);
  font-weight: 400;
  font-style: normal;
  color: #fff;
  margin: 0;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  letter-spacing: -0.02em;
}

/* ============================================
   MEDITACIONES PAGE
   ============================================ */

/* Hero Meditaciones */
.med-hero{
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.med-hero-image{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img-meditaciones.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.med-hero-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
  z-index: 2;
}

.med-hero-content{
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 20px;
}

.med-hero-title{
  font-family: 'Zamora', serif;
  font-size: clamp(64px, 12vw, 120px);
  font-weight: 400;
  font-style: normal;
  color: #fff;
  margin: 0;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  letter-spacing: -0.02em;
}

/* Sections */
.med-section{
  padding: 100px 0;
  background: #000;
}

.med-section-title{
  font-family: 'Zamora', serif;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin: 0 0 60px 0;
}

/* Grid de cards */
.med-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.med-card{
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.med-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(174,87,192,0.2);
}

.med-card iframe{
  display: block;
  width: 100%;
}

/* Social Buttons */
.med-social-buttons{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.med-btn-social{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 32px;
  background: #AE57C0;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  font-family: 'Satoshi', sans-serif;
  font-size: 18px;
  font-weight: 600;
  transition: all 300ms ease;
  box-shadow: 0 4px 12px rgba(174,87,192,0.3);
}

.med-btn-social:hover{
  background: #9647a8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(174,87,192,0.4);
}

.med-btn-social img{
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.med-btn-social span{
  font-size: 18px;
  font-weight: 600;
}

/* Mobile Optimizations */
@media (max-width: 768px){
  .med-hero{
    height: 70vh;
    min-height: 500px;
  }

  .med-hero-title{
    font-size: clamp(48px, 10vw, 80px);
  }

  .med-section{
    padding: 60px 0;
  }

  .med-section-title{
    margin-bottom: 40px;
  }

  .med-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .med-social-buttons{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .med-btn-social{
    padding: 16px 24px;
  }
}

/* Mobile Optimizations */
@media (max-width: 768px){
  .about-editorial{
    height: auto;
    min-height: 100vh;
  }

  .about-editorial-container{
    padding: 60px 24px;
  }

  .about-editorial-title{
    margin-bottom: 50px;
  }

  .about-editorial-content{
    gap: 24px;
  }

  .exp-hero-video{
    height: 70vh;
  }
  
  .exp-hero-video-title{
    font-size: 48px;
  }
  
  .exp-hero{
    padding: 100px 0 60px;
  }
  
  .exp-section{
    padding: 60px 0;
  }
  
  .exp-contact-section{
    padding: 80px 0;
  }
  
  .exp-contact-form-wrapper{
    padding: 28px 20px;
  }
  
  .exp-grid{
    gap: 24px;
  }
  
  .exp-types-grid{
    gap: 20px;
  }
  
  .exp-event-image{
    height: 300px;
  }
  
  .exp-event-content{
    padding: 28px;
  }
  
  .exp-event-title{
    font-size: 28px;
  }
  
  .exp-event-description{
    font-size: 16px;
  }
}