:root {
    --bg-primary: #f8f7f4;
    --bg-secondary: #fafaf8;
    --bg-dark: #1a1a1a;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --accent-red: #c72e2e;
    --accent-red-dark: #a02828;
    --border-light: #e8e8e8;
    --white: #ffffff;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-primary);
}
.logo-symbol {
    color: var(--accent-red);
    flex-shrink: 0;
}
.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.logo-name {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}
.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s ease;
}
.nav-link:hover {
    color: var(--accent-red);
}
.nav-cta {
    background: var(--text-primary);
    color: var(--white);
    padding: 0.625rem 1.25rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease;
}
.nav-cta:hover {
    background: var(--accent-red);
}
.hero {
    padding: 5rem 2rem;
}
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-subtitle {
    font-size: 0.9375rem;
    color: var(--accent-red);
    font-weight: 600;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 1rem;
}
.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}
.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn {
    padding: 0.875rem 2rem;
    border-radius: 0.375rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}
.btn-primary {
    background: var(--accent-red);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--accent-red-dark);
}
.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}
.btn-outline:hover {
    background: var(--text-primary);
    color: var(--white);
}
.btn-light {
    background: var(--white);
    color: var(--text-primary);
    border-color: var(--white);
}
.btn-light:hover {
    background: var(--bg-primary);
}
.hero-shapes {
    display: flex;
    align-items: center;
    justify-content: center;
}
.shape-grid {
    display: grid;
    grid-template-columns: repeat(3, 80px);
    gap: 1.5rem;
    width: 100%;
}
.shape {
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.shape:hover {
    transform: scale(1.1) rotate(5deg);
}
.diamond {
    background: var(--accent-red);
    width: 60px;
    height: 60px;
    margin: 10px auto;
    transform: rotate(45deg);
    border-radius: 10px;
}
.circle {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    border-radius: 50%;
}
.star {
    background: var(--accent-red);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.triangle {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid currentColor;
    margin: auto;
}
.square {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    border-radius: 8px;
}
.pentagon {
    background: var(--accent-red);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}
.circle-dot {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    border-radius: 50%;
    box-shadow: inset 0 0 0 8px var(--bg-primary), inset 0 0 0 12px currentColor;
}
.line {
    background: var(--text-primary);
    height: 4px;
    width: 70px;
    margin: 38px auto;
    border-radius: 2px;
}
.arc {
    border: 4px solid var(--accent-red);
    border-right: none;
    border-bottom: none;
    border-radius: 70px 0 0 0;
    width: 70px;
    height: 70px;
}
.clients {
    background: var(--white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 3rem 2rem;
}
.clients-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.client-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: -0.01em;
}
.services {
    padding: 5rem 2rem;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}
.service-card:hover {
    border-color: var(--accent-red);
    box-shadow: 0 4px 12px rgba(199, 46, 46, 0.1);
    transform: translateY(-4px);
}
.service-icon {
    color: var(--accent-red);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(199, 46, 46, 0.05);
    border-radius: 0.375rem;
}
.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.service-description {
    color: var(--text-secondary);
    line-height: 1.8;
}
.latest-work {
    padding: 5rem 2rem;
    background: var(--white);
    border-top: 1px solid var(--border-light);
}
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.work-card {
    background: var(--bg-secondary);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}
.work-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.work-image-wrapper {
    width: 100%;
    height: 240px;
    background: var(--border-light);
    overflow: hidden;
}
.work-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.work-card:hover .work-image {
    transform: scale(1.05);
}
.work-content {
    padding: 1.5rem;
}
.work-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.work-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}
.work-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.tag {
    display: inline-block;
    background: rgba(199, 46, 46, 0.1);
    color: var(--accent-red);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
}
.latest-blog {
    padding: 5rem 2rem;
    background: var(--bg-primary);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.blog-card {
    background: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.blog-image-wrapper {
    width: 100%;
    height: 200px;
    background: var(--border-light);
    overflow: hidden;
}
.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.blog-card:hover .blog-image {
    transform: scale(1.05);
}
.blog-card-content {
    padding: 1.5rem;
}
.blog-date {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.blog-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.blog-excerpt {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}
.read-more {
    color: var(--accent-red);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}
.blog-card:hover .read-more {
    gap: 0.5rem;
}
.contact-cta {
    background: var(--bg-dark);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}
.contact-content {
    max-width: 600px;
    margin: 0 auto;
}
.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.contact-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
}
.footer {
    background: var(--white);
    border-top: 1px solid var(--border-light);
    padding: 2rem;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.copyright {
    font-size: 0.875rem;
    color: var(--text-secondary);
}
.social-links {
    display: flex;
    gap: 2rem;
}
.social-link {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}
.social-link:hover {
    color: var(--accent-red);
}
.page-header {
    padding: 4rem 2rem 2rem;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
}
.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.page-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}
.page-content {
    padding: 3rem 2rem;
}
.work-grid-large {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.work-card-large {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.work-card-large:hover {
    border-color: var(--accent-red);
    box-shadow: 0 8px 16px rgba(199, 46, 46, 0.1);
}
.work-image-wrapper {
    width: 100%;
    height: 300px;
    background: var(--border-light);
    overflow: hidden;
}
.work-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.work-card-large:hover .work-image {
    transform: scale(1.05);
}
.work-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.work-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.blog-grid-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.blog-card-large {
    background: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}
.blog-card-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.blog-card-large .blog-image-wrapper {
    height: 250px;
}
.blog-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.blog-post-page {
    min-height: calc(100vh - 200px);
}
.blog-post-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    padding: 3rem 2rem;
}
.back-link {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
    transition: color 0.2s ease;
}
.back-link:hover {
    color: var(--accent-red-dark);
}
.blog-post-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.blog-post-meta {
    display: flex;
    gap: 2rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}
.blog-post-hero {
    width: 100%;
    height: 400px;
    background: var(--border-light);
    overflow: hidden;
}
.blog-post-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-post-content {
    padding: 3rem 2rem;
}
.blog-post-body {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-primary);
}
.blog-post-body p {
    margin-bottom: 1.5rem;
}
.blog-post-body h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
}
.blog-post-body h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 1.5rem 0 0.75rem;
}
.blog-post-body ul,
.blog-post-body ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}
.blog-post-body li {
    margin-bottom: 0.5rem;
}
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    background: var(--border-light);
    cursor: pointer;
    aspect-ratio: 1;
}
.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-info-small {
    color: var(--white);
    width: 100%;
}
.gallery-info-small h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.gallery-tag {
    display: inline-block;
    background: var(--accent-red);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 0.625rem 1.25rem;
    border: 2px solid var(--border-light);
    background: var(--white);
    color: var(--text-primary);
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}
.filter-btn:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
}
.filter-btn.active {
    background: var(--accent-red);
    color: var(--white);
    border-color: var(--accent-red);
}
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
}
.lightbox-content {
    position: relative;
    z-index: 2001;
    background: var(--white);
    border-radius: 0.5rem;
    max-width: 800px;
    width: 90%;
    overflow: hidden;
}
.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2002;
    background: var(--white);
    border: none;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}
.lightbox-close:hover {
    background: var(--bg-primary);
}
.lightbox-image {
    width: 100%;
    max-height: 600px;
    object-fit: contain;
}
.lightbox-info {
    padding: 1.5rem;
    background: var(--bg-primary);
}
.lightbox-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.lightbox-info p {
    color: var(--text-secondary);
}
.loading {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}
.error {
    text-align: center;
    padding: 2rem;
    color: var(--accent-red);
    font-weight: 500;
}
.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
    font-size: 1.125rem;
}
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .hero-content {
        grid-template-columns: 1fr;
    }
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .work-card-large {
        grid-template-columns: 1fr;
    }
    .blog-grid-large {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 2rem;
    }
    .nav-links {
        gap: 1.5rem;
        font-size: 0.875rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-shapes {
        display: none;
    }
    .work-grid {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .clients-container {
        gap: 1rem;
    }
    .client-logo {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.875rem;
    }
    .page-title {
        font-size: 1.875rem;
    }
    .contact-title {
        font-size: 1.875rem;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    .page-title {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .gallery-masonry {
        grid-template-columns: 1fr;
    }
    .nav-links {
        gap: 1rem;
        font-size: 0.8125rem;
    }
}
