.project-hero {
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.project-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2));
}

.project-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
}

.project-hero h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.project-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    font-weight: 300;
}

.project-tagline {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.9;
    font-family: 'Cormorant Garamond', serif;
}

.yugo-analysis {
    background: var(--light-bg);
    padding: 100px 6%;
}

.yugo-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.yugo-pillar {
    background: var(--white);
    padding: 3rem;
    border-left: 4px solid var(--accent-gold);
}

.pillar-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pillar-japanese {
    font-size: 3rem;
    color: var(--accent-gold);
    font-weight: 300;
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: 400;
}

.pillar-content {
    color: var(--text-gray);
    line-height: 1.8;
}

.project-details {
    padding: 100px 6%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
    border: 1px solid var(--border-subtle);
}

.stat-number {
    font-size: 2.5rem;
    color: var(--accent-gold);
    font-weight: 300;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    letter-spacing: 0.05em;
}

.detail-section {
    margin: 4rem 0;
}

.detail-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-family: 'Cormorant Garamond', serif;
}

.detail-section p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.detail-list {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 2;
}

.detail-list li {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.detail-list strong {
    color: var(--primary-dark);
}

.project-gallery {
    padding: 100px 6%;
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    aspect-ratio: 16/10;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.quote-section {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 100px 6%;
    text-align: center;
}

.quote-text {
    font-size: 2rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.quote-attribution {
    font-size: 1rem;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.awards-section {
    padding: 80px 6%;
    text-align: center;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.award-card {
    padding: 2rem;
    background: var(--light-bg);
    border-left: 4px solid var(--accent-gold);
    text-align: left;
}

.award-name {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.award-category {
    font-size: 0.95rem;
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .project-hero h1 {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .yugo-pillars {
        grid-template-columns: 1fr;
    }
}
