/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.header.scrolled .logo img {
    content: url('asset/images/Logoace.png');
    width: 200px;
    height: 60px;
}

.header.scrolled .hamburger span {
    background: #2E2E2E;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.5px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #9e403a;
}

/* About Page Hero Override */
.about-page .hero {
    background: #9e403a;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 5.5rem;
    font-weight: 100;
    line-height: 1.1;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-info {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

.project-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
}

.project-location {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); */
}

.view-project {
    font-family: 'Inter', sans-serif;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    /* text-transform: uppercase; */
    transition: all 0.3s ease;
}

.view-project:hover {
    opacity: 0.8;
}

/* About Intro Section */
.about-intro {
    background: #f5f5f0;
    padding: 80px 0;
    text-align: left;
}

.about-intro .container {
    display: flex;
    justify-content: flex-end;
    align-items: left;
}

.about-intro-content {
    width: 60%;
    max-width: 700px;
}

.about-intro-content p {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
    font-weight: 400;
}

.about-intro-content .learn-more {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.about-intro-content .learn-more::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.about-intro-content .learn-more:hover {
    color: #8B4513;
}

.about-intro-content .learn-more:hover::after {
    transform: translateX(5px);
}

/* Overlay Menu */
.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(139, 69, 19, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.overlay-menu.active {
    opacity: 1;
    visibility: visible;
}

.overlay-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px;
    position: relative;
}

.overlay-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-menu {
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-menu:hover {
    transform: rotate(90deg);
}

.close-menu span {
    position: absolute;
    width: 24px;
    height: 2px;
    background: #2B2B2B;
    transition: all 0.3s ease;
}

.close-menu span:first-child {
    transform: rotate(45deg);
}

.close-menu span:last-child {
    transform: rotate(-45deg);
}

.overlay-logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #f5f5f5;
    letter-spacing: 0.5px;
}

.overlay-close {
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: relative;
}

.overlay-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 2px;
    background: #f5f5f5;
    transform: translate(-50%, -50%);
}

.overlay-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.overlay-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.overlay-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.overlay-nav-item {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #f5f5f5;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.overlay-nav-item:hover {
    color: #fff;
    transform: translateY(-2px);
}

.overlay-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.overlay-about {
    max-width: 500px;
}

.overlay-about p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #e0e0e0;
    line-height: 1.6;
    font-weight: 300;
}

.overlay-social {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.overlay-social a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.overlay-social a:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Project Categories */
.project-categories {
    background: #f5f5f0;
    padding: 0;
}

.project-category {
    display: flex;
    align-items: center;
    min-height: 100vh;
    border-top: 2px solid #e0e0e0;
    /* border-bottom: 1px solid #e0e0e0; */
    background: #f5f5f0;
    padding-top: 10px;
}

.project-category:nth-child(even) {
    background: #f5f5f0;
}

.project-category:nth-child(3n) {
    background: #f5f5f0;
}

.category-content {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.category-text {
    flex: 1;
    padding: 10px 40px 10px 0;
    max-width: 500px;
}

.category-header {
    margin-bottom: 30px;
    position: relative;
}

.category-pre-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-top: 15px;
}

.category-pre-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: #333;
}

.category-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    color: #ccc;
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.1;
}

.category-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
    font-weight: 400;
}

.view-all-projects {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    /* text-transform: uppercase; */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

/* Categories Header */
.categories-header {
    text-align: left;
    margin: 20px 0;
    padding: 20px 40px;
    background: #f5f5f0;
}

.categories-pre-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #333;
    /* text-transform: uppercase; */
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.categories-pre-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 60px;
    height: 1px;
    background: #333;
}

.category-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    color: #ccc;
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
}

.category-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.view-all-projects {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.view-all-projects:hover {
    color: #8B4513;
    transform: translateX(5px);
}

.view-all-projects-main {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.view-all-projects-main:hover {
    color: #8B4513;
    transform: translateX(5px);
}

.categories-footer {
    text-align: center;
    padding: 60px 0 40px;
}

.category-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0 10px 40px;
}

.project-image-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    overflow: hidden;
}

