:root {
    --ink: #08090a;
    --paper: #eeeae4;
    --acid: #dfff36;
    --muted: #a6a6a2;
    --line: rgba(255, 255, 255, .18);
    font-family: Arial, "Helvetica Neue", sans-serif;
    color: var(--ink);
    background: var(--ink);
    font-synthesis: none
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0
}

a {
    color: inherit;
    text-decoration: none
}

button,
input,
textarea {
    font: inherit
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -60px;
    z-index: 100;
    background: var(--acid);
    padding: 12px 18px
}

.skip-link:focus {
    top: 16px
}

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: 700;
    letter-spacing: -.04em
}

.brand-mark {
    display: inline-block;
    width: 24px;
    height: 38px;
    background: currentColor;
    border-radius: 50%;
    transform: rotate(42deg);
    position: relative
}

.brand-mark:after {
    content: "";
    position: absolute;
    inset: 15px -3px;
    background: var(--paper);
    transform: rotate(-90deg)
}

.fullpage {
    height: 100svh;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scrollbar-width: none
}

.fullpage::-webkit-scrollbar {
    display: none
}

.slide {
    height: 100svh;
    min-height: 560px;
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    display: grid;
    place-items: center
}

.slide.light {
    background: #eee9e2
}

.slide.dark {
    background: #030405
}

.slide picture {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center
}

.slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain
}

.mobile-copy {
    display: none
}

.desktop-hotlinks {
    position: fixed;
    z-index: 12;
    top: 4.3%;
    right: 8.3%;
    width: 38%;
    height: 5%;
    display: flex;
    justify-content: flex-end;
    gap: 0
}

.desktop-hotlinks a {
    font-size: 0;
    width: 24%;
    height: 100%
}

.desktop-trigger {
    position: fixed !important;
    z-index: 14;
    right: 1.8%;
    top: 3.3%;
    width: 4%;
    height: 8%;
    opacity: 0
}

.menu-trigger {
    border: 0;
    background: transparent;
    padding: 12px;
    cursor: pointer
}

.menu-trigger span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px;
    background: currentColor
}

.mobile-header {
    display: none
}

.contact-hotlink {
    position: absolute;
    z-index: 5;
    right: 3%;
    bottom: 4%;
    width: 27%;
    height: 13%
}

.section-dots {
    position: fixed;
    z-index: 10;
    right: 2.4%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px
}

.section-dots button {
    width: 9px;
    height: 9px;
    border: 1px solid currentColor;
    border-radius: 50%;
    padding: 0;
    background: transparent;
    color: #fff;
    cursor: pointer
}

.section-dots button.active {
    background: currentColor
}

.section-dots.light-dots button {
    color: #111
}

.menu-panel {
    position: fixed;
    z-index: 30;
    inset: 0 0 0 auto;
    width: min(520px, 100%);
    padding: 32px 42px 44px;
    background: var(--paper);
    color: var(--ink);
    transform: translateX(105%);
    transition: transform .5s cubic-bezier(.77, 0, .18, 1);
    display: flex;
    flex-direction: column
}

.menu-panel.open {
    transform: none
}

.menu-head {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.menu-close {
    position: relative;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 0;
    line-height: 1;
    cursor: pointer
}

.menu-close:before,
.menu-close:after {
    content: "";
    position: absolute;
    left: 7px;
    top: 19px;
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: currentColor
}

.menu-close:before {
    transform: rotate(45deg)
}

.menu-close:after {
    transform: rotate(-45deg)
}

.menu-links {
    margin: auto 0;
    display: flex;
    flex-direction: column
}

.menu-links a {
    display: flex;
    gap: 22px;
    align-items: baseline;
    border-bottom: 1px solid #c7c2bc;
    padding: 18px 0;
    font-size: clamp(32px, 5vw, 60px);
    letter-spacing: -.05em;
    color: var(--ink)
}

.menu-links small {
    font-size: 11px;
    letter-spacing: .1em
}

.menu-panel>p {
    max-width: 300px;
    line-height: 1.5
}

.menu-backdrop {
    position: fixed;
    z-index: 20;
    inset: 0;
    background: rgba(0, 0, 0, .62);
    backdrop-filter: blur(5px)
}

/* İç sayfalar */
.page {
    background: #070809;
    color: #f4f1ec
}

.site-header {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 4vw, 68px);
    position: absolute;
    z-index: 10;
    inset: 0 0 auto
}

.site-header nav {
    display: flex;
    gap: 30px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .06em
}

.page-hero {
    min-height: 86svh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 130px clamp(20px, 6vw, 96px) 72px;
    overflow: hidden
}

.page-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .85), rgba(0, 0, 0, .05)), linear-gradient(0deg, rgba(0, 0, 0, .72), transparent 60%)
}

.page-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 870px
}

.kicker,
.eyebrow {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase
}

.page h1 {
    font-size: clamp(48px, 7vw, 108px);
    line-height: .92;
    letter-spacing: -.065em;
    margin: .25em 0
}

.lead {
    font-size: clamp(18px, 2vw, 28px);
    line-height: 1.35;
    max-width: 710px;
    color: #d0cdc8
}

.content-section {
    padding: clamp(72px, 10vw, 150px) clamp(20px, 6vw, 96px)
}

.content-section.paper {
    background: var(--paper);
    color: var(--ink)
}

.section-intro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px
}

.section-intro h2 {
    font-size: clamp(38px, 5vw, 72px);
    line-height: .98;
    letter-spacing: -.05em;
    margin: 0
}

.section-intro p {
    max-width: 660px;
    line-height: 1.65;
    margin: 0;
    color: #666
}

.dark-section .section-intro p {
    color: #aaa
}

#biz {
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(circle at 23% 50%, rgba(10, 10, 10, .055) 0 1px, transparent 1.5px);
    background-size: 24px 24px
}

#biz:after {
    content: "";
    position: absolute;
    left: 43%;
    top: 12%;
    width: min(42vw, 760px);
    aspect-ratio: 1;
    border: 1px solid rgba(8, 9, 10, .07);
    border-radius: 50%;
    pointer-events: none
}

.studio-about {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(340px, 1.05fr) minmax(0, 1.2fr);
    gap: clamp(56px, 7vw, 140px);
    align-items: center;
    margin-bottom: 0
}

.studio-about-media {
    position: relative;
    padding: 38px 34px 38px 0
}

