/* ═══════════════════════════════════════
   Experiencia Single - Detalle completo
   Solo se carga en single-experiencia.
   ═══════════════════════════════════════ */

/* ================================
   RESET & VARIABLES
   ================================ */
.experiencia-page *,
.experiencia-page *::before,
.experiencia-page *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.experiencia-page {
    --exp-bg: #FBF7F0;
    --exp-text: #2D1810;
    --exp-text-light: #6B5344;
    --exp-accent: #D4A853;
    --exp-accent-light: #E8C678;
    --exp-dark: #2D1810;
    --exp-hero-h-mobile: 75vh;
    --exp-hero-h-desktop: 85vh;
    --exp-hero-img-position: center center;
    --font-display: var(--cr-font-display, 'Playfair Display', Georgia, serif);
    --font-body: var(--cr-font-body, 'DM Sans', system-ui, sans-serif);
    --shadow-sm: 0 2px 8px rgba(45, 24, 16, 0.08);
    --shadow-md: 0 4px 16px rgba(45, 24, 16, 0.1);
    --shadow-lg: 0 10px 40px rgba(45, 24, 16, 0.12);
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 100px;
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);

    background: var(--exp-bg);
    font-family: var(--font-body);
    color: var(--exp-text);
    line-height: 1.7;
    font-size: 16px;
    padding-bottom: calc(90px + var(--safe-bottom));
}

.experiencia-page img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================================
   PROGRESS BAR
   ================================ */
.exp-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--exp-accent);
    z-index: 200;
    width: 0%;
    transition: width 0.1s ease-out;
}

/* ================================
   STICKY HEADER
   ================================ */
.exp-sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 253, 249, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 1rem;
    padding-top: calc(0.75rem + var(--safe-top));
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.exp-sticky-header.is-visible {
    transform: translateY(0);
}

.exp-sticky-header__back {
    width: 38px;
    height: 38px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(87, 47, 18, 0.1);
    text-decoration: none;
    color: var(--exp-dark);
}

.exp-sticky-header__back svg {
    width: 18px;
    height: 18px;
}

.exp-sticky-header__title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--exp-dark);
    flex: 1;
    text-align: center;
    margin: 0 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.exp-sticky-header__cta {
    background: var(--exp-accent);
    color: var(--exp-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
}

/* ================================
   HERO
   ================================ */
.exp-hero {
    position: relative;
    height: var(--exp-hero-h-mobile);
    min-height: 450px;
    max-height: 600px;
    overflow: hidden;
}

.exp-hero__picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.exp-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--exp-hero-img-position, center center);
    z-index: 1;
}

.exp-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: linear-gradient(
        to top,
        rgba(45, 24, 16, 0.95) 0%,
        rgba(45, 24, 16, 0.4) 50%,
        rgba(45, 24, 16, 0.15) 100%
    );
}

.exp-hero__nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    padding-top: calc(1rem + var(--safe-top));
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.exp-hero__btn {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: transform 0.2s;
    border: none;
    text-decoration: none;
    color: var(--exp-dark);
}

.exp-hero__btn:active {
    transform: scale(0.95);
}

.exp-hero__btn svg {
    width: 20px;
    height: 20px;
}

.exp-hero__content {
    position: absolute;
    bottom: 3.5rem;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 5;
}

.exp-hero__badge {
    display: inline-block;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(200, 160, 80, 0.4);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    backdrop-filter: blur(4px);
}

.exp-hero__title {
    font-family: var(--font-display);
    color: white;
    font-size: 2.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
    line-height: 1.2;
}

.exp-hero__subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 320px;
}

/* Hero scroll indicator */
.exp-hero__scroll {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(240, 230, 214, 0.4);
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: exp-float 2.5s ease-in-out infinite;
}

.exp-hero__scroll svg {
    width: 16px;
    height: 16px;
    opacity: 0.5;
}

@keyframes exp-float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ================================
   STATS BAR
   ================================ */
