@font-face {
    font-family: 'AeonikExtended';
    src: url('./fuentes/AeonikExtendedTRIAL-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@media (max-width: 480px) {
    .hero-content {
        padding: 4.2rem 1rem 3.2rem;
    }

    .hero-title {
        font-size: clamp(1.6rem, 11vw, 2.3rem);
    }

    .hero-line {
        max-width: 160px;
    }

    .hero-cta {
        width: 100%;
        max-width: 320px;
    }

    .experience-track {
        gap: 1.5rem;
        padding: 0 1rem 1.5rem;
    }

    .experience-card {
        flex-basis: 85vw;
    }

    .immersive-cta {
        width: 100%;
        justify-content: center;
    }
}

@font-face {
    font-family: 'AeonikExtendedSemi';
    src: url('./fuentes/AeonikExtendedTRIAL-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeueExtended';
    src: url('./fuentes/HelveticaNeue-Extended.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeueBlackExtended';
    src: url('./fuentes/HelveticaNeue-BlackExt.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

:root {
    --amun-jungle-green: #243730;
    --amun-sage: #5E6D65;
    --amun-sand: #F4EBDC;
    --amun-charcoal: #353535;
    --amun-stone: #CFC3B2;
    --amun-ink: #0f1d2f;
    --amun-ocean: #0f4a82;
    --amun-navy: #1b2d70;
    --amun-blue-gradient: linear-gradient(135deg, var(--amun-ocean), var(--amun-navy));
    --amun-gold-muted: #C8B295;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--amun-charcoal);
    background-color: var(--amun-sand);
    font-weight: 300;
    line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'AeonikExtended', sans-serif;
    font-weight: 400;
}

.heading-xl {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: 0.04em;
}

.heading-lg {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: 0.03em;
}

.heading-md {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.font-aeonik {
    font-family: 'AeonikExtendedSemi', 'AeonikExtended', sans-serif;
    font-weight: 600;
}

.text-jungle {
    color: var(--amun-ink);
}

.bg-jungle {
    background-color: var(--amun-jungle-green);
    color: #fff;
}

.border-stone {
    border-color: var(--amun-stone);
}

.bg-stone {
    background-color: var(--amun-stone);
}

.text-accent {
    color: var(--amun-jungle-green);
}

.bg-soul-gradient {
    background: radial-gradient(circle at 50% 50%, rgba(244, 235, 220, 0.5), transparent 80%),
        linear-gradient(to bottom, var(--amun-sand), #E8E0D0);
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.glass-nav {
    background: rgba(36, 55, 48, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.font-helvetica {
    font-family: 'HelveticaNeueExtended', 'AeonikExtendedSemi', 'AeonikExtended', sans-serif;
}

.btn-base {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    padding: 0.85rem 2.4rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-base::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-base:hover::after {
    opacity: 1;
}

.btn-blue {
    background-image: var(--amun-blue-gradient);
    color: #fff;
    border: none;
}

.btn-blue:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(15, 30, 52, 0.45);
}

.btn-outline-blue {
    background: transparent;
    border: 1px solid rgba(15, 74, 130, 0.6);
    color: var(--amun-ink);
}

.btn-outline-blue:hover {
    background-image: var(--amun-blue-gradient);
    color: #fff;
    box-shadow: 0 12px 28px rgba(15, 30, 52, 0.3);
}

.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(244, 235, 220, 0.6);
    color: var(--amun-sand);
}

.btn-outline-light:hover {
    background-color: var(--amun-sand);
    color: var(--amun-jungle-green);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.link-blue {
    color: var(--amun-ink);
    position: relative;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(15, 74, 130, 0.3);
    transition: color 0.3s ease;
}

.link-blue::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -1px;
    left: 0;
    background-color: var(--amun-ocean);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-blue:hover {
    color: var(--amun-ocean);
    border-color: transparent;
}

.link-blue:hover::after {
    width: 100%;
}

.grainy::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='grain'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23grain)' opacity='0.12'/></svg>");
    pointer-events: none;
}

.hero-banner {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-image: url('imagenes/BANNER-PRINCIPAL-1.webp');
    background-size: cover;
    background-position: center 60%;
    overflow: hidden;
    will-change: transform;
}

@media (min-width: 1024px) {
    .hero-banner {
        background-attachment: fixed;
    }
}

.hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 0, 0, 0.45), transparent 55%), linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 7rem 1.5rem 5rem;
    max-width: 900px;
    margin: 0 auto;
    font-family: 'AeonikExtendedSemi', 'AeonikExtended', sans-serif;
}

.hero-title {
    font-size: clamp(1.8rem, 6vw, 4.3rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 0.6rem;
    margin-bottom: 0.6rem;
    white-space: nowrap;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-line-block {
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.hero-line-block>*+* {
    margin-top: 1.5rem;
}

.hero-line-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
}

.hero-line {
    flex: 1;
    height: 1px;
    max-width: 260px;
    background-color: rgba(255, 255, 255, 0.8);
}

.hero-line-text {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3.5rem;
    border-radius: 999px;
    background-image: var(--amun-blue-gradient);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(12, 30, 52, 0.4);
}

.hero-projects {
    margin-top: 5rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.8);
}

.hero-projects-list {
    margin-top: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
    justify-content: center;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

.scroll-shadow {
    backdrop-filter: blur(20px) saturate(180%);
    background-color: rgba(225, 133, 81, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.origin-section {
    position: relative;
    overflow: hidden;
    color: #fff;
    background-image:
        url('imagenes/BANNER-SIGNIFICADO-1.webp');
    background-size: cover;
    background-position: center;
    padding: clamp(3rem, 8vh, 4.5rem) 0;
}

@media (min-width: 1024px) {
    .origin-section {
        background-attachment: fixed;
    }
}

.origin-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 65% 20%, rgba(255, 232, 206, 0.2), transparent 60%);
}

.origin-content {
    position: relative;
    z-index: 2;
}

.origin-glyph {
    width: 96px;
    height: auto;
    margin: 0 auto 1.8rem;
    display: block;
    filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.35));
}

.origin-subtitle {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.origin-heading {
    font-family: 'HelveticaNeueExtended', 'AeonikExtendedSemi', 'AeonikExtended', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.tracking-fixed {
    letter-spacing: 0.08em !important;
}

.origin-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 300;
}

.experience-section {
    background: #fbf3eb;
    padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.experience-wrapper {
    width: 100%;
    padding: 0 clamp(1.5rem, 6vw, 5rem);
    display: flex;
    flex-direction: column;
    gap: clamp(1.8rem, 3vw, 2.5rem);
}

.experience-header {
    max-width: 760px;
    margin: 0 auto;
}

.experience-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(36, 55, 48, 0.08);
    color: rgba(36, 55, 48, 0.75);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.experience-header h2 {
    margin-top: 0.8rem;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.22;
    color: var(--amun-ink);
}

.experience-header p {
    margin-top: 1rem;
    font-size: clamp(1.05rem, 2.1vw, 1.25rem);
    line-height: 1.7;
    color: rgba(15, 29, 47, 0.75);
}

.page-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(9, 19, 35, 0.6), transparent 55%), #040c18;
    color: var(--amun-sand);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.25;
    background-image: var(--page-hero-image, none);
    background-size: cover;
    background-position: center;
    filter: saturate(0.9) contrast(1.05);
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 15, 0.7) 0%, rgba(2, 6, 15, 0.9) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(3.5rem, 9vw, 6rem) clamp(1.5rem, 6vw, 4rem);
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
}

@media (min-width: 992px) {
    .page-hero-content {
        grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
        align-items: center;
    }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(248, 233, 209, 0.85);
}

.hero-metrics {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.metric-card {
    border-radius: 20px;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    text-align: left;
}

.metric-card h3 {
    font-size: 2rem;
    color: var(--amun-sand);
    margin: 0;
}

.metric-card p {
    margin-top: 0.4rem;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(248, 233, 209, 0.7);
}

.story-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .story-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.story-card {
    border-radius: 28px;
    border: 1px solid rgba(207, 195, 178, 0.4);
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    box-shadow: 0 18px 32px rgba(24, 36, 32, 0.08);
}

.story-card h3 {
    font-size: 1.5rem;
    color: var(--amun-ink);
    margin-bottom: 0.8rem;
}

.story-card p {
    color: rgba(15, 29, 47, 0.75);
    line-height: 1.65;
}

.story-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(24, 36, 32, 0.12);
}

.stat-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.stat-card {
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(207, 195, 178, 0.5);
    padding: 1.8rem;
    text-align: left;
}

.stat-card strong {
    display: block;
    font-size: 2rem;
    color: var(--amun-ink);
    margin-bottom: 0.4rem;
}

.stat-card span {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    color: rgba(15, 29, 47, 0.6);
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: rgba(15, 29, 47, 0.75);
}

.detail-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    margin-top: 0.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffcf9f, #89b6ff);
    box-shadow: 0 0 0 4px rgba(137, 182, 255, 0.18);
}

.cta-panel {
    border-radius: 32px;
    padding: clamp(2rem, 5vw, 3rem);
    background: linear-gradient(135deg, rgba(8, 18, 42, 0.95), rgba(15, 53, 82, 0.9));
    color: var(--amun-sand);
    position: relative;
    overflow: hidden;
}

.cta-panel::after {
    content: "";
    position: absolute;
    inset: -20% auto auto -20%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(248, 214, 176, 0.12);
    filter: blur(25px);
}

.cta-panel>* {
    position: relative;
    z-index: 1;
}

.experience-scroll-wrapper {
    position: relative;
}

.experience-track {
    display: flex;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    overflow-x: auto;
    overflow-y: hidden;
    /* Prevent vertical scroll triggers */
    scroll-snap-type: x mandatory;
    padding: 0 clamp(1rem, 5vw, 5rem) 2rem;
    margin: 0;
    width: 100%;
    background: transparent;
    -webkit-overflow-scrolling: touch;
    /* Smooth scroll iOS */
}

.experience-track::-webkit-scrollbar {
    display: none;
}

.experience-card {
    flex: 0 0 min(60vw, 320px);
    aspect-ratio: 9 / 16;
    height: auto;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: center;
    box-shadow: none;
    background: transparent;
    margin: 0;
}

.experience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-pagination {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.experience-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(15, 29, 47, 0.35);
    border: none;
    padding: 0;
    transition: all 0.3s ease;
}

.experience-dot[aria-current="true"] {
    width: 22px;
    background: var(--amun-ink);
}

.amenities-section {
    position: relative;
    padding: clamp(2.5rem, 5vw, 4.5rem) 0;
    color: #f5f7ff;
    background: radial-gradient(circle at 15% 20%, rgba(102, 149, 211, 0.25), transparent 55%), radial-gradient(circle at 85% 15%, rgba(207, 195, 178, 0.08), transparent 45%), #0b1c34;
    overflow: hidden;
}

.amenities-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='grain'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23grain)' opacity='0.18'/></svg>");
    pointer-events: none;
}

.amenities-section::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -220px;
    top: -140px;
    background: radial-gradient(circle, rgba(246, 210, 166, 0.25) 0%, transparent 65%);
    filter: blur(0);
    pointer-events: none;
}