.project-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.project-image-container:hover img {
    transform: none;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px;
    color: #fff;
    display: flex;
    align-items: flex-end;
    gap: 30px;
    opacity: 1;
}

.project-image-container:hover .project-overlay {
    opacity: 1;
}

.project-overlay .project-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
}

.project-overlay .project-location {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.project-category-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
}

.project-overlay .view-project {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0;
    transition: all 0.3s ease;
}

.project-overlay .view-project:hover {
    opacity: 0.8;
}

/* Quote Section */
.quote-section {
    background: url('asset/images/quote.png') center/cover no-repeat;
    padding: 120px 0;
    position: relative;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.quote-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 800px;
    padding-top: 50px;
    padding-left: 0;
}

.quote-logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.quote-content {
    max-width: 600px;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
    font-style: italic;
}

.quote-author {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #fff;
    opacity: 0.9;
    font-style: normal;
    font-weight: 300;
}

/* Trusted Brands */
.trusted-brands {
    background: #f5f5f0;
    padding: 80px 0;
    text-align: center;
}

.trusted-brands h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 60px;
}

.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}

.brand-logos img {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-description h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #fff;
}

.footer-logo-description p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
    max-width: 400px;
}

.footer-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-section p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 8px;
    line-height: 1.4;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

/* Studio Story Section */
.studio-story {
    padding: 100px 0;
    background: #fff;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.story-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

/* Premium Team Section */
.team-section {
    padding: 120px 0;
    background: #f5f5f0;
}

.team-row_top {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.spacer {
    width: 100px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.p-standard {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #E3E1D6;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.team-row_bottom {
    display: flex;
    justify-content: center;
}

.team-list-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    width: 100%;
}

.team-item {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.team-item:hover {
    transform: scale(1.02);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    transition: background 0.3s ease;
}

.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: #fff;
    z-index: 2;
}

.team-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 0 10px 0;
    color: #fff;
}

.team-position {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.biography-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.biography-button span {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.biography-button:hover .arrow-icon {
    transform: rotate(45deg);
}

/* Team Biography Modal */
.biography {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    overflow-y: auto;
}

.biography-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 60px;
    border-radius: 0;
    max-width: 600px;
    width: 90%;
    opacity: 0;
    transition: all 0.4s ease;
}

.biography.active {
    opacity: 1;
}

.biography-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1001;
}

.biography-close::before,
.biography-close::after {
    content: '';
    position: absolute;
    background: #333;
    transition: all 0.3s ease;
}

.biography-close::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
}

.biography-close::after {
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
}

.biography-close:hover::before {
    height: 100%;
}

.biography-close:hover::after {
    width: 100%;
}

/* Section Separator */
.section-separator {
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
    /* margin: 10px 0; */
}

/* Team Section Responsive */
@media (max-width: 1200px) {
    .team-list-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .team-list-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-item {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 100px 0;
        background: #f5f5f0;
    }
    
    .team-section h2 {
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        font-weight: 600;
        color: #1a1a1a;
    }
    
    .team-list-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-item {
        height: 300px;
    }
    
    .team-info {
        padding: 20px;
    }
    
    .team-name {
        font-size: 1.3rem;
    }
    
    .team-position {
        font-size: 0.85rem;
    }
    
    .biography-button span {
        font-size: 0.8rem;
    }
}
.team-section {
    padding: 100px 0;
    background: #f5f5f0;
}

.team-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 30px;
    background: #f0f0f0;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.team-member p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 0;
    background: #fff;
}

.philosophy-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-item {
    text-align: center;
    padding: 30px 20px;
}

.philosophy-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.philosophy-item p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Premium Media Section */
.media-section {
    padding: 120px 0;
    background: #E6E1D6;
}

.media-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.media-row_top {
    margin-bottom: 80px;
}

.media-row_bottom {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 60px;
    align-items: start;
}

.media-col_left {
    position: sticky;
    top: 120px;
}

.media-intro {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #2E2E2E;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.6;
}

.media-col_right {
    display: flex;
    flex-direction: column;
}

