* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background: #fafafa;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #222;
    font-weight: 600;
}

.navbar,
header {
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(8px);
    padding: 18px 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.25s ease;
}

.navbar.shrink .logo img {
    height: 34px;
}

.navbar.shrink .logo-text em {
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.logo img {
    height: 40px;
    max-width: 100%;
}

nav a,
.nav-links a {
    margin-left: 28px;
    font-size: 15px;
    color: #333;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

nav a:hover,
.nav-links a:hover {
    color: #1f7aa6;
}

nav a:hover::after {
    content: "";
    position: absolute;
    left: 0; bottom: -4px;
    width: 100%;
    height: 1px;
    background: #333;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #1f7aa6;
    color: #ffffff;
    border: 1px solid #1f7aa6;
}

.btn-primary:hover {
    background-color: #166183;
}

.btn-secondary {
    background-color: transparent;
    color: #1f7aa6;
    border: 1px solid #1f7aa6;
    margin-left: 12px;
}

.btn-secondary:hover {
    background-color: #e8f3f8;
}

.hero {
    position: relative;
    min-height: 80vh;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 0;
}

.hero-media {
    position: relative;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.35), transparent 60%);
}

.hero-content {
    min-width: 0;
    padding: 8vh 6vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-content p {
    font-size: 16px;
    max-width: 520px;
    margin-bottom: 24px;
    color: #555555;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.home-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 4vw;
    padding-right: 4vw;
}

.home-hero .hero-media {
    border-radius: 16px;
    overflow: hidden;
}

.home-hero .hero-content {
    min-width: 0;
    background: white;
    border-radius: 16px;
    padding: 60px 60px;
}

.home-services {
    padding: 80px 6vw;
    background-color: #fafafa;
}

.section-heading {
    text-align: left;
    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: 26px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-heading p {
    color: #666666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.service-card {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #eeeeee;
    box-shadow: 0 6px 18px rgba(0,0,0,0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.service-card p {
    font-size: 14px;
    color: #555555;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.08);
}


.portfolio,
.home-portfolio {
    padding: 80px 6vw;
}

.home-portfolio {
    padding: 80px 4vw;
    max-width: 1350px;
    margin: 0 auto;
}

.home-portfolio h2 {
    margin-bottom: 30px;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.portfolio-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.portfolio-card,
.pf-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    display: block;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-card img,
.pf-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pf-card img {
    height: 290px;
}


.portfolio-card:hover,
.pf-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.08);
}

.portfolio-card:hover img,
.pf-card:hover img {
    transform: scale(1.05);
}

.portfolio-card-title {
    padding: 14px;
    font-size: 16px;
    background: #fff;
    color: #222;
    text-align: center;
    border-top: 1px solid #eee;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pf-more {
    text-align: center;
    margin-top: 35px;
}

.btn-more {
    color: #1f7aa6;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
    padding-bottom: 4px;
}

.btn-more:hover {
    border-bottom: 1px solid #1f7aa6;
}

.project-detail {
    padding: 80px 6vw;
}

.project-detail h1,
.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.project-detail h1::after,
.page-header h1::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #222;
    margin-top: 12px;
}

.project-cover {
    position: relative;
    height: 55vh;
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 40px;
}

.project-cover img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    object-fit: cover;
    max-height: 560px;
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(0);
    transition: transform 0.3s ease-out;
}

.project-description {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .project-description {
        column-count: 2;
        column-gap: 32px;
    }
}


.project-video {
    position: relative;
    padding-top: 56.25%;
    margin-bottom: 40px;
}

.project-video video,
.project-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.10);
    object-fit: cover;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 10px;
}

.project-gallery a {
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.project-gallery a:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.project-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.project-gallery img:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 22px rgba(0,0,0,0.10);
    border-radius: 12px;
}


.page-header,
.contact-section,
.about-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 6vw;
}

.about-section {
    padding: 20px 6vw 80px;
    max-width: 800px;
    color: #444;
    font-size: 16px;
    line-height: 1.8;
}

.page-header p {
    max-width: 600px;
    color: #555;
}

.about-section p {
    margin-bottom: 20px;
}

.contact-section {
    padding: 40px 6vw 80px;
    max-width: 700px;
}