.studio-about-media:before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 58px 0 12px 22px;
    border: 1px solid rgba(8, 9, 10, .24)
}

.studio-about-media:after {
    content: "";
    position: absolute;
    z-index: 2;
    right: 0;
    top: 34px;
    width: 38%;
    height: 7px;
    background: var(--acid)
}

.studio-about-media img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
    clip-path: polygon(0 0, 100% 0, 100% 86%, 88% 100%, 0 100%);
    filter: saturate(.84) contrast(1.08);
    box-shadow: 0 28px 60px rgba(8, 9, 10, .18)
}

.studio-about-label {
    position: absolute;
    z-index: 3;
    left: 18px;
    top: 0;
    padding-left: 28px;
    color: #555;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase
}

.studio-about-label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 1px;
    background: currentColor
}

.studio-about-caption {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    width: min(68%, 340px);
    padding: 18px 22px;
    background: #08090a;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.studio-about-caption strong {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase
}

.studio-about-caption span {
    color: #999;
    font-size: 12px
}

.studio-about-copy {
    position: relative;
    border-top: 1px solid rgba(8, 9, 10, .32);
    padding-top: 30px
}

.studio-about-copy:before {
    content: "";
    position: absolute;
    left: 0;
    top: -5px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--acid);
    box-shadow: 0 0 0 5px var(--paper)
}

.studio-about-eyebrow {
    margin: 0 0 28px !important;
    color: #555 !important;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase
}

.studio-about-copy h2 {
    max-width: 850px;
    font-size: clamp(48px, 5.4vw, 104px)
}

.studio-about-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 3vw, 54px);
    margin-top: clamp(34px, 4vw, 62px)
}

.studio-about-body p {
    margin: 0;
    font-size: clamp(14px, 1.08vw, 18px)
}

.studio-about-body p:last-child {
    border-left: 1px solid rgba(8, 9, 10, .2);
    padding-left: clamp(20px, 2.5vw, 40px)
}

@media(max-width:820px) {
    #biz:after {
        left: 35%;
        top: 4%;
        width: 90vw
    }

    .studio-about {
        grid-template-columns: 1fr;
        gap: 54px
    }

    .studio-about-media {
        padding: 30px 18px 32px 0
    }

    .studio-about-media:before {
        inset: 45px 0 10px 14px
    }

    .studio-about-media:after {
        top: 26px;
        height: 5px
    }

    .studio-about-media img {
        aspect-ratio: 16/11
    }

    .studio-about-label {
        left: 0
    }

    .studio-about-caption {
        width: 72%;
        padding: 14px 16px
    }

    .studio-about-copy {
        padding-top: 24px
    }

    .studio-about-eyebrow {
        margin-bottom: 20px !important
    }

    .studio-about-copy h2 {
        font-size: clamp(42px, 12vw, 64px)
    }

    .studio-about-body {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 32px
    }

    .studio-about-body p:last-child {
        border-left: 0;
        border-top: 1px solid rgba(8, 9, 10, .2);
        padding: 22px 0 0
    }
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px
}

.project-card {
    grid-column: span 4;
    border-top: 1px solid currentColor;
    padding-top: 14px
}

.project-card.wide {
    grid-column: span 8
}

.project-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    filter: saturate(.78)
}

.project-showcase {
    padding-right: 70px;
    padding-left: 70px
}

.project-showcase .project-card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: left top
}
 
@media(max-width:820px) {
    .project-showcase {
        padding-right: 20px;
        padding-left: 20px
    }
}

.project-card h3 {
    font-size: 24px;
    letter-spacing: -.03em;
    margin: 16px 0 8px
}

.project-card p {
    color: #666;
    line-height: 1.5
}

.service-list {
    border-top: 1px solid var(--line)
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    padding: 34px 0;
    border-bottom: 1px solid var(--line);
    align-items: start
}

.service-row h3 {
    font-size: clamp(28px, 4vw, 54px);
    letter-spacing: -.045em;
    margin: 0
}

.service-row p {
    color: #aaa;
    line-height: 1.6;
    margin: 0
}

.process {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: #c8c3bc;
    border: 1px solid #c8c3bc
}

.process article {
    background: var(--paper);
    padding: 30px 22px;
    min-height: 260px
}

.process span {
    font-size: 11px
}

.process h3 {
    margin: 80px 0 10px
}

.cta {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    padding: clamp(70px, 9vw, 130px) clamp(20px, 6vw, 96px);
    background: var(--acid);
    color: #090a0a
}

.cta h2 {
    font-size: clamp(42px, 7vw, 96px);
    line-height: .92;
    letter-spacing: -.06em;
    margin: 0;
    max-width: 900px
}

.button {
    display: inline-flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
    background: #050505;
    color: #fff;
    padding: 18px 24px;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .06em;
    white-space: nowrap
}

.site-footer {
    padding: 60px clamp(20px, 6vw, 96px) 30px;
    background: #050606;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px
}

.site-footer nav {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.site-footer small {
    grid-column: 1/-1;
    border-top: 1px solid var(--line);
    padding-top: 24px;
    color: #777
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 9vw, 130px)
}

.contact-details a {
    display: block;
    font-size: clamp(25px, 4vw, 52px);
    letter-spacing: -.04em;
    margin: 10px 0
}

.contact-form {
    display: grid;
    gap: 20px
}

.field {
    display: grid;
    gap: 8px
}

.field label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em
}

.field input,
.field textarea {
    border: 0;
    border-bottom: 1px solid #aaa;
    background: transparent;
    padding: 14px 0;
    border-radius: 0
}

.field textarea {
    min-height: 100px;
    resize: vertical
}

.contact-form .button {
    border: 0;
    cursor: pointer;
    width: max-content
}

.form-note {
    font-size: 13px;
    color: #666
}

.mobile-nav-trigger {
    display: none;
    color: #fff
}

.error-page {
    min-height: 100svh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 30px
}

.error-page h1 {
    font-size: clamp(70px, 15vw, 180px);
    margin: 0
}

