/* Reset y estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Neue Haas Grotesk Text Pro', sans-serif;
    line-height: 1.6;
    color: #f40202;
    overflow-x: hidden;
    background-color: #f2f2f2;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Botones de color y idioma */
.color-buttons {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
}

.color-toggle,
.language-toggle,
.explore-toggle {
    position: fixed;
    top: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 1.2em;
    border: 2.5px solid #f40202;
    background: white transparent;
    cursor: pointer;
    z-index: 1000;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0,7rem;
}

.color-toggle {
    right: 2rem;
}

.language-toggle {
    right: calc(2rem + 70px);
}

.explore-toggle {
    right: calc(2rem + 140px);
}

.color-toggle:hover,
.language-toggle:hover,
.explore-toggle:hover {
    transform: scale(1.1);
}

.color-options,
.language-options {
    position: fixed;
    top: calc(2rem + 60px);
    border-radius: 1.2em;
    background: white transparent;
    padding: 0.5rem;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 999;
}

.color-options {
    right: 2rem;
}

.language-options {
    right: calc(2rem + 70px);
}

.color-toggle:focus + .color-options,
.language-toggle:focus + .language-options {
    display: flex;
}

.color-btn,
.language-btn {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0;
}

.language-btn {
    width: auto;
    height: auto;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: bold;
    color: #333;
    background: transparent;
    border: none;
    cursor: pointer;
}

.color-btn:hover,
.language-btn:hover {
    transform: scale(1.2);
}

.color-light {
    background-color: #f2f2f2;
    border: 1px solid #ccc;
}

.color-dark {
    background-color: #1e1b1d;
}

.color-blue {
    background-color: #0e0eaf;
}

/* Contenedor principal para scroll vertical */
main {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    background-color: #f2f2f2;
}

/* Secciones */
section {
    min-height: 100vh;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Hero section */
.hero {
    text-align: initial !important;
    position: relative;
    z-index: 2;
}

.location {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #f40202;
}

.hero h1 {
    font-size: 8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #f40202;
}

.hero p {
    font-size: 2rem;
    max-width: 60rem;
    margin-top: 2rem;
    margin-left: 10rem;
    margin-bottom: 3rem;
    text-align: left;
    transition: color 0.3s;
    line-height: 1.1;
}

.palabra-animada {
    font-size: 2.2rem;
    padding: 0.18em 1.2em;
    width: 20ch;
    border-radius: 1.8em;
    margin: 1em 0 2em 0;
    background: transparent;
    border: 2.5px solid #f40202;
    color: #f40202;
    box-shadow: none;
    transition: background 0.3s, box-shadow 0.3s;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    will-change: opacity;
    font-family: 'chantal', 'chantal', sans-serif;
}

/* Scroll down button */
.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    color: #333;
    padding: 1rem 2rem;
    border: 2px solid #333;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    background-color: #333;
    color: white;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Case Studies */
.case-studies {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    margin-left: auto;
    margin-right: auto;
}

.case-study {
    position: relative;
    display: flex;
    align-items: center;
    padding: 2rem;
    background-color: #e0e0e0;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease, margin-bottom 0.3s ease;
    cursor: pointer;
}

.case-study:hover {
    transform: translateX(20px);
    background-color: #d0d0d0;
}

.case-study.carousel-active:hover {
    transform: none;
    background-color: #e0e0e0;
}

.case-number {
    font-size: 2rem;
    font-weight: bold;
    color: #f40202;
    margin-right: 2rem;
    min-width: 60px;
}

.case-content {
    flex: 1;
}

.case-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #f40202;
}

.case-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.case-tags span {
    background-color: #e0e0e0;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #1e1b1d;
}

.case-study:last-child {
    margin-bottom: 0;
    padding-bottom: 5rem;
}

/* Navegación inferior */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    z-index: 1000;
}

.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.nav-links a:hover {
    color: #666;
}

