:root {
    --bg-dark: #0d1519;
    --bg-light: #121a1e;
    --orange: #B15800;
    --orange-light: #d97a1f;
    --white: #ffffff;
    --text-light: #f4f4f4;
    --font: "Poppins", sans-serif;
    --font-display: "Varela Round", "Poppins", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

a:focus-visible {
    outline: 2px solid var(--orange-light);
    outline-offset: 4px;
}

.canvas-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 0 0 3.2vh 100px;
    background:
        radial-gradient(
            ellipse at 28% 45%,
            rgba(35, 45, 50, 0.28),
            transparent 45%
        ),
        linear-gradient(
            135deg,
            #10181c 0%,
            #0b1216 100%
        );
    overflow: hidden;
}

.canvas-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(200, 90, 5, 0.07),
            transparent 35%
        ),
        radial-gradient(
            ellipse at 20% 50%,
            rgba(255, 255, 255, 0.025),
            transparent 45%
        );
    z-index: 1;
    pointer-events: none;
}

.bg-texture {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 28% 45%,
            rgba(35, 45, 50, 0.20),
            transparent 45%
        );
    pointer-events: none;
    z-index: 0;
}

.hanging-header {
    position: relative;
    width: 100%;
    padding-right: 3.5vw;
    display: flex;
    justify-content: center;
    z-index: 30;
}

.header-inner {
    position: relative;
    display: flex;
    justify-content: center;
    width: auto;
    max-width: 96vw;
}

.rope {
    position: absolute;
    top: 0;
    width: 2.5px;
    height: 48px;
    background: var(--orange);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.rope-left {
    left: 14%;
}

.rope-right {
    right: 14%;
}

.ring-screw {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--orange);
    border: 2px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.coming-soon-banner {
    position: relative;
    margin-top: 46px;
    padding: 6px 33px 5px;
    text-align: center;
    background: var(--orange);
    clip-path: polygon(
        0 0,
        100% 0,
        98.2% 100%,
        1.8% 100%
    );
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    z-index: 5;
    max-width: 96vw;
}

.coming-soon-banner h1 {
    margin: 0;
    font-family: var(--font);
    font-size: 74px;
    line-height: 1;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    text-transform: uppercase;
}

.banner-body {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 945px) minmax(0, 1fr);
    gap: 35px;
    align-items: center;
}

.left-content {
    position: relative;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    padding-left: 1vw;
    padding-right: 0;
}

.brand-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 118px;
    line-height: 1;
    font-weight: 400;
    color: #ffffff;
    white-space: nowrap;
}

.services-wrapper {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.orange-divider {
    width: 100%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            var(--orange) 0%,
            var(--orange) 75%,
            transparent 100%
        );
    opacity: 0.9;
}

