* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #FFFFFF;
    overflow-x: hidden;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #FFFFFF;
    cursor: pointer;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    color: #C41E3A;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: none;
    position: relative;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C41E3A;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 72px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

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

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 96px;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards, bounce 2s ease-in-out 1.5s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Projects Grid */
.projects-section {
    padding: 120px 48px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 80px;
    letter-spacing: -1px;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 120px;
}

.project-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 450px;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-overlay {
    background: rgba(0, 0, 0, 0.6);
}

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

.project-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.project-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.project-role {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C41E3A;
}

/* Featured Adanne Module */
.adanne-feature {
    padding: 120px 48px;
    background: #FFFFFF;
    color: #000000;
}

.adanne-content {
    max-width: 1200px;
    margin: 0 auto;
    border-left: 4px solid #C41E3A;
    padding-left: 48px;
}

.coming-soon-tag {
    display: inline-block;
    background: #C41E3A;
    color: #FFFFFF;
    padding: 8px 24px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.adanne-quote {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    letter-spacing: -1.5px;
}

.adanne-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
}

/* About Section */
.about-section {
    padding: 120px 48px;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 48px;
    align-items: center;
}

@media (max-width: 1024px) {
    .about-section {
        grid-template-columns: 1fr;
    }
}

.about-text {
    padding-right: 48px;
}

.about-headline {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 48px;
    letter-spacing: -2px;
}

.about-manifesto {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-pullquote {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-style: italic;
    line-height: 1.4;
    border-left: 4px solid #C41E3A;
    padding-left: 32px;
    margin: 48px 0;
}

.about-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Footer */
.footer {
    padding: 80px 48px;
    text-align: center;
    border-top: 1px solid #333333;
}

.cta-button {
    display: inline-block;
    background: #C41E3A;
    color: #FFFFFF;
    padding: 20px 56px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 48px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 56px;
    line-height: 16px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.3);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}

.social-links a {
    color: #FFFFFF;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
    color: #C41E3A;
}

.footer-credits {
    font-size: 14px;
    color: #666666;
}

/* News Page Styles */
.news-page {
    min-height: 100vh;
    padding: 120px 48px 120px;
    margin-top: 72px;
    opacity: 0;
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    display: none;
}

.news-page.active {
    display: block;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.news-title {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 80px;
    letter-spacing: -2px;
}

.news-articles {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.article-card {
    border: 1px solid #333333;
    padding: 48px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-card:hover {
    border-color: #666666;
}

.article-card.expanded {
    border-left: 4px solid #C41E3A;
    padding-left: 44px;
}

.article-date {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C41E3A;
    margin-bottom: 16px;
}

.article-headline {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.article-preview {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #CCCCCC;
    margin-bottom: 20px;
}

.article-indicator {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C41E3A;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.article-arrow {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-card.expanded .article-arrow {
    transform: rotate(90deg);
}

.article-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-card.expanded .article-content {
    max-height: 2000px;
    opacity: 1;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #333333;
}

.article-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.article-content p:last-child {
    margin-bottom: 0;
}

/* Hide main content when showing news */
.page-content.hidden {
    display: none;
}

/* Individual News Article Page */
#newsArticlePage {
    display: none;
}

#newsArticlePage.active {
    display: block;
}

.news-article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 48px;
}

.article-back {
    margin-bottom: 32px;
}

.back-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C41E3A;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-link:hover {
    color: #FFFFFF;
}

.article-headline-full {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.article-body {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #CCCCCC;
}

.article-body p {
    margin-bottom: 24px;
}

.article-body p:last-child {
    margin-bottom: 0;
}

.article-body strong,
.article-body b {
    font-weight: 600;
    color: #FFFFFF;
}

.article-body em,
.article-body i {
    font-style: italic;
}

.article-body a {
    color: #C41E3A;
    text-decoration: none;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-body a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #FFFFFF;
    margin-top: 32px;
    margin-bottom: 16px;
}

.article-body h1 {
    font-size: 32px;
}

.article-body h2 {
    font-size: 28px;
}

.article-body h3 {
    font-size: 24px;
}

.article-body ul,
.article-body ol {
    margin-left: 24px;
    margin-bottom: 24px;
}

.article-body li {
    margin-bottom: 8px;
}

.article-body blockquote {
    border-left: 4px solid #C41E3A;
    padding-left: 24px;
    margin: 24px 0;
    font-style: italic;
    color: #CCCCCC;
}

.article-body code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
}

.article-body pre {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 4px;
    overflow-x: auto;
    margin: 24px 0;
}

.article-body pre code {
    background: none;
    padding: 0;
}

@media (max-width: 768px) {
    .news-article-container {
        padding: 80px 24px;
    }

    .article-headline-full {
        font-size: 40px;
    }

    .article-body {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .news-article-container {
        padding: 64px 20px;
    }

    .article-headline-full {
        font-size: 32px;
    }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .nav {
        padding: 20px 32px;
    }

    .projects-section,
    .adanne-feature,
    .about-section,
    .news-page,
    .footer {
        padding: 100px 32px;
    }

    .section-title,
    .news-title {
        font-size: 40px;
    }

    .hero-title {
        font-size: 72px;
    }

    .projects-grid {
        gap: 16px;
    }

    .project-card {
        height: 380px;
    }

    .about-text {
        padding-right: 0;
    }

    .about-headline {
        font-size: 56px;
    }

    .about-image {
        height: 480px;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 16px 24px;
    }

    .logo {
        font-size: 20px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero {
        height: 60vh;
        margin-top: 64px;
    }

    .hero-title {
        font-size: 56px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .projects-section,
    .adanne-feature,
    .about-section,
    .news-page,
    .footer {
        padding: 80px 24px;
    }

    .section-title,
    .news-title {
        font-size: 32px;
        margin-bottom: 48px;
    }

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

    .project-card {
        height: 320px;
    }

    .project-title {
        font-size: 28px;
    }

    .project-role {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .adanne-content {
        padding-left: 32px;
    }

    .adanne-quote {
        font-size: 48px;
    }

    .adanne-description,
    .about-manifesto,
    .article-preview,
    .article-content p {
        font-size: 16px;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-headline {
        font-size: 48px;
    }

    .about-pullquote {
        font-size: 24px;
        margin: 32px 0;
    }

    .about-image {
        height: 420px;
    }

    .cta-button {
        padding: 16px 40px;
        font-size: 14px;
    }

    .article-card {
        padding: 36px;
    }

    .article-headline {
        font-size: 28px;
    }

    .article-indicator {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 12px 20px;
    }

    .logo {
        font-size: 18px;
        letter-spacing: 0;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .hero {
        height: 55vh;
    }

    .hero-title {
        font-size: 42px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .scroll-indicator {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .projects-section,
    .adanne-feature,
    .about-section,
    .news-page,
    .footer {
        padding: 64px 20px;
    }

    .project-card {
        height: 260px;
    }

    .project-title {
        font-size: 24px;
    }

    .project-role {
        font-size: 11px;
        letter-spacing: 1.2px;
    }

    .adanne-content {
        padding-left: 24px;
    }

    .adanne-quote {
        font-size: 36px;
    }

    .about-headline {
        font-size: 36px;
    }

    .about-image {
        height: 320px;
    }

    .footer {
        text-align: center;
    }

    .cta-button {
        width: 100%;
        padding: 14px 24px;
    }

    .social-links {
        flex-direction: column;
        gap: 16px;
    }

    .article-card {
        padding: 28px;
    }

    .article-headline {
        font-size: 24px;
    }

    .article-preview,
    .article-content p {
        font-size: 15px;
    }
}

