* {
    box-sizing: border-box;
}

body {
    background: #000;
    color: #fff;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.container {
    text-align: center;
    padding: 40px 20px;
}

.hero-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0 20px;
}

.logo-wrap {
    text-align: center;
    padding: 40px 20px 0;
}

.main-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 160px;
    line-height: 1;
    letter-spacing: 0.08em;
    margin: 0;
    background: -webkit-linear-gradient(rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 40%, rgba(51, 51, 51, 0.5) 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-line {
    width: 260px;
    height: 1px;
    background: rgba(153, 153, 153, 1);
    margin: -5px auto 10px;
}

.logo-subtitle {
    font-size: 34px;
    font-weight: 200;
    letter-spacing: 0.6em;
    text-transform: uppercase;
    opacity: 0.8;
    padding-left: 20px;
    color: rgba(153, 153, 153, 1);
}

.headline-wrap h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 15px 0 0;
}

.subheadline-wrap p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    line-height: 1.5;
    opacity: 0.8;
}

.small-divider {
    width: 80px;
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin: 15px auto;
}

.skyline-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    margin: 80px 0 0;
    height: 400px;
}

.skyline-wrap-bg img {
    width: 100%;
}

.skyline-wrap img.mobile {
    display: none;
}

.skyline-wrap-bg {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    margin: 80px 0 0;
    height: 550px;
	position: absolute;
    opacity: 0.33;
	left: 0;
    width: 100%;
}

.skyline-wrap-contact {
    display: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 55%;
    width: 100%;
    margin-top: -110px;
}

.service-item {
    border-right: 2px solid rgba(255,255,255,0.5);
}

.service-item:last-child {
    border-right: none;
}

.service-icon {
    font-size: 42px;
    margin-bottom: 30px;
}

.service-item h3 {
    font-size: 17px;
    letter-spacing: 0.25em;
    line-height: 1.5;
    font-weight: 300;
}

.cta-wrap {
    margin-top: 80px;
}

.cta-button, button, input[type="submit"] {
    font-size: 20px;
    display: inline-block;
    padding: 24px 80px;
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    background: transparent;
}

.cta-button:hover, button:hover, input[type="submit"]:hover {
    background: #fff;
    color: #000;
    cursor: pointer;
}

.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.service-row strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    opacity: 0.3;
}

.site-footer {
    text-align: center;
    padding: 40px 20px;
    /*border-top: 1px solid rgba(255,255,255,0.1);*/
}

.footer-logo {
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-size: 12px;
    opacity: 0.6;
    margin-bottom: 10px;
}

.site-footer p {
    opacity: 0.4;
    font-size: 12px;
}

.wp-block-contact-form-7-contact-form-selector {
    display: flex;
    justify-content: center;
    align-items: center;
}
form {
    width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

form p {
    text-align: left;
    font-weight: 500;
    width: 100%;
}

form p:last-of-type {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
}

.two-col-mobile {
	width: 100%;
}

.two-col-mobile p {
	flex-direction: row !important;
	width: 100%;
}

.two-col-mobile p label {
	width: 48%;
}

.wpcf7-form-control-wrap {
    display: block;
    margin-top: 5px;
}

input[type="text"], input[type="email"], input[type="tel"], textarea {
    width: 100%;
    padding: 15px 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    background: #1A1A1A;
    color: #fff;
    font-size: 16px;
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-item:nth-child(2) {
        border-right: none;
    }
    .service-item:nth-child(3), .service-item:nth-child(4) {
        border-top: 2px solid rgba(255,255,255,0.5);
    }

    .headline-wrap h2 {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .main-logo {
        font-size: 100px;
    }

    .logo-line {
        width: 170px;
    }

    .logo-subtitle {
        font-size: 22px;
        padding-left: 10px;
    }

    .headline-wrap h2 {
        font-size: 16px;
        letter-spacing: 0.12em;
    }

    .small-divider {
        margin: 10px auto;
    }

    .subheadline-wrap p {
        font-size: 14px;
    }

    .services-grid {
        margin: 0;
        max-width: 100%;
    }

    .service-item h3 {
        font-size: 14px;
    }

    .skyline-wrap {
        gap: 10px;
        height: 250px;
        margin: 0;
    }
    .skyline-wrap img.desktop {
        display: none;
    }
    .skyline-wrap img.mobile {
        display: block;
        width: 100%;
    }
	
	.skyline-wrap-contact,
    .skyline-wrap-contact img.mobile {
        display: block;
        width: 100%;
	}

    .skyline-wrap-bg {
        gap: 10px;
        height: 250px;
        margin: 0;
    }
    .skyline-wrap-bg img.desktop {
        display: none;
    }
    .skyline-wrap-bg img.mobile {
        display: block;
        width: 100%;
    }

    .services-grid {
        margin: 0;
    }

    form {
        width: 100%;
    }

    input[type="submit"] {
        width: 100%;
    }
}