@media(max-width:820px) {

    .desktop-hotlinks,
    .desktop-trigger,
    .section-dots {
        display: none
    }

    .mobile-header {
        display: flex;
        position: fixed;
        z-index: 15;
        inset: 0 0 auto;
        height: 66px;
        align-items: center;
        justify-content: space-between;
        padding: 0 18px;
        color: #111;
        background: rgba(238, 233, 226, .9);
        backdrop-filter: blur(12px);
        transition: background .25s, color .25s
    }

    .mobile-header.dark-header {
        color: #fff;
        background: rgba(3, 4, 5, .82)
    }

    .mobile-header .brand {
        font-size: 15px
    }

    .mobile-header .brand-mark {
        width: 16px;
        height: 27px
    }

    .mobile-header .brand-mark:after {
        inset: 10px -3px;
        background: #eee9e2
    }

    .mobile-header.dark-header .brand-mark:after {
        background: #030405
    }

    .fullpage {
        scroll-snap-type: y proximity
    }

    .slide {
        display: flex;
        align-items: flex-end;
        min-height: 100svh;
        padding: 90px 22px 42px
    }

    .slide picture {
        display: block
    }

    .slide img {
        object-fit: cover;
        opacity: .63
    }

    .slide:after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg, rgba(0, 0, 0, .94) 3%, rgba(0, 0, 0, .15) 70%)
    }

    .slide.light:after {
        background: linear-gradient(0deg, rgba(238, 233, 226, .98) 4%, rgba(238, 233, 226, .05) 68%)
    }

    .slide.light img {
        opacity: 1
    }

    .slide:nth-of-type(1) img {
        object-position: 68% center
    }

    .slide:nth-of-type(2) img {
        object-position: 18% center
    }

    .slide:nth-of-type(3) img {
        object-position: 34% center
    }

    .slide:nth-of-type(4) img {
        object-position: 65% center
    }

    .slide:nth-of-type(5) img {
        object-position: 24% center
    }

    .slide:nth-of-type(6) img {
        object-position: 53% center
    }

    .mobile-copy {
        display: block;
        position: relative;
        z-index: 2;
        color: #fff;
        width: 100%;
        min-width: 0;
        max-width: 560px;
        overflow-wrap: anywhere
    }

    .light .mobile-copy {
        color: #111
    }

    .mobile-copy h1,
    .mobile-copy h2 {
        font-size: clamp(36px, 10vw, 54px);
        line-height: .98;
        letter-spacing: -.055em;
        margin: 10px 0 18px
    }

    .mobile-copy p:not(.eyebrow) {
        font-size: 15px;
        line-height: 1.55;
        max-width: 480px
    }

    .text-link {
        display: inline-flex;
        gap: 18px;
        border-bottom: 1px solid currentColor;
        padding: 12px 0;
        margin-top: 10px;
        text-transform: uppercase;
        font-size: 11px;
        letter-spacing: .08em
    }

    .contact-hotlink {
        display: none
    }

    .menu-panel {
        width: 100%;
        max-width: none;
        padding: 28px 20px 36px
    }

    .menu-panel .menu-head {
        min-height: 58px
    }

    .menu-panel .menu-close {
        color: var(--ink)
    }

    .menu-panel .menu-links a {
        padding: 22px 0;
        font-size: clamp(38px, 10.8vw, 54px);
        line-height: 1.05
    }

    .menu-panel>p {
        max-width: 390px;
        margin: 0;
        color: var(--ink);
        font-size: 16px;
        line-height: 1.45
    }

    .site-header {
        position: absolute;
        height: 66px
    }

    .site-header nav {
        display: none
    }

    .mobile-nav-trigger {
        display: block
    }

    .page-hero {
        min-height: 78svh;
        padding-bottom: 48px
    }

    .page-hero:after {
        background: linear-gradient(0deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .05) 90%)
    }

    .section-intro,
    .contact-layout {
        grid-template-columns: 1fr
    }

    .project-card,
    .project-card.wide {
        grid-column: 1/-1
    }

    .service-row {
        grid-template-columns: 1fr
    }

    .service-row p {
        grid-column: 1
    }

    .process {
        grid-template-columns: 1fr
    }

    .process article {
        min-height: 180px
    }

    .process h3 {
        margin-top: 45px
    }

    .cta {
        align-items: start;
        flex-direction: column
    }

    .site-footer {
        grid-template-columns: 1fr
    }

    .site-footer small {
        grid-column: auto
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    .menu-panel {
        transition: none
    }
}

/* Kurumsal alt bilgi */
.corporate-footer {
    display: block;
    padding: clamp(64px, 8vw, 116px) clamp(20px, 6vw, 96px) 28px;
    background: #050606;
    color: #f4f1ec
}

.footer-primary {
    display: grid;
    grid-template-columns: minmax(290px, 1.7fr) .8fr 1.3fr 1.05fr;
    gap: clamp(28px, 4.5vw, 76px);
    align-items: start
}

.footer-brand-block .brand {
    width: clamp(190px, 15vw, 260px);
    height: auto;
    aspect-ratio: 2170/725;
    margin-bottom: 30px
}

.footer-brand-block p {
    max-width: 410px;
    margin: 0 0 30px;
    color: #989894;
    font-size: 15px;
    line-height: 1.65
}

.footer-mail {
    display: flex;
    max-width: 410px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .32);
    padding: 0 0 14px;
    color: #f4f1ec;
    font-size: clamp(16px, 1.35vw, 20px);
    transition: border-color .25s ease
}

.footer-mail:hover {
    border-color: #f4f1ec
}

.corporate-footer .footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.footer-column h2 {
    margin: 0 0 18px;
    color: #6f706d;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase
}

.footer-column a {
    width: max-content;
    max-width: 100%;
    color: #c8c7c3;
    font-size: 14px;
    line-height: 1.45;
    transition: color .2s ease, transform .2s ease
}

.footer-column a:hover {
    color: #fff;
    transform: translateX(3px)
}

.footer-contact address {
    margin: 0 0 24px;
    color: #969692;
    font-size: 14px;
    font-style: normal;
    line-height: 1.65
}

.footer-contact>a {
    display: flex;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
    padding-bottom: 12px;
    color: #fff
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    margin-top: clamp(56px, 8vw, 108px);
    border-top: 1px solid var(--line);
    padding-top: 24px;
    color: #747471;
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase
}

.corporate-footer .footer-bottom small {
    border: 0;
    padding: 0;
    color: inherit;
    font-size: inherit
}

.footer-bottom>span {
    text-align: center
}

.back-to-top {
    justify-self: end;
    color: #a4a4a0;
    transition: color .2s ease
}

.back-to-top:hover {
    color: #fff
}

@media(max-width:1020px) {
    .footer-primary {
        grid-template-columns: 1.4fr 1fr 1.3fr
    }

    .footer-contact {
        grid-column: 2/4
    }

    .footer-contact>a {
        max-width: 360px
    }
}

