.sovok-header-social {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.sovok-header-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 26px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.sovok-header-social a:hover {
    background: #fff;
    color: #000;
}

.sovok-header-contact {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    margin-right: 18px;
    transition: opacity 0.3s ease;
}

.sovok-header-contact:hover {
    color: #fff;
    opacity: 0.75;
}

/* Projects section (home) */
.sovok-projects {
    background: #fff;
    padding: 72px 0 96px;
}

.sovok-projects-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.sovok-projects-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    border: 1px solid #000;
    border-radius: 999px;
    background: #fff;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.sovok-projects-filter:hover {
    background: #fff;
    color: #000;
    opacity: 0.85;
}

.sovok-projects-filter.is-active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.sovok-projects-filter.is-active:hover {
    background: #000;
    color: #fff;
    opacity: 1;
}

.sovok-projects-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px 20px;
}

.sovok-project-card {
    min-width: 0;
}

.sovok-project-card-thumb {
    display: block;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4 / 5;
    background: #b8b8b8;
}

.sovok-project-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.sovok-project-card-thumb:hover img {
    transform: scale(1.03);
}

.sovok-project-card-title {
    margin: 14px 0 0;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
}

.sovok-project-card-title a {
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.sovok-project-card-title a:hover {
    color: #000;
    opacity: 0.75;
}

.sovok-projects-empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 48px 0;
    color: rgba(0, 0, 0, 0.55);
    font-size: 16px;
    text-align: center;
}

.sovok-projects-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 56px;
}

.sovok-projects-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid #000;
    border-radius: 50%;
    background: #fff;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sovok-projects-page:hover {
    background: #fff;
    color: #000;
    opacity: 0.85;
}

.sovok-projects-page.is-active {
    background: #000;
    color: #fff;
    border-color: #000;
}

@media (max-width: 1199px) {
    .sovok-projects-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .sovok-projects {
        padding: 56px 0 72px;
    }

    .sovok-projects-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px 16px;
    }

    .sovok-projects-filters {
        margin-bottom: 36px;
    }
}

@media (max-width: 767px) {
    .sovok-projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .sovok-projects-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .sovok-project-card-thumb {
        border-radius: 16px;
    }
}

.sovok-contact-page {
    padding-top: 180px;
    padding-bottom: 120px;
    background: #fff;
}

/* Contact page hero */
.sovok-contact-hero .tp-breadcrumb-title {
    font-size: clamp(72px, 12vw, 160px);
    letter-spacing: -0.03em;
}

/* Contact page body */
.sovok-contact-body {
    padding: 100px 0 120px;
    background: #fff;
}

.sovok-contact-info {
    color: #000;
    padding-right: 24px;
}

.sovok-contact-heading {
    margin: 0 0 20px;
    color: #000;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.sovok-contact-text {
    margin: 0 0 36px;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.sovok-contact-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.sovok-contact-pills a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border: 1px solid #000;
    border-radius: 999px;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.sovok-contact-pills a:hover {
    background: #000;
    color: #fff;
}

.sovok-contact-address {
    margin: 0 0 32px;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}

.sovok-contact-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sovok-contact-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 12px 28px;
    border: 1px solid #000;
    border-radius: 999px;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sovok-contact-social a:hover {
    background: #000;
    color: #fff;
}

.sovok-contact-map {
    width: 100%;
    min-height: 480px;
    background: #f0f0f0;
}

.sovok-contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    display: block;
}

@media (max-width: 991px) {
    .sovok-contact-body {
        padding: 72px 0 96px;
    }

    .sovok-contact-info {
        padding-right: 0;
        margin-bottom: 16px;
    }

    .sovok-contact-map,
    .sovok-contact-map iframe {
        min-height: 360px;
    }
}

@media (max-width: 575px) {
    .sovok-contact-body {
        padding: 56px 0 72px;
    }

    .sovok-contact-pills,
    .sovok-contact-social {
        flex-direction: column;
        align-items: flex-start;
    }
}

.sovok-contact-page-card {
    color: #000;
}

.sovok-contact-page-logo img {
    max-width: 220px;
    height: auto;
}

