@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:wght@400;500;600;700&family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap');


* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #d9d9d9;
    color: #111;
    font-family: 'Inter', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

section {
    padding: 70px 28px;
}



.main-nav > a,
.nav-dropdown > a,
.nav-contact-button,
.dropdown-menu > a,
.dropdown-item-has-children > a,
.dropdown-submenu a {
    font-family: "Fira Sans Condensed", sans-serif;
}



/* =========================
   TOP CONTACT BAR
========================= */

.top-contact-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1001;

    background: rgba(41, 41, 41, 0.82);
    color: #ffffff;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);

    transition:
        opacity .28s ease,
        transform .28s ease,
        visibility .28s ease;
}

body.show-top-bar .top-contact-bar {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top-contact-inner {
    max-width: 1440px;
    height: 34px;
    margin: 0 auto;
    padding: 0 42px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.top-contact-left,
.top-contact-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-contact-bar a,
.top-contact-bar span {
    font-size: 12px;
    line-height: 1;
    color: rgba(255,255,255,0.86);
    text-decoration: none;
}

.top-contact-bar a:hover {
    color: #ffffff;
}

.top-contact-right a {
    width: 24px;
    height: 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.22);

    font-size: 10px;
    letter-spacing: 0.04em;
}

/* Navbar default: always at top */
.site-header {
    top: 0;
}



/* Only at the very top, navbar moves below the top bar */
body.show-top-bar .site-header {
    top: 34px;
}

@media (max-width: 760px) {
    .top-contact-bar {
        display: none;
    }

    body.show-top-bar .site-header,
    .site-header {
        top: 0;
    }
}



/* =========================
   NAVBAR
========================= */


.dropdown-menu > a,
.dropdown-item-has-children > a,
.dropdown-submenu a {
    font-family: "Fira Sans Condensed", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.045em;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.88),
            rgba(255, 255, 255, 0.58)
        );
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);

    backdrop-filter: blur(28px) saturate(190%);
    -webkit-backdrop-filter: blur(28px) saturate(190%);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        inset 0 -1px 0 rgba(255, 255, 255, 0.25);
}


.nav-container {
    max-width: 1440px;
    width: 100%;
    height: 74px;
    margin: 0 auto;
    padding: 0 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 54px;
    width: 150px;

    padding: 0;
    margin: 0;

    background: transparent;
    border: none;
    text-decoration: none;
}

.site-logo img {
    display: block;

    max-width: 100%;
    max-height: 69px;
    width: auto;
    height: auto;

    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;

    text-transform: uppercase;
    color: #ffffff;
}

.site-header.scrolled .main-nav {
    color: #111;
}

.nav-dropdown {
    position: relative;
}


.site-header.scrolled .main-nav > a,
.site-header.scrolled .nav-dropdown > a {
    font-weight: 500;
    color: #111;
}


.main-nav > a,
.nav-dropdown > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 74px;

    font-family: "Fira Sans Condensed", sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.008em;

    transition:
        opacity .25s ease,
        color .25s ease,
        transform .25s ease;
}




/* Hover: apaga los demás sin moverlos */
.main-nav:hover > a:not(.nav-contact-button),
.main-nav:hover .nav-dropdown > a {
    opacity: .38;
}

.main-nav:hover .nav-dropdown:hover > a {
    opacity: 1;
}


/* Hover activo: no bold para evitar desplazamiento */
.main-nav > a:hover:not(.nav-contact-button),
.nav-dropdown:hover > a {
    opacity: 1;
    transform: scale(1.02);
}

/* Dropdown */


.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: -18px;

    min-width: 245px;
    padding: 0;

    background: rgb(67, 106, 143);
    color: #ffffff;

    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(0,0,0,0.22);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition:
        opacity .24s ease,
        visibility .24s ease,
        transform .24s ease;

    z-index: 1000;
}

/* Hover bridge so menu does not disappear */

.nav-dropdown::after {
    content: "";
    position: absolute;
    left: -24px;
    top: 100%;

    width: calc(100% + 48px);
    height: 18px;
}

/* Show dropdown */

.nav-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* First level dropdown links */

.dropdown-menu > a,
.dropdown-item-has-children > a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 9px 28px;

    font-family: "Fira Sans Condensed", sans-serif;
    font-size: 15px;
    line-height: 1.1;
    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: 0.045em;

    color: rgba(255,255,255,0.9);
    text-decoration: none;

    opacity: 1;

    background: transparent;

    transition:
        background .22s ease,
        color .22s ease,
        transform .22s ease;
}

.dropdown-menu > a:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-menu > a:last-child {
    border-radius: 0 0 8px 8px;
}

.dropdown-submenu a:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-submenu a:last-child {
    border-radius: 0 0 8px 8px;
}

.dropdown-menu > a:hover,
.dropdown-item-has-children:hover > a {
    background: rgba(255,255,255,0.13);
    color: #ffffff;
    transform: translateX(3px);
}

.dropdown-item-has-children > a span {
    margin-left: 18px;

    font-size: 20px;
    line-height: 1;

    color: rgba(255,255,255,0.74);
}