.amenities-shell {
    position: relative;
    z-index: 1;
    max-width: 1040px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(1.2rem, 3vw, 2.1rem);
    padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.amenities-shell>* {
    width: 100%;
}

.amenities-head {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 520px;
    align-items: center;
}

.amenities-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    background: rgba(248, 233, 209, 0.12);
    color: rgba(248, 233, 209, 0.85);
    width: fit-content;
}

.amenities-title {
    font-size: clamp(1.9rem, 4.2vw, 2.8rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #f8e7cf;
}

.amenities-text {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.6;
    color: rgba(239, 240, 247, 0.78);
}

.amenities-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

.amenities-highlights li {
    list-style: none;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(102, 149, 211, 0.12);
    border: 1px solid rgba(135, 176, 232, 0.18);
    color: rgba(214, 225, 251, 0.9);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(1.2rem, 3.5vw, 2rem);
    width: 100%;
    max-width: 940px;
    margin: clamp(1rem, 3vw, 1.8rem) auto 0;
}

.amenity-card {
    position: relative;
    padding: clamp(1.6rem, 2.5vw, 2.2rem);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(17, 36, 65, 0.9), rgba(10, 20, 38, 0.92));
    border: 1px solid rgba(143, 168, 222, 0.16);
    box-shadow: 0 28px 48px rgba(5, 12, 26, 0.5);
    backdrop-filter: blur(14px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.amenity-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 24px;
    border: 1px solid rgba(248, 233, 209, 0.06);
    pointer-events: none;
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 34px 60px rgba(10, 18, 40, 0.52);
    border-color: rgba(189, 207, 249, 0.5);
}

.amenity-card:hover h3 {
    color: #fff;
    text-shadow: 0 0 20px rgba(248, 231, 207, 0.4);
}

.amenity-card h3 {
    font-size: 1.4rem;
    color: #f8e7cf;
    margin-bottom: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.amenity-list {
    display: grid;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(225, 232, 248, 0.85);
    padding: 0;
    margin: 0;
    list-style: none;
}

.amenity-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.amenity-list li::before {
    content: "";
    min-width: 8px;
    height: 8px;
    margin-top: 0.45rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #88b4ff, #f4ddc0);
    box-shadow: 0 0 0 2px rgba(136, 180, 255, 0.15);
}

.amenities-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.amenities-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    background: rgba(245, 231, 204, 0.12);
    border: 1px solid rgba(245, 231, 204, 0.32);
    color: #f7e5c8;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.amenities-cta a:hover {
    background: linear-gradient(120deg, rgba(239, 210, 174, 0.65), rgba(145, 180, 232, 0.55));
    color: #09233f;
    transform: translateY(-3px);
}

.amenities-cta span {
    font-size: 0.82rem;
    color: rgba(239, 240, 247, 0.68);
    letter-spacing: 0.04em;
    max-width: 320px;
}

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

@media (min-width: 1200px) {
    .amenities-grid {
        grid-template-columns: repeat(3, minmax(250px, 1fr));
    }
}

@media (min-width: 1024px) {
    .amenities-shell {
        max-width: 1140px;
        display: grid;
        grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
        text-align: left;
        align-items: start;
        gap: clamp(2.5rem, 6vw, 3.5rem);
    }

    .amenities-head {
        align-items: flex-start;
        text-align: left;
    }

    .amenities-highlights {
        justify-content: flex-start;
    }

    .amenities-cta {
        justify-content: flex-start;
    }

    .amenities-grid {
        margin: 0;
        max-width: none;
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 1.5rem;
    }

    .amenity-card {
        padding: 1.5rem 1.6rem;
    }

    .amenity-card:last-child {
        grid-column: span 2;
    }
}

@media (min-width: 1400px) {
    .amenities-grid {
        grid-template-columns: repeat(3, minmax(240px, 1fr));
    }

    .amenity-card:last-child {
        grid-column: auto;
    }
}

.immersive-section {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.immersive-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('imagenes/BANNER-SIGNIFICADO-2.webp') center/cover no-repeat;
    transform: scale(1.05);
    will-change: transform;
}

@media (min-width: 1024px) {
    .immersive-section::before {
        background-attachment: fixed;
    }
}

.immersive-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(9, 32, 58, 0.78);
}

