/*--------------------------------------------------------------
# Main style & custom components
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    margin: 0;
    background: #fff;
    color: #0c0c0c;
    font-family: "Inter", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.62857;
}

.container-big {
    width: 100%;
    max-width: 1656px;
    margin: 0 auto;
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px;
}

.container-mid {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
}

a {
    color: #1c1c1c;
    background-color: transparent;
    transition: .2s ease-in-out;
}

a:active,
a:hover {
    color: #1c1c1c;
    outline: 0;
    text-decoration: none;
}

.hero-title,
h1,
.h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: .5px;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 300;
}

strong {
    font-weight: 700;
}

/*--------------------------------------------------------------    
# Header
--------------------------------------------------------------*/


.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(2px) saturate(120%);
    -webkit-backdrop-filter: blur(2px) saturate(120%);

    border-bottom: 1px solid rgba(255, 255, 255, .08);
}


.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 0
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-logo img {
    display: block;
    max-height: 48px;
    width: auto;
}

.logo-secondary img {
    max-height: 48px;
}


.header-nav .main-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav .main-menu li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    letter-spacing: .3px;
    position: relative;
}

.header-nav .main-menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width .3s ease;
}

.header-nav .main-menu li a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .75rem 1.75rem;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .4px;
    text-decoration: none;
    border-radius: 999px;
    transition: all .3s ease;
    white-space: nowrap;
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, .95);
    color: #000;
    border-color: rgba(255, 255, 255, .95);
}


.btn-solid {
    background: rgba(255, 255, 255, .9);
    color: #000;
    border: 1px solid rgba(255, 255, 255, .9);
}

.btn-solid:hover {
    background: #fff;
    border-color: #fff;
}

.btn-main a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .95rem 2.25rem;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .75px;
    text-transform: uppercase;
    text-decoration: none;

    color: #fff;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 999px;
    background: transparent;

    transition: background .35s ease, color .35s ease, border-color .35s ease;
}

.btn-main a:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.btn-black a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .8rem 2.2rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    text-decoration: none;

    color: #fff;
    background: #000;
    border-radius: 999px;

    transition: background .35s ease, color .35s ease;
}

.btn-black a:hover {
    background: #4a4a4a;
    color: #fff;
}



/*--------------------------------------------------------------
# Slider
--------------------------------------------------------------*/

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slider,
.hero-slider .swiper-wrapper,
.hero-slide {
    height: 100%;
}

.hero-slide {
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: translateZ(0);
    will-change: transform;
    z-index: 1;
}


.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(0 0 0) 0%, rgb(0 0 0 / 76%) 25%, rgb(0 0 0 / 74%) 45%, rgb(0 0 0 / 58%) 65%, rgb(0 0 0 / 61%) 85%);
    z-index: 2;
    pointer-events: none;
}

.hero-bg {
    filter: grayscale(100%);
}


.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-box {
    max-width: 991px;
    margin: 0 auto;
    color: #fff;
}

.hero-box>* {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .8s ease;
}

.hero-box.is-visible>* {
    opacity: 1;
    transform: translateY(0);
}

.hero-box.is-visible> :nth-child(1) {
    transition-delay: .1s;
}

.hero-box.is-visible> :nth-child(2) {
    transition-delay: .25s;
}

.hero-box.is-visible> :nth-child(3) {
    transition-delay: .4s;
}

.hero-box.is-visible> :nth-child(4) {
    transition-delay: .55s;
}


.hero-title,
.hero-subtitle,
.hero-headings h4 {
    text-align: center;
}

.hero-pretitle {
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    opacity: .75;
    margin-bottom: .75rem;
}

.hero-title {
    font-size: clamp(2.6rem, 4vw, 5.2rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: .4px;
}

.hero-headings h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: .5rem;
    opacity: .9;
}

.hero-headings h4 {
    font-size: 1rem;
    font-weight: 400;
    opacity: .75;
}

.hero-text {
    margin: 1.5rem auto 0;
    text-align: center;
}

.btn-main {
    margin-top: 2.25rem;
    display: flex;
    justify-content: center;
}

.hero,
.hero-slider,
.swiper {
    position: relative;
}