/* Submenu / flyout */

.dropdown-item-has-children {
    position: relative;
}

.dropdown-submenu {
    position: absolute;
    top: 0;
    left: calc(100% + 4px);

    min-width: 220px;
    padding: 0;

    background: rgb(67, 106, 143);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 18px 48px rgba(0,0,0,0.22);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);

    transition:
        opacity .22s ease,
        visibility .22s ease,
        transform .22s ease;

    z-index: 1001;

    border-radius: 5px;
    overflow: visible;

}

.dropdown-item-has-children:hover > .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-submenu a {
    display: block;

    padding: 15px 30px;

    font-size: 15px;
    line-height: 1.1;
    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: 0.006em;

    color: rgba(255,255,255,0.9);
    text-decoration: none;

    opacity: 1;

    transition:
        background .22s ease,
        color .22s ease,
        transform .22s ease;
}

.dropdown-submenu a:hover {
    background: rgba(255,255,255,0.13);
    color: #ffffff;
    transform: translateX(3px);
}



/* Contact button */

.nav-contact-button {
    min-height: auto !important;
    padding: 12px 24px;
    border: 1px solid currentColor;
    background: rgb(67, 106, 143);
    border-color: rgb(67, 106, 143);
    position: relative;
    overflow: hidden;
    color: inherit;
    z-index: 1;
    opacity: 1 !important;
    transition: color .35s ease, border-color .35s ease;

    font-family: "Fira Sans Condensed", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.055em;

}

.nav-contact-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s cubic-bezier(.22,.61,.36,1);
    z-index: -1;
}

.nav-contact-button:hover::before {
    transform: scaleX(1);
}

.nav-contact-button:hover {
    color: rgb(67, 106, 143);
    font-weight: 500;
    border-color: #ffffff;
}

/* Contact button when navbar is white */

.site-header.scrolled .nav-contact-button {
    background: rgb(67, 106, 143);
    color: #ffffff !important;
    border-color: rgb(67, 106, 143);
}

.site-header.scrolled .nav-contact-button::before {
    background: #ffffff;
}

.site-header.scrolled .nav-contact-button:hover {
    color: rgb(67, 106, 143) !important;
    border-color: #ffffff !important;
}







/* HOME HERO */

.hero-section {
    min-height: 920px;
    padding: 16px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}






/* =========================
   HERO BACKGROUNDS
========================= */

.home-hero {
    background-image:
        linear-gradient(
            rgba(0,0,0,.22),
            rgba(0,0,0,.36)
        ),
        url("../img/heroes/home.png");
}

.archaeology-hero{
    background-image:
        linear-gradient(
            rgba(0,0,0,.35),
            rgba(0,0,0,.35)
        ),
        url("../images/heroes/archaeology.webp");
}

.cultural-hero{
    background-image:
        linear-gradient(
            rgba(0,0,0,.35),
            rgba(0,0,0,.35)
        ),
        url("../images/heroes/cultural.webp");
}

.tailor-made-hero{
    background-image:
        linear-gradient(
            rgba(0,0,0,.35),
            rgba(0,0,0,.35)
        ),
        url("../images/heroes/tailor-made.webp");
}



.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin-top: -120px;

    transform: translateY(-40px);
}


.hero-content h1 {
    margin: 0 0 42px;

    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 8vw, 128px);
    line-height: 0.92;
    font-weight: 100;

    text-transform: uppercase;
    letter-spacing: 0.02em;

    color: #ffffff;

    text-shadow:
        0 8px 28px rgba(0,0,0,0.42),
        0 2px 8px rgba(0,0,0,0.32);
}

.hero-content h1 span {
    display: block;
}

.hero-line-one {
    transform: translateX(120px);
    font-size: clamp(33px, 5.5vw, 63px);
}

.hero-line-two {
    transform: translateX(0);
}

.hero-content p {
    max-width: 620px;
    margin: 24px auto 0;
    font-size: 18px;
    color:#ffffff;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 32px;

    font-family: 'Fira Sans Condensed', sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: 0.16em;

    color: #ffffff;
    text-decoration: none;

    border: 1px solid rgba(255,255,255,0.78);
    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        background .28s ease,
        color .28s ease,
        transform .28s ease,
        border-color .28s ease;
}