.exp-stats-bar {
    position: relative;
    z-index: 10;
    width: calc(100% - 2.5rem);
    max-width: 860px;
    margin: -2.5rem auto 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.exp-stats-bar__item {
    background: white;
    text-align: center;
    padding: 1.25rem 0.5rem;
    transition: background 0.3s;
    border-right: 1px solid rgba(87, 47, 18, 0.1);
}

.exp-stats-bar__item:last-child {
    border-right: none;
}

.exp-stats-bar__item:hover {
    background: var(--exp-bg);
}

.exp-stats-bar__number {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--exp-dark);
    line-height: 1.1;
    margin-bottom: 4px;
}

.exp-stats-bar__label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--exp-text-light);
    line-height: 1.2;
}

/* ================================
   CONTENT WRAPPER
   ================================ */
.exp-content {
    padding: 0 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

/* ================================
   SECTION LABEL
   ================================ */
.exp-section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--exp-accent);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.exp-section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--exp-accent);
}

/* ================================
   HISTORIA
   ================================ */
.exp-historia {
    padding: 2rem 0 1.5rem;
}

.exp-historia__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--exp-dark);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.exp-historia__intro {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.exp-historia__dropcap {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: none;
}

.exp-historia__dropcap span {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--exp-accent);
    line-height: 0.8;
    margin-top: 4px;
}

.exp-historia__intro-text {
    font-size: 1rem;
    color: var(--exp-text);
    line-height: 1.6;
}

.exp-historia__text-wrapper {
    position: relative;
}

.exp-historia__text {
    color: var(--exp-text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.exp-historia__text p {
    margin-bottom: 1rem;
}

.exp-historia__text strong {
    color: var(--exp-text);
    font-weight: 600;
}

/* Collapsed state */
.exp-historia__text-wrapper.is-collapsed .exp-historia__text {
    max-height: 120px;
    overflow: hidden;
}

.exp-historia__text-wrapper.is-collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--exp-bg));
    pointer-events: none;
}

.exp-historia__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: auto;
    padding: 8px 18px;
    margin-top: 1rem;
    background: none;
    border: 1px solid rgba(87, 47, 18, 0.15);
    border-radius: 24px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--exp-text-light);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-body);
}

.exp-historia__toggle:active {
    transform: scale(0.98);
    background: var(--exp-bg);
}

.exp-historia__toggle svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.exp-historia__toggle.is-expanded svg {
    transform: rotate(180deg);
}

.exp-historia__toggle-less {
    display: none;
}

.exp-historia__toggle.is-expanded .exp-historia__toggle-more {
    display: none;
}

.exp-historia__toggle.is-expanded .exp-historia__toggle-less {
    display: inline;
}

/* Imagen dentro de la narrativa */
.exp-historia__image {
    margin: 2rem auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 75%;
}

.exp-historia__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* ================================
   IMAGEN FULL
   ================================ */
.exp-imagen-full {
    position: relative;
    margin: 2.5rem 0;
    overflow: hidden;
}

/* When inside content wrapper, add border radius */
.exp-content .exp-imagen-full {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.exp-imagen-full__img {
    width: 100%;
    height: 150px;
    max-height: 150px;
    object-fit: cover;
}

.exp-imagen-full__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 1.25rem 1rem;
    background: linear-gradient(to top, rgba(45, 24, 16, 0.85), transparent);
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    text-align: center;
    font-style: normal;
}

/* ================================
   QUOTE
   ================================ */
.exp-quote {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.12) 0%, rgba(212, 168, 83, 0.05) 100%);
    border-left: 3px solid var(--exp-accent);
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.exp-quote__text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--exp-dark);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.exp-quote__author {
    font-size: 0.8rem;
    color: var(--exp-accent);
    font-weight: 600;
    font-style: normal;
}

/* ================================
   DATOS DESTACADOS
   ================================ */
.exp-datos {
    padding: 2rem 0;
}

.exp-datos__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--exp-dark);
    margin-bottom: 1rem;
}

.exp-datos__carousel {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.25rem 1.25rem 1rem;
    scrollbar-width: none;
}

.exp-datos__carousel::-webkit-scrollbar {
    display: none;
}

.exp-datos__card {
    flex: 0 0 130px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.25rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    scroll-snap-align: start;
    border: 1px solid rgba(212, 168, 83, 0.1);
}

