
/* ==========================================================
   FREZYK
   Global
   ========================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #F6F2EA;
    color: #201D19;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
    top: 32px;
}

.wp-site-blocks {
    padding: 0;
}

.wp-site-blocks > * {
    margin-block-start: 0;
}

a {
    transition:
        color 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        opacity 180ms ease;
}


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

.site-header {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;

    width: 100%;

    color: #FFFFFF;
}

.site-header__inner {
    width: min(1280px, calc(100% - 80px));
    min-height: 92px;

    margin-inline: auto;

    display: grid !important;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
}


/* ==========================================================
   BRAND
   ========================================================== */

.frezyk-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #FFFFFF;
    text-decoration: none;
}

/* ==========================================================
   NAVIGATION
   ========================================================== */

.site-navigation {
    justify-self: end;
}

.site-navigation .wp-block-navigation__container {
    gap: 36px;
}

.site-navigation .wp-block-navigation-item__content {
    position: relative;

    padding: 10px 0;

    color: rgba(255, 255, 255, 0.88);

    font-size: 13px;
    font-weight: 500;

    text-decoration: none;
}

.site-navigation .wp-block-navigation-item__content::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 4px;

    width: 0;
    height: 1px;

    background: #C7A77C;

    transition: width 180ms ease;
}

.site-navigation .wp-block-navigation-item__content:hover {
    color: #FFFFFF;
}

.site-navigation .wp-block-navigation-item__content:hover::after {
    width: 100%;
}


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

.site-header__cta {
    margin: 0;
}

.site-header__cta-button .wp-block-button__link {
    min-height: 46px;

    padding: 13px 24px;

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

    border: 1px solid #B58A57;

    background: #B58A57;
    color: #171512;

    font-size: 13px;
    font-weight: 650;

    line-height: 1;

    border-radius: 0;
}

.site-header__cta-button .wp-block-button__link:hover {
    border-color: #C7A77C;
    background: #C7A77C;
}


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

.hero {
    position: relative;
    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;
    color: #FFFFFF;
    background-color: #15130F;

    background-image:
        linear-gradient(
            90deg,
            rgba(8, 7, 5, 0.94) 0%,
            rgba(8, 7, 5, 0.84) 24%,
            rgba(8, 7, 5, 0.62) 42%,
            rgba(8, 7, 5, 0.30) 62%,
            rgba(8, 7, 5, 0.08) 82%,
            rgba(8, 7, 5, 0.03) 100%
        ),
        linear-gradient(
            0deg,
            rgba(8, 7, 5, 0.42) 0%,
            rgba(8, 7, 5, 0.06) 42%,
            transparent 70%
        ),
        url("../images/hero-table.webp");

    background-size: cover;
    background-position: 61% center;
    background-repeat: no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 70% 46%,
            transparent 0%,
            transparent 33%,
            rgba(0, 0, 0, 0.18) 100%
        );
}



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

.hero__inner {
    position: relative;
    z-index: 2;

    width: min(1280px, calc(100% - 80px));

    margin-inline: auto;

    padding-top: 122px;
}

.hero__content {
    width: min(590px, 48vw);
}

.hero__title {
    margin: 0;

    color: #FFFFFF;

    font-family:
        "Cormorant Garamond",
        "Iowan Old Style",
        Baskerville,
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(52px, 5vw, 72px);
    font-weight: 400;

    line-height: 0.99;

    letter-spacing: -0.025em;
}

.hero__title em {
    color: #C7A77C;

    font-weight: 400;

    font-style: italic;
}

.hero__description {
    max-width: 500px;

    margin: 30px 0 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 16px;
    font-weight: 400;

    line-height: 1.7;
}


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

.hero__buttons {
    margin-top: 36px;

    display: flex;
    align-items: center;

    gap: 14px;
}

.hero__button .wp-block-button__link {
    min-height: 50px;

    padding: 15px 26px;

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

    font-size: 13px;
    font-weight: 600;

    line-height: 1;

    border-radius: 0;
}

.hero__button--primary .wp-block-button__link {
    border: 1px solid #B58A57;

    background: #B58A57;
    color: #171512;
}

.hero__button--primary .wp-block-button__link:hover {
    border-color: #C7A77C;
    background: #C7A77C;
}

.hero__button--secondary .wp-block-button__link {
    
    border-color: rgba(255,255,255,.38);
    color: rgba(255,255,255,.88);
    background: transparent;
    
}

.hero__button--secondary .wp-block-button__link:hover {
    border-color: #FFFFFF;

    background: rgba(255, 255, 255, 0.08);
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1024px) {

    .site-header__inner {
        width: min(100% - 56px, 1280px);

        gap: 24px;
    }

    .site-navigation .wp-block-navigation__container {
        gap: 22px;
    }

    .site-header__cta-button .wp-block-button__link {
        padding-inline: 18px;
    }

    .hero {
        min-height: 680px;

         background-position: 64% center;
    }

    .hero__inner {
        width: calc(100% - 56px);
    }

    .hero__content {
        width: 58%;
    }

    .hero__title {
        font-size: clamp(46px, 6vw, 62px);
    }

}


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

@media (max-width: 782px) {

    body.admin-bar .site-header {
        top: 46px;
    }

    .site-header__inner {
        width: calc(100% - 40px);
        min-height: 78px;

        grid-template-columns: auto 1fr;

        gap: 20px;
    }

    .frezyk-brand__name {
        font-size: 18px;
    }

    .frezyk-brand__tagline {
        font-size: 8px;
    }

    .frezyk-brand__symbol {
        width: 28px;
        height: 28px;
    }

    .site-navigation {
        justify-self: end;
    }

    .site-header__cta {
        display: none !important;
    }


    /* WordPress mobile navigation */

    .site-navigation
    .wp-block-navigation__responsive-container-open {
        color: #FFFFFF;
    }

    .site-navigation
    .wp-block-navigation__responsive-container-open svg,
    .site-navigation
    .wp-block-navigation__responsive-container-close svg {
        fill: currentColor;
    }

    .site-navigation
    .wp-block-navigation__responsive-container.is-menu-open {
        padding: 28px 24px;

        background: #171512 !important;
        color: #FFFFFF !important;
    }

    .site-navigation
    .wp-block-navigation__responsive-container.is-menu-open
    .wp-block-navigation__responsive-container-content {
        padding-top: 80px;
    }

    .site-navigation
    .wp-block-navigation__responsive-container.is-menu-open
    .wp-block-navigation__container {
        align-items: flex-start;

        gap: 22px;
    }

    .site-navigation
    .wp-block-navigation__responsive-container.is-menu-open
    .wp-block-navigation-item__content {
        color: #FFFFFF;

        font-family:
            "Cormorant Garamond",
            Georgia,
            serif;

        font-size: 32px;
        font-weight: 400;
    }


    /* Hero */

    .hero {
    min-height: 720px;

    align-items: flex-end;

    background-position: 61% center;

    background-image:
        linear-gradient(
            90deg,
            rgba(8, 7, 5, 0.84) 0%,
            rgba(8, 7, 5, 0.55) 100%
        ),
        linear-gradient(
            0deg,
            rgba(8, 7, 5, 0.94) 0%,
            rgba(8, 7, 5, 0.60) 42%,
            rgba(8, 7, 5, 0.12) 76%
        ),
        url("../images/hero-table.webp");
    }

    .hero__inner {
        width: calc(100% - 40px);

        padding:
            160px
            0
            70px;
    }

    .hero__content {
        width: 100%;
        max-width: 560px;
    }

    .hero__title {
        font-size: clamp(42px, 12vw, 54px);

        line-height: 1.01;
    }

    .hero__description {
        max-width: 460px;

        margin-top: 24px;

        font-size: 15px;

        line-height: 1.65;
    }

    .hero__buttons {
        margin-top: 30px;
    }

}


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