.media-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.media-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(20px);
}

.media-link:last-child {
    border-bottom: none;
}

.media-link:hover {
    transform: translateX(8px);
}

.media-link:hover .media-title {
    color: #1a1a1a;
}

.media-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    color: #2E2E2E;
    transition: color 0.4s ease;
    margin: 0;
}

.media-year {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #666;
    text-align: right;
    margin: 0;
    min-width: 80px;
}

/* Media Section Responsive */
@media (max-width: 1024px) {
    .media-row_bottom {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .media-col_left {
        position: static;
        margin-bottom: 20px;
    }
    
    .media-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .media-section {
        padding: 80px 20px;
    }
    
    .media-row_top {
        margin-bottom: 60px;
    }
    
    .media-intro {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .media-link {
        padding: 20px 0;
    }
    
    .media-title {
        font-size: 22px;
    }
    
    .media-year {
        font-size: 14px;
        min-width: 60px;
    }
}

@media (max-width: 480px) {
    .media-title {
        font-size: 18px;
    }
    
    .media-year {
        font-size: 12px;
        min-width: 50px;
    }
    
    .media-link {
        padding: 16px 0;
    }
}
.awards-section {
    padding: 100px 0;
    background: #f5f5f0;
}

.awards-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.award-item {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
}

.award-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.award-item p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* About Page Premium Hero Section */
.about-page .hero {
    min-height: 100vh;
    width: 100%;
    background: #92542b;
    position: relative;
    overflow: hidden;
}

.hero-background {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 40% 20% 40%;
    grid-template-rows: 1fr auto;
    height: calc(100vh - 80px);
    gap: 0;
    position: relative;
    z-index: 2;
}

.hero-left {
    display: flex;
    align-items: flex-start;
    padding-top: 100px;
    padding-left: 80px;
}

.hero-left-text {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    line-height: 1.8;
    color: #E6E1D6;
    max-width: 480px;
    text-align: left;
    margin: 0;
}

.hero-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-container {
    width: 420px;
    height: 600px;
    overflow: visible;
    position: relative;
    z-index: 3;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 100px;
    padding-right: 80px;
}

.hero-right-text {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    line-height: 1.8;
    color: #E6E1D6;
    max-width: 480px;
    text-align: right;
    margin: 0;
}

.hero-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: #E6E1D6;
    z-index: 1;
}

.hero-studio-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 26vw;
    font-weight: 100;
    color: #E6E1D6;
    opacity: 1;
    z-index: 10;
    letter-spacing: 2px;
    margin: 0;
    white-space: nowrap;
}

/* Responsive Design */

