*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
:root{
    --bg:#f5f1ea;
    --text:#111;
    --muted:#666;
    --px:clamp(20px,7vw,120px);
}
html,body{
    scroll-behavior:auto !important;
}
body{
    font-family:'Inter',sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
}
img{
    max-width:100%;
    display:block;
}
video{
    display:block;
}
section{
    position:relative;
}

/* =========================================
   CUSTOM CURSOR
========================================= */
.cursor{
    width:20px;
    height:20px;
    border:1px solid rgba(0,0,0,.5);
    border-radius:50%;
    position:fixed;
    left:0;
    top:0;
    pointer-events:none;
    z-index:9999;
    mix-blend-mode:difference;
    transition:transform 0.08s linear;
}

/* =========================================
   HERO
========================================= */
.hero{
    position:relative;
    isolation:isolate;
    overflow:hidden;
    min-height:100vh;
    min-height:100svh;
    display:flex;
    align-items:center;
    padding:clamp(100px,10vw,180px) var(--px);
}
.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
    transform:scale(1.02);
    pointer-events:none;
    background:#000;
}
.mobile-video{
    display:none;
}
.desktop-video{
    display:block;
}
.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(0,0,0,.05) 0%,
        rgba(0,0,0,.38) 100%
    );
    z-index:2;
}
.hero-noise{
    position:absolute;
    inset:0;
    z-index:0;
    display:none;
}
.hero-content{
    position:relative;
    z-index:3;
    color:#fff;
    max-width:900px;
}
.hero-label{
    display:inline-block;
    font-size:clamp(10px,1.1vw,13px);
    letter-spacing:4px;
    margin-bottom:clamp(20px,2.5vw,30px);
    color:rgba(255,255,255,.82);
}
.hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(64px,9vw,150px);
    line-height:.88;
    letter-spacing:-3px;
    max-width:900px;
    margin-bottom:clamp(20px,3vw,35px);
    color:#fff;
    -webkit-text-fill-color:#fff;
}
.hero p{
    max-width:520px;
    line-height:2;
    color:rgba(255,255,255,.78);
    font-size:clamp(14px,1.2vw,16px);
}
.scroll-indicator{
    position:absolute;
    left:var(--px);
    bottom:50px;
    color:#fff;
    letter-spacing:4px;
    font-size:12px;
    z-index:3;
}

/* =========================================
   STORY
========================================= */
.story-layout{
    position:relative;
    display:flex;
    align-items:flex-start;
    min-height:320vh;
    background:#f5f1ea;
}
.story-visual{
    position:sticky;
    top:0;
    width:50%;
    height:100vh;
    overflow:hidden;
    flex:none;
    background:#000;
}
.sticky-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity .7s ease;
    pointer-events:none;
}
.sticky-image.active{
    opacity:1;
    visibility:visible;
    z-index:2;
}
.sticky-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.story-content{
    position:relative;
    width:50%;
    padding:160px var(--px);
    min-height:320vh;
    z-index:5;
}
.story-block{
    min-height:100vh;
    min-height:100svh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    opacity:.18;
    transform:translateY(40px);
    transition:opacity .55s ease,transform .55s ease;
    will-change:opacity,transform;
}
.story-block.active{
    opacity:1;
    transform:translateY(0);
}
.story-block span{
    font-size:clamp(10px,1vw,12px);
    letter-spacing:4px;
    margin-bottom:24px;
    color:#999;
}
.story-block h2{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(42px,5vw,82px);
    line-height:.9;
    letter-spacing:-2px;
    margin-bottom:28px;
    max-width:700px;
}
.story-block p{
    max-width:540px;
    line-height:2;
    color:#666;
    font-size:clamp(14px,1.2vw,15px);
}

/* =========================================
   HUGE TEXT
========================================= */
.huge-text{
    padding:clamp(80px,10vw,180px) var(--px);
}
.huge-text h2{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(60px,14vw,220px);
    line-height:.84;
    letter-spacing:-4px;
    color:#d7c0aa;
}

/* =========================================
   SERVICES
========================================= */
.services{
    min-height:100vh;
    min-height:100svh;
    display:flex;
    align-items:center;
    padding:clamp(80px,8vw,120px) var(--px);
    overflow:hidden;
}
.services-bg{
    position:absolute;
    inset:0;
}
.services-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s ease;
}
.services-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(0,0,0,.35),rgba(0,0,0,.12));
}
.services-content{
    position:relative;
    z-index:3;
    width:100%;
    max-width:1200px;
    color:#fff;
}
.services-content > span{
    display:block;
    margin-bottom:clamp(30px,4vw,50px);
    letter-spacing:5px;
    font-size:clamp(10px,1vw,12px);
    color:#d7c0aa;
}
.service-item{
    position:relative;
    padding:clamp(12px,1.5vw,18px) 0;
    border-bottom:1px solid rgba(255,255,255,.12);
    opacity:.28;
    transition:opacity .45s ease,transform .45s ease;
    cursor:pointer;
}
.service-item:last-child{
    border-bottom:none;
}
.service-item.active{
    opacity:1;
}
.service-item:hover{
    opacity:1;
    transform:translateX(12px);
}
.service-item h3{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(36px,6vw,92px);
    line-height:.92;
    letter-spacing:-2px;
    transition:.45s ease;
}
.service-item.active h3{
    color:#fff;
}
.service-item:not(.active) h3{
    color:rgba(255,255,255,.42);
}