@media (max-width: 480px) {

    .hero {
        min-height: 690px;

        background-position: 58% center;
    }

    .hero__title {
        font-size: 42px;
    }

    .hero__buttons {
        width: 100%;

        flex-direction: column;
        align-items: stretch;

        gap: 10px;
    }

    .hero__button {
        width: 100%;
    }

    .hero__button .wp-block-button__link {
        width: 100%;
    }

}


/* ==========================================================
   ACCESSIBILITY
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}
    /* ==========================================================
   PORTFOLIO
   ========================================================== */
/* ==========================================================
   PORTFOLIO — FINAL
   ========================================================== */

.portfolio-section {
    background: #F6F2EA;

    padding:
        92px
        0
        108px;
}

.portfolio-section__inner {
    width: min(1280px, calc(100% - 80px));

    margin-inline: auto;
}


/* ==========================================================
   PORTFOLIO HEADING
   ========================================================== */

.section-heading--portfolio {
    margin-bottom: 34px;

    align-items: flex-end !important;
}

.section-heading__title {
    margin: 0;

    color: #201D19;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 44px;
    font-weight: 500;

    line-height: 0.96;

    letter-spacing: -0.025em;
}

.section-heading__link {
    margin: 0 0 3px;

    color: #716B63;

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

.section-heading__link a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: inherit;

    text-decoration: none;
}

.section-heading__link span {
    color: #B58A57;

    font-size: 15px;

    transition: transform 180ms ease;
}

.section-heading__link a:hover {
    color: #201D19;
}

.section-heading__link a:hover span {
    transform: translateX(4px);
}


/* ==========================================================
   PORTFOLIO GRID
   ========================================================== */

.portfolio-grid {
    display: grid !important;

    grid-template-columns:
        repeat(5, minmax(0, 1fr)) !important;

    gap: 20px !important;

    margin: 0;

    padding: 0;

    list-style: none;
}

.portfolio-card {
    min-width: 0;
}


/* ==========================================================
   PORTFOLIO IMAGE
   ========================================================== */

.portfolio-card__image {
    position: relative;

    margin: 0 0 17px;

    overflow: hidden;

    background: #E7DED2;
}

.portfolio-card__image a {
    display: block;

    position: relative;

    overflow: hidden;
}

.portfolio-card__image a::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(20, 17, 13, 0.16),
            transparent 45%
        );

    opacity: 0;

    pointer-events: none;

    transition: opacity 300ms ease;
}

.portfolio-card__image img {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 4 / 3;

    object-fit: cover;

    transition:
        transform 500ms cubic-bezier(.2, .6, .2, 1),
        filter 350ms ease;
}

.portfolio-card:hover
.portfolio-card__image img {
    transform: scale(1.035);

    filter: contrast(1.02);
}

.portfolio-card:hover
.portfolio-card__image a::after {
    opacity: 1;
}


/* ==========================================================
   PORTFOLIO TYPOGRAPHY
   ========================================================== */

.portfolio-card__title {
    margin: 0;

    color: #201D19;

    font-family:
        "Inter",
        sans-serif;

    font-size: 14px;
    font-weight: 650;

    line-height: 1.35;
}

.portfolio-card__title a {
    color: inherit;

    text-decoration: none;

    transition: color 180ms ease;
}

.portfolio-card:hover
.portfolio-card__title a {
    color: #9B7143;
}

.portfolio-card__excerpt {
    margin-top: 5px;

    color: #8A8176;

    font-size: 11px;

    line-height: 1.5;
}

.portfolio-card__excerpt p {
    margin: 0;
}


/* ==========================================================
   PORTFOLIO TABLET
   ========================================================== */

@media (max-width: 1024px) {

    .portfolio-section {
        padding:
            76px
            0
            88px;
    }

    .portfolio-section__inner {
        width: calc(100% - 56px);
    }

    .portfolio-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr)) !important;

        gap:
            34px
            20px !important;
    }

}


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

@media (max-width: 782px) {

    .portfolio-section {
        padding:
            62px
            0
            72px;
    }

    .portfolio-section__inner {
        width: calc(100% - 40px);
    }

    .section-heading--portfolio {
        margin-bottom: 28px;

        align-items: center !important;
    }

    .section-heading__title {
        font-size: 32px;
    }

    .portfolio-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 26px 14px !important;
    }

}


/* ==========================================================
   PORTFOLIO SMALL MOBILE
   ========================================================== */

