﻿
:root {
    --bg: #faf9f7;
    --bg2: #f2f0ec;
    --ink: #1a1916;
    --ink2: #3d3b37;
    --mid: #9a9690;
    --line: #dedad4;
    --gold: #b8945f;
    --gold-light: #f0e6d4;
    --white: #ffffff;
    --serif: 'Playfair Display',Georgia,serif;
    --sans: 'DM Sans',system-ui,sans-serif;
}

/* NAV */
nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(250,249,247,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 64px;
    height: 72px;
}

.logo {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    margin-bottom: 2px;
    flex-shrink: 0
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none
}

    .nav-links a {
        font-size: 13px;
        font-weight: 400;
        letter-spacing: .06em;
        color: var(--ink2);
        text-decoration: none;
        transition: color .25s;
        position: relative;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .3s;
        }

        .nav-links a:hover {
            color: var(--ink)
        }

            .nav-links a:hover::after {
                transform: scaleX(1)
            }

.nav-contact {
    background: var(--ink);
    color: var(--white);
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: none;
    cursor: none;
    transition: background .25s;
    text-decoration: none;
    display: inline-block;
}

    .nav-contact:hover {
        background: var(--gold)
    }
.sld2 {
    color: var(--gold)
}
.sld3 h1 {
    transition: opacity .8s cubic-bezier(.2, .9, .2, 1), transform .8s cubic-bezier(.2, .9, .2, 1);
    will-change: transform, opacity;
    margin: 16px 0 10px;
    letter-spacing: -0.06em;
    font-weight: 900;
    line-height: .9;
    font-size: clamp(46px, 6.2vw, 92px);
    position: relative;
    color:#000;
}

.sld3 span {
    color: var(--gold)
}
.sld3 p {
    transition: opacity .8s cubic-bezier(.2, .9, .2, 1), transform .8s cubic-bezier(.2, .9, .2, 1);
    will-change: transform, opacity;
    margin: 0 0 18px;
    max-width: 54ch;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}
.sld1 {
    padding: 34px 0 40px;
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
}

/* SECTION */
.sec-label {
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

    .sec-label::before {
        content: '';
        width: 24px;
        height: 1px;
        background: var(--gold);
        flex-shrink: 0
    }

.sec-title {
    font-family: var(--serif);
    font-size: clamp(34px,4vw,52px);
    font-weight: 400;
    line-height: 1.1;
}

    .sec-title em {
        font-style: italic;
        color: var(--gold)
    }

/* WORKS */
.works {
    padding: 100px 64px
}

.works-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
}

.see-all {
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .25s;
    cursor: none;
    margin-bottom: 4px;
}

    .see-all:hover {
        color: var(--ink)
    }

.grid-main {
    display: grid;
    grid-template-columns: repeat(12,1fr);
    grid-template-rows: auto auto;
    gap: 2px;
    background: var(--line);
}

    .grid-main > * {
        background: var(--bg)
    }

.gc1 {
    grid-column: span 7;
    grid-row: span 2
}

.gc2 {
    grid-column: span 5
}

.gc3 {
    grid-column: span 5
}

.gc4 {
    grid-column: span 4
}

.gc5 {
    grid-column: span 4
}

.gc6 {
    grid-column: span 4
}

.wc {
    position: relative;
    overflow: hidden;
    cursor: none
}

    .wc svg {
        display: block;
        width: 100%;
        transition: transform .65s cubic-bezier(.25,.46,.45,.94);
    }

    .wc img {
        object-fit: cover;
        height: 100%;
        transition: transform .65s cubic-bezier(.25,.46,.45,.94);
    }
    .wc:hover img {
        transform: scale(1.04)
    }
    .wc:hover svg {
        transform: scale(1.04)
    }

.gc1 svg {
    height: 100%
}

.wc-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 28px;
    background: linear-gradient(to top,rgba(26,25,22,.9) 0%,transparent 100%);
    transform: translateY(4px);
    opacity: 0;
    transition: opacity .35s,transform .35s;
}

.wc:hover .wc-info {
    opacity: 1;
    transform: translateY(0)
}

.wc-cat {
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    color:#fff;
    margin-bottom: 4px
}

.wc-name {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2
}


/* ABOUT */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
}

.about-img-col {
    background: var(--bg2);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    border-right: 1px solid var(--line);
}

    .about-img-col svg {
        width: 100%;
        height: 100%
    }

.about-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: var(--gold);
    color: var(--white);
    padding: 20px 24px;
    text-align: center;
}