.services-detail {
    padding: 20px 6vw 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-block {
    background: #fff;
    padding: 28px;
    border-radius: 14px;
    border: 1px solid #eee;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.service-block h2 {
    margin-bottom: 12px;
    font-size: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.service-block p {
    color: #555;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form label {
    font-size: 14px;
    color: #444;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
}

.contact-form button {
    margin-top: 12px;
    width: fit-content;
}

.form-success {
    padding: 12px;
    background: #e5f8ea;
    color: #2d7a3d;
    border: 1px solid #bde5c8;
    border-radius: 8px;
    margin-bottom: 20px;
}

.form-error {
    background: #ffe5e5;
    color: #990000;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ffcccc;
    margin-bottom: 20px;
}

.map-box {
    margin-top: 30px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}


.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.project-grid-item {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    border-radius: 14px;
    background: #f3f3f3;
    display: block;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    will-change: transform, opacity;
}

.project-grid-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.project-grid-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.35s ease;
}

.project-grid-item:hover img {
    transform: scale(1.05);
}

.project-nav {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.project-nav-link {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #333;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid #ddd;
    background: #fff;
    transition: all 0.2s ease;
}

.project-nav-link:hover {
    border-color: #1f7aa6;
    color: #1f7aa6;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.main-footer {
    background: #111;
    color: #ddd;
    padding: 60px 6vw 30px;
    margin-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.footer-logo {
    width: 140px;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 500;
}

.footer-col a {
    display: block;
    color: #aaa;
    margin-bottom: 10px;
    text-decoration: none;
    font-size: 14px;
}

.footer-col a:hover {
    color: #fff;
}

.footer-socials img {
    width: 22px;
    margin-right: 10px;
    opacity: 0.7;
    transition: 0.3s;
}

.footer-socials img:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    color: #777;
    font-size: 13px;
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.services-modern {
    padding: 60px 6vw 100px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-item {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 50px;
}

.service-item:nth-child(even) {
    grid-template-columns: 1fr 1.2fr;
}

.service-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
}

.service-text h2 {
    font-size: 26px;
    margin-bottom: 15px;
    letter-spacing: 0.03em;
}

.service-text p {
    font-size: 16px;
    margin-bottom: 14px;
    line-height: 1.7;
    color: #555;
}

.service-text ul {
    margin-top: 10px;
    padding-left: 18px;
}

.service-text ul li {
    margin-bottom: 8px;
    font-size: 15px;
}

.about-wrapper {
    padding: 90px 6vw;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 22px;
    font-size: 18px;
    color: #2e2e2e;
    line-height: 1.85;
    letter-spacing: 0.01em;
    font-weight: 300;
}

.about-header h1 {
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.about-header p {
    font-size: 18px;
    max-width: 700px;
    color: #555;
    margin-top: 12px;
}

.references-section {
    padding: 120px 6vw;
    text-align: center;
    background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
}

.references-section h2 {
    font-size: 32px;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.references-subtitle {
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
}

.references-frame {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    padding: 26px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.references-frame:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(0,0,0,0.14);
}

.references-frame img {
    width: 100%;
    display: block;
    border-radius: 12px;
    opacity: 0.93;
    transition: opacity 0.3s ease;
}

.references-frame:hover img {
    opacity: 1;
}

.container-narrow {
    max-width: 1350px;
    margin: 0 auto;
    padding-left: 4vw;
    padding-right: 4vw;
}

.masonry-grid {
    column-count: 3;
    column-gap: 18px;
}

.masonry-grid-item {
    break-inside: avoid;
    margin-bottom: 18px;
    overflow: hidden;
    border-radius: 12px;
    display: block;
}

.masonry-grid-item img {
    width: 100%;
    border-radius: 12px;
    display: block;
    transition: transform 0.35s ease;
}

.masonry-grid-item:hover img {
    transform: scale(1.03);
}

.hero-content,
.service-card,
.section-heading,
.portfolio-card,
.project-gallery img {
    will-change: transform, opacity;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 3001;
}

.mobile-menu-btn span {
    height: 3px;
    width: 26px;
    background: #333;
    margin: 4px 0;
    border-radius: 4px;
}


@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-media {
        max-height: 320px;
    }

    .hero-content {
        min-width: 0;
        padding: 40px 6vw;
    }
    
    .home-hero .hero-content {
        min-width: 0;
        padding: 40px 24px;
    }
    
    .service-item,
    .service-item:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    body {
        overflow-x: hidden;
    }
    .navbar {
        padding: 16px 6vw;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 110px 30px;
        gap: 22px;
        transition: right 0.35s ease;
        box-shadow: -4px 0 18px rgba(0, 0, 0, 0.15);
        z-index: 3000;
    }

    .nav-links.show {
        right: 0;
    }

    .nav-links a {
        margin-left: 0;
        margin-bottom: 0;
        font-size: 18px;
        padding: 4px 0;
        width: 100%;
        display: block;
    }

    .nav-links .mob-btn {
        margin-top: 10px;
        width: 100%;
        text-align: center;
        padding: 12px;
        border-radius: 8px;
    }
    
    .masonry-grid {
        column-count: 2;
    }
    
    .pf-card img {
        height: 220px;
    }
    .hero-media-desktop {
        display: none;
    }
    
}

@media (max-width: 600px) {
    .project-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .project-gallery img {
    height: auto;
    aspect-ratio: 4 / 3;
    }
    .project-grid-item {
        padding-top: 70%;
    }
    .hero-content h1 {
    font-size: 28px;
    line-height: 1.2;
    word-break: normal;
    }
    .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    }
    .hero-actions a {
    width: 100%;
    text-align: center;
    }
    .pf-card img {
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    }
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background: #fafafa;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #222;
    font-weight: 600;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 5vw;
    border-bottom: 1px solid #f0f0f0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 40px;
}

.nav-links a {
    margin-left: 24px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: 0.25s;
}

.nav-links a:hover {
    color: #1f7aa6;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #1f7aa6;
    border: 1px solid #1f7aa6;
    color: white;
}

.btn-primary:hover {
    background-color: #166183;
}

.btn-secondary {
    background-color: white;
    border: 1px solid #1f7aa6;
    color: #1f7aa6;
}

.btn-secondary:hover {
    background-color: #e8f3f8;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 26px;
    height: 3px;
    background: #333;
    margin: 4px 0;
    border-radius: 3px;
}

.hero {
    position: relative;
    min-height: 80vh;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
}

.home-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 4vw;
    padding-right: 4vw;
}

.hero-media {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.35), transparent 60%);
}