.hero-button:hover {
    background: #ffffff;
    color: #111111;
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* =========================
   HOME TOP CARDS
========================= */
.top-cards-section {
    position: relative;
    z-index: 5;
    margin-top: -150px;
    padding: 0 32px 25px;
    background: #292929;
    overflow: hidden;
    padding-bottom: 0px;

    font-family: "Fira Sans Condensed";
    font-weight: 500;
    font-size: 18px;

}

/* Franja clara detrás de las tarjetas */
.top-cards-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 70px;
    width: 100%;
    height: 130px;
    background: #f4f2ed;
    z-index: 0;
}
.top-cards-container {
    max-width: 1120px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.top-card {
    height: 230px;
    width: 310px;
    padding: 34px 32px;

    background: #ffffff;
    color: #5e5e5e;

    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 14px 35px rgba(0,0,0,0.10);

    display: flex;
    flex-direction: column;
    justify-content: center;

    position: relative;
    overflow: hidden;

    transition: transform .28s ease, box-shadow .28s ease;

    text-align: center;
}

/* Card 1 left/top, Card 2 center/lower, Card 3 right/top */

.top-card:nth-child(1) {
    margin-top: 0;
}

.top-card:nth-child(2) {
    margin-top: 42px;
}

.top-card:nth-child(3) {
    margin-top: 0;
}

.top-card h3 {
    margin: 0 0 22px;

    font-size: 26px;
    line-height: 1.18;
    font-weight: 500;
    font-family: "Fira Sans Condensed";

    letter-spacing: 0.006em;

    color: #202020;


}

.top-card h3::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 22px;
    background: rgba(255,255,255,0.35);
}

.top-card p {
    margin: 0;
    max-width: 290px;

    font-size: 15px;
    line-height: 1.65;
    color: #2c2c2c;
}

.top-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(0,0,0,0.14);
}


/* =========================
   SCROLL REVEAL
========================= */

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(34px);
    transition:
        opacity .75s ease,
        transform .75s cubic-bezier(.22,.61,.36,1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================
   BEYOND THE LENS COLLAGE
========================= */

.lens-collage {
    background: #292929;
    color: white;

    min-height: 850px;

    padding: 250px 32px 0;
    margin-top: 0;

    position: relative;
    overflow: hidden;

    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(8, 76px);
    gap: 24px;
}

/* Prevents global section rules from breaking the collage */
.lens-collage > * {
    max-width: none;
    margin: 0;
}

.lens-photo,
.lens-center-text {
    position: relative;
    z-index: 2;
    margin-top: 100px;
    text-align: center;
}

.lens-center-text h2 {
    margin-bottom: 60px;
}

.lens-center-text p {
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.12;
}

.lens-photo {
    background: #cfcfcf;
    width: 100%;
    height: 100%;
    min-height: auto;
}

/* Left editorial collage */

.lens-photo-one {
    grid-column: 5 / 9;
    grid-row: 1 / 3;
    z-index: 2;
    background: #a7a7a7;

    width: 450px;
    height: 200px;

    position: relative;
    left: -40px;
    top:-100px;
}

.lens-photo-two {
    grid-column: 2 / 6;
    grid-row: 5 / 8;
    z-index: 3;
    margin-top: -50px;
    background: #adadad;

    width: 350px;
    height: 220px;

    position: relative;
    left: 100px;
    top: -55px;
}

.lens-photo-three {
    grid-column: 4 / 8;
    grid-row: 3 / 6;
    z-index: 4;
    margin-top: -100px;
    background: #777777;

    width: 380px;
    height: 220px;

    position: relative;
    left: -285px;
    top:10px;
}

.lens-photo-four {
    grid-column: 5 / 8;
    grid-row: 5 / 7;
    z-index: 4;
    background: #000000;

    width: 250px;
    height: 270px;

    position: relative;
    left: 105px;
    top:-280px;
}


.lens-center-text {
    grid-column: 8 / 12;
    grid-row: 1 / 5;
    align-self: center;
    z-index: 5;

    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.08;
    text-transform: uppercase;
    max-width: 520px;
    text-align:right;

    position: relative;
    right: -60px;
}




/* =========================
   WHY CHOOSING US
========================= */

.why-us-section {
    background: #f4f2ed;
    color: #111;
    padding: 45px 32px 60px;
    overflow: hidden;
}

.why-us-layout {
    max-width: 1180px;
    min-height: 680px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(7, 80px);
    gap: 24px;

    position: relative;
}

/* Title centered */

.why-us-title {
    grid-column: 5 / 9;
    grid-row: 3 / 6;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    text-transform: uppercase;

    position: relative;
    z-index: 5;
    pointer-events: none;
}

.why-us-title span {
    display: block;

    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.95;
    font-weight: 400;
    letter-spacing: 0.04em;
}

/* Cards base */

.why-card {
    background: rgba(255, 255, 255, 0.84);
    color: #111;

    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.055),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);

    padding: 28px 26px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    text-align: left;

    position: relative;
    z-index: 2;
    overflow: hidden;

    opacity: 1;

    transition:
        transform 2.05s cubic-bezier(.16,.84,.28,1),
        background .45s ease,
        box-shadow .45s ease;
}

/* Initial positions: close to the title */

.why-card-one {
    grid-column: 3 / 6;
    grid-row: 2 / 4;
    transform: translate(60px, 35px);
}

.why-card-two {
    grid-column: 8 / 11;
    grid-row: 2 / 4;
    transform: translate(-60px, 35px);
}

.why-card-three {
    grid-column: 3 / 6;
    grid-row: 5 / 7;
    transform: translate(60px, -35px);
}

.why-card-four {
    grid-column: 8 / 11;
    grid-row: 5 / 7;
    transform: translate(-60px, -35px);
}