.about-badge-n {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 400;
    line-height: 1
}

.about-badge-t {
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-top: 4px;
    opacity: .85
}

.about-text-col {
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-body {
    color: var(--mid);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px
}

.about-quote {
    margin: 36px 0;
    padding-left: 28px;
    border-left: 3px solid var(--gold);
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--ink2);
    line-height: 1.55;
    font-style: italic;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border-top: 1px solid var(--line);
    padding-top: 40px;
    margin-top: 40px;
}

.stat {
    padding-right: 32px;
    border-right: 1px solid var(--line)
}

    .stat:last-child {
        border-right: none;
        padding-right: 0;
        padding-left: 32px
    }

    .stat:nth-child(2) {
        padding-left: 32px
    }

.stat-n {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1
}

    .stat-n sup {
        font-size: 20px;
        color: var(--gold);
        vertical-align: super
    }

.stat-l {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--mid);
    margin-top: 6px
}

/* SERVICES */
.services {
    padding: 100px 64px;
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.services-inner {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 100px;
    align-items: start;
}

.srv-intro {
    position: sticky;
    top: 100px
}

    .srv-intro p {
        color: var(--mid);
        font-size: 14px;
        line-height: 1.85;
        margin-top: 20px
    }

.srv-row {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    align-items: start;
    padding: 36px 0;
    border-bottom: 1px solid var(--line);
    transition: padding-left .3s;
    cursor: none;
    gap: 24px;
}

    .srv-row:first-child {
        border-top: 1px solid var(--line)
    }

    .srv-row:hover {
        padding-left: 12px
    }

.srv-n {
    font-family: var(--serif);
    font-size: 13px;
    color: var(--gold);
    font-weight: 400;
    padding-top: 6px;
}

.srv-name {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--ink)
}

.srv-desc {
    color: var(--mid);
    font-size: 13px;
    line-height: 1.75
}

.srv-arr {
    color: var(--mid);
    font-size: 20px;
    padding-top: 4px;
    transition: transform .3s,color .3s
}

.srv-row:hover .srv-arr {
    transform: translateX(6px);
    color: var(--gold)
}

