/* =========================================
   EXCELSIOR INFOTECH
   PREMIUM COMMERCIAL WEBSITE
========================================= */

:root {
    --black: #111111;
    --dark: #181818;
    --white: #f7f6f2;
    --soft: #ebe9e3;
    --gold: #b89b5e;
    --text: #252525;
    --muted: #77736c;

    --serif: Georgia, "Times New Roman", serif;
    --sans: "Manrope", sans-serif;
}


/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================
   HEADER
========================================= */

.header {
    height: 90px;
    padding: 0 5vw;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    z-index: 20;

    color: white;
}

.logo {
    display: flex;
    flex-direction: column;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 18px;
}

.logo small {
    font-size: 8px;
    letter-spacing: 5px;
    margin-top: 3px;
    opacity: .75;
}

.nav {
    display: flex;
    gap: 35px;
}

.nav a {
    font-size: 12px;
    letter-spacing: 1px;
    opacity: .85;
    transition: .3s;
}

.nav a:hover {
    opacity: 1;
    color: #d8bd83;
}

.header-btn {
    border: 1px solid rgba(255,255,255,.5);
    padding: 13px 21px;

    font-size: 11px;
    letter-spacing: 1px;

    transition: .3s;
}

.header-btn:hover {
    background: white;
    color: black;
}

.menu-btn {
    display: none;
    background: none;
    border: 0;
}


/* =========================================
   HERO
========================================= */

.hero {
    height: 100vh;
    min-height: 700px;

    position: relative;

    display: flex;
    align-items: center;

    color: white;
}

.hero-image {
    position: absolute;
    inset: 0;

    background-image: url("../images/hero.webp");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.72),
            rgba(0,0,0,.28),
            rgba(0,0,0,.12)
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    width: min(850px, 90%);

    margin-left: 9vw;
    padding-top: 70px;
}

.eyebrow,
.section-label {
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 600;
}

.eyebrow {
    color: #d8bd83;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(55px, 7vw, 105px);
    line-height: .94;
    letter-spacing: -5px;
    font-weight: 500;
}

.hero h1 span {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
}

.hero-content p {
    max-width: 470px;
    margin-top: 30px;

    line-height: 1.8;
    font-size: 15px;

    color: rgba(255,255,255,.78);
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 35px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;

    padding: 16px 24px;

    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition: .3s;
}

.btn-primary {
    background: white;
    color: black;
}

.btn-primary:hover {
    background: #d8bd83;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.45);
    color: white;
}

.btn-outline:hover {
    background: white;
    color: black;
}

.hero-bottom {
    position: absolute;
    bottom: 35px;
    left: 5vw;
    right: 5vw;

    display: flex;
    justify-content: space-between;

    font-size: 9px;
    letter-spacing: 2px;

    opacity: .7;
}


/* =========================================
   INTRO
========================================= */

.intro {
    padding: 150px 9vw;
}

.intro .section-label,
.section-heading .section-label,
.location .section-label,
.contact .section-label {
    color: var(--gold);
}

.intro-content {
    display: grid;
    grid-template-columns: 1.1fr .8fr;
    gap: 100px;

    margin-top: 45px;
}

h2 {
    font-size: clamp(45px, 5vw, 76px);
    line-height: 1;
    letter-spacing: -3px;
    font-weight: 500;
}

h2 em {
    font-family: var(--serif);
    font-weight: 400;
}

.intro-text {
    padding-top: 10px;
}

.intro-text p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 20px;
}

.stats {
    margin-top: 100px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #d7d4cc;
}

.stat {
    padding: 28px 15px;
    border-right: 1px solid #d7d4cc;
}

.stat strong {
    display: block;
    font-family: var(--serif);
    font-size: 35px;
    font-weight: 400;
}

.stat span {
    display: block;
    margin-top: 12px;

    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
}


/* =========================================
   SPACES
========================================= */

.spaces {
    background: var(--dark);
    color: white;

    padding: 140px 7vw;
}

.section-heading {
    max-width: 720px;
}

.section-heading h2 {
    margin-top: 30px;
}