.hero .swiper-pagination {
    bottom: 5rem !important;
}

.hero .swiper-pagination-bullet {
    width: 28px;
    height: 2px;
    border-radius: 0;
    background: rgba(255, 255, 255, .35);
    opacity: 1 !important;
    transition: background .3s ease, width .3s ease;
}

.hero .swiper-pagination-bullet-active {
    background: #fff;
    width: 48px;
}

.swiper-horizontal>.swiper-pagination-bullets {
    left: 0;
    bottom: 0;
}

/*--------------------------------------------------------------
# Services      
--------------------------------------------------------------*/

.services {
    padding: 6rem 0;
    background: #fff;
}

.services .section-head {
    margin-bottom: 4rem;
}

.services .section-pretitle {
    display: block;
    font-size: .7rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: .75rem;
}

.services .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3vw, 3rem);
    font-weight: 500;
    letter-spacing: .4px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-item {
    background: #fff;
    padding: 2.75rem 2.25rem;
    border: 1px solid rgba(0, 0, 0, .06);
    transition: transform .35s ease, box-shadow .35s ease;
}

.service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .06);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 0 1.75rem;
    border-radius: 50%;
    background: #f2f2f2;

    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 1.75rem;
    color: #111;
    opacity: .85;
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: .85rem;
}

.service-desc {
    font-size: .95rem;
    line-height: 1.75;
    color: #666;
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about {
    padding: 6rem 0;
    background: #f4f4f4;
}

.about img {
    max-height: 780px;
    object-fit: cover;
    width: 100%;
    display: block;
}

.about {
    position: relative;
}

.about .pretitle {
    font-size: .7rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: #9a9a9a;
    margin-bottom: .75rem;
}

.about .about-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.1rem, 3vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about .about-content {
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    line-height: 1.8;
    color: #666;
    max-width: 520px;
}

.about .about-content p+p {
    margin-top: 1.25rem;
}

.about img {
    width: 100%;
    height: auto;
    display: block;
}

.about .about-counters {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.about .counter-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: .5px;
}

.about .counter-label {
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #888;
    margin-top: .35rem;
}

@media (max-width: 768px) {
    .about .about-content {
        max-width: 100%;
    }

    .about .about-counters {
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/

.realizations {
    padding: 6rem 0;
    background: #fff;
}

.realizations .section-head {
    margin-bottom: 5rem;
}

.realizations .section-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3vw, 3rem);
    font-weight: 500;
    letter-spacing: .4px;
}

.realizations .row {
    row-gap: 2.5rem;
}

.realizations .project-item {
    position: relative;
    overflow: hidden;
}

.realizations .project-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.realizations .project-item img {
    width: 100%;
    min-height: 360px;
    object-fit: cover;
    height: auto;
    display: block;
    transition: transform .9s ease, filter .9s ease;
    filter: grayscale(20%);
}

/* overlay */
.realizations .project-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 40%,
            rgba(0, 0, 0, .8) 100%);
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
}

/* tytuł */
.realizations .project-title {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 1.25rem 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .6s ease, transform .6s ease;
    z-index: 2;
}

/* HOVER */
.realizations .project-item:hover img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.realizations .project-item:hover::after {
    opacity: 1;
}

.realizations .project-item:hover .project-title {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .realizations {
        padding: 4.5rem 0;
    }

    .realizations .project-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .realizations {
        padding: 3.5rem 0;
    }

    .realizations .section-head {
        margin-bottom: 2.5rem;
    }
}

.realizations-more {
    margin-top: 3rem;
}

/*--------------------------------------------------------------
# Page 
--------------------------------------------------------------*/

.page-bg {
    height: 480px;
    position: relative;
}

.page-bg .mask {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .25);
}

.page-title {
    padding: 6rem 0 4rem;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
    height: 1px;
    background: #d0d0d0;
}

.page-title .pt-inner {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
}

.page-title h1 {
    font-size: 4.2rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin: 0 0 1rem;
    color: #1a1a1a;
}

.page-title h3 {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9a9a9a;
    margin: 0;
}


.page-title .pt-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
}

