@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Red Hat Display", sans-serif;
    background-color: #000;
    color: #fff;
}

/* Elevator Digital Signage – Hero */
.eds-hero {
    background-color: #1a1a1a;
    padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 8vw, 10rem);
    min-height: calc(50vh - 88px);
    display: flex;
    align-items: center;
}

.eds-hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 4rem);
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
}

.eds-hero__heading {
    flex: 0 1 auto;
    text-transform: uppercase;
    line-height: 1.08;
    letter-spacing: 0.02em;
    font-size: clamp(1.75rem, 4.5vw, 3.25rem);
    color: #fff;
}

.eds-hero__bold {
    font-weight: 800;
}

.eds-hero__light {
    font-weight: 800;
}

.eds-hero__text {
    flex: 0 1 480px;
    max-width: 480px;
    margin: 0;
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    font-weight: 400;
    line-height: 1.55;
    color: #fff;
}

@keyframes eds-hero-slide-left {
    from {
        opacity: 0;
        transform: translate3d(-32px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes eds-hero-slide-right {
    from {
        opacity: 0;
        transform: translate3d(32px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.eds-hero__anim {
    opacity: 0;
    animation-duration: 0.85s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-fill-mode: forwards;
}

.eds-hero__anim--left {
    animation-name: eds-hero-slide-left;
    animation-delay: 0.15s;
}

.eds-hero__anim--right {
    animation-name: eds-hero-slide-right;
    animation-delay: 0.35s;
}

@media (prefers-reduced-motion: reduce) {
    .eds-hero__anim {
        opacity: 1;
        animation: none;
        transform: none;
    }
}

@media (max-width: 1024px) {
    .eds-hero {
        padding: clamp(3.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 3rem);
        min-height: calc(30vh - 88px);
    }

    .eds-hero__inner {
        gap: 2rem;
    }

    .eds-hero__text {
        flex: 0 1 380px;
        max-width: 380px;
    }
}

@media (max-width: 640px) {
    .eds-hero {
        padding: 3rem 1rem;
        min-height: auto;
    }

    .eds-hero__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .eds-hero__heading {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .eds-hero__text {
        flex: none;
        max-width: 100%;
        font-size: 0.9375rem;
    }
}

/* Influence customers section */
.eds-influence {
    background-color: #222222;
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 6vw, 8rem);
}

.eds-influence__inner {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
    max-width: 1700px;
    margin: 0 auto;
}

.eds-influence__media {
    flex: 0 1 48%;
    max-width: 48%;
    line-height: 0;
}

.eds-influence__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

.eds-influence__content {
    flex: 0 1 52%;
    max-width: 52%;
}

.eds-influence__heading {
    font-size: clamp(1.5rem, 3.5vw, 2.75rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: #fff;
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
}

.eds-influence__block {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.eds-influence__block:last-child {
    margin-bottom: 0;
}

.eds-influence__title {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.65rem;
}

.eds-influence__text {
    font-size: clamp(0.875rem, 1.4vw, 1rem);
    font-weight: 400;
    line-height: 1.55;
    color: #b8b8b8;
    margin: 0;
}

/* Scroll reveal (EDS pages) */
@keyframes eds-reveal-left {
    from {
        opacity: 0;
        transform: translate3d(-36px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes eds-reveal-right {
    from {
        opacity: 0;
        transform: translate3d(36px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes eds-reveal-up {
    from {
        opacity: 0;
        transform: translate3d(0, 28px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.eds-reveal__anim {
    opacity: 0;
    animation-duration: 0.85s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-fill-mode: forwards;
    animation-play-state: paused;
}

.eds-reveal.is-visible .eds-reveal__anim--left {
    animation-name: eds-reveal-left;
    animation-play-state: running;
    animation-delay: 0.1s;
}

.eds-reveal.is-visible .eds-influence__heading.eds-reveal__anim--right {
    animation-name: eds-reveal-right;
    animation-play-state: running;
    animation-delay: 0.2s;
}

.eds-reveal.is-visible .eds-influence__block:nth-of-type(1).eds-reveal__anim--right {
    animation-name: eds-reveal-right;
    animation-play-state: running;
    animation-delay: 0.35s;
}

.eds-reveal.is-visible .eds-influence__block:nth-of-type(2).eds-reveal__anim--right {
    animation-name: eds-reveal-right;
    animation-play-state: running;
    animation-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
    .eds-reveal__anim {
        opacity: 1;
        animation: none;
        transform: none;
    }
}

@media (max-width: 1024px) {
    .eds-influence {
        padding: clamp(3rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3rem);
    }

    .eds-influence__inner {
        gap: 2.5rem;
    }

    .eds-influence__media,
    .eds-influence__content {
        flex: 1 1 50%;
        max-width: 50%;
    }
}

@media (max-width: 640px) {
    .eds-influence {
        padding: 2.5rem 1rem;
    }

    .eds-influence__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }

    .eds-influence__media,
    .eds-influence__content {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .eds-influence__heading {
        margin-bottom: 1.5rem;
    }
}

/* Elevator advertising section */
.eds-advertising {
    background-color: #222222;
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 6vw, 8rem);
}

.eds-advertising__inner {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
    max-width: 1700px;
    margin: 0 auto;
}

.eds-advertising__content {
    flex: 0 1 52%;
    max-width: 52%;
}

.eds-advertising__heading {
    font-size: clamp(1.5rem, 3.5vw, 2.75rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: #fff;
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
}

.eds-advertising__block {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.eds-advertising__block:last-child {
    margin-bottom: 0;
}

.eds-advertising__title {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.65rem;
}

.eds-advertising__text {
    font-size: clamp(0.875rem, 1.4vw, 1rem);
    font-weight: 400;
    line-height: 1.55;
    color: #b8b8b8;
    margin: 0;
}

.eds-advertising__media {
    flex: 0 1 48%;
    max-width: 48%;
    line-height: 0;
}

.eds-advertising__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

.eds-reveal.is-visible .eds-advertising__heading.eds-reveal__anim--left {
    animation-name: eds-reveal-left;
    animation-play-state: running;
    animation-delay: 0.1s;
}

.eds-reveal.is-visible .eds-advertising__block:nth-of-type(1).eds-reveal__anim--left {
    animation-name: eds-reveal-left;
    animation-play-state: running;
    animation-delay: 0.25s;
}

.eds-reveal.is-visible .eds-advertising__block:nth-of-type(2).eds-reveal__anim--left {
    animation-name: eds-reveal-left;
    animation-play-state: running;
    animation-delay: 0.4s;
}

.eds-reveal.is-visible .eds-advertising__block:nth-of-type(3).eds-reveal__anim--left {
    animation-name: eds-reveal-left;
    animation-play-state: running;
    animation-delay: 0.55s;
}

.eds-reveal.is-visible .eds-advertising__media.eds-reveal__anim--right {
    animation-name: eds-reveal-right;
    animation-play-state: running;
    animation-delay: 0.2s;
}

@media (max-width: 1024px) {
    .eds-advertising {
        padding: clamp(3rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3rem);
    }

    .eds-advertising__inner {
        gap: 2.5rem;
    }

    .eds-advertising__content,
    .eds-advertising__media {
        flex: 1 1 50%;
        max-width: 50%;
    }
}

@media (max-width: 640px) {
    .eds-advertising {
        padding: 2.5rem 1rem;
    }

    .eds-advertising__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }

    .eds-advertising__content,
    .eds-advertising__media {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .eds-advertising__heading {
        margin-bottom: 1.5rem;
    }
}

/* Benefits of elevator advertisement */
.eds-benefits {
    background-color: #1A1A1A;
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 6vw, 8rem);
}

.eds-benefits__inner {
    max-width: 1700px;
    margin: 0 auto;
}

.eds-benefits__heading {
    text-align: center;
    text-transform: uppercase;
    font-size: clamp(1.5rem, 3.5vw, 2.75rem);
    line-height: 1.15;
    letter-spacing: 0.02em;
    color: #fff;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.eds-benefits__heading-bold {
    font-weight: 800;
}

.eds-benefits__heading-light {
    font-weight: 800;
}

.eds-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(2rem, 4vw, 3rem) 0;
}

.eds-benefits__item {
    padding: 0 clamp(1.25rem, 2.5vw, 2rem);
    border-right: 1px solid #3a3a3a;
}

.eds-benefits__item:nth-child(3n) {
    border-right: none;
}

.eds-benefits__num {
    display: block;
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    font-weight: 400;
    color: #888;
    margin-bottom: 0.75rem;
    letter-spacing: 0.04em;
}

.eds-benefits__title {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.eds-benefits__text {
    font-size: clamp(0.8125rem, 1.3vw, 0.9375rem);
    font-weight: 400;
    line-height: 1.55;
    color: #fff;
    margin: 0;
}

.eds-reveal.is-visible .eds-benefits__heading.eds-reveal__anim--up {
    animation-name: eds-reveal-up;
    animation-play-state: running;
    animation-delay: 0.1s;
}

.eds-reveal.is-visible .eds-benefits__item:nth-child(1).eds-reveal__anim--up {
    animation-name: eds-reveal-up;
    animation-play-state: running;
    animation-delay: 0.2s;
}

.eds-reveal.is-visible .eds-benefits__item:nth-child(2).eds-reveal__anim--up {
    animation-name: eds-reveal-up;
    animation-play-state: running;
    animation-delay: 0.3s;
}

.eds-reveal.is-visible .eds-benefits__item:nth-child(3).eds-reveal__anim--up {
    animation-name: eds-reveal-up;
    animation-play-state: running;
    animation-delay: 0.4s;
}

.eds-reveal.is-visible .eds-benefits__item:nth-child(4).eds-reveal__anim--up {
    animation-name: eds-reveal-up;
    animation-play-state: running;
    animation-delay: 0.5s;
}

.eds-reveal.is-visible .eds-benefits__item:nth-child(5).eds-reveal__anim--up {
    animation-name: eds-reveal-up;
    animation-play-state: running;
    animation-delay: 0.6s;
}

.eds-reveal.is-visible .eds-benefits__item:nth-child(6).eds-reveal__anim--up {
    animation-name: eds-reveal-up;
    animation-play-state: running;
    animation-delay: 0.7s;
}

@media (max-width: 1024px) {
    .eds-benefits {
        padding: clamp(3rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3rem);
    }

    .eds-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(2rem, 4vw, 2.5rem) 0;
    }

    .eds-benefits__item {
        border-right: none;
        border-bottom: none;
        padding: 0 clamp(1rem, 3vw, 1.5rem);
    }

    .eds-benefits__item:nth-child(odd) {
        border-right: 0px solid #3a3a3a;
    }

    .eds-benefits__item:nth-child(even) {
        border-right: none;
    }

    .eds-benefits__item:nth-child(n + 5) {
        padding-top: 0.5rem;
    }
}

@media (max-width: 640px) {
    .eds-benefits {
        padding: 2.5rem 1rem;
    }

    .eds-benefits__heading {
        margin-bottom: 2rem;
        font-size: clamp(1.35rem, 6vw, 1.75rem);
    }

    .eds-benefits__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .eds-benefits__item {
        border-right: none;
        border-bottom: 0px solid #000000;
        padding: 1.5rem 0;
        border-right: 0px solid #000000;
    }

    .eds-benefits__item:last-child {
        border-bottom: none;
        padding-bottom: 0;
        border-right: 0px solid #000000;
    }

    .eds-benefits__item:first-child {
        padding-top: 0;
    }
}

/* Gallery / Projects */
.gallery {
    background-color: #1A1A1A;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem);
}

.gallery__inner {
    max-width: 1700px;
    margin: 0 auto;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.75rem, 2vw, 1.25rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.gallery__item {
    overflow: hidden;
    border-radius: 2px;
    line-height: 0;
}

.gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

@keyframes gallery-fade-up {
    from {
        opacity: 0;
        transform: translate3d(0, 24px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.gallery__anim {
    opacity: 0;
    animation: gallery-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-play-state: paused;
}

.gallery.is-visible .gallery__item:nth-child(1).gallery__anim {
    animation-play-state: running;
    animation-delay: 0.05s;
}

.gallery.is-visible .gallery__item:nth-child(2).gallery__anim {
    animation-play-state: running;
    animation-delay: 0.15s;
}

.gallery.is-visible .gallery__item:nth-child(3).gallery__anim {
    animation-play-state: running;
    animation-delay: 0.25s;
}

.gallery.is-visible .gallery__item:nth-child(4).gallery__anim {
    animation-play-state: running;
    animation-delay: 0.35s;
}

.gallery.is-visible .gallery__item:nth-child(5).gallery__anim {
    animation-play-state: running;
    animation-delay: 0.45s;
}

.gallery.is-visible .gallery__item:nth-child(6).gallery__anim {
    animation-play-state: running;
    animation-delay: 0.55s;
}

@media (prefers-reduced-motion: reduce) {
    .gallery__anim {
        opacity: 1;
        animation: none;
        transform: none;
    }
}

@media (max-width: 1024px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .gallery {
        padding: 2rem 1rem;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery__item img {
        aspect-ratio: 16 / 10;
    }
}

/* CTA – Let's chat */
.eds-cta {
    background-color: #1a1a1a;
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 6vw, 8rem);
}

.eds-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 4rem);
    max-width: 1700px;
    background-color: #222222;
    margin: 0 auto;
    padding: 50px;
}

.eds-cta__lead {
    flex: 0 1 48%;
    max-width: 48%;
}

.eds-cta__eyebrow {
    font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
    font-weight: 400;
    color: #fff;
    margin: 0 0 0.75rem;
}

.eds-cta__heading {
    text-transform: uppercase;
    font-size: clamp(1.5rem, 3.5vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: 0.02em;
    color: #fff;
    margin: 0;
}

.eds-cta__heading-bold {
    display: block;
    font-weight: 800;
}

.eds-cta__heading-light {
    display: block;
    font-weight: 800;
}

.eds-cta__action {
    flex: 0 1 42%;
    max-width: 480px;
}

.eds-cta__text {
    font-size: clamp(0.875rem, 1.4vw, 1rem);
    font-weight: 400;
    line-height: 1.55;
    color: #fff;
    margin: 0 0 clamp(1.5rem, 3vw, 2rem);
}

.eds-cta__btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-family: inherit;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    background-image: linear-gradient(180deg, #ffe3a1 0%, #d29e31 45%, #8b6110 100%);
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.eds-cta__btn:hover {
    background-color: #666666;
}

.eds-cta__btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.eds-reveal.is-visible .eds-cta__eyebrow.eds-reveal__anim--left {
    animation-name: eds-reveal-left;
    animation-play-state: running;
    animation-delay: 0.1s;
}

.eds-reveal.is-visible .eds-cta__heading-bold.eds-reveal__anim--left {
    animation-name: eds-reveal-left;
    animation-play-state: running;
    animation-delay: 0.2s;
}

.eds-reveal.is-visible .eds-cta__heading-light.eds-reveal__anim--left {
    animation-name: eds-reveal-left;
    animation-play-state: running;
    animation-delay: 0.32s;
}

.eds-reveal.is-visible .eds-cta__text.eds-reveal__anim--right {
    animation-name: eds-reveal-right;
    animation-play-state: running;
    animation-delay: 0.15s;
}

.eds-reveal.is-visible .eds-cta__btn.eds-reveal__anim--right {
    animation-name: eds-reveal-right;
    animation-play-state: running;
    animation-delay: 0.35s;
}

@media (max-width: 1024px) {
    .eds-cta {
        padding: clamp(3rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3rem);
    }

    .eds-cta__inner {
        gap: 2.5rem;
    }

    .eds-cta__lead {
        flex: 1 1 45%;
        max-width: 45%;
    }

    .eds-cta__action {
        flex: 1 1 50%;
        max-width: 50%;
    }
}

@media (max-width: 640px) {
    .eds-cta {
        padding: 2.5rem 1rem;
    }

    .eds-cta__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .eds-cta__lead,
    .eds-cta__action {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .eds-cta__heading {
        font-size: clamp(1.35rem, 6vw, 1.85rem);
    }

    .eds-cta__text {
        margin-bottom: 1.5rem;
    }
}