/* Final positions: usa tus valores revisados acá */

.why-us-section.is-visible .why-card-one {
    transform: translate(-40px, 0px);
}

.why-us-section.is-visible .why-card-two {
    transform: translate(120px, 25px);
}

.why-us-section.is-visible .why-card-three {
    transform: translate(-120px, -5px);
}

.why-us-section.is-visible .why-card-four {
    transform: translate(20px, 20px);
}

/* Typography */

.why-card h3 {
    margin: 0 0 14px;

    font-size: 23px;
    line-height: 1.08;
    font-weight: 500;

    text-transform: none;
    letter-spacing: 0.01em;
}

.why-card p {
    margin: 0;

    font-size: 15px;
    line-height: 1.62;
}

/* Visual state after movement */

.why-us-section.is-visible .why-card {
    background: rgba(255, 255, 255, 0.92);
}

/* Hover simple, no transform para no pelear con la animación */

.why-card:hover {
    box-shadow:
        0 22px 52px rgba(0, 0, 0, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.70);
}




/* =========================
   TESTIMONIALS & REVIEWS
========================= */

.testimonials-section {
    background: #292929;
    color: #ffffff;
    padding: 135px 32px 145px;
    overflow: hidden;
}

.testimonials-header {
    max-width: 1180px;
    margin: 0 auto 72px;

    opacity: 0.3;
    transform: translateY(24px);

    transition:
        opacity 1.15s ease,
        transform 1.15s cubic-bezier(.22,.61,.36,1);
}

.testimonials-section.is-visible .testimonials-header {
    opacity: 1;
    transform: translateY(0);
}

.section-kicker {
    margin: 0 0 18px;

    font-size: 13px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.22em;

    color: rgba(255,255,255,0.58);
}

.testimonials-header h2 {
    margin: 0;

    font-size: clamp(42px, 6vw, 78px);
    line-height: 0.95;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.testimonials-header h2 span {
    display: block;
}

.testimonials-intro {
    max-width: 520px;
    margin: 28px 0 0;

    font-size: 17px;
    line-height: 1.7;

    color: rgba(255,255,255,0.72);
}

/* Carousel */

.reviews-carousel {
    max-width: 1180px;
    margin: 0 auto;

    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 28px;

    transform: translateX(0);
    transition: transform 1.15s cubic-bezier(.22,.61,.36,1);
    will-change: transform;
}

.review-card {
    flex: 0 0 calc((100% - 56px) / 3);

    min-height: 310px;
    padding: 36px 34px;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);

    box-shadow:
        0 18px 45px rgba(0,0,0,0.12),
        inset 0 1px 0 rgba(255,255,255,0.08);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.review-text {
    margin: 0;

    font-size: 18px;
    line-height: 1.65;
    font-weight: 400;

    color: rgba(255,255,255,0.88);
}

.review-meta {
    margin-top: 34px;
    padding-top: 22px;

    border-top: 1px solid rgba(255,255,255,0.16);

    display: flex;
    flex-direction: column;
    gap: 7px;
}

.review-name {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;

    color: #ffffff;
}

.review-detail {
    font-size: 13px;
    line-height: 1.4;

    color: rgba(255,255,255,0.58);
}

/* Hover pause feeling */

.reviews-carousel:hover .review-card {
    background: rgba(255,255,255,0.105);
}

/* Responsive */

@media (max-width: 900px) {
    .review-card {
        flex: 0 0 calc((100% - 28px) / 2);
    }
}

@media (max-width: 640px) {
    .testimonials-section {
        padding: 95px 22px 105px;
    }

    .review-card {
        flex: 0 0 100%;
    }

    .testimonials-header {
        margin-bottom: 48px;
    }
}


/* Optional review image / screenshot / letter */

.review-media {
    width: 100%;
    height: 145px;
    margin-bottom: 24px;

    overflow: hidden;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
}

.review-media img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
}






/* =========================
   FEATURED EXPERIENCES
========================= */

.featured-experiences-section {
    background: #f4f2ed;
    color: #111;
    padding: 125px 32px 145px;
    overflow: hidden;
}

.experiences-showcase {
    max-width: 1180px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 32px;

    align-items: stretch;
}

/* Header */

.featured-experiences-header {
    grid-column: 1 / 6;

    min-height: 310px;
    padding: 10px 0 28px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    opacity: 0.35;
    transform: translateX(-42px);

    transition:
        opacity 1.15s ease,
        transform 1.15s cubic-bezier(.22,.61,.36,1);
}

.featured-experiences-section.is-visible .featured-experiences-header {
    opacity: 1;
    transform: translateX(0);
}

.featured-experiences-header .section-kicker {
    margin: 0 0 18px;

    font-size: 13px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.22em;

    color: rgba(0,0,0,0.46);
}