.exp-datos__card.is-featured {
    background: linear-gradient(135deg, var(--exp-dark) 0%, #3D2210 100%);
    flex: 0 0 145px;
}

.exp-datos__card.is-featured .exp-datos__card-number,
.exp-datos__card.is-featured .exp-datos__card-label {
    color: white;
}

.exp-datos__card.is-featured .exp-datos__card-icon {
    background: rgba(255,255,255,0.15);
}

.exp-datos__card.is-featured .exp-datos__card-icon svg {
    color: white;
}

.exp-datos__card-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.2) 0%, rgba(212, 168, 83, 0.1) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exp-datos__card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--exp-accent);
}

.exp-datos__card-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--exp-dark);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.exp-datos__card-label {
    font-size: 0.72rem;
    color: var(--exp-text-light);
    line-height: 1.25;
}

/* ================================
   GALERÍA
   ================================ */
.exp-galeria {
    padding: 2rem 0;
}

.exp-galeria__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.exp-galeria__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--exp-dark);
}

.exp-galeria__counter {
    font-size: 0.8rem;
    color: var(--exp-text-light);
    font-weight: 500;
}

.exp-galeria__carousel {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 1.25rem 1rem;
    scrollbar-width: none;
}

.exp-galeria__carousel::-webkit-scrollbar {
    display: none;
}

.exp-galeria__item {
    flex: 0 0 75vw;
    max-width: 400px;
    scroll-snap-align: center;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    margin: 0;
}

.exp-galeria__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exp-galeria__item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 1rem 1rem;
    background: linear-gradient(to top, rgba(45, 24, 16, 0.8), transparent);
    color: white;
    font-size: 0.85rem;
    line-height: 1.4;
}

.exp-galeria__progress {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 0.75rem;
}