@media(max-width:680px) {
    .corporate-footer {
        padding-top: 64px
    }

    .footer-primary {
        grid-template-columns: 1fr;
        gap: 0
    }

    .footer-brand-block {
        margin-bottom: 46px
    }

    .footer-brand-block .brand {
        margin-bottom: 24px
    }

    .corporate-footer .footer-column {
        grid-column: auto;
        border-top: 1px solid var(--line);
        padding: 24px 0
    }

    .footer-column h2 {
        margin-bottom: 12px
    }

    .footer-contact>a {
        max-width: none
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        margin-top: 34px
    }

    .footer-bottom>span {
        display: none
    }

    .corporate-footer .footer-bottom small {
        line-height: 1.5
    }

    .back-to-top {
        justify-self: start;
        white-space: nowrap
    }
}

@media(min-width:821px) {
    .mobile-copy {
        display: block;
        position: absolute !important;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0
    }
}

@media(max-width:820px) {
    .slide picture:after {
        content: "";
        position: absolute;
        z-index: 1;
        inset: 0 0 auto;
        height: 115px;
        background: linear-gradient(#eee9e2 54%, rgba(238, 233, 226, 0))
    }

    .slide.dark picture:after {
        background: linear-gradient(#030405 54%, rgba(3, 4, 5, 0))
    }
}

.hero-slide {
    display: block;
    background-color: #eee9e2;
    background-image: radial-gradient(circle at 55% 44%, rgba(88, 82, 74, .08) 0 1px, transparent 1.5px), linear-gradient(105deg, rgba(255, 255, 255, .32), rgba(212, 204, 195, .15));
    background-size: 31px 31px, 100% 100%;
    color: #050505
}

.hero-slide:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 48%, transparent 0 24%, rgba(93, 87, 80, .08) 24.2% 24.35%, transparent 24.6% 30%, rgba(93, 87, 80, .06) 30.2% 30.35%, transparent 30.6%);
    pointer-events: none
}

.hero-nav {
    position: absolute;
    z-index: 4;
    top: 4.6%;
    right: 4.2%;
    display: flex;
    align-items: center;
    gap: clamp(42px, 5.5vw, 126px);
    font-size: clamp(13px, 1.35vw, 30px);
    letter-spacing: -.03em
}

.hero-nav a {
    position: relative
}

.hero-nav a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -6px;
    height: 1px;
    background: currentColor;
    transition: right .25s
}

.hero-nav a:hover:after,
.hero-nav a:focus-visible:after {
    right: 0
}

.hero-content {
    position: absolute;
    z-index: 3;
    left: 2.7%;
    top: 31%
}

.hero-content h1 {
    font-size: clamp(52px, 4.65vw, 106px);
    font-weight: 400;
    line-height: .99;
    letter-spacing: -.052em;
    margin: 0
}

.hero-content p {
    font-size: clamp(16px, 1.33vw, 30px);
    line-height: 1.35;
    letter-spacing: -.025em;
    margin: 8.8vh 0 0
}

.hero-art {
    position: absolute;
    z-index: 2;
    right: -.4%;
    bottom: -5.4%;
    width: min(55vw, 1180px) !important;
    height: auto !important;
    object-fit: contain !important
}

.hero-brand {
    position: absolute;
    z-index: 4;
    left: 2.9%;
    bottom: 6.5%;
    font-size: clamp(23px, 2.1vw, 48px)
}

.hero-brand .brand-mark {
    width: clamp(31px, 3.2vw, 69px);
    height: clamp(48px, 5vw, 108px)
}

.hero-brand .brand-mark:after {
    inset: 40% -4px;
    background: #eee9e2
}

.hero-orbit {
    position: absolute;
    z-index: 1;
    left: 43%;
    top: 16%;
    width: 38vw;
    aspect-ratio: 1;
    border: 1px solid rgba(80, 75, 69, .08);
    border-radius: 50%
}

.hero-orbit:before,
.hero-orbit:after {
    content: "";
    position: absolute;
    border: 1px dashed rgba(80, 75, 69, .09);
    border-radius: 50%
}

.hero-orbit:before {
    inset: 9%
}

.hero-orbit:after {
    inset: 19%
}

