/* ==========================================================
   ILYCIA LAVERTY
   STUDIO 1.1

   The Living Table

   Living Studio
   Architecture
   Art
   Research
   Process

========================================================== */


/* ==========================================================
   RESET
========================================================== */

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}


/* ==========================================================
   ROOT
========================================================== */

:root{

    --paper:#eae2dc;

    --table:#E8E0D3;

    --text:#998b80b3;

    --text-light:#6A635B;

    --shadow:
        0 12px 36px rgba(0,0,0,.16);

    --shadow-soft:
        0 8px 28px rgba(90,65,38,.16);

    --transition:
        .28s ease;

}


/* ==========================================================
   DOCUMENT
========================================================== */

html,
body{

    width:100%;
    height:100%;

}


body{

    overflow-x:hidden;
    overflow-y:scroll;

    background:var(--paper);

    font-family:
        Helvetica,
        Arial,
        sans-serif;

    color:var(--text);

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}


/* ==========================================================
   LINKS
========================================================== */

a{

    color:inherit;

    text-decoration:none;

}


/* ==========================================================
   IMAGES
========================================================== */

img{

    display:block;

    max-width:100%;

}


/* ==========================================================
   STUDIO
========================================================== */

.studio{

    position:relative;

    width:100vw;

    height:100vh;

    overflow:hidden;

}


/* ==========================================================
   HERO
========================================================== */

.hero{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:flex-start;

    pointer-events:none;

    z-index:20;

}


/* ----------------------------------------------------------
   Studio Introduction
---------------------------------------------------------- */

.hero-tagline{

    margin-top:40px;

    font-size:5rem;

    font-weight:500;

    letter-spacing:.08em;

    text-transform:lowercase;

    color:rgba(40,21,6,.56);

}


.hero-title{

    margin-top:6px;

    font-size:8rem;

    font-weight:700;

    line-height:.95;

    letter-spacing:-.02em;

    color:rgba(40,21,6,.42);

}


/* ==========================================================
   STUDIO TABLE
========================================================== */

.studio-table{

    position:absolute;

    inset:0;

}


.tabletop{

    width:100%;

    height:100%;

    overflow:hidden;

}


/* ==========================================================
   WORKS
========================================================== */

.works{

    position:relative;

    width:100%;

    height:100%;

    isolation:isolate;

}


/* ==========================================================
   FIELD KIT 2.0
========================================================== */

.field-kit{

    position: fixed;

    left: 1400px;
    top: 345px;

    width: min(92vw,300px);

    z-index: 1000;

}

.field-kit-art{

    display:block;

    width:100%;

    height:auto;

    opacity:.95;

    pointer-events:none;

}

.maker-mark-link{

    position:absolute;

    left:0;
    top:0;

    width:70px;
    height:70px;

    z-index:20;

}

.field-search{

    position:absolute;

    left:34px;
    top:8px;

    width:140px;
    height:36px;

    border:none;
    background:none;
    outline:none;

    font:inherit;
    font-size:0.75rem;

    color:#d2cdc4;
    caret-color:#d2cdc4;

    z-index:20;

}

.menu-toggle{

    position:absolute;

    right:10px;
    top:5px;

    width:70px;
    height:70px;

    border:none;
    background:transparent;

    cursor:pointer;

    z-index:20;

}

.field-menu{

    display:none;

    position:absolute;

    top:145px;

    right:70px;

}

.field-menu a{

    display:block;

    margin-bottom:14px;

    text-decoration:none;

    color:#2F343A;

    font-size:.95rem;

    letter-spacing:.06em;

}

.coming-soon{

    display:block;

    margin-bottom:14px;

    color:#753d3d;

    letter-spacing:.06em;

    opacity:.55;

    cursor:default;

    pointer-events:none;

}

.coming-soon small{

    margin-left:.45rem;

    font-size:.72rem;

    font-style:italic;

    opacity:.8;

}

.field-menu a:hover{

    color:#753d3d;

}

.field-menu.open{

    display:block;

}


/* ==========================================================
   POSTCARDS
========================================================== */

.work-card{

    position:absolute;

    width:230px;

    height:auto;

    cursor:grab;

    user-select:none;

    transform-origin:center center;

    transition:
        transform .28s ease,
        box-shadow .28s ease,
        filter .28s ease;

}


/* ----------------------------------------------------------
   Hover
---------------------------------------------------------- */

.work-card:hover{

    box-shadow:
        0 14px 34px rgba(0,0,0,.14);

}


/* ----------------------------------------------------------
   Active postcard

   This class will be controlled by script.js.
---------------------------------------------------------- */

.work-card.active{

    z-index:999;

    box-shadow:
        0 22px 52px rgba(0,0,0,.18);

}