.featured-experiences-header h2 {
    margin: 0;

    font-size: clamp(46px, 6.3vw, 82px);
    line-height: 0.92;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.featured-experiences-header h2 span {
    display: block;
}

.featured-experiences-header p {
    max-width: 460px;
    margin: 30px 0 0;

    font-size: 17px;
    line-height: 1.7;

    color: rgba(0,0,0,0.66);
}

/* Cards */

.experience-card {
    position: relative;
    overflow: hidden;

    aspect-ratio: 16 / 9;
    min-height: 310px;

    background: #b7b7b7;
    color: #ffffff;

    box-shadow: 0 18px 45px rgba(0,0,0,0.10);

    opacity: 0;
    transform: translateY(26px);

    transition:
        opacity .95s ease,
        transform 1.05s cubic-bezier(.22,.61,.36,1),
        box-shadow .35s ease;
}

/* Layout for 3 cards */

.experience-card-one {
    grid-column: 6 / 13;
    transform: translate(-24px, 26px);
}

.experience-card-two {
    grid-column: 1 / 7;
    transform: translate(-24px, 26px);
}

.experience-card-three {
    grid-column: 7 / 12;
    transform: translate(-24px, 100px);
}



/* Reveal */

.featured-experiences-section.is-visible .experience-card {
    opacity: 1;
    transform: translateY(0);
}

.featured-experiences-section.is-visible .experience-card-one {
    transition-delay: .08s;
}

.featured-experiences-section.is-visible .experience-card-two {
    transition-delay: .16s;
}

.featured-experiences-section.is-visible .experience-card-three {
    transition-delay: .24s;
}

/* Image */

.experience-image {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(135deg, #c5c5c5, #747474);
}

.experience-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;

    transform: scale(1);

    transition:
        transform .75s cubic-bezier(.22,.61,.36,1),
        filter .45s ease;
}

/* Soft overlay */

.experience-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.50) 0%,
            rgba(0,0,0,0.34) 34%,
            rgba(0,0,0,0.14) 68%,
            rgba(0,0,0,0.02) 100%
        );

    pointer-events: none;
    transition: background .45s ease;
}

.experience-card:hover::after {
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.58) 0%,
            rgba(0,0,0,0.40) 38%,
            rgba(0,0,0,0.18) 72%,
            rgba(0,0,0,0.03) 100%
        );
}

/* Content */

.experience-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;

    padding: 30px 34px 30px;

    transform: translateY(58px);
    transition: transform .55s cubic-bezier(.22,.61,.36,1);
}

.experience-number {
    display: block;
    margin-bottom: 15px;

    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.22em;
    text-transform: uppercase;

    color: rgba(255,255,255,0.68);
}

.experience-card h3 {
    max-width: 560px;
    margin: 0;

    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.04;
    font-weight: 400;
    letter-spacing: 0.005em;
}

.experience-card p {
    max-width: 520px;
    margin: 18px 0 0;

    font-size: 15.5px;
    line-height: 1.62;

    color: rgba(255,255,255,0.86);

    opacity: 0;
    transition: opacity .35s ease;
}

.experience-link {
    display: inline-flex;
    margin-top: 20px;

    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: #ffffff;

    opacity: 0;
    transition:
        opacity .35s ease,
        transform .35s ease;
}

.experience-link::after {
    content: "→";
    margin-left: 10px;
    transition: transform .35s ease;
}

/* Hover */

.experience-card:hover {
    box-shadow: 0 26px 62px rgba(0,0,0,0.16);
}

.experience-card:hover .experience-image img {
    transform: scale(1.055);
    filter: saturate(1.08);
}

.experience-card:hover .experience-content {
    transform: translateY(0);
}

.experience-card:hover p,
.experience-card:hover .experience-link {
    opacity: 1;
}

.experience-card:hover .experience-link:hover::after {
    transform: translateX(5px);
}

/* Responsive */

@media (max-width: 900px) {
    .experiences-showcase {
        display: grid;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .featured-experiences-header,
    .experience-card-one,
    .experience-card-two,
    .experience-card-three {
        grid-column: auto;
    }

    .featured-experiences-header {
        min-height: auto;
        padding: 0;
        margin-bottom: 20px;
    }

    .experience-card {
        aspect-ratio: auto;
        min-height: 360px;
    }

    .experience-content {
        transform: translateY(0);
    }

    .experience-card p,
    .experience-link {
        opacity: 1;
    }
}

@media (max-width: 640px) {
    .featured-experiences-section {
        padding: 95px 22px 110px;
    }

    .experience-card {
        min-height: 340px;
    }

    .experience-content {
        padding: 28px 26px 26px;
    }
}




/* =========================
   CONTACT
========================= */

.contact-section {
    background: #001f30;
    color: #ffffff;
    padding: 135px 32px 145px;
    overflow: hidden;
}

.contact-inner {
    max-width: 1180px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
    align-items: center;
}

.contact-content {
    opacity: 0.35;
    transform: translateX(-42px);

    transition:
        opacity 1.15s ease,
        transform 1.15s cubic-bezier(.22,.61,.36,1);
}

.contact-section.is-visible .contact-content {
    opacity: 1;
    transform: translateX(0);
}

.contact-content .section-kicker {
    margin: 0 0 20px;

    font-size: 13px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.22em;

    color: rgba(255,255,255,0.58);
}

.contact-content h2 {
    margin: 0;

    font-size: clamp(42px, 6vw, 78px);
    line-height: 0.95;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.035em;
}

.contact-content h2 span {
    display: block;
}

.contact-intro {
    max-width: 560px;
    margin: 32px 0 0;

    font-size: 17px;
    line-height: 1.75;

    color: rgba(255,255,255,0.74);
}

.contact-actions {
    margin-top: 42px;

    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.contact-main-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 30px;

    background: #ffffff;
    color: #111;

    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.16em;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.contact-main-button:hover {
    background: #f4f2ed;
    transform: translateY(-3px);
}

.contact-secondary-link {
    color: rgba(255,255,255,0.76);

    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.16em;

    transition: color .3s ease;
}

.contact-secondary-link:hover {
    color: #ffffff;
}

/* Contact card */

.contact-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);

    padding: 42px 40px;

    box-shadow:
        0 18px 45px rgba(0,0,0,0.14),
        inset 0 1px 0 rgba(255,255,255,0.10);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    opacity: 0.35;
    transform: translateY(34px);

    transition:
        opacity 1.15s ease .12s,
        transform 1.15s cubic-bezier(.22,.61,.36,1) .12s;
}