.section-heading p {
    margin-top: 25px;
    color: #999;
    line-height: 1.8;
    max-width: 500px;
}

.space-grid {
    margin-top: 80px;

    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 25px;
}

.space-card {
    background: #202020;
}

.space-card.large {
    grid-row: span 2;
}

.space-image {
    height: 360px;
    overflow: hidden;
}

.space-card.large .space-image {
    height: 560px;
}

.space-image img {
    height: 100%;
    transition: transform .8s;
}

.space-card:hover img {
    transform: scale(1.04);
}

.space-info {
    padding: 28px;
}

.space-info > span {
    font-size: 10px;
    color: var(--gold);
}

.space-info h3 {
    font-size: 25px;
    font-weight: 500;
    margin-top: 18px;
}

.space-info p {
    color: #999;
    line-height: 1.7;
    font-size: 13px;
    max-width: 400px;
    margin-top: 12px;
}

.space-info a {
    display: inline-block;
    margin-top: 25px;

    font-size: 10px;
    letter-spacing: 1.5px;
    color: #d8bd83;
}


/* =========================================
   BUILDING
========================================= */

.building {
    display: grid;
    grid-template-columns: 1.2fr .8fr;

    min-height: 650px;
}

.building-image {
    min-height: 600px;
}

.building-image img {
    height: 100%;
}

.building-content {
    background: var(--soft);

    padding: 100px 8vw;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.building-content h2 {
    margin-top: 35px;
}

.building-content p {
    margin-top: 30px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 400px;
}

.text-link {
    margin-top: 35px;

    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;

    color: #856d3e;
}


/* =========================================
   AMENITIES
========================================= */

.amenities {
    padding: 140px 9vw;
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 80px;

    border-top: 1px solid #d7d4cc;
}

.amenity {
    padding: 35px 25px 40px 0;

    border-bottom: 1px solid #d7d4cc;
}

.amenity span {
    font-size: 10px;
    color: var(--gold);
}

.amenity h3 {
    font-size: 21px;
    font-weight: 500;
    margin-top: 25px;
}

.amenity p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
    margin-top: 12px;
}


/* =========================================
   GALLERY
========================================= */

.gallery {
    padding: 140px 7vw;
    background: #eeeae2;
}

.gallery-grid {
    margin-top: 80px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 300px;

    gap: 15px;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    height: 100%;
    transition: transform .8s;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}


/* =========================================
   LOCATION
========================================= */

.location {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
}

.location-image img {
    height: 100%;
}