@media(max-width:820px) {
    .hero-slide {
        display: block;
        padding: 0
    }

    .hero-slide:after {
        display: block;
        z-index: 2;
        inset: 39% 0 0;
        background: linear-gradient(180deg, rgba(238, 233, 226, 0) 0, rgba(238, 233, 226, .9) 22%, #eee9e2 43%)
    }

    .hero-nav {
        display: none
    }

    .hero-art {
        right: -22% !important;
        top: 7%;
        bottom: auto;
        width: 108vw !important;
        max-width: none;
        opacity: 1 !important
    }

    .hero-content {
        left: 22px;
        right: 22px;
        top: auto;
        bottom: 18%;
        max-width: 560px
    }

    .hero-content h1 {
        font-size: clamp(36px, 9.8vw, 47px);
        line-height: .98;
        letter-spacing: -.052em
    }

    .hero-content p {
        max-width: 390px;
        font-size: 15px;
        line-height: 1.5;
        margin: 20px 0 0
    }

    .hero-brand {
        left: 22px;
        bottom: 5%;
        font-size: 19px
    }

    .hero-brand .brand-mark {
        width: 22px;
        height: 35px
    }

    .hero-orbit {
        left: 20%;
        top: 9%;
        width: 93vw
    }
}

@media(min-width:821px) {
    .hero-art {
        right: 0;
        bottom: 4.8%;
        width: min(45vw, 1040px) !important
    }

    .hero-brand .brand-mark {
        background: none;
        transform: none
    }

    .hero-brand .brand-mark:before,
    .hero-brand .brand-mark:after {
        content: "";
        position: absolute;
        width: 48%;
        height: 61%;
        border-radius: 55% 55% 48% 48%;
        background: #050505;
        transform: rotate(42deg)
    }

    .hero-brand .brand-mark:before {
        right: 9%;
        top: -2%
    }

    .hero-brand .brand-mark:after {
        left: 9%;
        bottom: -2%;
        inset: auto auto -2% 9%
    }

    .section-dots.on-hero {
        opacity: 0;
        pointer-events: none
    }
}

/* Kurumsal logo */
.brand {
    display: block;
    width: 190px;
    height: 64px;
    background-image: url("assets/logo.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    font-size: 0;
    letter-spacing: 0
}

.brand>span {
    display: none
}

.site-header .brand,
.site-footer .brand {
    filter: invert(1)
}

.menu-panel .brand {
    width: 190px;
    filter: none
}

.mobile-header .brand {
    width: 142px;
    height: 46px;
    filter: none
}

.mobile-header.dark-header .brand {
    filter: invert(1)
}

.hero-brand {
    width: clamp(290px, 20.5vw, 445px);
    height: auto;
    aspect-ratio: 2170/725;
    background-image: url("assets/logo.png");
    filter: none
}

.hero-brand .brand-mark {
    display: none
}

@media(max-width:820px) {
    .hero-brand {
        left: 22px;
        bottom: 4%;
        width: 205px;
        height: auto
    }

    .site-footer .brand {
        width: 180px
    }

    .menu-panel .brand {
        width: 170px
    }
}

/* Ana sayfa / seçilmiş projeler katmanı */
.projects-slide {
    display: block;
    background: #030305;
    color: #f2f2f2
}

.projects-slide:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 48% 47%, rgba(255, 255, 255, .035), transparent 38%), linear-gradient(180deg, #05050a 0, #020203 80%)
}

.projects-number,
.projects-title {
    position: absolute;
    z-index: 5;
    left: 2.1%;
    margin: 0;
    font-weight: 400
}

.projects-number {
    top: 3.5%;
    font-size: clamp(22px, 1.9vw, 41px)
}

.projects-title {
    top: 13.2%;
    left: 3.35%;
    font-size: clamp(16px, 1.45vw, 31px);
    letter-spacing: -.025em
}

.projects-menu {
    position: absolute;
    z-index: 7;
    right: 2.4%;
    top: 3.2%;
    color: #fff
}

.projects-menu span {
    width: 34px;
    height: 2px;
    margin: 6px
}

.projects-track {
    position: absolute;
    z-index: 2;
    inset: 0
}

.layer-project {
    position: absolute;
    color: #d2d1d0
}

.layer-project img {
    position: absolute;
    inset: 0 0 auto;
    width: 100%;
    height: 78%;
    object-fit: cover;
    filter: saturate(.88) contrast(1.04);
    transition: filter .35s, transform .6s
}

.layer-project:hover img {
    filter: saturate(1) contrast(1.08);
    transform: scale(1.012)
}

.layer-project>div {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0
}

.layer-project h3 {
    font-size: clamp(15px, 1.35vw, 29px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: .01em;
    margin: 0 0 12px;
    white-space: nowrap
}

.layer-project h3 span {
    display: inline-block;
    margin-right: 20px
}

.layer-project p {
    font-size: clamp(13px, 1.1vw, 24px);
    color: #aaa;
    margin: 0;
    line-height: 1.3
}

.project-a {
    left: 2.1%;
    top: 20.5%;
    width: 31%;
    height: 71%
}

.project-b {
    left: 31.3%;
    top: 12.2%;
    width: 36%;
    height: 79%
}

.project-c {
    left: 65.5%;
    top: 9.2%;
    width: 29.2%;
    height: 82%
}

.project-sweep {
    position: absolute;
    z-index: 4;
    left: 4%;
    bottom: -87%;
    width: 47%;
    height: 190%;
    border-right: 10px solid rgba(205, 196, 189, .45);
    border-radius: 0 62% 52% 0;
    transform: rotate(31deg);
    pointer-events: none
}

.project-sweep:after {
    content: "";
    position: absolute;
    right: -11px;
    top: 0;
    width: 12px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(77, 70, 67, .3));
    filter: blur(2px)
}

@media(max-width:820px) {
    .projects-slide {
        display: block;
        padding: 0
    }

    .projects-slide:after {
        display: none
    }

    .projects-number {
        top: 80px;
        left: 20px;
        font-size: 18px
    }

    .projects-title {
        top: 112px;
        left: 20px;
        font-size: 14px;
        letter-spacing: .08em
    }

    .projects-menu,
    .project-sweep {
        display: none
    }

    .projects-track {
        inset: 148px 0 24px;
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 0 20px 16px;
        scrollbar-width: none
    }

    .projects-track::-webkit-scrollbar {
        display: none
    }

    .layer-project,
    .project-a,
    .project-b,
    .project-c {
        position: relative;
        inset: auto;
        top: auto;
        left: auto;
        flex: 0 0 84vw;
        width: 84vw;
        height: 100%;
        scroll-snap-align: center;
        display: block
    }

    .layer-project img {
        height: 72%;
        border-radius: 2px
    }

    .layer-project>div {
        bottom: 4%
    }

    .layer-project h3 {
        font-size: 17px;
        white-space: normal;
        margin-bottom: 8px
    }

    .layer-project h3 span {
        margin-right: 12px
    }

    .layer-project p {
        font-size: 14px
    }
}

@media(min-width:821px) {
    .layer-project h3 {
        font-size: clamp(15px, 1.2vw, 26px)
    }

    .project-sweep {
        left: 13%;
        bottom: -12%;
        width: 9px;
        height: 150%;
        border: 0;
        border-radius: 0;
        background: linear-gradient(180deg, rgba(218, 210, 203, .18), rgba(179, 170, 164, .58));
        transform: rotate(-42deg);
        transform-origin: bottom center
    }

    .project-sweep:after {
        right: -4px;
        top: 0;
        width: 8px;
        background: inherit;
        opacity: .45;
        filter: blur(4px)
    }
}

/* Ana sayfa / müzeler ve kültürel anlatım katmanı */
.experiences-slide {
    display: block;
    background: #030305;
    color: #d8d5d1
}

.experiences-stage {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    filter: saturate(.8) brightness(.85)
}

.experiences-slide:after {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 2, 5, .03) 0, rgba(2, 2, 4, .02) 56%, rgba(2, 2, 4, .8) 78%, #020204 100%);
    pointer-events: none
}

.experiences-number,
.experiences-title {
    position: absolute;
    z-index: 5;
    margin: 0;
    font-weight: 400
}

.experiences-number {
    left: 2.1%;
    top: 3.6%;
    font-size: clamp(22px, 1.9vw, 41px)
}

.experiences-title {
    left: 7.7%;
    top: 10.4%;
    font-size: clamp(17px, 1.5vw, 32px);
    letter-spacing: .015em
}