/* Responsive Design */
@media (max-width: 768px) {
    .story-content h2,
    .team-section h2,
    .philosophy-content h2,
    .awards-section h2 {
        font-size: 2rem;
    }
    
    .team-grid,
    .philosophy-grid,
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-member,
    .philosophy-item,
    .award-item {
        padding: 30px 20px;
    }
    
    /* About Page Hero Responsive */
    .about-page .hero-content-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr auto;
        height: calc(100vh - 60px);
    }
    
    .hero-left,
    .hero-right {
        padding: 40px 20px;
        justify-content: center;
        text-align: center;
    }
    
    .hero-left-text,
    .hero-right-text {
        max-width: 100%;
        font-size: 14px;
        text-align: center;
    }
    
    .hero-image-container {
        width: 300px;
        height: 400px;
    }
    
    .hero-studio-text {
        font-size: 18vw;
    }
    
    .hero-bottom-bar {
        height: 60px;
    }
}
@media (max-width: 768px) {
    .nav-container {
        padding: 20px 20px;
    }

    .hero {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-info {
        bottom: 40px;
        left: 20px;
    }

    .project-name {
        font-size: 1.2rem;
    }

    .project-location {
        font-size: 0.9rem;
    }

    .view-project {
        font-size: 0.8rem;
    }

    .overlay-content {
        padding: 40px 20px;
    }

    .overlay-nav {
        flex-direction: column;
        gap: 30px;
    }

    .overlay-nav-item {
        font-size: 2rem;
    }

    .overlay-bottom {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .overlay-about {
        max-width: 100%;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo-description p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-text h2,
    .contact-info h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-info {
        bottom: 30px;
        left: 15px;
    }

    .overlay-nav-item {
        font-size: 1.5rem;
    }

    .overlay-logo h1 {
        font-size: 1.5rem;
    }

    .about-intro {
        padding: 80px 20px;
    }

    .about-intro-content {
        width: 100%;
        text-align: left;
    }

    .about-intro-content p {
        font-size: 1.6rem;
    }

    .trusted-brands {
        padding: 60px 20px;
    }

    .trusted-brands h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .brand-logos {
        gap: 40px;
    }

    .brand-logos img {
        max-width: 120px;
        max-height: 50px;
    }

    .quote-section {
        padding: 80px 20px;
    }

    .quote-logo h1 {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .quote-text {
        font-size: 1.8rem;
    }

    .quote-author {
        font-size: 0.9rem;
    }

    .project-category {
        flex-direction: column;
        min-height: auto;
        padding: 40px 0;
    }

    .category-content {
        flex-direction: column;
        padding: 0 20px;
    }

    .category-text {
        padding: 0 0 40px 0;
        max-width: 100%;
        text-align: center;
    }

    .category-number {
        font-size: 2.5rem;
    }

    .category-title {
        font-size: 2rem;
    }

    .category-description {
        font-size: 1rem;
    }

    .category-image {
        padding: 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

/* Work Section - Portfolio Filtering */
.work-section {
    padding: 10px 0;
    background: #E3E1D6;
}

.work-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.work-wrapper {
    width: 100%;
}

/* Filter Panel */
.filter-panel {
    margin-bottom: 80px;
}

.work-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.col-title,
.col-type,
.col-country,
.col-close {
    flex: 1;
    display: flex;
    align-items: center;
}

.col-close {
    justify-content: flex-end;
}

.p-standard.dark {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #2E2E2E;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.close-button {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-button:hover .close-icon {
    transform: rotate(45deg);
}

.close-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

/* Filter Options */
.filter-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.filter-options.open {
    opacity: 1;
    height: auto;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Custom Checkbox */
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    position: relative;
}

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.checkbox-box {
    width: 18px;
    height: 18px;
    border: 2px solid #2E2E2E;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.custom-checkbox input[type="checkbox"]:checked + .checkbox-box {
    background: #2E2E2E;
}

.custom-checkbox input[type="checkbox"]:checked + .checkbox-box::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #2E2E2E;
    cursor: pointer;
    transition: color 0.3s ease;
    user-select: none; /* Prevent text selection */
}

.custom-checkbox:hover .checkbox-label {
    color: #000;
}

.custom-checkbox:hover .checkbox-box {
    border-color: #000;
}

/* Project Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    transition: all 0.5s ease;
}

.project-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .overlay {
    opacity: 1;
}

.project-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-card:hover .project-info {
    opacity: 1;
    transform: translateY(0);
}

.project-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
}

.project-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.project-country,
.project-category1 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
    opacity: 0.9;
}

.project-country {
    margin-right: 10px;
}

.view-project {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #E3E1D6;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.view-project:hover {
    transform: translateX(5px);
}

.view-project svg {
    transition: transform 0.3s ease;
}

.view-project:hover svg {
    transform: translateX(2px);
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #2E2E2E;
}

.no-results p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    margin: 0;
}

/* Work Filter Section */
.filter-wrapper {
    width: 100%;
}

.work-row_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.p-small.filter {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wrt-row_top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.wrtr-col_one,
.wrtr-col_two,
.wrtr-col_three,
.wrtr-col_four {
    display: flex;
    align-items: center;
}

.wrtr-col_four {
    justify-content: flex-end;
}

.filter-button-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.plus-svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.filter-button-wrapper:hover .plus-svg {
    transform: rotate(45deg);
}

.wrt-row_bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    min-height: 167px;
}

.wrtr-col_two.filter,
.wrtr-col_three {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.work-filter-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.work-filter-item {
    display: flex;
    align-items: center;
}

.work-checkbox-field {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
}

.work-checkbox-box {
    width: 16px;
    height: 16px;
    border: 1px solid #3E3E3E;
    position: relative;
    transition: all 0.3s ease;
}

.work-checkbox-field input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.work-checkbox-field input[type="checkbox"]:checked + .work-checkbox-box {
    background: #3E3E3E;
}

.work-checkbox-field input[type="checkbox"]:checked + .work-checkbox-box::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.work-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.project-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
}

.project-info {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.project-info .p-standard {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #fff;
    margin: 0;
}

.project-link_type {
    margin-top: 20px;
}

.primary-button-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.link-arrow-svg {
    width: 13px;
    height: 9px;
}

.project-image_static {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Project Page Styles */
.project-page .hero {
    min-height: 100vh;
    width: 100%;
    background: #92542b;
    position: relative;
    overflow: hidden;
}

.project-page .hero-background {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

.project-page .hero-content-grid {
    display: grid;
    grid-template-columns: 40% 20% 40%;
    grid-template-rows: 1fr auto;
    height: calc(100vh - 80px);
    gap: 0;
    position: relative;
    z-index: 2;
}

.project-page .hero-left {
    display: flex;
    align-items: flex-start;
    padding-top: 100px;
    padding-left: 80px;
}

.project-page .hero-left-text {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    line-height: 1.8;
    color: #E6E1D6;
    max-width: 480px;
    text-align: left;
    margin: 0;
}

.project-page .hero-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.project-page .hero-image-container {
    width: 420px;
    height: 600px;
    overflow: visible;
    position: relative;
    z-index: 5;
    margin: 0 auto;
}

.project-page .hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-page .hero-right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 100px;
    padding-right: 80px;
}

.project-page .hero-right-text {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    line-height: 1.8;
    color: #E6E1D6;
    max-width: 480px;
    text-align: right;
    margin: 0;
}

.project-page .hero-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: #E6E1D6;
    z-index: 1;
}

.project-page .hero-studio-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 26vw;
    font-weight: 100;
    color: #E6E1D6;
    opacity: 1;
    z-index: 10;
    letter-spacing: 2px;
    margin: 0;
    white-space: nowrap;
}

/* Projects Grid Section */
.projects-grid-section {
    padding: 120px 0;
    background: #f5f5f0;
}

.projects-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}

.projects-intro {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #E3E1D6;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-content {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.project-card:hover .project-content {
    transform: translateY(-5px);
}

.project-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin: 0 0 10px 0;
}

.project-location {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 20px 0;
}

.view-project {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.view-project:hover {
    transform: translateX(5px);
}

.project-info {
    padding: 30px;
}

.project-category {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #666;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.project-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 15px 0;
}

.project-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Project Page Responsive */
@media (max-width: 768px) {
    .project-page .hero-content-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr auto;
        height: calc(100vh - 60px);
    }
    
    .project-page .hero-left,
    .project-page .hero-right {
        padding: 40px 20px;
        justify-content: center;
        text-align: center;
    }
    
    .project-page .hero-left-text,
    .project-page .hero-right-text {
        max-width: 100%;
        font-size: 14px;
        text-align: center;
    }
    
    .project-page .hero-image-container {
        width: 300px;
        height: 400px;
    }
    
    .project-page .hero-studio-text {
        font-size: 18vw;
    }
    
    .project-page .hero-bottom-bar {
        height: 60px;
    }
    
    .projects-grid-section {
        padding: 80px 20px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .projects-intro {
        font-size: 2rem;
        letter-spacing: 4px;
    }
}

/* ===========================================
   INDEX PAGE STYLES
   =========================================== */

.index-page .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('asset/images/hero.jpg') center/cover no-repeat;
}

.index-page .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.index-page .hero-content {
    text-align: center;
    z-index: 2;
}

.index-page .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 30px;
}

.index-page .hero-info {
    text-align: center;
    margin-top: 40px;
}

.index-page .project-location {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    margin: 10px 0;
}

.index-page .view-project {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.index-page .view-project:hover {
    transform: translateX(5px);
}

/* Details Project Page Styles */
body.details-project {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #2B2B2B;
    background: #E3E1D6;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
.h1-standard {
    font-size: clamp(1rem, 8vw, 4rem);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.h3-standard {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.6;
    color: #2B2B2B;
}

.h3-standard.dark {
    color: #2B2B2B;
}

.h4-standard {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.4;
    color: #2B2B2B;
}

.p-standard {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 300;
    line-height: 1.6;
    color: #2B2B2B;
}

/* Container */
.details-project .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Base */
.details-project .section {
    padding: 80px 0;
    position: relative;
}

/* Hero Section */
.project-hero-wrapper {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.project-hero-featured-image_landscape {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: url('https://cdn.prod.website-files.com/672b5194f6f9fae70f66370c/6788e83b9322cbb442106d83_MCC_Landscape_02.webp');
    z-index: 1;
}

.project-hero-featured-image_portrait {
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: url('https://cdn.prod.website-files.com/672b5194f6f9fae70f66370c/6788e83b9322cbb442106d83_MCC_Landscape_02.webp');
    z-index: 2;
}

.project-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 3;
}

.project-hero-content {
    position: absolute;
    bottom: 80px;
    left: 80px;
    z-index: 4;
    max-width: 800px;
}

.project-hero-title {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}

.project-hero-info_wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.project-hero-info {
    font-size: 1rem;
    font-weight: 300;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Project Info Section */
.project-info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 100px 0;
}

.project-info-col-left .h3-standard {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.project-info-col-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-group {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #ddd;
}

.info-group:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin: 0;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 300;
    color: #2B2B2B;
    margin: 0;
    text-align: right;
}

.services-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

.services-item {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 4px;
    color: #2B2B2B;
}

.services-item:last-child {
    margin-bottom: 0;
}

/* Project Content Gallery */
.project-content-wrapper {
    padding: 50px 0;
}

.image-row_1-col {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}

.image-row_3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.image-row_3-col .image-col {
    height: 400px;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}

.image-row_3-col .image-col:nth-child(1) { animation-delay: 0.1s; }
.image-row_3-col .image-col:nth-child(2) { animation-delay: 0.2s; }
.image-row_3-col .image-col:nth-child(3) { animation-delay: 0.3s; }

.project-description-row {
    display: grid;
    grid-template-columns: 25% 75%;
    gap: 40px;
    margin: 80px 0;
    align-items: center;
}

.project-description-row .h4-standard {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

/* Next Project Section */
.next-project-wrapper {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    margin: 100px 0;
    cursor: pointer;
}

.next-project-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: url('https://cdn.prod.website-files.com/672b5194f6f9fae70f66370c/678e2bc8ad89a374688d825b_Traxtion_Landscape_01.webp');
    z-index: 1;
}

.next-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2;
    transition: background 0.3s ease;
}

.next-project-wrapper:hover .next-project-overlay {
    background: rgba(0,0,0,0.4);
}

.next-project-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    z-index: 3;
}

.next-project-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 10px;
}

.next-project-location {
    font-size: 1rem;
    font-weight: 300;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.next-project-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation for Details Project */
.details-project nav {
    position: fixed;
    /* top: 0;
    left: 0; */
    width: 100%;
    /* padding: 20px 40px; */
    z-index: 1000;
    background: rgba(227, 225, 214, 0.95);
    backdrop-filter: blur(10px);
}

.details-project .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.details-project .logo {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2B2B2B;
    text-decoration: none;
}

.details-project .nav-links {
    display: flex;
    gap: 40px;
}

.details-project .nav-link {
    font-size: 0.9rem;
    font-weight: 300;
    color: #2B2B2B;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.details-project .nav-link:hover {
    color: #000;
}

/* Responsive Design for Details Project */
@media (max-width: 1024px) {
    .project-hero-featured-image_landscape {
        width: 60%;
    }
    
    .project-hero-featured-image_portrait {
        width: 40%;
    }
    
    .project-info-wrapper {
        gap: 60px;
    }
    
    .image-row_3-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .project-hero-wrapper {
        min-height: 500px;
    }
    
    .project-hero-featured-image_landscape,
    .project-hero-featured-image_portrait {
        position: relative;
        width: 100%;
        height: 50vh;
    }
    
    .project-hero-content {
        bottom: 40px;
        left: 40px;
    }
    
    .project-info-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .project-description-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .image-row_3-col {
        grid-template-columns: 1fr;
    }
    
    .details-project .nav-container {
        padding: 0 20px;
    }
    
    .details-project .nav-links {
        gap: 20px;
    }
    
    .next-project-content {
        left: 40px;
    }
}

@media (max-width: 480px) {
    .details-project .section {
        padding: 40px 0;
    }
    
    .project-hero-content {
        bottom: 20px;
        left: 20px;
    }
    
    .image-row_1-col {
        height: 300px;
    }
    
    .image-row_3-col .image-col {
        height: 250px;
    }
    
    .details-project nav {
        padding: 15px 20px;
    }
    
    .details-project .nav-links {
        display: none;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 120px 0;
    background: #E6E1D6;
    min-height: 100vh;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 120px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

/* Colonne gauche */
.contact-col-left {
    max-width: 600px;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(60px, 8vw, 100px);
    line-height: 1.05;
    font-weight: 400;
    color: #2E2E2E;
    margin: 0;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}

/* Colonne droite */
.contact-col-right {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Bloc bureaux */
.contact-offices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.2s forwards;
}

.office-block {
    padding: 20px 0;
}

.office-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #2E2E2E;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.office-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.office-link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #2E2E2E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.office-link:hover {
    color: #000;
}

.office-address,
.office-hours {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #2E2E2E;
    margin: 0;
    line-height: 1.5;
}

/* Bloc réseaux sociaux */
.contact-social {
    display: flex;
    gap: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.4s forwards;
}

.contact-social .social-link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #2E2E2E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-social .social-link:hover {
    color: #000;
}

/* Bloc formulaire */
.contact-form {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

.form-question {
    margin-bottom: 30px;
}

.form-question p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #2E2E2E;
    margin: 0;
}

/* Radio buttons */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    padding: 15px 20px;
    border: 1px solid #CFCAC1;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
}

.radio-label:hover {
    border-color: #2E2E2E;
}

.radio-label.active {
    background: #2E2E2E;
    border-color: #2E2E2E;
}

.radio-label.active .radio-text {
    color: #fff;
}

.radio-input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #CFCAC1;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radio-label.active .radio-custom {
    border-color: #fff;
}

.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2E2E2E;
    transition: transform 0.3s ease;
}