.location-content {
    padding: 100px 9vw;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-content h2 {
    margin-top: 35px;
}

.location-content > p {
    margin-top: 30px;
    color: var(--muted);
    line-height: 1.8;
}

.address {
    display: flex;
    flex-direction: column;
    gap: 8px;

    margin: 35px 0;
}

.address strong {
    font-size: 12px;
    letter-spacing: 1px;
}

.address span {
    color: var(--muted);
    font-size: 13px;
}


/* =========================================
   CONTACT
========================================= */

.contact {
    background: var(--dark);
    color: white;

    padding: 160px 8vw;

    text-align: center;
}

.contact-inner {
    max-width: 850px;
    margin: auto;
}

.contact h2 {
    margin-top: 30px;
}

.contact p {
    color: #999;
    max-width: 500px;
    margin: 30px auto 0;
    line-height: 1.8;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 35px;
}


/* =========================================
   FOOTER
========================================= */

footer {
    background: #101010;
    color: white;
    padding: 60px 7vw 30px;
}

.footer-logo {
    font-size: 18px;
    letter-spacing: 3px;
    font-weight: 700;
}

.footer-logo small {
    display: block;
    font-size: 8px;
    letter-spacing: 4px;
    margin-top: 4px;
    opacity: .5;
}

footer > p {
    color: #777;
    font-size: 12px;
    margin-top: 20px;
}

.footer-bottom {
    margin-top: 70px;
    padding-top: 25px;

    border-top: 1px solid #292929;

    display: flex;
    justify-content: space-between;

    font-size: 10px;
    color: #666;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .header {
        height: 75px;
        padding: 0 6vw;
    }

    .nav,
    .header-btn {
        display: none;
    }

    .menu-btn {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .menu-btn span {
        width: 25px;
        height: 1px;
        background: white;
    }

    .hero {
        min-height: 650px;
    }

    .hero-content {
        margin-left: 6vw;
        margin-right: 6vw;
    }

    .hero h1 {
        font-size: 55px;
        letter-spacing: -3px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-bottom .scroll {
        display: none;
    }

    .intro,
    .amenities,
    .gallery {
        padding: 90px 6vw;
    }

    .intro-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    h2 {
        font-size: 46px;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
    }

    .stat {
        border-bottom: 1px solid #d7d4cc;
    }

    .spaces {
        padding: 90px 6vw;
    }

    .space-grid {
        grid-template-columns: 1fr;
    }

    .space-card.large {
        grid-row: auto;
    }

    .space-card.large .space-image,
    .space-image {
        height: 300px;
    }

    .building,
    .location {
        grid-template-columns: 1fr;
    }

    .building-image {
        min-height: 400px;
    }

    .building-content,
    .location-content {
        padding: 80px 7vw;
    }

    .amenity-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }

    .gallery-item.tall,
    .gallery-item.wide {
        grid-row: auto;
        grid-column: auto;
    }

    .location-image {
        height: 400px;
    }

    .contact {
        padding: 100px 7vw;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}
/* =========================================
   FACILITIES
========================================= */

.facilities {
    padding: 150px 7vw;
    background: #f7f6f2;
}

.facility-grid {
    margin-top: 80px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}

.facility-card {
    background: #ffffff;
    overflow: hidden;

    border: 1px solid #e2dfd7;

    transition:
        transform .5s ease,
        box-shadow .5s ease;
}

.facility-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 60px rgba(0,0,0,.10);
}

.facility-card.large {
    grid-row: span 2;
}

.facility-image {
    height: 330px;
    overflow: hidden;
}

.facility-card.large .facility-image {
    height: 470px;
}

.facility-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.2,.7,.2,1);
}

.facility-card:hover .facility-image img {
    transform: scale(1.05);
}

.facility-content {
    padding: 28px 30px 32px;
}

.facility-content span {
    font-size: 10px;
    letter-spacing: 2px;
    color: #b89b5e;
}

.facility-content h3 {
    margin-top: 15px;

    font-size: 25px;
    font-weight: 500;
}

.facility-content p {
    max-width: 500px;

    margin-top: 12px;

    color: #77736c;

    font-size: 13px;
    line-height: 1.8;
}


/* MOBILE */

@media (max-width: 800px) {

    .facilities {
        padding: 90px 6vw;
    }

    .facility-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .facility-card.large {
        grid-row: auto;
    }

    .facility-image,
    .facility-card.large .facility-image {
        height: 300px;
    }

}
/* ================================
   PREMIUM LOCATION MAP
================================ */

.location {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    min-height: 650px;
    background: #f4f2ed;
}

.location-map {
    min-height: 650px;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 650px;
    display: block;
    filter: grayscale(20%) contrast(95%);
}

.location-content {
    padding: 100px 7vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-content h2 {
    font-size: clamp(45px, 5vw, 75px);
    line-height: .98;
    font-weight: 400;
    letter-spacing: -2px;
    margin: 25px 0;
}

.location-content h2 em {
    display: block;
    font-style: italic;
}

.location-content > p {
    max-width: 480px;
    color: #666;
    line-height: 1.8;
}

.address {
    margin-top: 35px;
    padding-left: 20px;
    border-left: 1px solid #c7a96b;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.address strong {
    font-size: 13px;
    letter-spacing: 2px;
}

.address span {
    color: #777;
    font-size: 14px;
}

.location-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 35px;
}


/* MOBILE */

@media (max-width: 800px) {

    .location {
        grid-template-columns: 1fr;
    }

    .location-map {
        min-height: 400px;
        order: 2;
    }

    .location-map iframe {
        min-height: 400px;
    }

    .location-content {
        padding: 80px 6vw;
        order: 1;
    }

    .location-content h2 {
        font-size: 48px;
    }

}