.page-content {
    padding: 2rem 0 5rem;
}

.entry-content p {
    font-size: 1rem;
    line-height: 1.85;
    color: #333;
    margin-bottom: 1.6rem;
}

.entry-content h2 {
    font-size: 2.4rem;
    margin: 3rem 0 1.25rem;
}

.entry-content h3 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
}

#contact_html {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

/* CONTACT FORM */

.wpcf7 form .row {
    row-gap: 1.5rem;
}

.wpcf7 label {
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #8a8a8a;
    font-weight: 500;
    display: block;
}

.wpcf7-form-control-wrap {
    display: block;
}

.wpcf7 input.form-control,
.wpcf7 textarea.form-control {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .25);
    border-radius: 0;
    padding: .65rem 0;
    font-size: .95rem;
    font-family: "Inter", sans-serif;
    background: transparent;
    color: #111;
    transition: border-color .3s ease;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #aaa;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-bottom-color: #000;
}

.wpcf7 textarea {
    min-height: 140px;
    resize: vertical;
}

/* submit */
.wpcf7 input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .85rem 2.4rem;
    margin-top: 1.5rem;

    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;

    background: #000;
    color: #fff;
    border: none;
    border-radius: 999px;
    cursor: pointer;

    transition: background .3s ease, transform .3s ease;
}

.wpcf7 input[type="submit"]:hover {
    background: #3a3a3a;
    transform: translateY(-1px);
}

/* validation */
.wpcf7-not-valid-tip {
    font-size: .7rem;
    color: #b00000;
    margin-top: .35rem;
}

.wpcf7-response-output {
    border: none;
    padding: 1rem 0 0;
    font-size: .85rem;
}


/*--------------------------------------------------------------
# Footer    
--------------------------------------------------------------*/

#footer-wrapper {
    padding: 6rem 0;
    background: #1c1c1c;
    color: #9b9b9b;
    font-size: .7rem
}

.site-footer {
    color: #cfcfcf;
    font-size: .9rem;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
    transition: color .25s ease, opacity .25s ease;
}

.site-footer a:hover {
    color: #bdbdbd;
}

/* =========================
   FOOTER WIDGETS
========================= */
#block-18 h2,
#block-16 h2 {
    margin-bottom: .5rem;
}

.col-first {
    padding-right: 6rem;
}

.footer-widget {
    padding: 4.5rem 0 3.5rem;
}

.footer-widget .fw-inner .row__first {
    row-gap: 2.5rem;
}

/* Logo */
.footer-widget img {
    max-width: 240px;
    height: auto;
}

/* =========================
   HEADINGS
========================= */

.footer-widget h2,
.footer-widget .wp-block-heading {
    font-family: 'EB Garamond', serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: .2px;
}

/* =========================
   PARAGRAPHS
========================= */

.footer-widget p {
    margin-bottom: .5rem;
    line-height: 1.7;
    opacity: .85;
    font-size: .9rem
}

.footer-widget strong {
    color: #9b9b9b;
    font-weight: 500;
}

/* =========================
   LISTS (NAVIGATION)
========================= */

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: .55rem;
    line-height: 1.6;
}

.footer-widget ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: .15rem;
    font-size: .65rem;
    color: #fff
}

.footer-widget ul li a {
    font-size: .9rem;
    opacity: .9;
    color: #9b9b9b;
}

.footer-widget ul li a:hover {
    opacity: 1;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 1.25rem 0;
    font-size: .75rem;
    color: #9b9b9b;
}

.footer-bottom a {
    color: #fff;
}

.footer-bottom a:hover {
    opacity: .8;
}

.footer-bottom .fb-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

/* =========================
   SCROLL TO TOP
========================= */

.scroll-top a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    transition: background .25s ease, transform .25s ease;
}

.scroll-top a:hover {
    background: rgba(255, 255, 255, .18);
    transform: translateY(-2px);
}

/* =========================
   RWD
========================= */

@media (max-width: 991px) {
    .footer-widget {
        padding: 3.5rem 0 2.5rem;
    }

    .footer-bottom .fb-inner {
        flex-direction: column;
        text-align: center;
    }
}