.radio-label.active .radio-custom::after {
    transform: translate(-50%, -50%) scale(1);
    background: #fff;
}

.radio-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #2E2E2E;
    transition: color 0.3s ease;
}

/* Form fields */
.contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-field {
    width: 100%;
    padding: 18px;
    border: 1px solid #CFCAC1;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #2E2E2E;
    transition: all 0.3s ease;
    outline: none;
}

.input-field:focus {
    border-color: #2E2E2E;
}

.input-field::placeholder {
    color: #999;
}

/* Submit button */
.submit-btn {
    width: 100%;
    padding: 20px;
    background: #2E2E2E;
    color: #fff;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #1a1a1a;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    
    .contact-offices {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-title {
        font-size: clamp(50px, 6vw, 80px);
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-wrapper {
        gap: 60px;
    }
    
    .contact-col-right {
        gap: 40px;
    }
    
    .contact-title {
        font-size: clamp(40px, 5vw, 60px);
    }
    
    .contact-social {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .radio-group {
        gap: 10px;
    }
    
    .radio-label {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-wrapper {
        gap: 40px;
    }
    
    .office-block {
        padding: 15px 0;
    }
    
    .form-group {
        gap: 8px;
    }
    
    .input-field {
        padding: 15px;
    }
    
    .submit-btn {
        padding: 18px;
    }
}