@media (max-width: 1199px) {
    .sovok-header-contact {
        margin-right: 12px;
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .sovok-header-contact {
        display: none;
    }
}

/* Contact popup (burger menu) */
.sovok-contact-popup {
    width: 520px;
    padding: 40px 44px 48px;
    background: #fff;
}

.sovok-popup-top {
    margin-bottom: 36px;
}

.sovok-popup-logo img {
    max-width: 220px;
    height: auto;
    display: block;
}

.sovok-popup-intro {
    margin-bottom: 28px;
}

.sovok-popup-heading {
    margin: 0 0 18px;
    color: #000;
    font-size: clamp(34px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.sovok-popup-text {
    margin: 0;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.sovok-popup-gallery {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
}

.sovok-popup-gallery-item {
    flex: 1;
    min-width: 0;
}

.sovok-popup-gallery-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.sovok-popup-contact {
    margin-bottom: 28px;
}

.sovok-popup-contact-title {
    margin: 0 0 18px;
    color: #000;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.sovok-popup-contact-item {
    color: #000;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}

.sovok-popup-contact-item + .sovok-popup-contact-item {
    margin-top: 10px;
}

.sovok-popup-contact-item a {
    color: #000;
    text-decoration: none;
}

.sovok-popup-contact-item a:hover {
    opacity: 0.7;
}

.sovok-popup-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.sovok-popup-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 12px 28px;
    border: 1px solid #000;
    border-radius: 999px;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sovok-popup-social a:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 574.98px) {
    .sovok-contact-popup {
        width: 100%;
        padding: 32px 28px 40px;
    }

    .sovok-popup-heading {
        font-size: 32px;
    }

    .sovok-popup-contact-title {
        font-size: 30px;
    }
}

/* Footer */
.sovok-footer {
    background: #000;
    padding: 72px 0 56px;
    color: #fff;
}

.sovok-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px 32px;
    align-items: end;
}

.sovok-footer-col {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.sovok-footer-col-left {
    justify-content: space-between;
    gap: 48px;
}

.sovok-footer-col-center {
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.sovok-footer-col-right {
    align-items: flex-end;
    text-align: right;
    justify-content: space-between;
    gap: 24px;
}

.sovok-footer-brand img {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
}

.sovok-footer-social {
    justify-content: flex-start;
}

.sovok-footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.sovok-footer-nav a {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.sovok-footer-nav a:hover {
    opacity: 0.75;
    color: #fff;
}

.sovok-footer-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
}

.sovok-footer-cta {
    margin: 0;
    max-width: 280px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.sovok-footer-email {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.sovok-footer-email:hover {
    color: #fff;
    opacity: 0.75;
}

.sovok-footer-copy {
    margin: 0;
    max-width: 320px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

@media (max-width: 991px) {
    .sovok-footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .sovok-footer-col-center {
        order: -1;
    }

    .sovok-footer-col-right {
        align-items: flex-start;
        text-align: left;
    }

    .sovok-footer-cta,
    .sovok-footer-copy {
        max-width: none;
    }
}

@media (max-width: 575px) {
    .sovok-footer {
        padding: 56px 0 40px;
    }

    .sovok-footer-social {
        flex-wrap: wrap;
    }

    .sovok-footer-nav {
        gap: 20px;
    }
}

/* Project detail page */
.sovok-project-hero.tp-portfolio-hero-ptb {
    padding-top: 0;
    padding-bottom: 0;
    background: transparent;
}

.sovok-project-hero .tp-portfolio-hero-video {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    z-index: 0;
    line-height: 0;
}

.sovok-project-hero .tp-portfolio-hero-video img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
    display: block;
}

.sovok-project-hero > .container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding-bottom: 32px;
}

.sovok-project-hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 0;
}

.sovok-project-hero-title-wrap {
    display: inline-flex;
    padding: 14px 28px;
    border: 1px solid #fff;
    border-radius: 999px;
    background: transparent;
}

.sovok-project-hero-title {
    margin: 0;
    color: #fff;
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.sovok-project-hero-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 999px;
    background: #fff;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.sovok-project-hero-type:hover {
    color: #000;
    opacity: 0.8;
}

.sovok-project-hero-desc {
    max-width: 640px;
    margin-top: 12px;
    margin-bottom: 24px;
}

.sovok-project-hero-desc p {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.sovok-project-hero-location p {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.sovok-project-gallery {
    background: #fff;
    padding: 72px 0 96px;
}

.sovok-project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 56px;
}

.sovok-project-gallery-item {
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 3 / 4;
    background: #b8b8b8;
}

.sovok-project-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sovok-project-gallery-action {
    display: flex;
    justify-content: center;
}

.sovok-project-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 12px 36px;
    border-radius: 999px;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sovok-project-all-btn:hover {
    background: #fff;
    color: #000;
    border-color: #000;
}

@media (max-width: 991px) {
    .sovok-project-gallery {
        padding: 56px 0 72px;
    }

    .sovok-project-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        margin-bottom: 40px;
    }

    .sovok-project-hero > .container {
        position: relative;
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .sovok-project-hero-location {
        text-align: left !important;
        margin-top: 24px;
    }
}

@media (max-width: 575px) {
    .sovok-project-gallery-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
    }

    .sovok-project-hero-title-wrap {
        padding: 12px 22px;
    }
}
