
:root {
    --cream: #fdf8f2;
    --sand: #e8dac8;
    --sienna: #c28a50;
    --dark: #1a1714;
    --text: #3d3530;
    --accent: #8b5e30;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    position: relative;
}

.page-wrapper {
    position: relative;
    z-index: 1;
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
}

.gst-bar {
    text-align: right;
    padding: 20px 28px 65px;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .12em;
    color: #000000;
    text-transform: uppercase;
}
@media only screen and (max-width: 1366px) {
    .gst-bar {
        font-size: 15px;
        padding-bottom: 65px;
    }
}
.deco-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 25vw;
    pointer-events: none;
    z-index: 0;
}
@media only screen and (max-width: 767px) {
    .deco-top {
        width: 40vw;
    }    
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px 0px;
    text-align: center;
}

.headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 38px;
    letter-spacing: .08em;
    line-height: 1.25;
    color: var(--dark);
    text-transform: uppercase;
}
@media only screen and (max-width: 1366px) {
    .headline {    
        font-size: 30px;
    }
}
@media only screen and (max-width: 1366px) {
    .headline {    
        font-size: 24px;
    }
}
.byline-badge {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 18px;
    background: var(--dark);
    color: var(--cream);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    border-radius: 2px;
}

.building-wrap {
    width: 100%;
    max-width: 1080px;
    margin: 30px auto 0;
    position: relative;
}
@media only screen and (max-width: 1366px) {    
    .building-wrap {
        max-width: 980px;
    }
}
.building-wash {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 60%;
    background: radial-gradient(ellipse 100% 80% at 50% 70%,
    rgba(194, 138, 80, .22) 0%,
    rgba(232, 218, 200, .35) 50%,
            transparent 100%);
            filter: blur(28px);
            pointer-events: none;
        }

        .building-svg {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    animation: floatUp .8s ease both;
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bottom_area {
    position: relative;
    z-index: 2;
    bottom: 140px;
}
@media only screen and (max-width: 767px) {
    .bottom_area {
        bottom: 35px
    }
}
.coming-soon-section {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cs-bar {
    display: flex;
    gap: 0px;
    align-items: center;
    border: 1px solid #000;
}

.cs-bar span {
    display: block;
    height: 10px;
    border-radius: 0px;
}

.cs-bar .filled {
    width: 140px;
    background: var(--dark);
}

.cs-bar .empty {
    width: 70px;
    background: #fff;
}

.coming-soon-text {    
    font-size: 65px;
    font-weight: 800;
    letter-spacing: .04em;
    color: var(--dark);
    line-height: 1;
    animation: fadeIn 1s .3s ease both;
    margin-bottom: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    
    to {
        opacity: 1;
    }
}
@media only screen and (max-width: 1366px) {
    .coming-soon-text {
        font-size: 48px;
    }
}

@media only screen and (max-width: 767px) {
    .coming-soon-text {
        font-size: 35px;
    }
}

.address-footer {
    margin-top: 36px;
    padding: 20px 28px;
    padding-bottom: 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
    text-align: center;   
    font-size: 18px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.7;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 1366px) {
    .address-footer {
        font-size: 16px;
    }
}

.address-footer .tp {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .8em;
    letter-spacing: .05em;
}

@media (max-width: 576px) {
    .gst-bar {
        font-size: 8px;
        padding: 8px 16px 50px;
    }

    .byline-badge {
        font-size: .62rem;
        letter-spacing: .12em;
    }
    
    .cs-bar .filled {
        width: 55px;
    }
    
    .cs-bar .empty {
        width: 22px;
    }
}

.map_section {
    position: relative;
    top: -60px;
    margin-bottom: 40px;
}
.map_section p {
    color: #000;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 0;
}
.map_section p a {
    color: #000;
    font-weight: 600;
}
@media (max-width: 767px) {
    .map_section {
        top: 0;
        margin-bottom: 30px;
    }
    .map_section p {
        font-size: 14px;
        margin-top: 20px;
    }
}