.nav-links a.active {
    color: #000;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .color-buttons {
        top: 1rem;
        right: 1rem;
    }

    .color-btn {
        width: 25px;
        height: 25px;
    }

    .location {
        font-size: 1rem;
    }

    .hero h1 {
        font-size: 4rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    section {
        padding: 3rem 1rem;
    }

    .case-study {
        padding: 1rem;
    }

    .case-number {
        font-size: 1.5rem;
        margin-right: 1rem;
        min-width: 40px;
    }

    .case-content h3 {
        font-size: 1.2rem;
    }

    .case-tags {
        gap: 0.5rem;
    }

    .case-tags span {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }

    .scroll-down {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .contact-trigger {
        font-size: 6rem;
    }

    .footer-content {
        flex-direction: row;
        gap: 1rem;
        top: calc(50% + 3.5rem);
        bottom: auto;
    }

    .footer-link,
    .social-link {
        font-size: 1rem;
    }

    .social-links {
        gap: 1rem;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.5rem;
    }

    .manifesto-inner {
        padding: 2rem 1.5rem 1rem;
    }

    .cta-media {
        height: auto;
        max-height: none;
        aspect-ratio: auto;
    }

    .cta-reel {
        height: auto;
        width: 100%;
        aspect-ratio: 9 / 16;
        object-fit: cover;
    }

    .cta-banner-link {
        height: auto;
        max-height: none;
    }

    .cta-banner {
        height: auto;
    }

    .cta-card {
        padding: 2rem;
    }

    .cta-card h2 {
        font-size: 2rem;
    }
}

/* Manifiesto */
.manifesto-section {
    padding: 0;
    width: 100%;
    position: relative;
    z-index: 3;
    background-color: #f2f2f2;
}

.manifesto-inner {
    width: 90%;
    margin: 0 auto;
    padding: 2.5rem 2rem 1.5rem;
}

.manifesto-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1.5rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    background: #000;
}

/* CTA Experiencia */
.cta-section {
    padding: 0;
    width: 100%;
    position: relative;
    z-index: 3;
    background-color: #f2f2f2;
    min-height: auto;
    --cta-max-height: 66vh;
}

.cta-inner {
    width: 90%;
    margin: 0 auto;
    padding: 1rem 2rem 2.5rem;
    display: grid;
    grid-template-columns: auto minmax(320px, 1fr);
    gap: 2.5rem;
    align-items: stretch;
}

.cta-media {
    width: 100%;
    position: relative;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    height: var(--cta-max-height);
    max-height: var(--cta-max-height);
    aspect-ratio: 9 / 16;
}

.cta-reel {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: 1.2rem;
    display: block;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    background: #000;
}

/* Mantener aspect ratio en fullscreen para el CTA */
.cta-reel:fullscreen {
    object-fit: contain;
    background: #000;
}

.cta-reel:-webkit-full-screen {
    object-fit: contain;
    background: #000;
}

.cta-banner-link {
    display: block;
    align-self: stretch;
    height: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    text-decoration: none;
    height: var(--cta-max-height);
    max-height: var(--cta-max-height);
}

.cta-banner {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

/* Footer */
.footer {
    position: relative;
    width: 100%;
    height: 200vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    background-color: #dbdbdb;
}

.contact-trigger {
    font-size: 12rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    animation: float 3s ease-in-out infinite;
    transform-origin: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
}

.footer-content {
    position: fixed;
    top: calc(50% + 6rem);
    bottom: auto;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 1.5rem;
    padding: 0 2rem;
    z-index: 2;
}

.footer-link {
    color: #f40202;
    text-decoration: none;
    font-size: 1.2rem;
    transition: opacity 0.3s ease;
}

.footer-separator {
    color: #f40202;
    font-size: 1.2rem;
    opacity: 0.6;
    line-height: 1;
}

.footer-link:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #f40202;
    text-decoration: none;
    font-size: 1.2rem;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
}