.contact-section.is-visible .contact-card {
    opacity: 1;
    transform: translateY(0);
}

.contact-card h3 {
    margin: 0 0 30px;

    font-size: 28px;
    line-height: 1.1;
    font-weight: 400;
}

.contact-info-list {
    list-style: none;
    margin: 0;
    padding: 0;

    display: grid;
    gap: 22px;
}

.contact-info-list li {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.13);
}

.contact-info-list span {
    display: block;
    margin-bottom: 8px;

    font-size: 11px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.16em;

    color: rgba(255,255,255,0.52);
}

.contact-info-list a,
.contact-info-list p {
    margin: 0;

    font-size: 16px;
    line-height: 1.55;

    color: rgba(255,255,255,0.86);
}

.business-info {
    margin-top: 34px;
    padding-top: 28px;

    border-top: 1px solid rgba(255,255,255,0.16);
}

.business-info h4 {
    margin: 0 0 16px;

    font-size: 13px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.18em;

    color: rgba(255,255,255,0.58);
}

.business-info p {
    margin: 0 0 10px;

    font-size: 14.5px;
    line-height: 1.55;

    color: rgba(255,255,255,0.76);
}

.contact-legal-links {
    margin-top: 30px;

    display: grid;
    gap: 10px;
}

.contact-legal-links a {
    font-size: 13px;
    line-height: 1.45;

    color: rgba(255,255,255,0.76);

    transition: color .3s ease, transform .3s ease;
}

.contact-legal-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* Responsive */

@media (max-width: 900px) {
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 52px;
    }
}

@media (max-width: 640px) {
    .contact-section {
        padding: 95px 22px 105px;
    }

    .contact-card {
        padding: 34px 28px;
    }

    .contact-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }
}

.contact-info-list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info-list li a + a {
    display: block;
    margin-top: 6px;
}





/* =========================
   FOOTER
========================= */

.site-footer {
    position: relative;
    overflow: hidden;

    max-width: 1900px;

    background: #062033;
    color: #ffffff;
}

/* Background SVG */

.footer-background {
    position: absolute;
    inset: 0;
    z-index: 1;

    width: 100%;
    height: 100%;

    pointer-events: none;
}

.footer-background img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;
}

/* Soft overlay for readability */

.footer-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.02) 0%,
        rgba(0,0,0,0.06) 32%,
        rgba(0,0,0,0.22) 58%,
        rgba(0,0,0,0.48) 100%
    );

    pointer-events: none;
}

/* Main content */

.footer-inner {
    position: relative;
    z-index: 3;

    max-width: 1180px;
    margin: 0 auto;

    padding: 385px 32px 70px;

    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 32px;

    align-items: start;
}


/* Footer block positions */

.footer-inner > .footer-column:nth-child(1) {
    grid-column: 2 / 4;
    grid-row: 1;
    transform: translate(420px, 230px);
}

.footer-inner > .footer-column:nth-child(2) {
    grid-column: 5 / 8;
    grid-row: 1;
    transform: translate(310px, 230px);
}

.footer-inner > .footer-contact {
    grid-column: 9 / 12;
    grid-row: 1;
    transform: translate(230px, 230px);
}

.footer-esnna {
    grid-column: 3 / 11;
    grid-row: 2;
    margin-top: 70px;
    transform: translate(-40px, -250px);
}

/* Brand */

.footer-brand {
    max-width: 360px;
}