.exp-galeria__progress-dot {
    width: 6px;
    height: 6px;
    background: rgba(87, 47, 18, 0.15);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.exp-galeria__progress-dot.is-active {
    background: var(--exp-accent);
    width: 20px;
}

/* ================================
   CTA TIENDA
   ================================ */
.exp-cta-tienda {
    padding: 2rem 0 2.5rem;
}

.exp-cta-tienda__card {
    background: linear-gradient(135deg, var(--exp-dark) 0%, #3D2210 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(45, 24, 16, 0.2);
}

.exp-cta-tienda__image {
    width: 100%;
    aspect-ratio: 2.2/1;
    object-fit: cover;
}

.exp-cta-tienda__content {
    padding: 1.5rem;
}

.exp-cta-tienda__eyebrow {
    display: block;
    color: var(--exp-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.exp-cta-tienda__title {
    font-family: var(--font-display);
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.exp-cta-tienda__text {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.exp-cta-tienda__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: var(--exp-accent);
    color: var(--exp-dark);
    padding: 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.35);
    transition: transform 0.2s;
}

.exp-cta-tienda__button:active {
    transform: scale(0.98);
}

.exp-cta-tienda__button svg {
    width: 18px;
    height: 18px;
}

/* ================================
   RELACIONADOS
   ================================ */
.exp-relacionados {
    padding: 0 0 4rem;
}

.exp-relacionados__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.exp-relacionados__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--exp-dark);
}

.exp-relacionados__link {
    color: var(--exp-accent);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.exp-relacionados__carousel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1.25rem;
}

.exp-relacionados__card {
    display: grid;
    grid-template-columns: 120px 1fr;
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.exp-relacionados__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(45, 24, 16, 0.1);
}

.exp-relacionados__card-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.exp-relacionados__card-body {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.exp-relacionados__card-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--exp-dark);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.exp-relacionados__card-excerpt {
    font-size: 0.8rem;
    color: var(--exp-text-light);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ================================
   FLOATING CTA
   ================================ */
.exp-floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: rgba(255, 253, 249, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.9rem 1.25rem;
    padding-bottom: calc(0.9rem + var(--safe-bottom));
    box-shadow: 0 -4px 30px rgba(45, 24, 16, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.exp-floating-cta.is-visible {
    transform: translateY(0);
}

.exp-floating-cta__inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.exp-floating-cta__info {
    flex: 1;
    min-width: 0;
}

.exp-floating-cta__label {
    display: block;
    font-size: 0.65rem;
    color: var(--exp-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.exp-floating-cta__title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--exp-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.exp-floating-cta__button {
    background: var(--exp-accent);
    color: var(--exp-dark);
    padding: 0.85rem 1.4rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3);
    flex-shrink: 0;
}

/* ================================
   RESPONSIVE: TABLET (768px+)
   ================================ */
@media (min-width: 768px) {
    .experiencia-page {
        padding-bottom: 0;
    }

    .exp-sticky-header,
    .exp-floating-cta,
    .exp-progress-bar {
        display: none;
    }

    .exp-hero {
        height: var(--exp-hero-h-desktop);
        min-height: 550px;
        max-height: 800px;
    }

    .exp-hero__content {
        padding: 3rem;
        max-width: 600px;
    }

    .exp-hero__title {
        font-size: 3rem;
    }

    .exp-hero__subtitle {
        font-size: 1.1rem;
        max-width: none;
    }

    .exp-stats-bar {
        margin-top: -3rem;
        margin-bottom: 2.5rem;
        width: calc(100% - 4rem);
    }

    .exp-stats-bar__item {
        padding: 1.75rem 1rem;
    }

    .exp-stats-bar__number {
        font-size: 1.75rem;
    }

    .exp-stats-bar__label {
        font-size: 0.7rem;
    }

    .exp-content {
        padding: 0 2rem;
    }

    .exp-historia {
        padding: 3.5rem 0 2rem;
    }

    .exp-historia__title {
        font-size: 2rem;
    }

    .exp-historia__toggle {
        display: none;
    }

    .exp-historia__text-wrapper.is-collapsed .exp-historia__text {
        max-height: none;
        overflow: visible;
    }

    .exp-historia__text-wrapper.is-collapsed::after {
        display: none;
    }

    .exp-imagen-full {
        margin: 2.5rem 0;
    }

    .exp-imagen-full__img {
        height: 200px;
        max-height: 200px;
    }

    .exp-datos__carousel {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
        overflow: visible;
        padding: 0;
    }

    .exp-datos__card {
        flex: none;
    }

    .exp-datos__card.is-featured {
        flex: none;
    }

    .exp-galeria__carousel {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        overflow: visible;
        padding: 0;
    }

    .exp-galeria__item {
        flex: none;
        max-width: none;
        aspect-ratio: 4/3;
    }

    .exp-galeria__counter,
    .exp-galeria__progress {
        display: none;
    }

    .exp-relacionados__carousel {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        padding: 0;
    }

    .exp-relacionados__card {
        grid-template-columns: 1fr;
    }

    .exp-relacionados__card-image {
        aspect-ratio: 16/10;
        height: auto;
    }

    .exp-relacionados__card-body {
        padding: 1rem 1.25rem 1.25rem;
    }

    .exp-cta-tienda__card {
        display: flex;
    }

    .exp-cta-tienda__image {
        width: 40%;
        aspect-ratio: auto;
    }

    .exp-cta-tienda__content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 2.5rem;
    }

    .exp-cta-tienda__button {
        width: auto;
        align-self: flex-start;
        padding: 1rem 2rem;
    }
}

/* ================================
   RESPONSIVE: DESKTOP (1024px+)
   ================================ */
@media (min-width: 1024px) {
    .exp-content {
        max-width: 1000px;
    }

    .exp-stats-bar__number {
        font-size: 2rem;
    }

    .exp-historia__title {
        font-size: 2.25rem;
    }
}

/* ================================
   ACCESIBILIDAD
   ================================ */
.exp-hero__btn:focus-visible,
.exp-historia__toggle:focus-visible,
.exp-cta-tienda__button:focus-visible,
.exp-floating-cta__button:focus-visible,
.exp-relacionados__card:focus-visible {
    outline: 3px solid var(--exp-accent);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .experiencia-page *,
    .experiencia-page *::before,
    .experiencia-page *::after {
        transition: none !important;
        animation: none !important;
    }

    .exp-datos__carousel,
    .exp-galeria__carousel,
    .exp-relacionados__carousel {
        scroll-behavior: auto;
    }
}