/* ----------------------------------------------------------
   Dragging
---------------------------------------------------------- */

.work-card.dragging{

    cursor:grabbing;

    transition:none;

}


/* ==========================================================
   PAGE LAYOUT
========================================================== */

.page{

    max-width:1400px;

    margin:0 auto;

    padding:
        140px
        60px
        100px;

}


.page h1{

    margin-bottom:2.5rem;

    font-size:3.5rem;

    font-weight:500;

    line-height:1.05;

    letter-spacing:-.02em;

    color:var(--text);

}


.page p{

    max-width:760px;

    margin-bottom:1.6rem;

    line-height:1.85;

    font-size:1.04rem;

    color:var(--text);

}


/* ==========================================================
   ARCHITECTURE
========================================================== */

.architecture-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(320px,1fr));

    gap:2.5rem;

    align-items:start;

}


/* ==========================================================
   ART
========================================================== */

.art-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(300px,1fr));

    gap:2.5rem;

}


/* ----------------------------------------------------------
   Artwork Card
---------------------------------------------------------- */

.artwork{

    overflow:hidden;

    border-radius:14px;

    background:white;

    box-shadow:
        0 10px 28px rgba(0,0,0,.08);

    transition:
        transform .28s ease,
        box-shadow .28s ease;

}


.artwork:hover{

    transform:translateY(-6px);

    box-shadow:
        0 20px 42px rgba(0,0,0,.12);

}


.artwork img{

    width:100%;

    display:block;

}


/* ==========================================================
   ABOUT
========================================================== */

.about{

    max-width:760px;

    margin:0 auto;

}


.about p{

    margin-bottom:2rem;

    line-height:1.9;

    font-size:1.05rem;

}


.about h2{

    margin:
        4rem
        0
        1.5rem;

    font-size:2rem;

    font-weight:500;

    letter-spacing:-.01em;

}


/* ==========================================================
   PROCESS
========================================================== */

.process{

    max-width:900px;

    margin:0 auto;

}


.process p{

    margin-bottom:2rem;

    line-height:1.85;

}


.process h2{

    margin:
        3.5rem
        0
        1.5rem;

    font-size:2rem;

    font-weight:500;

}


/* ==========================================================
   UTILITIES
========================================================== */

.hidden{

    display:none !important;

}


.center{

    text-align:center;

}


.full-width{

    width:100%;

}


.fade{

    opacity:.75;

}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:1200px){

    .work-card{

        width:205px;

    }

}


@media (max-width:900px){

    .page{

        padding:
            120px
            40px
            80px;

    }

    .hero-title{

        font-size:3rem;

    }

}


@media (max-width:700px){

    body{

        overflow:auto;

    }

    .page{

        padding:
            100px
            24px
            70px;

    }

    .hero-title{

        font-size:2.3rem;

    }

    .hero-tagline{

        font-size:.82rem;

    }

    .work-card{

        width:170px;

    }

}


/* ==========================================================
   ABOUT PAGE
========================================================== */

.about-page{

    background:#6e7768;

    color:var(--text);

}


/* ----------------------------------------------------------
   Introduction
---------------------------------------------------------- */

.page-title{

    max-width:900px;

    margin:
        80px
        auto
        3rem;

    font-size:clamp(2.8rem,6vw,4rem);

    font-weight:500;

    letter-spacing:-.02em;

}


.about-image{

    position:relative;

    display:block;

    height:auto;

    box-shadow:
        0 10px 24px rgba(0,0,0,.12);

}

    .image-life{

    width:120px;

    left:18px;

    top:0;

    z-index:3;

}    

.image-steps{

    width:120px;

    left:150px;

    top: -100px;

    z-index:1;

}

.image-studio{

    width:120px;

    left:46px;

    top:-90px;

    z-index:2;

}


/* ----------------------------------------------------------
   Writing
---------------------------------------------------------- */

.writing{

    max-width:860px;

    margin: -169px 0 140px 228px;

}


.writing h2{

    position:relative;

    margin:0 0 2rem;

    left:-40px;

    top:-90px;

    width:900px;

    white-space:nowrap;

    font-family:"Arial Black", Arial, Helvetica, sans-serif;

    font-size:4rem;

    font-weight:900;

    line-height:.9;

    letter-spacing:-.04em;

    text-transform:lowercase;

    color:#414838;

    z-index:10;

}


.writing p{

    position:relative;

    top:-55px;

    margin-bottom:1.5rem;

    text-align:left;

    line-height:1.55;

    font-size:1.05rem;

    color:#524741;

}


.writing::after{

    content:"";

    display:block;

    clear:both;

}

