/* Temel Ayarlar & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Renk Paleti - Değiştirebiliriz */
    --bg-light: #f4f4f0;
    /* Hafif kırık beyaz/krem */
    --text-dark: #1a1a1a;
    --accent-color: #d45d00;
    /* Canlı bir kiremit turuncusu (Logo/Vurgu için) */
    --bg-dark: #121212;
    --text-light: #ffffff;

    --font-main: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    /* Başlıklar için şık bir serif */
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.6;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    mix-blend-mode: difference;
    /* Menü her zeminde görünsün diye */
    color: #fff;
    /* mix-blend-mode ile çalışması için */
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.nav a {
    margin-left: 2rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.lang {
    margin-left: 2rem;
    opacity: 0.5;
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    padding: 0 4rem;
    padding-top: 100px;
}

.intro-text {
    font-size: 1.8rem;
    font-weight: 400;
    max-width: 600px;
    letter-spacing: -0.5px;
}

.hero-graphic {
    display: flex;
    align-items: center;
    margin-top: 4rem;
    gap: 2rem;
}

.line {
    width: 300px;
    height: 4px;
    background-color: var(--text-dark);
}

.ampersand {
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 1;
}

/* Big Text Section */
.big-text-section {
    padding: 4rem 4rem;
    position: relative;
    min-height: 60vh;
}

.giant-text {
    font-size: 10vw;
    /* Ekran genişliğine göre büyür */
    line-height: 0.9;
    font-weight: 300;
    letter-spacing: -0.04em;
    font-family: var(--font-display);
    /* Serif başlık */
}

.scroll-indicator {
    position: absolute;
    right: 4rem;
    bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.arrow-down {
    writing-mode: horizontal-tb;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

/* Description Section */
.description-section {
    display: flex;
    justify-content: flex-end;
    padding: 6rem 4rem;
}

.text-content {
    max-width: 500px;
}

.text-content p {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.read-more {
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.line-link {
    display: inline-block;
    width: 50px;
    height: 1px;
    background-color: currentColor;
}

/* Projects Section */
.projects-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem;
}

.section-header {
    margin-bottom: 4rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-top: 2rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.project-card {
    cursor: pointer;
}

.image-container {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: #333;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
    overflow: hidden;
}

.project-card:hover .image-container {
    transform: scale(0.98);
}


/* Placeholder renkli backgroundlar */
.placeholder-cinema {
    background: linear-gradient(to bottom right, #000000, #333333);
}

.placeholder-uoga {
    background: #8A4FFF;
}

.placeholder-wisl {
    background: #9D4EDD;
}

.placeholder-cosmetics {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.placeholder-cars {
    background: #FFD700;
}

.placeholder-europe {
    background: #003399;
}

.placeholder-zalgiris {
    background: #006633;
}

.placeholder-roasters {
    background: #808000;
}

.placeholder-ikea {
    background: #DDDDDD;
}

.placeholder-odd {
    background: #FF6600;
}

.project-info h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.project-info p {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 8rem 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.email-link {
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Responsive */
/* Unipak için Tam Genişlik */
.project-card.full-width {
    grid-column: 1 / -1;
    /* Tüm satırı kapla */
}

.placeholder-unipak {
    background: #1a0f30;
    /* Koyu morumsu lacivert */
    aspect-ratio: 16/7;
    /* Daha yatay */
}

/* Design Initiatives */
.design-initiatives {
    background-color: #d1d1cf;
    /* Açık gümüş/gri */
    color: #1a1a1a;
    padding: 6rem 8rem;
    /* İçeriden geniş boşluk */
    margin: 0 -4rem;
    /* Container padding'ini yenmek için */
    margin-bottom: -4rem;
    /* Alt boşluğu sıfırla */
}

.initiative-header h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4rem;
    text-transform: uppercase;
}

.initiative-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 2.5rem;
    font-weight: 300;
    color: #999;
    transition: color 0.3s;
    cursor: pointer;
}

.initiative-item:hover {
    color: #1a1a1a;
}

.init-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s;
}

.initiative-item:hover .init-link {
    opacity: 1;
}

.line-link {
    width: 60px;
    height: 1px;
    background-color: #000;
}

/* Yeni Footer Tasarımı */
.new-footer {
    background-color: #d1d1cf;
    /* Üstteki gri ile devam */
    color: #1a1a1a;
    padding: 8rem 8rem;
    border-top: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 80vh;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.logo-footer {
    font-size: 2rem;
    font-weight: 700;
}

.motto {
    font-size: 1.5rem;
    max-width: 300px;
    text-align: right;
    line-height: 1.2;
}

.footer-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 6rem 0;
}

.action-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.action-line {
    width: 100px;
    height: 2px;
    background-color: #1a1a1a;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.socials {
    display: flex;
    gap: 4rem;
}

.socials .col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .header {
        padding: 1.5rem;
    }

    .hero,
    .big-text-section,
    .description-section,
    .projects-section,
    .footer {
        padding: 4rem 1.5rem;
    }

    .giant-text {
        font-size: 15vw;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .hero-graphic {
        flex-direction: column;
        align-items: flex-start;
    }

    .line {
        width: 100%;
    }

    .scroll-indicator {
        display: none;
    }

    /* Yeni Eklenenler */
    .design-initiatives,
    .new-footer {
        padding: 4rem 2rem;
        margin: 0 -1.5rem;
    }

    .project-card.full-width {
        grid-column: 1;
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }

    .motto {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 2rem;
    }


    .socials {
        width: 100%;
        justify-content: space-between;
    }
}

/* =========================================
   WORKS PAGE STYLES
   ========================================= */

body.works-page {
    background-color: #0d0d0d;
    /* Pitch black / Dark */
    color: #ffffff;
}

.works-page .header {
    mix-blend-mode: normal;
    /* Disable difference mode on dark bg if needed, but white text on dark bg is fine */
    color: #fff;
}

.works-page .nav a.active {
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* Works Hero */
.works-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 8rem 4rem 2rem 4rem;
}

.works-title-container {
    font-family: var(--font-main);
    /* Or display font depending on look */
    width: 100%;
}

.line-one {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 0;
}

.word-featured {
    font-size: 8vw;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -2px;
}

.long-line {
    flex-grow: 1;
    height: 2px;
    background-color: #fff;
    max-width: 200px;
}

.ampersand-symbol {
    font-size: 8vw;
    font-weight: 300;
    font-family: var(--font-display);
    font-style: italic;
}

.line-two {
    margin-top: -1rem;
}

.word-projects {
    font-size: 8vw;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -2px;
}

/* Works Filters */
.works-filters {
    padding: 2rem 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 1.1rem;
    color: #888;
}

.filter-list li {
    cursor: pointer;
    transition: color 0.3s;
}

.filter-list li:hover,
.filter-list li.active {
    color: #fff;
}

.filter-list li sup {
    font-size: 0.7rem;
    margin-left: 2px;
}

/* Works List */
.works-list {
    padding: 0 4rem;
    padding-bottom: 8rem;
}

.work-item {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.3s;
    cursor: pointer;
}

.work-item:hover {
    opacity: 0.7;
}

.work-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.work-category {
    font-size: 1rem;
    color: #888;
}

/* Footer overrides for dark theme if needed */
.works-page .footer.new-footer {
    background-color: #d1d1cf;
    /* Keep footer light grey as per design */
    color: #1a1a1a;
}

.works-page .footer.new-footer .logo-footer,
.works-page .footer.new-footer .motto,
.works-page .footer.new-footer .action-text,
.works-page .footer.new-footer .socials a,
.works-page .footer.new-footer .copyright {
    color: #1a1a1a;
}

.works-page .footer.new-footer .action-line {
    background-color: #1a1a1a;
}

/* Responsive Works Page */
@media (max-width: 768px) {

    .works-hero,
    .works-filters,
    .works-list {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .long-line {
        display: none;
    }

    .line-one {
        justify-content: space-between;
    }


    .work-title {
        font-size: 1.8rem;
    }
}

/* =========================================
   STUDIO PAGE STYLES
   ========================================= */

/* Base overrides for studio page */
body.studio-page {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

body.studio-page .header {
    background-color: transparent;
    mix-blend-mode: normal;
    color: #1a1a1a;
    /* Default to dark text on light bg */
}

/* Studio Hero */
.studio-hero {
    min-height: 50vh;
    padding: 8rem 4rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.studio-title-container {
    width: 100%;
    margin-bottom: 2rem;
}

.studio-title-container .word-about,
.studio-title-container .word-studio {
    font-size: 8vw;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -2px;
}

.hero-subtitle {
    max-width: 600px;
    font-size: 1.5rem;
    line-height: 1.4;
    margin-left: auto;
    /* Align to right side */
    margin-top: 2rem;
}

/* Section Layout */
.studio-section {
    display: flex;
    padding: 6rem 4rem;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.studio-section.dark-bg {
    background-color: #0d0d0d;
    color: #fff;
    border-top: none;
}

.section-number {
    width: 25%;
    font-size: 0.9rem;
    font-weight: 600;
    position: sticky;
    top: 6rem;
    height: fit-content;
    opacity: 0.6;
}

.section-body {
    width: 75%;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 500;
}

/* Content Blocks */
.text-block p {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    max-width: 900px;
}

/* Services Grid */
.section-intro {
    font-size: 1.5rem;
    margin-bottom: 4rem;
    max-width: 800px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.service-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid currentColor;
    padding-bottom: 0.5rem;
}

.service-col ul {
    list-style: none;
}

.service-col ul li {
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

/* Manifesto */
.manifesto-text {
    font-size: 5vw;
    line-height: 1.1;
    font-weight: 300;
    letter-spacing: -1px;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.member-photo {
    width: 100%;
    aspect-ratio: 1;
    background-color: #ddd;
    margin-bottom: 1.5rem;
}

.team-member h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.team-member p {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Awards List */
.awards-intro {
    font-size: 1.2rem;
    margin-bottom: 4rem;
    opacity: 0.7;
    text-transform: uppercase;
}

.award-item {
    display: grid;
    grid-template-columns: 0.5fr 1fr 1fr 1fr;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    align-items: center;
}

.award-item span {
    font-size: 1rem;
}

.award-item .award {
    text-align: right;
    font-weight: 600;
}

/* Responsive Studio */
@media (max-width: 768px) {

    .studio-hero,
    .studio-section {
        padding: 4rem 1.5rem;
        flex-direction: column;
    }

    .section-number {
        position: static;
        width: 100%;
        margin-bottom: 2rem;
    }

    .section-body {
        width: 100%;
    }

    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .award-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .award-item .award {
        text-align: left;
    }

    .hero-subtitle {
        margin-left: 0;
    }


    .hero-subtitle {
        margin-left: 0;
    }

    .long-line {
        display: none;
    }
}

/* =========================================
   WHY US PAGE STYLES
   ========================================= */

body.why-us-page {
    background-color: #0d0d0d;
    /* Main body dark */
    color: #fff;
}

body.why-us-page .header {
    mix-blend-mode: normal;
    color: inherit;
    /* Will inherit based on section text color if we scroll, but fixed header needs handling */
    color: #000;
    /* Start black for light hero */
}

/* Scroll trigger to change header color could be JS, but for now let's keep it simple or sticky */
/* Actually, let's keep header black text for the first section and white for the rest via JS or just mix-blend-mode again if possible? 
   The studio page used mix-blend-mode: difference in the original code but we overrode it. 
   Let's try mix-blend-mode: difference for the header on this page too, so it adapts to white/black backgrounds. */
body.why-us-page .header {
    background-color: transparent;
    color: #fff;
    mix-blend-mode: difference;
}


/* Hero (Light) */
.why-hero {
    background-color: #d1d1cf;
    /* Light grey */
    color: #1a1a1a;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 4rem;
    position: relative;
}

.why-title {
    font-size: 15vw;
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -4px;
    margin-top: 4rem;
}

.scroll-indicator-why {
    position: absolute;
    right: 4rem;
    bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

/* Main Content (Dark) */
.why-content {
    background-color: #0d0d0d;
    color: #fff;
    padding: 8rem 4rem;
}

.why-intro {
    font-size: 2.5rem;
    line-height: 1.3;
    max-width: 1000px;
    margin-bottom: 10rem;
    font-weight: 400;
}

.why-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.left-desc {
    width: 40%;
    font-size: 1.1rem;
    opacity: 0.7;
    line-height: 1.6;
}

.right-list {
    width: 50%;
}

.right-list ul {
    list-style: none;
}

.right-list ul li {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    line-height: 1.2;
    transition: opacity 0.3s;
    cursor: default;
}

.right-list ul li:hover {
    opacity: 0.7;
}

/* Footer overrides for Why Us (Dark Theme Footer matches naturally) */
.why-us-page .footer {
    background-color: #0d0d0d;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.why-us-page .contact-link {
    /* ... */
}

/* Responsive Why Us */
@media (max-width: 900px) {
    .why-title {
        font-size: 20vw;
    }

    .why-content {
        padding: 4rem 1.5rem;
    }

    .why-section {
        flex-direction: column;
        gap: 2rem;
    }

    .left-desc,
    .right-list {
        width: 100%;
    }

    .right-list ul li {
        font-size: 2rem;
    }


    .why-intro {
        font-size: 1.8rem;
    }
}

/* =========================================
   CASE STUDY SLIDER (WHY US)
   ========================================= */
.case-study-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    color: #fff;
    background-color: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.yellow-bg {
    background-color: #D4AF37;
    /* Gold/Yellowish */
    /* Add a subtle gradient or placeholder image simulation if needed */
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
}

.green-bg {
    background-color: #00552E;
    /* Deep Green */
    background: linear-gradient(135deg, #1b4d3e 0%, #0f2b23 100%);
}

.orange-bg {
    background-color: #FF7F50;
    background: linear-gradient(135deg, #ff9966 0%, #ff5e62 100%);
}

.slide-content {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8rem;
    position: relative;
}

.big-stat {
    font-size: 15vw;
    font-weight: 600;
    line-height: 1;
}

.case-info {
    max-width: 600px;
    text-align: left;
}

.case-tags {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    display: block;
    opacity: 0.8;
}

.case-info h2 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
}

/* Scattered Text Slide (MANA) */
.centered-content {
    justify-content: center;
    align-items: center;
}

.scattered-text {
    position: relative;
    width: 80%;
    height: 60%;
}

.scattered-text .letter {
    position: absolute;
    font-size: 10vw;
    font-weight: 300;
    font-family: var(--font-display);
}

.scattered-text .m {
    top: 10%;
    left: 20%;
}

.scattered-text .a1 {
    top: 0%;
    right: 30%;
}

.scattered-text .n {
    bottom: 20%;
    left: 40%;
}

.scattered-text .a2 {
    bottom: 10%;
    right: 20%;
}

.scattered-text .sub-text {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    font-style: italic;
    font-family: var(--font-display);
}


/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 4rem;
    left: 4rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 4rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.slide-counter {
    display: flex;
    gap: 0.5rem;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    /* Style choice from screenshot, maybe horizontal is safer? Let's check screenshot. It says '03 / 01' vertically usually on these sites, but screenshot showed horizontal bottom left. */
    writing-mode: horizontal-tb;
    /* Reset to horizontal based on screenshot '01 / 03' */
    transform: none;
    font-feature-settings: "tnum";
}

.nav-arrows {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    background: none;
    border: none;
    color: inherit;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.nav-btn:hover {
    opacity: 1;
}

/* Logo Grid Section */
.logo-grid-section {
    background-color: #0d0d0d;
    color: #fff;
    padding: 8rem 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.logos-title {
    font-size: 1rem;
    margin-bottom: 4rem;
    opacity: 0.5;
    letter-spacing: 1px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
}

.client-logo {
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.3;
    transition: opacity 0.3s;
    cursor: default;
}

.client-logo:hover {
    opacity: 0.8;
}

/* Responsive Slider */
@media (max-width: 768px) {
    .case-study-slider {
        height: 80vh;
    }

    .slide-content {
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        text-align: center;
        gap: 2rem;
    }

    .big-stat {
        font-size: 20vw;
    }

    .case-info {
        text-align: center;
    }

    .case-info h2 {
        font-size: 1.5rem;
    }

    .scattered-text .letter {
        font-size: 20vw;
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }



    .slider-controls {
        left: 2rem;
        bottom: 2rem;
    }
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

body.contact-page {
    background-color: var(--bg-light);
    /* Light Grey Base */
    color: var(--text-dark);
}

body.contact-page .header {
    background-color: transparent;
    color: #1a1a1a;
    mix-blend-mode: normal;
}

.contact-main {
    display: flex;
    min-height: 100vh;
    padding-top: 8rem;
    /* Space for fixed header */
}

.contact-left {
    width: 50%;
    padding: 4rem 6rem;
    display: flex;
    flex-direction: column;
}

.contact-heading {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 6rem;
    max-width: 500px;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item .label {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item .value {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.4;
}

.contact-item .value.link {
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
    width: fit-content;
}

.contact-item .value.link:hover {
    border-color: currentColor;
}

.contact-right {
    width: 50%;
    position: relative;
    /* Clean cut right side, maybe sticky image? */
}

.office-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #d8d8d8;
    /* Slightly darker grey placeholder */
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=2301&ixlib=rb-4.0.3');
    /* Clean office placeholder */
    background-size: cover;
    background-position: center;
}

/* Responsive Contact */
@media (max-width: 900px) {
    .contact-main {
        flex-direction: column;
    }

    .contact-left {
        width: 100%;
        padding: 4rem 2rem;
    }

    .contact-right {
        width: 100%;
        height: 50vh;
    }

    .contact-heading {
        font-size: 2rem;
    }


    .contact-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* =========================================
   GLOBAL ACTIVE STATE & MOBILE REFINEMENTS
   ========================================= */

/* Active Link Styling (Underline) */
.nav a.active {
    position: relative;
    opacity: 1;
    /* Ensure active link is fully opaque */
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
}

/* Global Mobile Fixes */
@media (max-width: 768px) {

    /* Header/Nav mobile adjustments */
    .header {
        padding: 1.5rem;
        flex-direction: column;
        /* Stack logo and nav if needed, or keep row if fits */
        align-items: flex-start;
        background-color: transparent;
        /* Or specific color if needed */
        position: relative;
        /* Sometimes fixed header on mobile is tricky, let's keep it relative or fixed with care */
        position: fixed;
    }

    .nav {
        margin-top: 1rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav a {
        margin-left: 0;
        margin-right: 1rem;
        font-size: 0.9rem;
    }

    .lang {
        margin-left: 0;
    }

    /* Padding adjustments for pages to start below fixed/stacked header */
    .hero,
    .works-hero,
    .studio-hero,
    .why-hero,
    .contact-main {
        padding-top: 140px;
    }

    /* Why Us Page: Mobile Layout */
    .why-section {
        flex-direction: column;
        border-top: none;
        padding-top: 2rem;
        margin-bottom: 4rem;
    }

    .why-section:first-of-type {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 4rem;
    }

    .right-list ul li {
        font-size: 1.8rem;
        /* Smaller font for mobile lists */
    }

    /* Studio Page: Mobile Layout (Already partially handled, ensuring full coverage) */
    .studio-hero {
        min-height: auto;
        padding-bottom: 4rem;
    }

    .studio-title-container .word-about,
    .studio-title-container .word-studio {
        font-size: 15vw;
    }

    /* Contact Page: Mobile Layout */
    .contact-heading {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .contact-left {
        padding: 2rem;
    }

    .office-image-placeholder {
        min-height: 300px;
    }
}