.experiences-menu {
    position: absolute;
    z-index: 7;
    right: 2.4%;
    top: 3.2%;
    color: #fff
}

.experiences-menu span {
    width: 34px;
    height: 2px;
    margin: 6px
}

.experience-flow {
    position: absolute;
    z-index: 4;
    left: 0;
    right: 0;
    bottom: 0;
    height: 26.5%;
    border-top: 1px solid rgba(222, 215, 208, .28)
}

.flow-step {
    position: absolute;
    top: 0;
    height: 100%
}

.flow-step h3 {
    position: absolute;
    top: 9%;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(12px, 1.05vw, 22px);
    font-weight: 400;
    white-space: nowrap;
    margin: 0;
    color: #c8c3bf
}

.flow-step img {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 68%;
    object-fit: cover
}

.flow-research {
    left: 5.2%;
    width: 16.4%
}

.flow-story {
    left: 24.2%;
    width: 24.6%
}

.flow-animation {
    left: 50%;
    width: 50%
}

.flow-research img,
.flow-story img {
    height: 55%;
    bottom: 3%;
    filter: grayscale(1) brightness(.72) contrast(1.18);
    mix-blend-mode: screen
}

.flow-animation img {
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
    filter: brightness(1.08)
}

.flow-animation h3 {
    z-index: 2;
    left: 20%
}

.flow-arrow {
    position: absolute;
    z-index: 3;
    top: 51%;
    font-size: 27px;
    color: #b9b5b1
}

.arrow-one {
    left: 22.1%
}

.arrow-two {
    left: 49%
}

@media(max-width:820px) {
    .experiences-slide {
        display: block;
        padding: 0
    }

    .experiences-slide:after {
        background: linear-gradient(180deg, rgba(2, 2, 4, .05), rgba(2, 2, 4, .18) 45%, #020204 64%)
    }

    .experiences-stage {
        top: 66px;
        height: 56% !important;
        object-position: 48% center
    }

    .experiences-number {
        top: 80px;
        left: 20px;
        font-size: 18px
    }

    .experiences-title {
        top: 112px;
        left: 20px;
        font-size: 14px;
        letter-spacing: .06em
    }

    .experiences-menu {
        display: none
    }

    .experience-flow {
        left: 0;
        right: 0;
        bottom: 0;
        height: 39%;
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 28px 20px 18px;
        border-top-color: rgba(255, 255, 255, .17);
        scrollbar-width: none
    }

    .experience-flow::-webkit-scrollbar {
        display: none
    }

    .flow-step,
    .flow-research,
    .flow-story,
    .flow-animation {
        position: relative;
        inset: auto;
        top: auto;
        left: auto;
        flex: 0 0 76vw;
        width: 76vw;
        height: 100%;
        scroll-snap-align: center;
        border-right: 1px solid rgba(255, 255, 255, .14)
    }

    .flow-step h3,
    .flow-animation h3 {
        top: 0;
        left: 0;
        transform: none;
        font-size: 13px;
        letter-spacing: .08em
    }

    .flow-step img,
    .flow-research img,
    .flow-story img,
    .flow-animation img {
        left: 0;
        bottom: 0;
        width: 94%;
        height: 76%;
        object-fit: cover
    }

    .flow-animation img {
        object-position: center
    }

    .flow-arrow {
        display: none
    }
}

@media(min-width:821px) {

    .flow-research img,
    .flow-story img {
        height: 47%;
        bottom: 4%;
        filter: grayscale(1) brightness(.58) contrast(1.2)
    }
}

/* Ana sayfa / AR, hologram ve mekânsal medya katmanı */
.hologram-slide {
    display: block;
    background: #020307;
    color: #d8d7d5
}

.hologram-stage {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    filter: saturate(.9) contrast(1.04)
}

.hologram-number,
.hologram-title {
    position: absolute;
    z-index: 5;
    margin: 0;
    font-weight: 400
}

.hologram-number {
    left: 2.05%;
    top: 3.8%;
    font-size: clamp(22px, 1.9vw, 41px)
}

.hologram-title {
    left: 5%;
    top: 11%;
    font-size: clamp(17px, 1.5vw, 32px);
    letter-spacing: .015em
}

.hologram-menu {
    position: absolute;
    z-index: 7;
    right: 2.4%;
    top: 3.2%;
    color: #fff
}

.hologram-menu span {
    width: 34px;
    height: 2px;
    margin: 6px
}

.hologram-detail {
    position: absolute;
    z-index: 4;
    inset: 16% 4% 8% 4%
}

.hologram-detail span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0)
}