@keyframes float {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -60%) scale(1.1);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Carousel */
.carousel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(224, 224, 224, 0.95);
    z-index: 1000;
    padding: 2rem 0;
    margin-top: 1rem;
    transition: all 0.3s ease;
    border-radius: 2%;
}

.carousel.active {
    display: block;
}

.case-study.active {
    margin-bottom: 400px;
}

.carousel-container {
    display: flex;
    width: 100%;
    gap: 1rem;
    padding: 0 2rem;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    position: relative;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.carousel-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.carousel-container.dragging {
    cursor: grabbing;
}

.carousel-slides-wrapper {
    display: flex;
    gap: 1rem;
    animation: slideLeft 30s linear infinite;
}

.carousel-slides-wrapper.no-rotate {
    animation: none;
}

.carousel-slide {
    flex: 0 0 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    border-radius: 1.5%;
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
    transform-origin: center;
}

.carousel-slide:hover {
    transform: scale(1.05);
    z-index: 2;
}

.carousel-slide:hover .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 1rem;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
    border-bottom-left-radius: 1.5%;
    border-bottom-right-radius: 1.5%;
}

.carousel-slides-wrapper:hover {
    animation-play-state: paused;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Overlay para cuando el carrusel está activo */
.carousel-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
}

.carousel-overlay.active {
    display: block;
}

/* Modal flotante */
.floating-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 2000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(0px);
}

.floating-modal.active {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal-content {
    background-color: #fff;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    border-radius: 16px;
    position: relative;
    overflow-y: auto;
    transform: scale(0.9) translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    box-shadow: none;
}

.floating-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: rotate(0deg);
}

.close-modal:hover {
    background-color: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-media {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    margin: 0;
    padding: 0;
}

.modal-title {
    color: #1e1b1d;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.modal-image {
    max-width: 100%;
    max-height: 60vh;
    height: auto;
    width: 100%;
    border-radius: 0;
    display: block !important;
    margin: 0;
    padding: 0;
    background: transparent;
}

.modal-video {
    max-width: 100%;
    border-radius: 12px;
    display: block;
}

.modal-3d-viewer {
    width: 100%;
    height: 500px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.modal-3d-viewer:hover,
.modal-3d-viewer:focus-visible {
}

.modal-section {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 12px;
}

.modal-section h4 {
    margin-bottom: 0.5rem;
    color: #1e1b1d;
}

.modal-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: #f40202;
    text-decoration: none;
    font-weight: bold;
}

.modal-link:hover {
    text-decoration: underline;
}

.modal-images-container {
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
    padding: 0;
}

.modal-images-container img {
    width: 100%;
    height: auto;
    border-radius: 0;
    display: block;
    object-fit: contain;
    margin: 0;
    padding: 0;
}

.modal-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 12px;
    margin-top: 1.5rem;
}

/* Responsive para el modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-text {
        font-size: 1rem;
    }
}

/* Enlace del logo alineado a la izquierda con margen de 10rem */
.logo-link {
    display: flex;
    margin: 2vh 0 2vh 10rem;
    width: fit-content;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
    transform-origin: top left;
    align-self: flex-start;
    position: relative;
    /* Para permitir superposición absoluta */
}

.logo-link.fixed-logo {
    margin: 0 !important;
    left: 2rem !important;
    top: 2rem !important;
    position: fixed !important;
    z-index: 2001 !important;
    width: 100px;
    height: 50px;
    transition: all 0.7s cubic-bezier(0.4,0,0.2,1);
}


.logo-cellphone {
    position: absolute;
    left: 50%;
    top: 15%;
    height: 133vh;
    min-height: 800px;
    width: auto;
    object-fit: contain;
    z-index: 3;
    display: block;
    filter: drop-shadow(0 2px 16px rgba(0,0,0,0.10));
    display: block;
    margin: 0;
    max-width: 100%;
    height: auto;
    z-index: 3;
    pointer-events: none;
}