@keyframes pv-fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#projects-video {
    padding: 100px 64px;
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

    

    /* ── Top Row ── */
    #projects-video .pv-top-row {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 72px;
        opacity: 0;
        animation: pv-fadeUp .7s ease forwards .1s;
    }

    #projects-video .pv-eyebrow {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 16px;
    }

    #projects-video .pv-eyebrow-rule {
        width: 28px;
        height: 1.5px;
        background: var(--gold);
        flex-shrink: 0;
    }

    #projects-video .pv-eyebrow span {
        /*font-family: var(--serif);*/
        font-size: 11px;
        font-weight: 500;
        letter-spacing: .18em;
        text-transform: uppercase;
        color: var(--gold);
    }

    #projects-video .pv-section-title {
        font-family: var(--serif);
        font-size: clamp(42px, 5.5vw, 72px);
        font-weight: 400;
        line-height: 1.0;
        letter-spacing: -.03em;
        color: #111110;
        /*text-transform: uppercase;*/
        margin: 0;
    }

        #projects-video .pv-section-title em {
            font-style: italic;
            color: var(--gold);
        }

    #projects-video .pv-top-right {
        padding-bottom: 6px;
        text-align: right;
        max-width: 320px;
    }

    #projects-video .pv-top-desc {
        /*font-family: 'DM Sans', sans-serif;*/
        font-size: 14px;
        font-weight: 300;
        line-height: 1.7;
        color: #4A4845;
        margin-bottom: 16px;
    }

    #projects-video .pv-showreel-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        /*font-family: 'DM Sans', sans-serif;*/
        font-size: 13px;
        font-weight: 500;
        color: var(--gold);
        text-decoration: none;
        letter-spacing: .06em;
        transition: gap .2s;
    }

        #projects-video .pv-showreel-link:hover {
            gap: 13px;
        }

    #projects-video .pv-play-icon {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: var(--gold);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

        #projects-video .pv-play-icon svg {
            margin-left: 2px;
        }

    /* ── Carousel Wrapper ── */
    #projects-video .pv-carousel-section {
        opacity: 0;
        animation: pv-fadeUp .8s ease forwards .3s;
    }

    #projects-video #pv-owl {
        padding: 40px 0 60px;
    }

        #projects-video #pv-owl .owl-stage-outer {
            overflow: visible !important;
        }

        /* ── Çapraz offset: tek/çift ── */
        #projects-video #pv-owl .owl-item:nth-child(odd) .pv-item {
            margin-top: 0;
            margin-bottom: 64px;
        }

        #projects-video #pv-owl .owl-item:nth-child(even) .pv-item {
            margin-top: 64px;
            margin-bottom: 0;
        }

    /* ── Proje Item ── */
    #projects-video .pv-item {
        display: block;
        text-decoration: none;
        color: inherit;
        cursor: pointer;
        transition: transform .35s ease;
    }

        #projects-video .pv-item:hover {
            transform: translateY(-6px);
        }

    /* ── Thumbnail ── */
    #projects-video .pv-thumb {
        position: relative;
        overflow: hidden;
        border-radius: 3px;
        border: 1px solid #E4E2DD;
        background: #1A1917;
        aspect-ratio: 16 / 10;
    }

        #projects-video .pv-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .7s cubic-bezier(.16,1,.3,1), filter .5s;
            filter: grayscale(.12);
        }

    #projects-video .pv-item:hover .pv-thumb img {
        transform: scale(1.06);
        filter: grayscale(0);
    }

    #projects-video .pv-thumb-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(160deg, transparent 40%, rgba(17,17,16,.55) 100%);
        transition: opacity .4s;
        pointer-events: none;
    }

    #projects-video .pv-item:hover .pv-thumb-overlay {
        opacity: .7;
    }

    /* ── Oynat Butonu ── */
    #projects-video .pv-play-btn {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 5;
    }

    #projects-video .pv-play-circle {
        width: 62px;
        height: 62px;
        border-radius: 50%;
        background: rgba(255,255,255,.93);
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(4px);
        box-shadow: 0 8px 32px rgba(0,0,0,.18);
        transition: transform .3s, background .3s;
    }

        #projects-video .pv-play-circle svg {
            margin-left: 4px;
        }

    #projects-video .pv-item:hover .pv-play-circle {
        transform: scale(1.1);
        background: var(--gold);
    }

        #projects-video .pv-item:hover .pv-play-circle svg path {
            fill: #ffffff;
        }

    /* ── Rozet & Süre ── */
    #projects-video .pv-cat-badge {
        position: absolute;
        top: 14px;
        left: 14px;
        background: var(--gold);
        color: #ffffff;
        /*font-family: 'DM Sans', sans-serif;*/
        font-size: 10px;
        font-weight: 600;
        letter-spacing: .12em;
        text-transform: uppercase;
        padding: 4px 10px;
        border-radius: 2px;
        z-index: 6;
    }

    #projects-video .pv-duration {
        position: absolute;
        bottom: 14px;
        right: 14px;
        background: rgba(17,17,16,.75);
        color: rgba(255,255,255,.9);
        /*font-family: 'DM Sans', sans-serif;*/
        font-size: 11px;
        font-weight: 500;
        letter-spacing: .06em;
        padding: 4px 10px;
        border-radius: 100px;
        backdrop-filter: blur(4px);
        z-index: 6;
    }

    /* ── Kart Bilgisi ── */
    #projects-video .pv-info {
        padding: 20px 4px 0;
    }

    #projects-video .pv-info-cat {
        /*font-family: 'DM Sans', sans-serif;*/
        font-size: 10px;
        font-weight: 500;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 6px;
    }

    #projects-video .pv-info-title {
        /*font-family: 'DM Serif Display', serif;*/
        font-size: 21px;
        font-weight: 400;
        letter-spacing: -.015em;
        line-height: 1.2;
        color: #111110;
        margin-bottom: 6px;
    }

    #projects-video .pv-info-sub {
        /*font-family: 'DM Sans', sans-serif;*/
        font-size: 12px;
        font-weight: 300;
        color: #9A9793;
        letter-spacing: .04em;
    }

    /* ── Alt Bar ── */
    #projects-video .pv-bottom-bar {
        display: flex;
        align-items: center;
        gap: 32px;
        margin-top: 12px;
        width:75%;

    }

    #projects-video .pv-progress-wrap {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 16px;
    }

    #projects-video .pv-progress-track {
        flex: 1;
        height: 1px;
        background: #E4E2DD;
        position: relative;
        overflow: hidden;
        border-radius: 1px;
    }

    #projects-video .pv-progress-fill {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        background: var(--gold);
        transition: width .5s ease;
        border-radius: 1px;
    }

    #projects-video .pv-progress-label {
        /*font-family: 'DM Sans', sans-serif;*/
        font-size: 11px;
        font-weight: 500;
        color: #9A9793;
        white-space: nowrap;
        min-width: 40px;
        text-align: right;
    }

    #projects-video .pv-nav-wrap {
        display: flex;
        gap: 10px;
        flex-shrink: 0;
    }

    #projects-video .pv-nav-btn {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: 1px solid #E4E2DD;
        background: #FFFFFF;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background .2s, border-color .2s;
        padding: 0;
    }

        #projects-video .pv-nav-btn:hover {
            background: var(--gold);
            border-color: var(--gold);
        }

            #projects-video .pv-nav-btn:hover svg path {
                stroke: #ffffff;
            }

        #projects-video .pv-nav-btn svg path {
            transition: stroke .2s;
        }

    /* Owl native nav/dots gizle */
    #projects-video .owl-nav,
    #projects-video .owl-dots {
        display: none !important;
    }