@media(max-width:820px) {
    .hologram-slide {
        display: block;
        padding: 0
    }

    .hologram-stage {
        object-position: 67% center;
        opacity: .9 !important
    }

    .hologram-slide:after {
        background: linear-gradient(180deg, rgba(2, 3, 7, .06) 40%, rgba(2, 3, 7, .92) 88%, #020307)
    }

    .hologram-number {
        left: 20px;
        top: 80px;
        font-size: 18px
    }

    .hologram-title {
        left: 20px;
        right: 20px;
        top: 112px;
        font-size: 14px;
        letter-spacing: .055em
    }

    .hologram-menu {
        display: none
    }

    .hologram-detail {
        inset: 66px 0 0
    }

    .hologram-detail span {
        position: absolute;
        left: 22px;
        bottom: 38px;
        width: auto;
        height: auto;
        overflow: visible;
        clip: auto;
        border-bottom: 1px solid currentColor;
        padding: 12px 0;
        text-transform: uppercase;
        font-size: 11px;
        letter-spacing: .09em
    }
}

@media(max-width:820px) {
    .home .mobile-header.dark-header {
        background: #030405;
        color: #fff;
        backdrop-filter: none
    }

    .home .mobile-header.dark-header .menu-trigger {
        color: #fff
    }
}

/* Mobil katman article görünümü */
@media(max-width:820px) {
    .slide>.mobile-copy {
        display: block;
        position: absolute !important;
        z-index: 8;
        left: 22px;
        right: 22px;
        bottom: clamp(30px, 5.5vh, 52px);
        width: auto;
        max-width: 760px;
        min-width: 0;
        height: auto;
        padding: 0;
        margin: 0;
        overflow: visible;
        clip: auto;
        white-space: normal;
        color: #fff
    }

    .slide>.mobile-copy .eyebrow {
        font-size: 12px;
        line-height: 1.35;
        letter-spacing: .095em;
        margin: 0 0 18px
    }

    .slide>.mobile-copy h2 {
        font-size: clamp(42px, 10vw, 66px);
        line-height: .96;
        letter-spacing: -.052em;
        margin: 0 0 24px
    }

    .slide>.mobile-copy>p:not(.eyebrow) {
        font-size: clamp(15px, 3.1vw, 20px);
        line-height: 1.52;
        margin: 0 0 24px;
        max-width: 760px
    }

    .slide>.mobile-copy .text-link {
        font-size: 12px;
        letter-spacing: .09em;
        margin-top: 0;
        padding: 13px 0;
        min-width: min(100%, 332px);
        justify-content: space-between
    }

    .projects-slide .projects-number,
    .projects-slide .projects-title,
    .experiences-slide .experiences-number,
    .experiences-slide .experiences-title,
    .hologram-slide .hologram-number,
    .hologram-slide .hologram-title {
        display: none
    }

    .projects-slide .projects-track,
    .projects-slide .project-sweep,
    .experiences-slide .experience-flow {
        display: none
    }

    .projects-slide:before {
        z-index: 1;
        background-image: linear-gradient(180deg, rgba(2, 3, 6, .02) 22%, rgba(2, 3, 6, .38) 55%, #020306 100%), url("assets/projects/Tarihi_AR_Rekonstrüksiyon.png");
        background-size: cover;
        background-position: center
    }

    .projects-slide:after {
        display: block;
        z-index: 2;
        background: linear-gradient(180deg, transparent 25%, rgba(2, 3, 6, .35) 50%, #020306 100%)
    }

    .experiences-stage {
        top: 0;
        height: 100% !important;
        object-position: 48% center;
        opacity: .74 !important
    }

    .experiences-slide:after {
        z-index: 2;
        background: linear-gradient(180deg, rgba(2, 3, 6, .02) 22%, rgba(2, 3, 6, .38) 52%, #020306 100%)
    }

    .hologram-stage {
        object-position: 61% center;
        opacity: .76 !important
    }

    .hologram-slide:after {
        z-index: 2;
        background: linear-gradient(180deg, rgba(2, 3, 7, .02) 22%, rgba(2, 3, 7, .35) 53%, #020307 100%)
    }

    .hologram-detail {
        display: none
    }

    .slide.light>.mobile-copy {
        color: #090909
    }
}

/* Ana sayfa / etkileşimli deneyimler ve özel yazılım katmanı */
.private-slide {
    display: block;
    background: #020205;
    color: #d8d6d3
}

.private-visuals {
    position: absolute;
    z-index: 1;
    inset: 0
}

.private-experience {
    position: absolute;
    inset: 0 auto 0 0;
    width: 57% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 54% center;
    filter: saturate(.9) brightness(.86)
}

.private-system {
    position: absolute;
    inset: 0 0 0 57%;
    background: radial-gradient(circle at center, rgba(26, 25, 31, .45), #030308 75%)
}

.private-system:before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    background: linear-gradient(90deg, #030308 0, transparent 9%), linear-gradient(180deg, #030308 0, transparent 18%, transparent 88%, #030308 100%);
    pointer-events: none
}

.private-system>img {
    position: absolute;
    z-index: 1;
    left: 3%;
    right: 2%;
    top: 17%;
    width: 95% !important;
    height: 73% !important;
    object-fit: contain !important;
    filter: brightness(.78) saturate(.82)
}

.private-labels {
    position: absolute;
    z-index: 4;
    left: 4%;
    right: 4%;
    top: 15.8%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3%;
    font-size: clamp(11px, .95vw, 20px);
    color: #aaa;
    text-align: center
}

.private-labels span {
    border-left: 1px solid rgba(255, 255, 255, .2);
    white-space: nowrap
}

.private-number,
.private-title {
    position: absolute;
    z-index: 5;
    margin: 0;
    font-weight: 400
}

.private-number {
    left: 2.05%;
    top: 3.8%;
    font-size: clamp(22px, 1.9vw, 41px)
}

.private-title {
    left: 7.6%;
    top: 8.4%;
    font-size: clamp(17px, 1.5vw, 32px);
    letter-spacing: .015em
}

.private-menu {
    position: absolute;
    z-index: 7;
    right: 2.4%;
    top: 3.2%;
    color: #fff
}

.private-menu span {
    width: 34px;
    height: 2px;
    margin: 6px
}

.private-local-dots {
    position: absolute;
    z-index: 5;
    left: 3.8%;
    top: 33%;
    display: flex;
    flex-direction: column;
    gap: 34px
}

.private-local-dots i {
    display: block;
    width: 10px;
    height: 10px;
    border: 1px solid #d4d3d1;
    transform: rotate(45deg)
}

.private-local-dots i:nth-child(3) {
    background: #fff;
    box-shadow: 0 0 12px #fff
}

@media(max-width:820px) {
    .private-slide {
        display: block;
        padding: 0
    }

    .private-system,
    .private-number,
    .private-title,
    .private-menu,
    .private-local-dots {
        display: none
    }

    .private-visuals {
        inset: 0
    }

    .private-experience {
        inset: 0;
        width: 100% !important;
        height: 100% !important;
        object-position: 39% center;
        opacity: .72 !important
    }

    .private-slide:after {
        z-index: 2;
        background: linear-gradient(180deg, rgba(2, 3, 6, .02) 24%, rgba(2, 3, 6, .36) 52%, #020306 100%)
    }
}

/* Projeler sayfası hero kolajı */
.project-page-hero {
    background: #030305
}

.project-page-hero-media {
    position: absolute;
    z-index: 1;
    inset: 0;
    overflow: hidden
}

.project-page-hero .hero-project {
    position: absolute;
    top: 0;
    height: 100%;
    object-fit: cover;
    inset: auto
}

.project-page-hero .hero-project-a {
    left: 0;
    width: 36%;
    object-position: center;
    clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%)
}

.project-page-hero .hero-project-b {
    left: 29%;
    width: 44%;
    object-position: center;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%)
}

.project-page-hero .hero-project-c {
    right: 0;
    width: 36%;
    object-position: center;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%)
}

.project-page-hero-media:after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 55% 42%, transparent 0 24%, rgba(0, 0, 0, .16) 70%), linear-gradient(90deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, .02) 70%)
}

.project-page-hero:after {
    z-index: 2;
    background: linear-gradient(90deg, rgba(0, 0, 0, .9) 0, rgba(0, 0, 0, .58) 37%, rgba(0, 0, 0, .08) 72%), linear-gradient(0deg, rgba(0, 0, 0, .82), transparent 66%)
}

.project-page-hero .page-hero-content {
    z-index: 3
}

@media(max-width:820px) {

    .project-page-hero .hero-project-a,
    .project-page-hero .hero-project-c {
        display: none
    }

    .project-page-hero .hero-project-b {
        display: block;
        left: 0;
        width: 100%;
        height: 100%;
        clip-path: none;
        object-position: center
    }

    .project-page-hero-media:after {
        background: linear-gradient(0deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .08) 78%)
    }

    .project-page-hero:after {
        background: linear-gradient(0deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .03) 82%)
    }
}