.hero-content {
    min-width: 0;
    background: white;
    padding: 60px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 40px;
    margin-bottom: 18px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 16px;
    color: #555;
    max-width: 520px;
    margin-bottom: 26px;
}

.hero-actions {
    display: flex;
    gap: 14px;
}

.container-narrow {
    max-width: 1350px;
    margin: 0 auto;
    padding-left: 4vw;
    padding-right: 4vw;
}

.home-portfolio {
    padding: 80px 0;
}

.home-portfolio h2 {
    margin-bottom: 30px;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.portfolio-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.pf-card {
    border-radius: 14px;
    overflow: hidden;
    display: block;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.pf-card img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.pf-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

.pf-card:hover img {
    transform: scale(1.05);
}

.pf-more {
    text-align: center;
    margin-top: 32px;
}

.btn-more {
    font-size: 15px;
    color: #1f7aa6;
    text-decoration: none;
    transition: 0.3s;
}

.btn-more:hover {
    border-bottom: 1px solid #1f7aa6;
}

.home-services {
    padding: 80px 0;
}

.section-heading h2 {
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.section-heading p {
    color: #666;
    margin-bottom: 28px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.service-card {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: 0.3s ease;
    text-align: left;
}

.service-card img {
    width: 40px;
    height: auto;
    margin-bottom: 12px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.service-card p {
    font-size: 14px;
    color: #555;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.06);
}

.why-us {
    padding: 80px 0;
}

.why-inner {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.why-inner h2 {
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.why-inner p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.why-inner ul {
    margin-bottom: 24px;
}

.why-inner li {
    font-size: 15px;
    margin-bottom: 8px;
}

.why-btn {
    margin-top: 14px;
    display: inline-block;
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-content {
        min-width: 0;
        padding: 40px 24px;
    }

    .hero-media {
        max-height: 300px;
    }

    .pf-card img {
        height: 220px;
    }

    .mobile-menu-btn {
        display: flex;
    }
}
.about-hero {
    text-align: center;
    padding: 140px 6vw 100px;
    background: #f5f5f5;
}

.about-hero h1 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-hero p {
    font-size: 20px;
    color: #777;
    font-style: italic;
}

.about-founder {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 6vw;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}

.founder-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    object-fit: cover;
}

.founder-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    letter-spacing: 0.04em;
}

.founder-text p {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 18px;
}

@media (max-width: 900px) {
    .about-founder {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.references-section {
    padding: 120px 6vw;
    text-align: center;
    background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
}

.references-section h2 {
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.references-subtitle {
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

.references-frame {
    max-width: 1000px;
    margin: 0 auto;
    padding: 26px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.references-frame img {
    width: 100%;
    border-radius: 12px;
    opacity: 0.92;
    transition: opacity 0.3s ease;
}

.references-frame:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.references-frame:hover img {
    opacity: 1;
}
.contact-wrapper {
    padding: 60px 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-left {
    background: #fff;
    padding: 32px;
    border-radius: 14px;
    box-shadow: 0 8px 26px rgba(0,0,0,0.05);
}

.contact-map {
    height: 420px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(0,0,0,0.05);
}

.contact-info {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 14px;
}

.contact-info p {
    margin-bottom: 6px;
    color: #444;
    font-size: 15px;
}

.contact-socials img {
    width: 26px;
    margin: 10px;
    opacity: 0.75;
    transition: 0.3s;
}

.contact-socials img:hover {
    opacity: 1;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 300px;
    }
}
img,
video {
    max-width: 100%;
    height: auto;
}
@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 26px;
        line-height: 1.25;
        letter-spacing: 0.02em;
        word-break: break-word;
        overflow-wrap: break-word;
    }
}
@media (max-width: 768px) {
    .hero-media {
        display: block;
        height: auto;
        aspect-ratio: 16 / 9;
        border-radius: 14px;
        margin-bottom: 20px;
    }

    .hero-video {
        display: none;
    }

    .hero-media::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("/assets/images/hero-poster.jpg") center / cover no-repeat;
    }

    .hero-overlay {
        display: none;
    }
}
@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-actions a {
        width: 100%;
        text-align: center;
    }

    .btn-secondary {
        margin-left: 0;
    }
}
@media (max-width: 600px) {

    .home-portfolio {
        padding-top: 50px;
        padding-bottom: 60px;
    }

    .home-portfolio h2 {
        font-size: 22px;
        letter-spacing: 0.04em;
        text-align: center;
        margin-bottom: 24px;
    }

    .portfolio-showcase {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pf-card img {
        aspect-ratio: 4 / 3;
        height: auto;
        border-radius: 12px;
    }

    .pf-more {
        margin-top: 26px;
    }
}
@media (max-width: 600px) {

    .home-services {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .section-heading {
        text-align: center;
        margin-bottom: 32px;
    }

    .section-heading h2 {
        font-size: 22px;
        letter-spacing: 0.05em;
    }

    .section-heading p {
        font-size: 15px;
        max-width: 320px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card {
        padding: 20px;
        text-align: left;
    }

    .service-card h3 {
        font-size: 16px;
        letter-spacing: 0.05em;
    }

    .service-card p {
        font-size: 14px;
        line-height: 1.6;
    }
}
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text strong {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    letter-spacing: 0.04em;
}

.logo-text em {
    font-style: normal;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #777;
}
@media (max-width: 768px) {
    .logo-text {
        display: none;
    }
}
.logo-wrap::after {
    content: "";
    width: 28px;
    height: 1px;
    background: #ddd;
    margin-left: 6px;
}
@media (max-width: 768px) {

    .logo-wrap {
        gap: 10px;
    }

    .logo img {
        height: 34px;
    }

    .logo-text {
        display: flex;  
        line-height: 1.1;
    }

    .logo-text strong {
        font-size: 15px;           
        letter-spacing: 0.03em;
    }

    .logo-text em {
        font-size: 9px;           
        letter-spacing: 0.1em;
        white-space: nowrap;        
    }
}
@media (max-width: 768px) {
    .navbar.shrink .logo-text em {
        display: none;
    }

    .navbar.shrink .logo img {
        height: 30px;
    }
}