/* PROCESS */
.process {
    padding: 100px 64px;
    background: var(--white);
    border-top: 1px solid var(--line);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    margin-top: 56px;
    border: 1px solid var(--line);
}

.proc-item {
    padding: 44px 36px;
    border-right: 1px solid var(--line);
}

    .proc-item:last-child {
        border-right: none
    }

.proc-num {
    font-family: var(--serif);
    font-size: 56px;
    font-weight: 400;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 20px;
}

.proc-title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px
}

.proc-desc {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.75
}

/* BLOG */
.blog {
    padding: 100px 64px;
    background: var(--bg)
}

.blog-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 48px 32px
}

.bc {
    cursor: none
}

.bc-img {
    aspect-ratio: 3/2;
    background: var(--bg2);
    overflow: hidden;
    margin-bottom: 22px;
    position: relative;
}

    .bc-img svg {
        width: 100%;
        height: 100%;
        display: block;
        transition: transform .5s cubic-bezier(.25,.46,.45,.94)
    }

.bc:hover .bc-img svg {
    transform: scale(1.04)
}

.bc-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--white);
    color: var(--gold);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 5px 10px;
}

.bc-date {
    font-size: 11px;
    color: var(--mid);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 8px
}

.bc-title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 10px;
    color: var(--ink);
    transition: color .25s;
}

.bc:hover .bc-title {
    color: var(--gold)
}

.bc-exc {
    color: var(--mid);
    font-size: 13px;
    line-height: 1.7
}

/* CTA */
.cta {
    background: var(--bg2);
    border-top: 1px solid var(--line);
    padding: 120px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta::before {
        content: 'ÇALIŞALIM';
        font-family: var(--serif);
        font-size: min(200px,22vw);
        font-weight: 700;
        color: rgba(0,0,0,.04);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        white-space: nowrap;
        letter-spacing: -.04em;
        pointer-events: none;
    }

.cta-label {
    margin-bottom: 20px
}

.cta-h {
    font-family: var(--serif);
    font-size: clamp(48px,7vw,88px);
    font-weight: 400;
    line-height: .95;
    margin-bottom: 36px;
}

    .cta-h em {
        font-style: italic;
        color: var(--gold)
    }

.cta-p {
    color: var(--mid);
    font-size: 15px;
    max-width: 480px;
    margin: 0 auto 52px;
    line-height: 1.8
}

.cta-email {
    font-family: var(--serif);
    font-size: clamp(18px,2.5vw,28px);
    color: var(--ink2);
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
    cursor: none;
}

    .cta-email::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--gold);
        transform: scaleX(.3);
        transform-origin: left;
        transition: transform .4s cubic-bezier(.25,.46,.45,.94);
    }

    .cta-email:hover::after {
        transform: scaleX(1)
    }

.socials {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-top: 60px
}

.soc {
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    transition: color .25s;
    cursor: none;
}

    .soc:hover {
        color: var(--gold)
    }

/* FOOTER */
footer {
    background: var(--ink);
    padding: 32px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.f-logo {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--white)
}

    .f-logo em {
        color: var(--gold);
        font-style: normal
    }

.f-copy {
    font-size: 12px;
    color: rgba(255,255,255,.3);
    letter-spacing: .04em
}

.f-links {
    display: flex;
    gap: 28px
}

    .f-links a {
        font-size: 11px;
        color: rgba(255,255,255,.3);
        text-decoration: none;
        letter-spacing: .1em;
        text-transform: uppercase;
        transition: color .25s;
        cursor: none
    }

        .f-links a:hover {
            color: var(--gold)
        }