#hero-text-before,
#hero-text-after {
    font-size: 2.4rem;
    font-weight: 600;
}

/* Módulo de exploración */
.explore-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 3000;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

.explore-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500vw;
    height: 500vh;
    min-width: 500vw;
    min-height: 500vh;
    transform: translate(-50%, -50%) translate3d(0, 0, 0);
    background-image: url('Images/fondo corcho.jpg');
    background-size: 100vw 100vh;
    background-position: 0 0;
    background-repeat: repeat;
    will-change: transform;
    transform-origin: center center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    z-index: 0;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-shadow: none;
}

.explore-modal.active {
    display: block;
    opacity: 1;
}

.close-explore-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: 2.5px solid #f40202;
    color: #f40202;
    font-size: 2rem;
    cursor: pointer;
    z-index: 3001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.2em;
    transition: all 0.3s ease;
    transform: rotate(0deg);
}

.close-explore-modal:hover {
    background-color: rgba(244, 2, 2, 0.1);
    transform: rotate(90deg) scale(1.1);
}

.explore-message {
    position: absolute;
    top: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3001;
    max-width: 96vw;
    padding: 0.75rem 1.2rem;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);
    font-size: clamp(0.75rem, 2.2vw, 1rem);
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    color: #111111;
    pointer-events: none;
    white-space: nowrap;
}

.explore-canvas {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: grab;
    touch-action: none;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
}

.explore-canvas:active {
    cursor: grabbing;
}

.explore-center-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    z-index: 2;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
}

.explore-photo {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--w, 220px);
    padding: 10px;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
    transform: translate(-50%, -50%) translate(var(--x), var(--y)) rotate(var(--r));
    pointer-events: none;
    z-index: 1;
    height: auto;
}

.explore-photo.photo-1 { --x: -360px; --y: -240px; --r: -7deg; --w: 300px; }
.explore-photo.photo-2 { --x: 300px; --y: -260px; --r: 6deg; --w: 288px; }
.explore-photo.photo-3 { --x: -480px; --y: 40px; --r: 4deg; --w: 325px; }
.explore-photo.photo-4 { --x: 430px; --y: 70px; --r: -8deg; --w: 313px; }
.explore-photo.photo-5 { --x: -250px; --y: 290px; --r: 6deg; --w: 294px; }
.explore-photo.photo-6 { --x: 40px; --y: -360px; --r: -4deg; --w: 275px; }
.explore-photo.photo-7 { --x: 260px; --y: 290px; --r: -3deg; --w: 294px; }


.explore-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #f40202;
    border-radius: 50%;
    pointer-events: none;
    z-index: 3002;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.explore-modal.active .explore-cursor {
    opacity: 1;
}

.explore-cursor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #f40202;
    border-radius: 50%;
}

/* Responsive para el módulo de exploración */
@media (max-width: 768px) {
    .explore-toggle {
        right: calc(2rem + 140px);
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .explore-center-image {
        max-width: 95vw;
        max-height: 95vh;
    }

    .explore-message {
        top: 1.6rem;
        padding: 0.7rem 1.1rem;
        font-size: 0.95rem;
    }

    .explore-photo {
        width: var(--w, 140px);
        padding: 6px;
    }

    .explore-photo.photo-1 { --x: -170px; --y: -130px; --w: 213px; }
    .explore-photo.photo-2 { --x: 160px; --y: -150px; --w: 200px; }
    .explore-photo.photo-3 { --x: -210px; --y: 50px; --w: 225px; }
    .explore-photo.photo-4 { --x: 190px; --y: 70px; --w: 225px; }
    .explore-photo.photo-5 { --x: -110px; --y: 190px; --w: 213px; }
    .explore-photo.photo-6 { --x: 20px; --y: -220px; --w: 188px; }
    .explore-photo.photo-7 { --x: 120px; --y: 190px; --w: 213px; }
}