.services-grid {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    column-gap: 35px;
    row-gap: 15px;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0;
    padding: 0;
    min-width: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.orange-dot {
    flex: 0 0 12px;
    width: 12px;
    text-align: center;
    color: var(--orange-light);
    font-family: Arial, sans-serif;
    font-size: 23px;
    line-height: 1;
}

.item-text {
    min-width: 0;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.25;
    white-space: nowrap;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 17px;
    margin-top: 0.4rem;
}

.contact-row {
    display: flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    gap: 14px;
    color: #ffffff;
    text-decoration: none;
}

.contact-value:hover{
    color: #B15800;
}


.circle-icon {
    width: clamp(42px, 4.2vw, 76px);
    height: clamp(42px, 4.2vw, 76px);
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-value {
    color: #ffffff;
    font-family: 'inter';
    font-size: 40px;
    font-weight: 600;
}

/*.right-building-container {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    height: min(78vh, 780px);*/
/*    display: flex;*/
/*    align-items: flex-end;*/
/*    justify-content: flex-end;*/
/*    min-width: 0;*/
/*}*/
/*.building-frame {*/
/*    position: relative;*/
/*    width: 150%;*/
/*    height: 100%;*/
/*    margin-left: -15%;*/
/*}*/

/*.building-image {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: contain;*/
/*    object-position: bottom right;*/
/*    display: block;*/
/*}*/

.right-building-container {
    position: relative;
    width: 100%;
    height: min(78vh, 780px);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.building-frame {
    position: relative;
    width: 130% !important;
    height: 100% !important;
    margin-left: -15% !important;
}

.building-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
}


@media (max-width: 1600px) and (min-width: 1200px) {

    .canvas-container {
        padding-left: 60px;
    }

    .banner-body {
        grid-template-columns: minmax(0, 62%) minmax(0, 38%);
        gap: 20px;
    }

    .coming-soon-banner h1 {
        font-size: 64px;
    }

    .brand-title {
        font-size: 100px;
    }

    .services-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
        column-gap: 25px;
    }

    .item-text {
        font-size: 32px;
    }

    .orange-dot {
        font-size: 20px;
    }

    .right-building-container {
        height: min(72vh, 700px);
    }
    
    .contact-value{
        font-size: 28px;
    }
}

@media (max-width: 1199px) and (min-width: 901px) {

    .canvas-container {
        padding-left: 30px;
        padding-right: 0;
    }

    .hanging-header {
        padding-right: 30px;
    }

    .coming-soon-banner {
        margin-top: 46px;
        padding: 14px 40px 15px;
    }

    .coming-soon-banner h1 {
        font-size: 52px;
    }

    .banner-body {
        grid-template-columns: minmax(0, 60%) minmax(0, 40%);
        gap: 15px;
    }

    .left-content {
        padding-left: 0;
        padding-right: 0;
        gap: 1.6rem;
    }

    .brand-title {
        font-size: 82px;
    }

    .services-wrapper {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
        column-gap: 15px;
    }

    .service-list {
        gap: 12px;
    }

    .item-text {
        font-size: 22px;
        line-height: 1.2;
    }

    .orange-dot {
        flex-basis: 10px;
        width: 10px;
        font-size: 18px;
    }

    .right-building-container {
        height: min(65vh, 640px);
    }
    
    .contact-value{
        font-size: 20px;
    }
}



@media (max-width: 1600px) and (min-width: 1200px) {
    .item-text {
        font-size: 28px;
    }
}

@media (max-width: 900px) and (min-width: 768px) {

    .canvas-container {
        padding: 0 0 30px 25px;
    }

    .hanging-header {
        padding-right: 25px;
    }

    .coming-soon-banner {
        margin-top: 46px;
        padding: 13px 24px;
    }

    .coming-soon-banner h1 {
        font-size: 42px;
    }

    .banner-body {
        grid-template-columns: minmax(0, 55%) minmax(0, 45%);
        gap: 15px;
    }

    .left-content {
        padding: 0;
        gap: 1.35rem;
    }

    .brand-title {
        font-size: 70px;
    }

    .services-wrapper {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        column-gap: 12px;
    }

    .service-list {
        gap: 11px;
    }

    .service-list li {
        gap: 7px;
    }

    .orange-dot {
        flex-basis: 9px;
        width: 9px;
        font-size: 17px;
    }

    .item-text {
        font-size: 20px;
        line-height: 1.2;
        white-space: normal;
    }

    .contact-details {
        gap: 11px;
    }

    .contact-row {
        gap: 9px;
    }
    
    .contact-value{
        font-size: 28px;
    }

    /*.right-building-container {*/
    /*    height: 52vh;*/
    /*}*/
}


@media (max-width: 1199px) and (min-width: 901px) {
    .item-text {
        font-size: 20px;
        line-height: 1.2;
    }
    
    .contact-value{
        font-size: 28px;
    }
}

@media (max-width: 767px) {

    .canvas-container {
        width: 100%;
        min-height: 100vh;
        padding: 0 15px 30px;
    }

    .hanging-header {
        padding-right: 0;
    }

    .coming-soon-banner {
        margin-top: 23px;
        padding: 11px 18px;
        max-width: 100%;
    }

    .coming-soon-banner h1 {
        font-size: 30px;
    }

    .rope {
        height: 25px;
    }

    .rope-left {
        left: 12%;
    }

    .rope-right {
        right: 12%;
    }

    .banner-body {
        width: 100%;
        min-height: 0;
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        gap: 0px;
        align-items: stretch;
    }

    .left-content {
        width: 100%;
        padding: 0;
        gap: 23px;
    }

    .brand-title {
        font-size: clamp(52px, 12vw, 62px);
    }

    .services-wrapper {
        width: 100%;
        max-width: 100%;
        gap: 13px;
    }

    .orange-divider {
        width: 100%;
    }

    .services-grid {
        width: 100%;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        column-gap: 18px;
        row-gap: 10px;
    }

    .service-list {
        gap: 11px;
    }

    .service-list li {
        align-items: center;
        gap: 7px;
    }

    .orange-dot {
        flex-basis: 9px;
        width: 9px;
        font-size: 17px;
    }

    .item-text {
        font-size: clamp(16px, 3.8vw, 22px);
        line-height: 1.3;
        white-space: normal;
    }

    .contact-details {
        gap: 13px;
        margin-top: 0;
    }

    .contact-row {
        width: 100%;
        gap: 10px;
    }
    
      .contact-value {
    font-size: 28px; }

   
    .right-building-container {
        width: 100%;
        height: auto;
        /*min-height: 260px;*/
        /*max-height: 55vh;*/
        min-height: 0;
max-height: none;

        display: flex;
        align-items: flex-end;
        justify-content: center;
    }
       .building-frame {
        width: 100%;
        height: auto;
        margin-left: 0;
    }

    .building-image {
        width: 100%;
        height: auto;
        object-fit: contain;
        margin-left: 18px;
    }
    
    

}


@media (max-width: 480px) {

    .canvas-container {
        padding-left: 13px;
        padding-right: 13px;
    }

    .coming-soon-banner {
        padding: 10px 12px;
    }

    .coming-soon-banner h1 {
        font-size: 26px;
    }

    .brand-title {
        font-size: 38px;
    }

    .rope-left {
        left: 10%;
    }

    .rope-right {
        right: 10%;
    }

    .banner-body {
        margin-top: 26px;
        gap: 28px;
    }

    .left-content {
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .service-list {
        gap: 9px;
    }

    .orange-dot {
        flex-basis: 8px;
        width: 8px;
        font-size: 15px;
    }
    
         .contact-value {
    font-size: 20px; }


    .item-text {

Success!
        font-size: 15px;
    }

    .contact-details {
        gap: 11px;
    }

    .right-building-container {
        min-height: 120px;
    }
}