/* =========================================
   IMMERSIVE
========================================= */
.immersive{
    min-height:100vh;
    min-height:100svh;
    display:flex;
    align-items:center;
    justify-content:center;
}
.immersive-video-wrap{
    position:absolute;
    inset:0;
}
.immersive-video-wrap video{
    width:100%;
    height:100%;
    object-fit:cover;
}
.immersive-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.5);
}
.immersive-content{
    position:relative;
    z-index:3;
    text-align:center;
    color:#fff;
    padding:0 var(--px);
}
.immersive-content span{
    letter-spacing:4px;
    font-size:clamp(10px,1vw,12px);
    color:#d7c0aa;
    display:block;
    margin-bottom:20px;
}
.immersive-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(56px,8vw,140px);
    line-height:.84;
    letter-spacing:-3px;
    margin-top:10px;
    max-width:900px;
    margin-left:auto;
    margin-right:auto;
}

/* =========================================
   EDITORIAL
========================================= */
.editorial{
    padding:clamp(80px,10vw,180px) var(--px);
}
.editorial-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:clamp(20px,3vw,40px);
    align-items:center;
}
.editorial-image{
    overflow:hidden;
}
.tall{
    height:clamp(480px,60vw,900px);
}
.small{
    height:clamp(480px,55vw,800px);
    margin-top:clamp(80px,12vw,180px);
}
.editorial-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.editorial-text{
    padding:0 clamp(10px,3vw,40px);
}
.editorial-text span{
    letter-spacing:4px;
    font-size:clamp(10px,1vw,12px);
}
.editorial-text h2{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(42px,5.5vw,92px);
    line-height:.9;
    letter-spacing:-2px;
    margin-top:clamp(16px,2vw,30px);
    max-width:650px;
}

/* =========================================
   CTA
========================================= */
.cta{
    min-height:100vh;
    min-height:100svh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:clamp(80px,10vw,180px) var(--px);
}
.cta-content span{
    letter-spacing:4px;
    font-size:clamp(10px,1vw,12px);
    display:block;
    margin-bottom:clamp(16px,2vw,30px);
}
.cta-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(52px,8vw,150px);
    line-height:.84;
    letter-spacing:-3px;
    margin:0 auto clamp(30px,4vw,50px);
    max-width:950px;
    color:#d7c0aa;
}
.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:clamp(120px,12vw,180px);
    height:clamp(120px,12vw,180px);
    border-radius:50%;
    background:#111;
    color:#fff;
    text-decoration:none;
    font-size:clamp(12px,1vw,14px);
    letter-spacing:2px;
    transition:.45s;
}
.cta-btn:hover{
    transform:scale(1.08);
}

/* =========================================
   TABLET (max-width: 1024px)
========================================= */
@media(max-width:1024px){
    .story-layout{
        min-height:320vh;
    }
    .story-visual{
        position:sticky;
        top:0;
        width:50%;
        height:100vh;
    }
    .story-content{
        width:50%;
        padding:80px clamp(20px,4vw,50px);
        min-height:320vh;
    }
    .story-block{
        min-height:100vh;
        min-height:100svh;
        padding:0;
        opacity:.18;
        transform:translateY(40px);
    }
    .editorial-grid{
        grid-template-columns:1fr 1fr;
        gap:24px;
    }
    .editorial-text{
        grid-column:1 / -1;
        padding:0;
        order:-1;
    }
    .tall{
        height:clamp(320px,45vw,520px);
    }
    .small{
        height:clamp(240px,35vw,420px);
        margin-top:0;
    }
    .services{
        min-height:auto;
        padding:clamp(60px,8vw,120px) var(--px);
    }
}