/* Ana sayfa / stüdyo üretim akışı katmanı */
.flow-slide {
    display: block;
    background: #eee9e2;
    color: #090909
}

.flow-stage {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 11%;
    height: 64%;
    overflow: hidden;
    background: #eee9e2
}

.flow-stage img {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100% !important;
    height: auto !important;
    max-width: none;
    object-fit: contain !important;
    transform: translateY(-50%);
    filter: contrast(.97) saturate(.7)
}

.flow-labels {
    position: absolute;
    z-index: 5;
    inset: 19.5% 0 auto;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: clamp(10px, .72vw, 16px);
    font-weight: 500;
    letter-spacing: .025em;
    text-transform: uppercase
}

.flow-labels li {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 14px;
    font-weight: bold;
}

.flow-labels li:nth-child(1) {
    left: 7.2%
}

.flow-labels li:nth-child(2) {
    left: 21.7%
}

.flow-labels li:nth-child(3) {
    left: 34.8%
}

.flow-labels li:nth-child(4) {
    left: 67.4%
}

.flow-labels li:nth-child(5) {
    left: 86.8%
}

.flow-number,
.flow-title {
    position: absolute;
    z-index: 5;
    margin: 0;
    font-weight: 400
}

.flow-number {
    left: 2.05%;
    top: 3.8%;
    font-size: clamp(22px, 1.9vw, 41px)
}

.flow-title {
    left: 3.3%;
    top: 8.5%;
    font-size: clamp(17px, 1.45vw, 31px);
    letter-spacing: .015em
}

.flow-menu {
    position: absolute;
    z-index: 7;
    right: 2.4%;
    top: 3.2%;
    color: #111
}

.flow-menu span {
    width: 34px;
    height: 2px;
    margin: 6px
}

.flow-brand {
    position: absolute;
    z-index: 5;
    left: 3.3%;
    bottom: 4.8%;
    width: clamp(220px, 18vw, 390px);
    height: auto;
    aspect-ratio: 2170/725;
    filter: none
}

.flow-contact {
    position: absolute;
    z-index: 6;
    right: 3.2%;
    bottom: 4.2%;
    width: min(28vw, 560px);
    border-radius: 12px;
    font-size: clamp(11px, .9vw, 18px)
}

@media(max-width:820px) {
    .flow-slide {
        display: block;
        padding: 0
    }

    .flow-slide:after {
        z-index: 2;
        background: linear-gradient(180deg, rgba(238, 233, 226, .02) 20%, rgba(238, 233, 226, .72) 53%, #eee9e2 100%)
    }

    .flow-stage {
        inset: 66px 0 0;
        height: auto
    }

    .flow-stage img {
        left: 50%;
        top: 50%;
        width: auto !important;
        height: 138% !important;
        transform: translate(-50%, -50%);
        opacity: .62 !important;
        filter: contrast(.95) saturate(.55)
    }

    .flow-labels {
        display: grid;
        inset: 86px 12px auto;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 2px;
        font-size: clamp(7px, 2vw, 9px);
        letter-spacing: 0
    }

    .flow-labels li {
        position: static;
        left: auto;
        min-width: 0;
        transform: none;
        text-align: center
    }

    .flow-number,
    .flow-title,
    .flow-menu,
    .flow-brand,
    .flow-contact {
        display: none
    }

    .flow-slide>.mobile-copy .button {
        width: min(100%, 332px);
        margin-top: 8px;
        border-radius: 4px
    }
}

@media(min-width:821px) {
    .flow-stage {
        top: 12.5%;
        height: 62%
    }

    .flow-stage img {
        transform: translateY(-50.5%)
    }

    .flow-contact {
        width: min(27vw, 440px)
    }
}

/* İletişim sayfası hero */
.contact-page-hero {
    background: radial-gradient(circle at 76% 48%, #15171b 0, #08090b 42%, #030405 78%)
}

.contact-page-hero:after {
    z-index: 2;
    background: linear-gradient(90deg, #030405 0, rgba(3, 4, 5, .92) 38%, rgba(3, 4, 5, .16) 72%), linear-gradient(0deg, rgba(3, 4, 5, .9), transparent 60%)
}

.contact-page-hero .page-hero-content {
    z-index: 3;
    max-width: min(60vw, 930px)
}

.contact-page-hero .contact-hero-art {
    position: absolute;
    z-index: 1;
    inset: auto 0 -19% auto;
    width: min(52vw, 900px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 28px 32px rgba(0, 0, 0, .38))
}

.contact-hero-orbit {
    position: absolute;
    z-index: 0;
    right: 3%;
    top: 7%;
    width: 55vw;
    max-width: 940px;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%
}

.contact-hero-orbit:before,
.contact-hero-orbit:after {
    content: "";
    position: absolute;
    border: 1px dashed rgba(255, 255, 255, .07);
    border-radius: 50%
}

.contact-hero-orbit:before {
    inset: 10%
}

.contact-hero-orbit:after {
    inset: 21%
}

@media(max-width:820px) {
    .contact-page-hero {
        min-height: 82svh;
        padding-bottom: 46px
    }

    .contact-page-hero:after {
        background: linear-gradient(0deg, #030405 5%, rgba(3, 4, 5, .8) 42%, rgba(3, 4, 5, .08) 82%)
    }

    .contact-page-hero .contact-hero-art {
        display: block;
        right: -37%;
        top: 4%;
        bottom: auto;
        width: 116vw;
        height: auto;
        opacity: .78
    }

    .contact-page-hero .page-hero-content {
        max-width: 100%
    }

    .contact-hero-orbit {
        right: -38%;
        top: 2%;
        width: 125vw
    }
}