/* ==========================================================
   ART PAGE
========================================================== */

.art-page{

    position:relative;

    min-height:100vh;

    overflow:visible;

    background:
        linear-gradient(
            to bottom,
            #F4EFE6 0%,
            #F4EFE6 25%,
            #A7A58F 25%,
            #A7A58F 100%
        );

}

.art-page::before{

    content:"";

    position:absolute;

    left:0;
    right:0;

    top:25%;

    height:18px;

    background:
        linear-gradient(
            to bottom,
            #ECE4D8 0,
            #D7CCBD 30%,
            #C9BCAB 70%,
            #B7AA98 100%
        );

    box-shadow:
        0 2px 3px rgba(0,0,0,.12);

    z-index:1;

}


.gallery{

    display:flex;

    flex-direction:column;

    gap:140px;

}


.artwork{

    max-width:900px;

    margin:0 auto;

}

/* ==========================================================
   COLLECTION
========================================================== */

.collection-page{

    background:var(--paper);

    min-height:100vh;

}


.collection{

    position:relative;

    min-height:1700px;

    margin:5rem 8vw 8rem;

}


.collection-piece{

    position:absolute;

    display:block;

    transition:transform .25s ease;

}


.collection-piece:hover{

    transform:scale(1.02);

}


.collection-piece img{

    display:block;

    width:100%;

    height:auto;

}

/* ==========================================================
   COLLECTION HANGING
========================================================== */

.overthinking{
    width:430px;
    left:16%;
    top:70px;
}

.balance{
    width:140px;
    left:47.5%;
    top:3px;
}

.daydreaming{
    width:280px;
    right:35%;
    top:170px;
}

.stories{
    width:430px;
    left:49%;
    top:370px;
}

.geometric{
    width:440px;
    left:19%;
    top:853px;
}

.loure{
    width:180px;
    right:60%;
    top:560px;
}

.preservation{
    width:150px;
    left:15%;
    top:1200px;
}

.sarabande{
    width:200px;
    left:29%;
    top:1175px;
}

.thetis{
    width:180px;
    right:37%;
    top:890px;
}

.skyhigh{
    width:140px;
    left:45%;
    top:1510px;
}

.thebay{
    width:240px;
    right:25%;
    top:1510px;
}


/* ==========================================================
   EXHIBITION
========================================================== */

.art-page{

    background:#5b5140;

    overflow-y:auto;

}


.exhibition{

    max-width:1400px;

}


.exhibition-works{

    display:flex;

    flex-direction:column;

    gap:220px;

}


.exhibition-works a{

    display:block;

    text-decoration:none;

}


.exhibition-works img{

    display:block;

    width:100%;

    height:auto;

    box-shadow:

        0 16px 40px rgba(0,0,0,.10);

    transition:

        transform .35s ease,
        box-shadow .35s ease;

}


.exhibition-works img:hover{

    transform:scale(1.01);

    box-shadow:

        0 24px 60px rgba(0,0,0,.16);

}


.collection-link{

    margin:

        220px
        0
        120px;

    text-align:center;

}


.collection-link a{

    font-size:1.2rem;

    letter-spacing:.12em;

    text-transform:uppercase;

    color:var(--text);

    text-decoration:none;

    opacity:.65;

    transition:opacity .3s ease;

}

.collection-link a:hover{

    opacity:1;

}

/* ==========================================================
   ARTWORK
========================================================== */

.artwork-page{

    max-width:1100px;

    margin:0 auto;

    padding:5rem 8vw 8rem;

}

.artwork-nav{

    margin-bottom:4rem;

}

.artwork-nav a{

    text-decoration:none;

    color:var(--text);

    letter-spacing:.08em;

    font-size:.8rem;

    text-transform:uppercase;

}

.artwork-figure{

    margin:0;

    text-align:center;

}

.artwork-figure img{

    max-width:100%;

    max-height:70vh;

    height:auto;

}

.artwork-details{

    margin-top:3rem;

    max-width:650px;

}

.artwork-details h1{

    margin-bottom:.5rem;

}

.series,
.medium,
.size{

    color:var(--muted);

    margin:.25rem 0;

}

.artwork-text{

    margin-top:2rem;

    line-height:1.8;

}


/*------------------------------------*\
  Architecture
\*------------------------------------*/

.architecture-page{

    max-width:1200px;
    margin:0 auto;
    padding:160px 80px;

}

.architecture-project{

    display:block;

    margin-bottom:180px;

    text-decoration:none;

    color:inherit;

}

.architecture-project img{

    width:100%;

    display:block;

    margin-bottom:2rem;

}

.architecture-project h2{

    margin-bottom:.5rem;

}

.architecture-project p{

    color:#666;

}