@media (max-width: 440px) {

    .section-heading--portfolio {
        display: block !important;
    }

    .section-heading__link {
        margin-top: 11px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
      .section-heading__title {
        font-size: 30px;
    }

    .portfolio-card__image {
        margin-bottom: 14px;
    }

}

.services-section {
    background: #F6F2EA;

    padding:
        28px
        0
        116px;
}

.services-section__inner {
    width: min(1280px, calc(100% - 80px));

    margin-inline: auto;

    display: grid !important;

    grid-template-columns:
        290px
        minmax(0, 1fr);

    gap: 82px;

    align-items: start;
}

.section-eyebrow {
    margin: 0 0 12px;

    color: #B58A57;

    font-size: 11px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.services-intro {
    padding-top: 5px;
}

.services-intro__title {
    margin: 0;

    color: #201D19;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 46px;
    font-weight: 500;

    line-height: 0.98;

    letter-spacing: -0.027em;
}

.services-intro__description {
    max-width: 245px;

    margin:
        27px
        0
        0;

    color: #716B63;

    font-size: 13px;

    line-height: 1.75;
}



.service-card {
     position: relative;

    min-height: 165px;

    padding:
        6px
        0
        30px
        52px;

    border-bottom:
        1px solid
        rgba(113, 107, 99, 0.18);
}

.service-card:nth-child(n+4) {
    padding-top: 32px;

    border-bottom: 0;
}




/* ==========================================================
   ABOUT
   ========================================================== */

.about-section {
    background: #FCFAF6;

    padding:
        16px
        0
        116px;
}

.about-section__inner {
   width: min(1280px, calc(100% - 80px));

    margin-inline: auto;

    display: grid !important;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(0, 0.92fr);

    align-items: stretch;

    gap: 72px;
}


/* Workshop image */

.about-section__image {
    position: relative;

    min-height: 440px;

    overflow: hidden;

    background-color: #2A251F;

    background-image:
        linear-gradient(
            180deg,
            rgba(15, 12, 8, 0.03),
            rgba(15, 12, 8, 0.17)
        ),
        url("../images/workshop.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-section__image::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    box-shadow:
        inset 0 0 0 1px
        rgba(32, 29, 25, 0.08);
}


/* About content */

.about-section__content {
    display: flex !important;
    flex-direction: column;

    justify-content: center;

    padding:
        42px
        0;
}

.about-section__title {
    margin: 0;

    max-width: 470px;

    color: #201D19;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 46px;
    font-weight: 500;

    line-height: 0.98;

    letter-spacing: -0.027em;
}

.about-section__description {
    max-width: 510px;

    margin:
        28px
        0
        38px;

    color: #716B63;

    font-size: 13px;

    line-height: 1.78;
}


/* Values */

.about-values {
    display: grid !important;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;

    padding-top: 4px;
}

.about-value {
    min-width: 0;
}

.about-value__icon {
    width: 30px;
    height: 30px;

    margin-bottom: 14px;

    color: #B58A57;

    transition:
        transform 220ms ease,
        color 220ms ease;
}

.about-value__icon svg {
    display: block;

    width: 100%;
    height: 100%;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-value__title {
    margin: 0;

    color: #201D19;

    font-family:
        "Inter",
        sans-serif;

    font-size: 12px;
    font-weight: 700;

    line-height: 1.45;
}

.about-value__text {
    margin:
        6px
        0
        0;

    color: #847C72;

    font-size: 10.5px;

    line-height: 1.55;
}

.about-value:hover
.about-value__icon {
    color: #9B7143;

    transform: translateY(-2px);
}


/* ==========================================================
   SERVICES + ABOUT TABLET
   ========================================================== */

@media (max-width: 1024px) {

    

     .services-section {
        padding:
            20px
            0
            92px;
    }

    .services-section__inner {
        width: calc(100% - 56px);

        grid-template-columns:
            220px
            minmax(0, 1fr);

        gap: 48px;
    }

    .services-intro__title {
        font-size: 41px;
    }

    .services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        column-gap: 28px;
    }

    .service-card:nth-child(n+3) {
        padding-top: 31px;
    }

    .service-card:nth-child(n+3)
    .service-card__icon {
        top: 30px;
    }

    .service-card:nth-child(4) {
        border-bottom:
            1px solid
            rgba(113, 107, 99, 0.18);
    }

    .service-card:nth-child(5),
    .service-card:nth-child(6) {
        border-bottom: 0;
    }


    .about-section {
        padding-bottom: 92px;
    }

    .about-section__inner {
        width: calc(100% - 56px);

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        gap: 42px;
    }

    .about-section__image {
        min-height: 410px;
    }

    .about-section__title {
        font-size: 40px;
    }

    .about-values {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .about-value {
        display: grid !important;

        grid-template-columns:
            30px
            1fr;

        column-gap: 12px;
    }

    .about-value__icon {
        grid-row: 1 / 3;

        margin: 0;
    }

}
/* ==========================================================
   SERVICE ICON
   ========================================================== */

.service-card__icon {
    position: absolute;

    top: 5px;
    left: 0;

    width: 32px;
    height: 32px;

    color: #B58A57;

    transition:
        transform 220ms ease,
        color 220ms ease;
}

.service-card:nth-child(n+4)
.service-card__icon {
    top: 31px;
}

.service-card__icon svg {
    display: block;

    width: 100%;
    height: 100%;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ==========================================================
   SERVICES GRID
   ========================================================== */

.services-grid {
    display: grid !important;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    column-gap: 36px;

    row-gap: 0;
}


/* ==========================================================
   SERVICE CARD
   ========================================================== */

.service-card {
    position: relative;

    min-height: 165px;

    padding:
        6px
        0
        30px
        52px;

    border-bottom:
        1px solid
        rgba(113, 107, 99, 0.18);
}


/* Drugi rząd */

.service-card:nth-child(n+4) {
    padding-top: 32px;

    border-bottom: 0;
}

/* ==========================================================
   SERVICE TYPOGRAPHY
   ========================================================== */

.service-card__title {
    margin: 0;

    color: #201D19;

    font-family:
        "Inter",
        sans-serif;

    font-size: 14px;
    font-weight: 650;

    line-height: 1.4;

    transition: color 200ms ease;
}

.service-card__description {
    max-width: 215px;

    margin:
        7px
        0
        0;

    color: #847C72;

    font-size: 11.5px;

    line-height: 1.6;
}
/* ==========================================================
   SERVICE HOVER
   ========================================================== */

.service-card:hover
.service-card__icon {
    color: #9B7143;

    transform: translateY(-2px);
}

.service-card:hover
.service-card__title {
    color: #9B7143;
}


/* ==========================================================
   SERVICES + ABOUT MOBILE
   ========================================================== */

@media (max-width: 782px) {

    .services-section {
        padding:
            12px
            0
            72px;
    }

    .services-section__inner {
        width: calc(100% - 40px);

        display: block !important;
    }

    .services-intro__title {
        font-size: 38px;
    }

    .services-intro__description {
        max-width: 500px;

        margin-top: 20px;
    }

    .services-grid {
        margin-top: 42px;

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

        column-gap: 20px;
    }

    .service-card,
    .service-card:nth-child(n+4) {
        min-height: 160px;

        padding:
            25px
            0
            27px
            44px;

        border-bottom:
            1px solid
            rgba(113, 107, 99, 0.18);
    }

    .service-card__icon,
    .service-card:nth-child(n+4)
    .service-card__icon {
        top: 24px;

        width: 28px;
        height: 28px;
    }

    .service-card:nth-child(5),
    .service-card:nth-child(6) {
        border-bottom: 0;
    }

    .about-section {
        padding-bottom: 72px;
    }

    .about-section__inner {
        width: calc(100% - 40px);

        display: block !important;
    }

    .about-section__image {
        min-height: 360px;
    }

    .about-section__content {
        padding:
            45px
            0
            0;
    }

    .about-section__title {
        font-size: 38px;
    }

    .about-section__description {
        margin-bottom: 32px;
    }

    .about-values {
        grid-template-columns: 1fr;

        gap: 22px;
    }

}


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

/* ==========================================================
   SERVICES SMALL MOBILE
   ========================================================== */

@media (max-width: 620px) {

    .services-grid {
        display: block !important;
    }

    .service-card,
    .service-card:nth-child(n+4) {
        min-height: auto;

        padding:
            24px
            0
            24px
            46px;

        border-bottom:
            1px solid
            rgba(113, 107, 99, 0.18);
    }

    .service-card:last-child {
        border-bottom: 0;
    }

    .service-card__icon,
    .service-card:nth-child(n+4)
    .service-card__icon {
        top: 22px;
        width: 28px;
        height: 28px;
    }

    .service-card__description {
        max-width: 420px;
    }

}





/* ==========================================================
   PROCESS
   ========================================================== */

.process-section {
    background: #FCFAF6;

    padding:
        24px
        0
        112px;
}

.process-section__inner {
    width: min(1280px, calc(100% - 80px));

    margin-inline: auto;
}

.process-section__eyebrow {
    text-align: center;
}

.process-section__title {
    margin:
        0
        0
        64px;

    color: #201D19;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 46px;
    font-weight: 400;

    line-height: 1;

    letter-spacing: -0.025em;

    text-align: center;
}


/* Process grid */

.process-grid {
    display: grid !important;

    grid-template-columns:
        minmax(0, 1fr)
        48px
        minmax(0, 1fr)
        48px
        minmax(0, 1fr)
        48px
        minmax(0, 1fr)
        48px
        minmax(0, 1fr);

    align-items: start;
}

.process-step {
    position: relative;

    text-align: center;
}

.process-step__number {
    margin: 0 0 18px;

    color: #A59C90;

    font-size: 11px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: 0.13em;
}

.process-step__icon {
    width: 38px;
    height: 38px;

    margin:
        0
        auto
        18px;

    color: #B58A57;
}

.process-step__icon svg {
    display: block;

    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-step__title {
    margin: 0;

    color: #201D19;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.4;
}

.process-step__text {
    max-width: 170px;

    margin:
        9px
        auto
        0;

    color: #847C72;

    font-size: 11px;

    line-height: 1.6;
}


/* Arrows */

.process-arrow {
    position: relative;

    height: 90px;
}

.process-arrow span {
    position: absolute;

    top: 65px;
    left: 8px;
    right: 8px;

    height: 1px;

    background: #C9B99F;
}

.process-arrow span::after {
    content: "";

    position: absolute;

    top: -3px;
    right: 0;

    width: 6px;
    height: 6px;

    border-top: 1px solid #B58A57;
    border-right: 1px solid #B58A57;

    transform: rotate(45deg);
}


/* ==========================================================
   TRUST
   ========================================================== */

.trust-section {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            100deg,
            #171512 0%,
            #1D1A16 55%,
            #15130F 100%
        );

    color: #FFFFFF;
}

.trust-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -140px;
    top: -190px;

    border-radius: 50%;

    background: rgba(181, 138, 87, 0.06);

    filter: blur(10px);
}

.trust-section__inner {
    position: relative;
    z-index: 2;

    width: min(1280px, calc(100% - 80px));

    min-height: 210px;

    margin-inline: auto;

    display: grid !important;

    grid-template-columns: 250px 1fr;

    align-items: center;

    gap: 72px;
}

.trust-section__title {
    margin: 0;

    color: #FFFFFF;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 38px;
    font-weight: 400;

    line-height: 1.04;

    letter-spacing: -0.02em;
}


/* Trust items */

.trust-grid {
    display: grid !important;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 42px;
}

.trust-item {
    display: grid !important;

    grid-template-columns: 42px 1fr;

    column-gap: 17px;

    align-items: start;
}

.trust-item__icon {
    width: 38px;
    height: 38px;

    color: #C7A77C;
}

.trust-item__icon svg {
    display: block;

    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-item__title {
    margin: 0;

    color: #FFFFFF;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 13px;
    font-weight: 650;

    line-height: 1.45;
}

.trust-item__text {
    max-width: 220px;

    margin: 8px 0 0;

    color: rgba(255, 255, 255, 0.57);

    font-size: 11px;

    line-height: 1.65;
}


/* ==========================================================
   PROCESS + TRUST TABLET
   ========================================================== */

@media (max-width: 1024px) {

    .process-section {
        padding-bottom: 90px;
    }

    .process-section__inner {
        width: calc(100% - 56px);
    }

    .process-grid {
        grid-template-columns:
            repeat(5, minmax(0, 1fr));

        gap: 22px;
    }

    .process-arrow {
        display: none;
    }

    .process-step__text {
        max-width: 150px;
    }


    .trust-section__inner {
        width: calc(100% - 56px);

        grid-template-columns: 200px 1fr;

        gap: 42px;
    }

    .trust-grid {
        gap: 25px;
    }

}


/* ==========================================================
   PROCESS + TRUST MOBILE
   ========================================================== */

@media (max-width: 782px) {

    .process-section {
        padding:
            22px
            0
            72px;
    }

    .process-section__inner {
        width: calc(100% - 40px);
    }

    .process-section__title {
        margin-bottom: 46px;

        font-size: 38px;
    }

    .process-grid {
        display: block !important;
    }

    .process-step {
        position: relative;

        display: grid !important;

        grid-template-columns:
            45px
            44px
            1fr;

        grid-template-rows:
            auto
            auto;

        column-gap: 16px;

        min-height: 118px;

        padding-bottom: 24px;

        text-align: left;
    }

    .process-step:not(:last-child)::after {
        content: "";

        position: absolute;

        left: 65px;
        top: 51px;
        bottom: 0;

        width: 1px;

        background: #D9CDBB;
    }

    .process-step__number {
        grid-column: 1;
        grid-row: 1 / 3;

        margin-top: 14px;

        text-align: right;
    }

    .process-step__icon {
        position: relative;
        z-index: 2;

        grid-column: 2;
        grid-row: 1 / 3;

        width: 36px;
        height: 36px;

        margin: 0;

        background: #FCFAF6;
    }

    .process-step__title {
        grid-column: 3;

        margin-top: 4px;

        font-size: 14px;
    }

    .process-step__text {
        grid-column: 3;

        max-width: 360px;

        margin:
            6px
            0
            0;

        font-size: 12px;
    }


    .trust-section__inner {
        width: calc(100% - 40px);

        min-height: auto;

        display: block !important;

        padding:
            58px
            0
            62px;
    }

    .trust-section__title {
        font-size: 36px;
    }

    .trust-grid {
        margin-top: 42px;

        grid-template-columns: 1fr;

        gap: 31px;
    }

    .trust-item {
        grid-template-columns:
            42px
            1fr;
    }

    .trust-item__text {
        max-width: 430px;

        font-size: 12px;
    }

}


/* ==========================================================
   PROCESS + TRUST SMALL MOBILE
   ========================================================== */

@media (max-width: 480px) {

    .process-section__title {
        font-size: 34px;
    }

    .process-step {
        grid-template-columns:
            32px
            38px
            1fr;

        column-gap: 12px;
    }

    .process-step:not(:last-child)::after {
        left: 51px;
    }

    .process-step__number {
        font-size: 10px;
    }

    .process-step__icon {
        width: 32px;
        height: 32px;
    }

}


/* ==========================================================
   TRUST
   ========================================================== */

.trust-section {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            105deg,
            #15130F 0%,
            #1B1814 55%,
            #171512 100%
        );

    color: #FFFFFF;

    padding:
        76px
        0;
}


/* subtelne ocieplenie tła */

.trust-section::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -180px;
    top: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(181, 138, 87, 0.10) 0%,
            rgba(181, 138, 87, 0) 70%
        );

    pointer-events: none;
}


/* layout */

.trust-section__inner {
    position: relative;
    z-index: 1;

    width: min(1280px, calc(100% - 80px));

    margin-inline: auto;

    display: grid !important;

    grid-template-columns:
        260px
        minmax(0, 1fr);

    align-items: center;

    gap: 78px;
}


/* intro */

.trust-section__eyebrow {
    margin:
        0
        0
        13px;

    color: #C7A77C;

    font-size: 10px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.17em;

    text-transform: uppercase;
}

.trust-section__title {
    margin: 0;

    color: #FFFFFF;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 40px;
    font-weight: 400;

    line-height: 1.04;

    letter-spacing: -0.025em;
}


/* items */

.trust-grid {
    display: grid !important;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 48px;
}

.trust-item {
    position: relative;

    padding-left: 52px;
}

.trust-item__icon {
    position: absolute;

    top: 1px;
    left: 0;

    width: 34px;
    height: 34px;

    color: #C7A77C;
}

.trust-item__icon svg {
    display: block;

    width: 100%;
    height: 100%;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-item__title {
    margin: 0;

    color: #FFFFFF;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 14px;
    font-weight: 650;

    line-height: 1.4;
}

.trust-item__text {
    max-width: 230px;

    margin:
        9px
        0
        0;

    color: rgba(255, 255, 255, 0.58);

    font-size: 12px;

    line-height: 1.65;
}


/* delikatne separatory */

.trust-item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 0;
    right: -24px;

    width: 1px;
    height: 68px;

    background: rgba(255, 255, 255, 0.09);
}


/* ==========================================================
   TRUST TABLET
   ========================================================== */

@media (max-width: 1024px) {

    .trust-section {
        padding:
            66px
            0;
    }

    .trust-section__inner {
        width: calc(100% - 56px);

        grid-template-columns:
            210px
            minmax(0, 1fr);

        gap: 48px;
    }

    .trust-grid {
        gap: 30px;
    }

    .trust-item {
        padding-left: 43px;
    }

    .trust-item__icon {
        width: 29px;
        height: 29px;
    }

    .trust-item:not(:last-child)::after {
        right: -15px;
    }

}


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

@media (max-width: 782px) {

    .trust-section {
        padding:
            58px
            0
            62px;
    }

    .trust-section__inner {
        width: calc(100% - 40px);

        display: block !important;
    }

    .trust-section__title {
        font-size: 36px;
    }

    .trust-grid {
        margin-top: 42px;

        grid-template-columns: 1fr;

        gap: 0;
    }

    .trust-item {
        min-height: auto;

        padding:
            25px
            0
            25px
            50px;

        border-top:
            1px solid
            rgba(255, 255, 255, 0.10);
    }

    .trust-item:last-child {
        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.10);
    }

    .trust-item__icon {
        top: 25px;

        width: 31px;
        height: 31px;
    }

    .trust-item__text {
        max-width: 480px;
    }

    .trust-item:not(:last-child)::after {
        display: none;
    }

}



/* ==========================================================
   PROJECT START
   ========================================================== */

.project-start-section {
    background: #F0E9DE;

    padding:
        102px
        0
        106px;
}

.project-start__inner {
    width: min(1280px, calc(100% - 80px));

    margin-inline: auto;

    display: grid !important;

    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(0, 1.12fr);

    gap: 110px;

    align-items: center;
}


/* ==========================================================
   PROJECT START — LEFT
   ========================================================== */

.project-start__content {
    max-width: 500px;
}

.project-start__title {
    margin: 0;

    color: #201D19;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 52px;
    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -0.028em;
}

.project-start__lead {
    max-width: 460px;

    margin:
        28px
        0
        0;

    color: #3C3731;

    font-size: 17px;
    font-weight: 450;

    line-height: 1.65;
}

.project-start__text {
    max-width: 450px;

    margin:
        18px
        0
        0;

    color: #716B63;

    font-size: 13px;

    line-height: 1.7;
}


/* CTA */

.project-start__buttons {
    margin-top: 34px;
}

.project-start__button
.wp-block-button__link {
    min-height: 50px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    padding:
        15px
        25px;

    border:
        1px solid
        #B58A57;

    border-radius: 0;

    background: #B58A57;
    color: #171512;

    font-size: 13px;
    font-weight: 650;
}

.project-start__button
.wp-block-button__link span {
    transition: transform 180ms ease;
}

.project-start__button
.wp-block-button__link:hover {
    background: #C7A77C;

    border-color: #C7A77C;
}

.project-start__button
.wp-block-button__link:hover span {
    transform: translateX(4px);
}


/* ==========================================================
   PROJECT PREPARATION
   ========================================================== */

.project-preparation {
    position: relative;

    padding:
        40px
        46px;

    border:
        1px solid
        rgba(181, 138, 87, 0.26);

    background:
        rgba(252, 250, 246, 0.66);
}

.project-preparation__label {
    margin:
        0
        0
        27px;

    color: #201D19;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 27px;
    font-weight: 400;

    line-height: 1.1;
}

.project-preparation__list {
    display: grid !important;

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

    gap:
        0
        34px;
}

.project-preparation__item {
    position: relative;

    display: grid !important;

    grid-template-columns:
        28px
        1fr;

    column-gap: 13px;

    padding:
        22px
        0;

    border-top:
        1px solid
        rgba(113, 107, 99, 0.18);
}

.project-preparation__check {
    width: 27px;
    height: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        #B58A57;

    border-radius: 50%;

    color: #B58A57;

    font-size: 12px;
    font-weight: 700;

    line-height: 1;
}

.project-preparation__title {
    margin: 2px 0 0;

    color: #201D19;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.4;
}

.project-preparation__text {
    margin:
        6px
        0
        0;

    color: #847C72;

    font-size: 11px;

    line-height: 1.6;
}


/* subtelny detal */

.project-preparation::after {
    content: "";

    position: absolute;

    width: 54px;
    height: 2px;

    top: -1px;
    left: 46px;

    background: #B58A57;
}


/* ==========================================================
   PROJECT START TABLET
   ========================================================== */

@media (max-width: 1024px) {

    .project-start-section {
        padding:
            84px
            0
            88px;
    }

    .project-start__inner {
        width: calc(100% - 56px);

        gap: 60px;
    }

    .project-start__title {
        font-size: 46px;
    }

    .project-preparation {
        padding:
            34px
            34px;
    }

    .project-preparation__list {
        grid-template-columns: 1fr;
    }

}


/* ==========================================================
   PROJECT START MOBILE
   ========================================================== */

@media (max-width: 782px) {

    .project-start-section {
        padding:
            66px
            0
            70px;
    }

    .project-start__inner {
        width: calc(100% - 40px);

        display: block !important;
    }

    .project-start__content {
        max-width: 580px;
    }

    .project-start__title {
        font-size: 40px;
    }

    .project-start__lead {
        font-size: 16px;
    }

    .project-preparation {
        margin-top: 52px;

        padding:
            32px
            28px;
    }

    .project-preparation__list {
        grid-template-columns: 1fr;
    }

}


/* ==========================================================
   PROJECT START SMALL MOBILE
   ========================================================== */

@media (max-width: 480px) {

    .project-start__title {
        font-size: 37px;
    }

    .project-start__button {
        width: 100%;
    }

    .project-start__button
    .wp-block-button__link {
        width: 100%;
    }

    .project-preparation {
        padding:
            28px
            22px;
    }

    .project-preparation::after {
        left: 22px;
    }

}


/* ==========================================================
   TRUST — INTRO / EYEBROW
   ========================================================== */

.trust-section__intro {
    min-width: 0;
}

.trust-section__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 0 0 16px;

    color: #C7A77C;

    font-size: 10px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.trust-section__eyebrow::before {
    content: "";

    flex: 0 0 28px;

    width: 28px;
    height: 1px;

    background: #B58A57;
}


/* ==========================================================
   GLOBAL SECTION EYEBROW
   ========================================================== */

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 0 0 15px;

    color: #B58A57;

    font-size: 10px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-eyebrow::before {
    content: "";

    flex: 0 0 28px;

    width: 28px;
    height: 1px;

    background: #B58A57;
}


/* Eyebrow wyśrodkowany w sekcji procesu */

.process-section__eyebrow {
    justify-content: center;
}



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

.contact-section {
    background: #E9E0D4;

    padding:
        0
        0
        112px;
}

.contact-section__inner {
    width: min(1280px, calc(100% - 80px));

    margin-inline: auto;

    display: grid !important;

    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(0, 1.18fr);

    align-items: stretch;

    border:
        1px solid
        rgba(32, 29, 25, 0.08);
}


/* ==========================================================
   CONTACT — LEFT PANEL
   ========================================================== */

.contact-panel {
    position: relative;

    overflow: hidden;

    padding:
        72px
        58px
        62px;

    background:
        radial-gradient(
            circle at 10% 100%,
            rgba(181, 138, 87, 0.13),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            #171512,
            #211D18
        );

    color: #FFFFFF;
}

.contact-panel::after {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    right: -220px;
    top: -190px;

    border:
        1px solid
        rgba(199, 167, 124, 0.11);

    border-radius: 50%;
}

.contact-panel__eyebrow {
    position: relative;
    z-index: 1;

    color: #C7A77C;
}

.contact-panel__eyebrow::before {
    background: #C7A77C;
}

.contact-panel__title {
    position: relative;
    z-index: 1;

    margin: 0;

    color: #FFFFFF;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 48px;
    font-weight: 400;

    line-height: 1;

    letter-spacing: -0.027em;
}

.contact-panel__description {
    position: relative;
    z-index: 1;

    max-width: 390px;

    margin:
        27px
        0
        0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 14px;

    line-height: 1.75;
}


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

.contact-details {
    position: relative;
    z-index: 1;

    margin-top: 55px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.12);
}