/* =========================================
   MOBİL (max-width: 768px)
========================================= */
@media(max-width:768px){

    /* Cursor ve scroll indicator gizle */
    .cursor{
        display:none;
    }
    .scroll-indicator{
        display:none;
    }

    /* --- HERO --- */
    .hero{
        min-height:auto;
        height:auto;
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        justify-content:flex-start;
        padding:0;
        overflow:hidden;
        background:var(--bg);
    }

    /* Masaüstü video gizle */
    .desktop-video{
        display:none;
        visibility:hidden;
        opacity:0;
    }

    /* Mobil video: kart şeklinde üstte */
    .mobile-video{
        display:block;
        visibility:visible;
        opacity:1;
    }
    .mobile-video.hero-video{
        position:relative;
        inset:auto;
        width:100%;
        height:auto;
        aspect-ratio:16/9;
        object-fit:cover;
        object-position:center center;
        transform:none;
        background:var(--bg);
        z-index:1;
        margin-top:40px;
    }

    /* Overlay mobilde kapalı */
    .hero-overlay{
        display:none;
    }

    /* Hero metin içeriği */
    .hero-content{
        position:relative;
        z-index:3;
        padding:24px var(--px) 40px;
        max-width:100%;
        color:var(--text);
    }
    .hero-label{
        font-size:clamp(9px,2.5vw,11px);
        letter-spacing:3px;
        margin-bottom:10px;
        color:#7a5c42;
        -webkit-text-fill-color:#7a5c42;
    }
    .hero h1{
        font-size:clamp(32px,9vw,48px);
        line-height:.95;
        letter-spacing:-1px;
        margin-bottom:14px;
        color:var(--text);
        -webkit-text-fill-color:var(--text);
    }
    .hero p{
        font-size:13px;
        line-height:1.6;
        max-width:300px;
        color:rgba(0,0,0,.72);
        -webkit-text-fill-color:rgba(0,0,0,.72);
    }

    /* --- STORY --- */
    .story-layout{
        flex-direction:column;
        min-height:200vh;
        margin-top:0;
    }
    .story-visual{
        position:sticky;
        top:0;
        width:100%;
        height:50vh;
        display:block;
        z-index:10;
    }
    .story-content{
        width:100%;
        padding:0 var(--px);
        min-height:150vh;
        z-index:1;
    }
    .story-block{
        min-height:50vh;
        display:flex;
        flex-direction:column;
        justify-content:center;
        padding:clamp(16px,3vw,24px) 0;
        opacity:.18;
        transform:translateY(16px);
        transition:opacity .55s ease,transform .55s ease;
    }
    .story-block.active{
        opacity:1;
        transform:translateY(0);
    }
    .story-block::before{
        display:none;
    }
    .story-block-img{
        display:none;
    }
    .story-block span{
        font-size:clamp(9px,2.5vw,11px);
        letter-spacing:4px;
        margin:0;
        color:#999;
    }
    .story-block h2{
        font-size:clamp(28px,9vw,40px);
        line-height:1.02;
        margin:0;
        letter-spacing:-1px;
    }
    .story-block p{
        max-width:100%;
        font-size:clamp(13px,3.5vw,15px);
        line-height:1.8;
        margin:0;
        color:#666;
    }

    /* --- HUGE TEXT --- */
    .huge-text{
        padding:clamp(60px,10vw,100px) var(--px);
    }
    .huge-text h2{
        letter-spacing:-2px;
    }

    /* --- SERVICES --- */
    .services{
        padding:clamp(70px,10vw,100px) var(--px);
        min-height:auto;
    }
    .services-content > span{
        margin-bottom:clamp(24px,5vw,35px);
    }
    .service-item{
        padding:clamp(10px,2.5vw,14px) 0;
    }
    /* Mobilde hover yerine sadece active sınıfı çalışır */
    .service-item:hover{
        transform:none;
    }

    /* --- IMMERSIVE --- */
    .immersive{
        min-height:50vh;
        height:50vh;
    }
    .immersive-overlay{
        background:rgba(0,0,0,.45);
    }
    .immersive-content h2{
        font-size:clamp(48px,12vw,80px);
        max-width:300px;
    }

    /* --- EDITORIAL --- */
    .editorial{
        padding:clamp(40px,8vw,80px) var(--px);
    }
    .editorial-grid{
        grid-template-columns:1fr 1fr;
        gap:16px;
    }
    .editorial-text{
        grid-column:1 / -1;
        padding:0;
        order:-1;
    }
    .tall{
        height:clamp(260px,60vw,400px);
        margin:0;
    }
    .small{
        height:clamp(260px,60vw,400px);
        margin:0;
    }

    /* --- CTA --- */
    .cta{
        min-height:50vh;
        height:auto;
        padding:clamp(60px,10vw,100px) var(--px);
    }
    .cta-content{
        max-width:100%;
        text-align:center;
    }
    .cta-content h2{
        font-size:clamp(40px,10vw,64px);
    }
}

/* =========================================
   KÜÇÜK EKRAN (max-width: 480px)
========================================= */
@media(max-width:480px){
}