.immersive-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 0 1.5rem;
}

.immersive-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.immersive-text {
    font-size: 1.2rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.immersive-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 2.5rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
    transition: background 0.25s ease, color 0.25s ease;
}

.immersive-cta:hover {
    background: #fff;
    color: var(--amun-ink);
}

@media (max-width: 768px) {
    .experience-section {
        min-height: auto;
        padding: 3rem 0;
    }

    .experience-wrapper {
        padding: 2.5rem 1.5rem 3rem;
    }

    .experience-card {
        flex-basis: 78vw;
    }

    .hero-content {
        padding: 5.2rem 1.2rem 3.8rem;
    }

    .hero-title {
        font-size: clamp(1.7rem, 9vw, 2.8rem);
        white-space: normal;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-line-text {
        font-size: 0.7rem;
    }

    .hero-projects {
        margin-top: 3rem;
        font-size: 0.68rem;
    }

    .hero-projects-list {
        gap: 1rem;
        font-size: 0.75rem;
    }

    .origin-section {
        padding: 3.5rem 0;
    }

    .origin-heading {
        font-size: clamp(1.9rem, 7.5vw, 2.4rem);
    }

    .origin-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .experience-header h2 {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }

    .experience-header p {
        font-size: 1rem;
    }

    .immersive-section {
        min-height: 65vh;
        padding: 4.5rem 0;
    }

    .immersive-title {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
        line-height: 1.2;
    }

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

    .heading-lg {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .heading-md {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }

    footer .grid {
        gap: 2rem;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.fade-up[data-visible="true"] {
    opacity: 1;
    transform: translateY(0);
}

.font-highlight {
    font-family: 'AeonikExtendedSemi', 'AeonikExtended', sans-serif;
}

.creative-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
}

.creative-track {
    display: flex;
    gap: clamp(1.2rem, 3vw, 2.2rem);
    animation: creative-marquee 32s linear infinite;
    width: max-content;
}

.creative-carousel:hover .creative-track {
    animation-play-state: paused;
}

.creative-slide {
    flex: 0 0 clamp(240px, 28vw, 360px);
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 50px rgba(13, 30, 45, 0.16);
}

.creative-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.creative-slide figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.1rem 1.4rem;
    background: linear-gradient(180deg, transparent 0%, rgba(6, 13, 24, 0.85) 100%);
    color: rgba(245, 247, 255, 0.86);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@keyframes creative-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.creative-card {
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, #f8f1e6);
    box-shadow: 0 24px 48px rgba(13, 30, 45, 0.14);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.creative-card figure {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.creative-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.creative-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(20, 42, 70, 0.18);
}

.creative-card:hover img {
    transform: scale(1.08);
}

.creative-card-content {
    padding: 1.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.creative-card-content h3 {
    font-size: 1.3rem;
    color: var(--amun-ink);
}

.creative-card-content p {
    font-size: 0.95rem;
    color: rgba(30, 43, 58, 0.78);
    line-height: 1.6;
}

.experience-timeline {
    display: grid;
    gap: 1.75rem;
    margin-top: 1.5rem;
}

.timeline-item {
    display: grid;
    gap: 0.5rem;
    padding-left: 1.8rem;
    position: relative;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffcf9f, #89b6ff);
    box-shadow: 0 0 0 6px rgba(137, 182, 255, 0.18);
}

.timeline-time {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(15, 29, 47, 0.6);
}

.timeline-title {
    font-size: 1.35rem;
    color: var(--amun-ink);
    font-weight: 500;
}

.timeline-text {
    font-size: 0.98rem;
    color: rgba(15, 29, 47, 0.7);
    line-height: 1.7;
}

.experience-collage {
    position: relative;
    display: grid;
    gap: 1.5rem;
    justify-items: start;
}

.experience-collage img {
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 28px 50px rgba(15, 30, 52, 0.22);
}

.experience-collage .collage-secondary {
    width: 72%;
    justify-self: end;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.1rem;
    border-radius: 999px;
    background: var(--amun-blue-gradient);
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(15, 74, 130, 0.35);
}

.nav-primary,
.nav-mobile,
.nav-button {
    font-family: 'HelveticaNeueExtended', 'AeonikExtendedSemi', 'AeonikExtended', sans-serif;
}

.nav-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.9rem, 1.8vw, 2.6rem);
    flex: 1;
    min-width: 0;
    flex-wrap: nowrap;
}

.nav-link {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    line-height: 1;
    padding: 0 0.15rem;
    transition: transform 0.2s ease;
}

.nav-link:hover {
    transform: scale(1.08);
}

.nav-mobile .nav-link {
    width: 100%;
    display: flex;
}

.lang-switch {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lang-switch:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

#mobile-menu .lang-switch {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    background: transparent;
}

.section-spacing {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .section-spacing {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

@media (min-width: 1024px) {
    .section-spacing {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.heading-lg {
    font-size: clamp(2.4rem, 5.2vw, 4.6rem);
    line-height: 1.1;
}

.heading-md {
    font-size: clamp(2rem, 4.4vw, 3.2rem);
    line-height: 1.2;
}

.text-balance {
    text-wrap: balance;
}

.content-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .content-grid {
        gap: 3rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
    background-color: #20b857;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* =========================================
   New Amenities Section (Sticky Scroll)
   ========================================= */

.amenities-section-new {
    position: relative;
    background-color: #0b1c34;
    /* Dark navvy background */
    color: #fff;
    padding: 0;
    overflow: hidden;
}

.amenities-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

/* Left Column: Sticky Intro */
.amenities-intro-col {
    width: 100%;
    padding: 4rem 2rem;
    background: #0b1c34;
    z-index: 10;
}

@media (min-width: 1024px) {
    .amenities-intro-col {
        width: 40%;
        position: sticky;
        top: 0;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 4rem 4rem;
    }
}

.amenities-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--amun-stone);
    margin-bottom: 1.5rem;
    display: block;
}

.amenities-main-title {
    font-family: 'AeonikExtended', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #f8e7cf;
    /* Gold/Sand Accent */
}

.amenities-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 450px;
}

.amenities-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.amenities-nav-item {
    font-family: 'AeonikExtended', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.amenities-nav-item::before {
    content: '';
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.3s, background 0.3s;
}

.amenities-nav-item.active {
    color: #fff;
}

.amenities-nav-item.active::before {
    width: 60px;
    background: #f8e7cf;
}

/* Right Column: Scrollable Cards */
.amenities-scroll-col {
    width: 100%;
}

@media (min-width: 1024px) {
    .amenities-scroll-col {
        width: 60%;
    }
}

.amenity-card-large {
    position: relative;
    height: 70vh;
    min-height: 500px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    padding: 3rem;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
    .amenity-card-large {
        height: 100vh;
        min-height: 700px;
        position: sticky;
        /* Optional: adds a stacking effect if top is set, standard scroll if not */
        top: 0;
    }
}

.amenity-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.7s ease;
}

.amenity-card-large:hover .amenity-bg-img {
    transform: scale(1.05);
}

.amenity-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.amenity-content-inner {
    position: relative;
    z-index: 3;
    max-width: 600px;
    transform: translateY(20px);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.amenity-card-large:hover .amenity-content-inner {
    transform: translateY(0);
}

.amenity-number {
    font-size: 4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: 'AeonikExtended', sans-serif;
}

.amenity-item-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 400;
}

.amenity-item-list {
    list-style: none;
    padding: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.6;
}

.amenity-item-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.amenity-item-list li::before {
    content: "•";
    color: #f8e7cf;
    position: absolute;
    left: 0;
}

/* =========================================
   Residences Section (Zigzag)
   ========================================= */

.residences-new-section {
    padding: clamp(3rem, 5vw, 5rem) 0;
    background-color: #fff;
}

.residences-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto clamp(3rem, 5vw, 4.5rem);
    padding: 0 1.5rem;
}

.residences-intro h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--amun-ink);
    margin-bottom: 1rem;
    font-weight: 400;
}

.residences-intro p {
    font-size: 1.1rem;
    color: var(--amun-charcoal);
    line-height: 1.6;
}

.residence-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: clamp(4rem, 8vw, 6rem);
    align-items: center;
}

.residence-img-wrapper {
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    aspect-ratio: 4/3;
}

.residence-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.residence-item:hover .residence-img {
    transform: scale(1.05);
}

.residence-text-content {
    width: 100%;
    padding: 0 1rem;
}

.res-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--amun-sage);
    display: block;
    margin-bottom: 0.8rem;
}