.footer-brand h3 {
    margin: 0 0 26px;

    font-size: 36px;
    line-height: 1.02;
    font-weight: 400;

    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-brand p {
    margin: 0;

    font-size: 15.5px;
    line-height: 1.75;

    color: rgba(255,255,255,0.82);
}

/* Columns */

.footer-column h4 {
    margin: 0 0 24px;

    font-size: 12px;
    line-height: 1;

    text-transform: uppercase;
    letter-spacing: 0.22em;

    color: rgba(255,255,255,0.64);
}

.footer-column a {
    display: block;
    margin-bottom: 12px;

    font-size: 14.5px;
    line-height: 1.45;

    color: rgba(255,255,255,0.84);
    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;
}

.footer-column a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* Contact */

.footer-contact p {
    margin: 0 0 22px;

    font-size: 14.5px;
    line-height: 1.55;

    color: rgba(255,255,255,0.82);
}

.footer-contact strong {
    color: #ffffff;
    font-weight: 500;
}

/* Legal strip */

.footer-legal-strip {
    position: relative;
    z-index: 3;

    max-width: 1180px;
    margin: 0 auto;

    padding: 24px 32px 36px;

    border-top: 1px solid rgba(255,255,255,0.18);

    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: flex-start;
}

.footer-business-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;

    font-size: 12.5px;
    line-height: 1.45;

    color: rgba(255,255,255,0.68);
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-links a {
    font-size: 12.5px;
    line-height: 1.45;

    color: rgba(255,255,255,0.76);
    text-decoration: none;

    transition: color .25s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* Responsive */

@media (max-width: 1000px) {
    .footer-inner {
        padding-top: 340px;
        grid-template-columns: 1fr 1fr;
        gap: 46px;
    }

    .footer-brand {
        max-width: none;
    }
}

@media (max-width: 700px) {
    .site-footer {
        min-height: auto;
    }

    .footer-inner {
        padding: 280px 22px 56px;

        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-legal-strip {
        padding: 24px 22px 34px;
        flex-direction: column;
    }

    .footer-brand h3 {
        font-size: 30px;
    }
}

/* =========================
   FOOTER ESNNA CARD
========================= */

.footer-esnna {
    grid-column: 1 / -1;
    margin-top: 160px;
}

.footer-esnna-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 24px;
    align-items: center;

    max-width: 480px;

    padding: 18px 20px;

    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);

    color: #ffffff;
    text-decoration: none;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        background .3s ease,
        transform .3s ease,
        border-color .3s ease;
}

.footer-esnna-card:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.24);
    transform: translateY(-3px);
}

.footer-esnna-image {
    width: 100%;
    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: rgba(255,255,255,0.08);

    transition:
        aspect-ratio .45s ease,
        background .35s ease;
}

.footer-esnna-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;

    transition:
        object-fit .35s ease,
        transform .45s cubic-bezier(.22,.61,.36,1);
}

/* On hover, show full poster */

.footer-esnna-card:hover .footer-esnna-image {
    aspect-ratio: 3 / 4;
    background: rgba(255,255,255,0.12);
}

.footer-esnna-card:hover .footer-esnna-image img {
    object-fit: contain;
    transform: scale(0.98);
}

.footer-esnna-text span {
    display: block;
    margin-bottom: 10px;

    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.18em;

    color: rgba(255,255,255,0.62);
}

.footer-esnna-text p {
    max-width: 390px;
    margin: 0;

    font-size: 14.5px;
    line-height: 1.6;

    color: rgba(255,255,255,0.82);
}

.footer-esnna-text small {
    display: inline-block;
    margin-top: 14px;

    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.14em;

    color: rgba(255,255,255,0.88);
}

@media (max-width: 700px) {
    .footer-esnna-card {
        grid-template-columns: 1fr;
    }

    .footer-esnna-image {
        max-width: 220px;
    }
}









/* =========================
   MOBILE NAVBAR
========================= */

.mobile-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;

    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.26);
    border-radius: 999px;

    cursor: pointer;
    z-index: 1002;
}

.mobile-menu-toggle span {
    display: block;

    width: 20px;
    height: 2px;

    background: #ffffff;
    border-radius: 999px;

    transition:
        transform .25s ease,
        opacity .25s ease,
        background .25s ease;
}

.site-header.scrolled .mobile-menu-toggle {
    background: rgba(255,255,255,0.72);
    border-color: rgba(0,0,0,0.10);
}

.site-header.scrolled .mobile-menu-toggle span {
    background: #111111;
}