.contact-detail {
    display: grid;

    grid-template-columns:
        90px
        1fr;

    gap: 20px;

    padding:
        20px
        0;

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

.contact-detail__label {
    color: #C7A77C;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-detail__value {
    color: rgba(255, 255, 255, 0.88);

    font-size: 13px;

    line-height: 1.5;
}

.contact-panel__note {
    position: relative;
    z-index: 1;

    max-width: 370px;

    margin:
        34px
        0
        0;

    color: rgba(255, 255, 255, 0.43);

    font-size: 11px;

    line-height: 1.65;
}


/* ==========================================================
   CONTACT — FORM PANEL
   ========================================================== */

.contact-form-panel {
    padding:
        66px
        66px
        62px;

    background: #FCFAF6;
}

.contact-form-panel__title {
    margin: 0;

    color: #201D19;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 38px;
    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -0.022em;
}

.contact-form-panel__intro {
    max-width: 530px;

    margin:
        15px
        0
        36px;

    color: #847C72;

    font-size: 12px;

    line-height: 1.65;
}


/* ==========================================================
   FORM
   ========================================================== */

.contact-form__grid {
    display: grid;

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

    gap:
        24px
        20px;
}

.form-field {
    min-width: 0;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field label {
    display: block;

    margin-bottom: 8px;

    color: #3E3933;

    font-size: 11px;
    font-weight: 650;

    line-height: 1.4;
}

.form-field label > span {
    margin-left: 4px;

    color: #9A9186;

    font-weight: 400;
}

.form-field input:not([type="checkbox"]):not([type="file"]),
.form-field select,
.form-field textarea {
    width: 100%;

    border:
        1px solid
        #D8D0C5;

    border-radius: 0;

    outline: none;

    background: #FFFFFF;

    color: #201D19;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 13px;

    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease;
}

.form-field input:not([type="checkbox"]):not([type="file"]),
.form-field select {
    min-height: 48px;

    padding:
        0
        14px;
}

.form-field textarea {
    min-height: 148px;

    padding:
        14px;

    resize: vertical;

    line-height: 1.6;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #AAA198;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #B58A57;

    box-shadow:
        0 0 0 2px
        rgba(181, 138, 87, 0.10);
}


/* ==========================================================
   FILE UPLOAD
   ========================================================== */

.form-field--upload {
    padding:
        20px
        0;

    border-top:
        1px solid
        #E1DAD0;

    border-bottom:
        1px solid
        #E1DAD0;
}

.form-field--upload input[type="file"] {
    width: 100%;

    color: #716B63;

    font-size: 11px;
}

.form-field--upload
input[type="file"]::file-selector-button {
    margin-right: 15px;

    padding:
        10px
        15px;

    border:
        1px solid
        #B58A57;

    background: transparent;

    color: #201D19;

    font-family: inherit;

    font-size: 11px;
    font-weight: 650;

    cursor: pointer;

    transition:
        background-color 180ms ease,
        color 180ms ease;
}

.form-field--upload
input[type="file"]::file-selector-button:hover {
    background: #B58A57;
}

.form-field__hint {
    margin:
        9px
        0
        0;

    color: #9A9186;

    font-size: 10px;

    line-height: 1.5;
}


/* ==========================================================
   CHECKBOX
   ========================================================== */

.form-field--consent {
    padding-top: 2px;
}

.form-checkbox {
    display: flex !important;

    align-items: flex-start;

    gap: 11px;

    margin: 0 !important;

    cursor: pointer;
}

.form-checkbox input {
    flex:
        0
        0
        auto;

    width: 16px;
    height: 16px;

    margin-top: 1px;

    accent-color: #B58A57;
}

.form-checkbox span {
    max-width: 580px;

    margin: 0 !important;

    color: #847C72 !important;

    font-size: 10px;

    font-weight: 400 !important;

    line-height: 1.55;
}


/* ==========================================================
   SUBMIT
   ========================================================== */

.contact-form__footer {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 4px;
}

.contact-form__submit {
    min-height: 50px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    padding:
        14px
        26px;

    border:
        1px solid
        #B58A57;

    border-radius: 0;

    background: #B58A57;
    color: #171512;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background-color 180ms ease,
        border-color 180ms ease;
}

.contact-form__submit span {
    transition: transform 180ms ease;
}

.contact-form__submit:hover {
    border-color: #C7A77C;

    background: #C7A77C;
}

.contact-form__submit:hover span {
    transform: translateX(4px);
}

.contact-form__status {
    margin: 0;

    color: #9A9186;

    font-size: 10px;

    line-height: 1.5;
}


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

@media (max-width: 1024px) {

    .contact-section {
        padding-bottom: 90px;
    }

    .contact-section__inner {
        width: calc(100% - 56px);

        grid-template-columns:
            0.8fr
            1.2fr;
    }

    .contact-panel {
        padding:
            58px
            40px;
    }

    .contact-panel__title {
        font-size: 42px;
    }

    .contact-form-panel {
        padding:
            56px
            42px;
    }

}


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

@media (max-width: 782px) {

    .contact-section {
        padding-bottom: 72px;
    }

    .contact-section__inner {
        width: calc(100% - 40px);

        display: block !important;
    }

    .contact-panel {
        padding:
            52px
            30px
            48px;
    }

    .contact-panel__title {
        font-size: 39px;
    }

    .contact-details {
        margin-top: 42px;
    }

    .contact-form-panel {
        padding:
            48px
            30px
            44px;
    }

    .contact-form-panel__title {
        font-size: 34px;
    }

}


/* ==========================================================
   CONTACT SMALL MOBILE
   ========================================================== */

@media (max-width: 560px) {

    .contact-form__grid {
        grid-template-columns: 1fr;
    }

    .form-field--full {
        grid-column: auto;
    }

    .contact-form__footer {
        flex-direction: column;

        align-items: stretch;
    }

    .contact-form__submit {
        width: 100%;
    }

    .contact-form__status {
        text-align: center;
    }

    .contact-detail {
        grid-template-columns: 1fr;

        gap: 5px;
    }

}



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

.site-footer {
    position: relative;

    background:
        linear-gradient(
            115deg,
            #15130F 0%,
            #1B1814 65%,
            #171512 100%
        );

    color: #FFFFFF;
}

.site-footer__inner {
    width: min(1280px, calc(100% - 80px));

    margin-inline: auto;

    padding:
        72px
        0
        28px;
}


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

.site-footer__main {
    display: grid !important;

    grid-template-columns:
        minmax(260px, 1.65fr)
        minmax(120px, 0.7fr)
        minmax(190px, 1fr)
        minmax(120px, 0.65fr);

    gap: 64px;

    padding-bottom: 58px;
}


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

.footer-brand {
    max-width: 330px;
}

.footer-brand__logo {
    display: inline-flex;

    align-items: center;

    gap: 13px;

    color: #FFFFFF;

    text-decoration: none;
}

.footer-brand__symbol {
    width: 34px;
    height: 34px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.6;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-brand__text {
    display: flex;

    flex-direction: column;
}

.footer-brand__name {
    color: #FFFFFF;

    font-size: 20px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.19em;
}

.footer-brand__tagline {
    margin-top: 5px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 9px;
    font-weight: 400;

    line-height: 1;

    letter-spacing: 0.15em;
}

.footer-brand__description {
    max-width: 300px;

    margin:
        26px
        0
        0;

    color: rgba(255, 255, 255, 0.47);

    font-size: 12px;

    line-height: 1.7;
}


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

.footer-column__title {
    margin:
        1px
        0
        21px;

    color: #C7A77C;

    font-size: 10px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


/* Navigation */

.footer-links {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
}

.footer-links a {
    position: relative;

    color: rgba(255, 255, 255, 0.67);

    font-size: 12px;

    line-height: 1.5;

    text-decoration: none;
}

.footer-links a:hover {
    color: #FFFFFF;
}


/* Contact */

.footer-contact {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
}

.footer-contact a,
.footer-contact span {
    color: rgba(255, 255, 255, 0.67);

    font-size: 12px;

    line-height: 1.5;

    text-decoration: none;
}

.footer-contact a:hover {
    color: #FFFFFF;
}


/* ==========================================================
   SOCIAL
   ========================================================== */

.footer-socials {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
}

.footer-socials a {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: rgba(255, 255, 255, 0.67);

    font-size: 12px;

    line-height: 1.5;

    text-decoration: none;
}

.footer-socials a span {
    color: #B58A57;

    font-size: 11px;

    transition:
        transform 180ms ease;
}

.footer-socials a:hover {
    color: #FFFFFF;
}

.footer-socials a:hover span {
    transform:
        translate(2px, -2px);
}


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

.site-footer__bottom {
    min-height: 64px;

    display: flex !important;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.10);
}

.footer-copyright {
    margin: 0;

    color: rgba(255, 255, 255, 0.37);

    font-size: 10px;

    line-height: 1.5;
}

.footer-legal {
    display: flex;

    align-items: center;

    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.45);

    font-size: 10px;

    line-height: 1.5;

    text-decoration: none;
}

.footer-legal a:hover {
    color: #FFFFFF;
}


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

@media (max-width: 1024px) {

    .site-footer__inner {
        width: calc(100% - 56px);
    }

    .site-footer__main {
        grid-template-columns:
            1.4fr
            0.8fr
            1fr;

        gap:
            50px
            40px;
    }

    .footer-social-column {
        grid-column: 2;
    }

}


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

@media (max-width: 782px) {

    .site-footer__inner {
        width: calc(100% - 40px);

        padding-top: 58px;
    }

    .site-footer__main {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            46px
            30px;

        padding-bottom: 48px;
    }

    .footer-brand {
        grid-column: 1 / -1;

        max-width: 400px;
    }

    .footer-social-column {
        grid-column: auto;
    }

}


/* ==========================================================
   FOOTER SMALL MOBILE
   ========================================================== */

@media (max-width: 480px) {

    .site-footer__main {
        grid-template-columns: 1fr;

        gap: 38px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .site-footer__bottom {
        min-height: auto;

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

        padding:
            24px
            0;
    }

}



/* ==========================================================
   FINAL TYPOGRAPHY
   ========================================================== */

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
}


/* Główne nagłówki */

.hero__title,
.section-heading__title,
.services-intro__title,
.about-section__title,
.process-section__title,
.trust-section__title,
.project-start__title,
.contact-panel__title,
.contact-form-panel__title {
    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;
}


/* Teksty interfejsu */

.site-navigation,
.wp-block-button__link,
.service-card__title,
.about-value__title,
.process-step__title,
.trust-item__title,
.project-preparation__title,
.contact-form,
.site-footer {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
}



/* ==========================================================
   TYPOGRAPHY POLISH — HERO
   ========================================================== */

.hero__title {
    font-size: clamp(50px, 4.7vw, 69px);

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -0.022em;
}

.hero__title em {
    font-weight: 400;

    font-style: italic;
}



/* ==========================================================
   TYPOGRAPHY SCALE
   ========================================================== */

.services-intro__title,
.about-section__title,
.process-section__title {
    font-size: 46px;
}

.project-start__title {
    font-size: 50px;
}

.trust-section__title {
    font-size: 40px;
}

.contact-panel__title {
    font-size: 46px;
}

.contact-form-panel__title {
    font-size: 38px;
}


/* Mobile */

@media (max-width: 782px) {

    .services-intro__title,
    .about-section__title,
    .process-section__title {
        font-size: 36px;
    }

    .project-start__title {
        font-size: 40px;
    }

    .contact-panel__title {
        font-size: 38px;
    }

}


/* ==========================================================
   FINAL BRANDING — HEADER
   ========================================================== */

.frezyk-brand {
    display: inline-flex;
    align-items: center;

    flex: 0 0 auto;

    line-height: 0;

    text-decoration: none;
}

.frezyk-brand__logo {
    display: block;

    width: 168px;
    height: auto;

    object-fit: contain;
}

@media (max-width: 1024px) {

    .frezyk-brand__logo {
        width: 154px;
    }

}

@media (max-width: 782px) {

    .frezyk-brand__logo {
        width: 142px;
    }

}

@media (max-width: 480px) {

    .frezyk-brand__logo {
        width: 132px;
    }

}



/* ==========================================================
   FREZYK BRAND — FINAL
   ========================================================== */

.frezyk-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;

    color: #F6F2EA;
    line-height: 1;
    text-decoration: none;
}

.frezyk-brand__tree {
    display: block;

    width: 43px;
    height: 47px;

    flex: 0 0 43px;
    object-fit: contain;
}

.frezyk-brand__wordmark {
    display: inline-grid;
    justify-items: center;

    width: max-content;
}

.frezyk-brand__name {
    display: block;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    color: #F6F2EA;

    font-size: 28px;
    font-weight: 600;
    line-height: 0.88;
    letter-spacing: 0.14em;

    white-space: nowrap;
}

.frezyk-brand__tagline {
    width: 100%;

    margin-top: 2px;
    margin-right: 1px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    font-family:
        "Inter",
        sans-serif;

    color: #E5D8C6;

    font-size: 9px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.13em;

    white-space: nowrap;
}

.frezyk-brand__tagline::before,
.frezyk-brand__tagline::after {
    content: "";

    flex: 1 1 auto;

    min-width: 11px;
    height: 1px;

    background: #B58A57;
}

.frezyk-brand__tree,
.frezyk-brand__name,
.frezyk-brand__tagline {
    transition:
        opacity 180ms ease,
        color 180ms ease;
}

.frezyk-brand:hover .frezyk-brand__tree {
    opacity: 0.90;
}

.frezyk-brand:hover .frezyk-brand__name {
    color: #FFFFFF;
}

.frezyk-brand:hover .frezyk-brand__tagline {
    color: #C7A77C;
}


/* Tablet */

@media (max-width: 1024px) {

    .frezyk-brand {
        gap: 7px;
    }

    .frezyk-brand__tree {
        width: 40px;
        height: 44px;
        flex-basis: 40px;
    }

    .frezyk-brand__name {
        font-size: 26px;
    }

    .frezyk-brand__tagline {
        font-size: 8.5px;
        letter-spacing: 0.12em;
    }

}


/* Mobile */

@media (max-width: 782px) {

    .frezyk-brand {
        gap: 7px;
    }

    .frezyk-brand__tree {
        width: 36px;
        height: 40px;
        flex-basis: 36px;
    }

    .frezyk-brand__name {
        font-size: 23px;
        letter-spacing: 0.14em;
    }

    .frezyk-brand__tagline {
        margin-top: 1px;

        font-size: 8px;
        letter-spacing: 0.11em;
        gap: 5px;
    }

}


/* ==========================================================
   FREZYK BRAND — WORDMARK POLISH
   ========================================================== */

.frezyk-brand {
    display: inline-flex;
    align-items: center;

    gap: 14px;

    flex-shrink: 0;

    color: #F6F2EA;

    line-height: 1;

    text-decoration: none;
}


/* Sygnet */

.frezyk-brand__tree {
    display: block;

    width: 43px;
    height: 47px;

    flex: 0 0 43px;

    object-fit: contain;
}


/* Cała część tekstowa */

.frezyk-brand__wordmark {
    display: inline-grid;

    justify-items: center;

    width: max-content;
}


/* FREZYK */

.frezyk-brand__name {
    display: block;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    color: #F6F2EA;

    font-size: 28px;
    font-weight: 600;

    line-height: 0.9;

    letter-spacing: 0.15em;

    white-space: nowrap;
}


/* pracownia stolarska + kreski */

.frezyk-brand__tagline {
    width: 100%;

    margin-top: 8px;

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

    gap: 8px;

    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    color: rgba(246, 242, 234, 0.72);

    font-size: 7.5px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: 0.20em;

    white-space: nowrap;

    text-transform: lowercase;
}


/* Linie po obu stronach */

.frezyk-brand__tagline::before,
.frezyk-brand__tagline::after {
    content: "";

    flex: 1 1 auto;

    min-width: 12px;

    height: 1px;

    background: #B58A57;

    opacity: 0.85;
}


/* ==========================================================
   HOVER
   ========================================================== */

.frezyk-brand__tree,
.frezyk-brand__name,
.frezyk-brand__tagline {
    transition:
        opacity 180ms ease,
        color 180ms ease;
}

.frezyk-brand:hover .frezyk-brand__tree {
    opacity: 0.9;
}

.frezyk-brand:hover .frezyk-brand__name {
    color: #FFFFFF;
}

.frezyk-brand:hover .frezyk-brand__tagline {
    color: #C7A77C;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1024px) {

    .frezyk-brand {
        gap: 12px;
    }

    .frezyk-brand__tree {
        width: 40px;
        height: 44px;

        flex-basis: 40px;
    }

    .frezyk-brand__name {
        font-size: 26px;
    }

    .frezyk-brand__tagline {
        margin-top: 7px;

        font-size: 7px;

        gap: 7px;
    }

}


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

@media (max-width: 782px) {

    .frezyk-brand {
        gap: 10px;
    }

    .frezyk-brand__tree {
        width: 36px;
        height: 40px;

        flex-basis: 36px;
    }

    .frezyk-brand__name {
        font-size: 23px;

        letter-spacing: 0.14em;
    }

    .frezyk-brand__tagline {
        margin-top: 6px;

        font-size: 6.5px;

        letter-spacing: 0.17em;

        gap: 6px;
    }

    .frezyk-brand__tagline::before,
    .frezyk-brand__tagline::after {
        min-width: 8px;
    }

}


/* ==========================================================
   FREZYK LOGO — FINAL PROPORTIONS
   ========================================================== */

.frezyk-brand {
    gap: 8px;
}

.frezyk-brand__wordmark {
    display: inline-grid;
    justify-items: center;

    width: max-content;
}

.frezyk-brand__name {
    font-size: 28px;
    font-weight: 600;

    line-height: 0.88;

    letter-spacing: 0.14em;
}


/* Subtitle */

.frezyk-brand__tagline {
    width: 100%;

    margin-top: 5px;

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

    gap: 7px;

    color: #E5D8C6;

    font-size: 9px;
    font-weight: 600;

    line-height: 1;

    letter-spacing: 0.13em;

    white-space: nowrap;
}


/* Linie */

.frezyk-brand__tagline::before,
.frezyk-brand__tagline::after {
    content: "";

    flex: 1 1 auto;

    min-width: 11px;

    height: 1px;

    background: #B58A57;

    opacity: 1;
}


/* Tablet */

@media (max-width: 1024px) {

    .frezyk-brand {
        gap: 7px;
    }

    .frezyk-brand__name {
        font-size: 26px;
    }

    .frezyk-brand__tagline {
        font-size: 8.5px;

        letter-spacing: 0.12em;
    }

}


/* Mobile */

@media (max-width: 782px) {

    .frezyk-brand {
        gap: 7px;
    }

    .frezyk-brand__name {
        font-size: 23px;
    }

    .frezyk-brand__tagline {
        margin-top: 4px;

        font-size: 8px;

        letter-spacing: 0.11em;

        gap: 5px;
    }

}


.frezyk-brand__tagline {
    font-size: 9.5px;
}


.frezyk-brand__tagline {
    margin-top: 2px;
}


.frezyk-brand__tagline {
    margin-top: 2px;
}


.frezyk-brand__tagline {
    margin-top: 1px;
}