.res-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--amun-ink);
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.res-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--amun-charcoal);
    font-weight: 300;
    max-width: 500px;
}

@media (min-width: 768px) {
    .residence-item {
        flex-direction: row;
        gap: clamp(3rem, 6vw, 5rem);
        margin-bottom: clamp(6rem, 10vw, 8rem);
    }

    .residence-item.reverse {
        flex-direction: row-reverse;
    }

    .residence-img-wrapper {
        flex: 1;
        aspect-ratio: 16/10;
    }

    .residence-text-content {
        flex: 0.9;
        padding: 0;
    }
}

/* =========================================
   Footer Section
   ========================================= */

.footer-new {
    background-color: var(--amun-jungle-green);
    color: var(--amun-sand);
    padding: 5rem 2rem 2.5rem;
    font-size: 0.92rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h4 {
    font-family: 'AeonikExtended', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-col a {
    display: block;
    color: rgba(244, 235, 220, 0.7);
    margin-bottom: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-col p {
    color: rgba(244, 235, 220, 0.7);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 5rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.6;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =========================================
   Refined Programación Viva (Timeline)
   ========================================= */

.timeline-item {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    background: #d4e0eb;
    /* Lighter blue-ish/grey */
    box-shadow: none;
    width: 12px;
    height: 12px;
    left: -1px;
    top: 0.35rem;
}

.timeline-time {
    color: #9ca3af;
    /* Muted grey */
    font-size: 0.65rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    display: block;
}

.timeline-title {
    font-size: 1.25rem;
    color: var(--amun-ink);
    margin-bottom: 0.5rem;
    display: block;
    font-family: 'AeonikExtended', sans-serif;
}

.timeline-text {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}

.experience-collage {
    position: relative;
    height: 600px;
    /* Fixed height for consistent look */
    width: 100%;
}

.experience-collage img:first-child {
    height: 100%;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.experience-collage .collage-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 260px;
    height: 180px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}