@media (max-width: 980px) {
    .nav-container {
        width: 100%;
        height: 70px;
        padding: 0 24px;
    }

    .site-logo {
        width: 128px;
        height: 50px;
        z-index: 1002;
    }

    .site-logo img {
        max-height: 58px;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;

        width: min(360px, 86vw);
        height: 100vh;

        padding: 96px 28px 34px;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        background:
            linear-gradient(
                180deg,
                rgba(36, 57, 74, 0.98),
                rgba(18, 35, 49, 0.98)
            );

        color: #ffffff;

        box-shadow: -24px 0 60px rgba(0,0,0,0.28);

        transform: translateX(105%);
        opacity: 0;
        visibility: hidden;

        transition:
            transform .32s ease,
            opacity .32s ease,
            visibility .32s ease;

        overflow-y: auto;
        z-index: 1001;
    }

    body.mobile-menu-open .main-nav {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav > a,
    .nav-dropdown > a {
        min-height: auto;

        padding: 17px 0;

        font-size: 17px;
        font-weight: 500;
        letter-spacing: 0.08em;

        color: #ffffff !important;

        border-bottom: 1px solid rgba(255,255,255,0.14);
    }

    .main-nav:hover > a:not(.nav-contact-button),
    .main-nav:hover .nav-dropdown > a {
        opacity: 1;
    }

    .main-nav > a:hover:not(.nav-contact-button),
    .nav-dropdown:hover > a {
        transform: none;
    }

    .nav-dropdown {
        position: relative;
    }

    .nav-dropdown::after {
        display: none;
    }

    .dropdown-menu,
    .dropdown-submenu {
    position: static;

    min-width: 0;
    width: 100%;

    padding: 0;
    margin: 0;

    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;

    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    opacity: 1;
    visibility: visible;
    transform: none;

    display: none;
}

.nav-dropdown.mobile-open > .dropdown-menu,
.dropdown-item-has-children.mobile-open > .dropdown-submenu {
    display: block;
}

.nav-dropdown > a::after {
    content: "⌄";
    margin-left: auto;

    font-size: 18px;
    line-height: 1;

    opacity: 0.76;
    transition: transform .22s ease;
}

.nav-dropdown.mobile-open > a::after {
    transform: rotate(180deg);
}

.dropdown-item-has-children > a::after {
    content: "⌄";
    margin-left: auto;

    font-size: 16px;
    opacity: 0.65;
    transition: transform .22s ease;
}

.dropdown-item-has-children.mobile-open > a::after {
    transform: rotate(180deg);
}

    .dropdown-menu > a,
    .dropdown-item-has-children > a,
    .dropdown-submenu a {
        padding: 12px 0 12px 18px;

        font-size: 14.5px;
        line-height: 1.25;
        letter-spacing: 0.055em;

        color: rgba(255,255,255,0.78);
        border-bottom: none;
    }

    .dropdown-submenu a {
        padding-left: 34px;
        color: rgba(255,255,255,0.66);
    }

    .dropdown-menu > a:hover,
    .dropdown-item-has-children:hover > a,
    .dropdown-submenu a:hover {
        background: transparent;
        color: #ffffff;
        transform: none;
    }

    .dropdown-item-has-children > a span {
        display: none;
    }

    .nav-contact-button {
        margin-top: 18px;
        padding: 15px 22px !important;

        display: inline-flex;
        justify-content: center;

        background: rgb(67, 106, 143);
        border: 1px solid rgba(255,255,255,0.22);

        color: #ffffff !important;
    }

    body.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    body.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 600px) {
    .nav-container {
        height: 68px;
        padding: 0 18px;
    }

    .site-logo {
        width: 118px;
    }

    .main-nav {
        width: 88vw;
        padding: 88px 24px 32px;
    }
}




/* =========================
   HOME QUICK RESPONSIVE FIX
========================= */

@media (max-width: 980px) {

    /* Evita desbordes generales */
    body {
        overflow-x: hidden;
    }

    .hero-section,
    .top-cards-section,
    .beyond-lens-section,
    .why-section,
    .featured-experiences-section,
    .contact-section {
        width: 100%;
        overflow: hidden;
    }

    /* Beyond the Lens */
    .beyond-lens-section {
        padding: 82px 28px;
    }

    .beyond-lens-inner,
    .beyond-lens-content,
    .beyond-lens-grid,
    .lens-content,
    .lens-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 42px;
        width: 100%;
        max-width: 100%;
    }

    .beyond-lens-text,
    .lens-text {
        max-width: 680px;
        width: 100%;
    }

    .beyond-lens-text h2,
    .lens-text h2 {
        font-size: clamp(46px, 9vw, 78px);
        line-height: 0.98;
    }

    .beyond-lens-text p,
    .lens-text p {
        font-size: 17px;
        line-height: 1.7;
    }

    .beyond-lens-collage,
    .lens-collage,
    .gallery-collage {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .beyond-lens-collage img,
    .lens-collage img,
    .gallery-collage img {
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }
}

@media (max-width: 640px) {

    .beyond-lens-section {
        padding: 68px 22px;
    }

    .beyond-lens-inner,
    .beyond-lens-content,
    .beyond-lens-grid,
    .lens-content,
    .lens-grid {
        gap: 30px;
    }

    .beyond-lens-text h2,
    .lens-text h2 {
        font-size: clamp(40px, 13vw, 64px);
        letter-spacing: 0.06em;
    }

    .beyond-lens-text p,
    .lens-text p {
        font-size: 16px;
    }

    .beyond-lens-collage,
    .lens-collage,
    .gallery-collage {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .beyond-lens-collage img,
    .lens-collage img,
    .gallery-collage img {
        width: 100%;
        height: auto;
        max-height: 360px;
        object-fit: cover;
    }
}



.footer-esnna {
    pointer-events: none;
}

.footer-esnna-card {
    pointer-events: auto;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}