

/*==================================================
01. RESET
==================================================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;
}

body{
    min-height:100vh;
    overflow-x:hidden;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

img,
picture,
svg,
video,
canvas{
    display:block;
    max-width:100%;
}

input,
button,
textarea,
select{
    font:inherit;
}

button{
    border:none;
    background:none;
    cursor:pointer;
}

ul,
ol{
    list-style:none;
}

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

table{
    border-collapse:collapse;
    border-spacing:0;
}

/*==================================================
02. ROOT VARIABLES
==================================================*/

:root{

    --bg:#f3f5ee;
    --surface:#fbfcf8;
    --surface-soft:#f7f8f3;

    --text:#1d1d1b;
    --text-light:#6f6f69;

    --olive:#70775b;
    --olive-dark:#5e654b;
    --olive-light:#91987c;

    --line:#dddccf;
    --line-soft:#ebeade;

    --shadow-sm:0 8px 24px rgba(0,0,0,.05);
    --shadow-md:0 20px 50px rgba(0,0,0,.08);

    --radius-sm:12px;
    --radius-md:20px;
    --radius-lg:28px;

    --container:1180px;

    --transition:.35s ease;

    --surface:#F1EAE2;

    --surface-hover:#E7DDD2;

    --dusty-rose:#B68A8A;

    --olive:#727C69;

    --olive-light:#909988;

}

/*==================================================
03. TYPOGRAPHY
==================================================*/

body{

    background:var(--bg);

    color:var(--text);

    font-family:"Manrope",sans-serif;

    font-size:16px;

    line-height:1.8;

}

h1,
h2,
h3,
h4,
h5,
h6{

    font-family:"Cormorant Garamond",serif;

    font-weight:500;

    line-height:1.1;

    letter-spacing:-.02em;

}

h1{

    font-size:clamp(3rem,6vw,5rem);

}

h2{

    font-size:clamp(2.2rem,4vw,3.4rem);

}

h3{

    font-size:2rem;

}

p{

    color:var(--text-light);

}

small{

    color:var(--text-light);

    letter-spacing:.08em;

    text-transform:uppercase;

}

/*==================================================
04. GLOBAL ELEMENTS
==================================================*/

body::selection{

    background:rgba(112,119,91,.22);

}

::selection{

    background:rgba(112,119,91,.22);

}

.container{

    width:min(calc(100% - 48px),var(--container));

    margin-inline:auto;

}

section{

    padding:110px 0;

}

hr{

    border:none;

    height:1px;

    background:var(--line-soft);

}

/*==================================================
05. HEADER
==================================================*/

.site-header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    background:rgba(243,245,238,.78);

    border-bottom:1px solid rgba(0,0,0,.05);

    transition:var(--transition);

}

.site-header.scrolled{

    box-shadow:var(--shadow-sm);

}

.header-inner{

    width:min(calc(100% - 48px),1200px);

    margin:auto;

    height:68px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

/*==================================================
06. NAVIGATION
==================================================*/

.logo{

    display: flex;

    align-items: center;

    gap: 14px;

    text-decoration: none;
}

.logo img{

    width: 80px;

    height: 75px;


}

.logo-text{

    font-family: "Cormorant Garamond", serif;

    font-size: 1.5rem;

    letter-spacing: 0.22em;

    font-weight: 300;

    color:#1f1f1f;

    transition: color .3s ease;

}

.logo:hover .logo-text{

    color:#55624c;

}

.nav{

    display:flex;

    align-items:center;

    gap: 40px;

}

.nav a{


    font-size:0.82rem;

    letter-spacing:0.22em; 

    text-transform:uppercase;

}

.nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:1px;

    background:var(--olive);

    transition:width .35s ease;

}

.nav a:hover{

    color:var(--olive);

}

.nav a:hover::after{

    width:100%;

}

.nav a.active{

    color:var(--olive);

}

.nav a.active::after{

    width:100%;

}

/*==================================================
07. GLOBAL LINKS
==================================================*/

a{

    transition:color .3s ease;

}

a:hover{

    color:var(--olive);

}

.text-link{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:var(--olive);

    transition:var(--transition);

}

.text-link:hover{

    gap:14px;

}

.text-center{

    text-align:center;

}
/*==================================================
08. MAIN LAYOUT
==================================================*/

main{

    padding-top:68px;

}

.page{

    width:min(calc(100% - 48px),var(--container));

    margin-inline:auto;

}

.page-narrow{

    width:min(calc(100% - 48px),820px);

    margin-inline:auto;

}

/* ===========================
   09. HERO 10. HERO BUTTONS
=========================== */

.hero{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    max-width:1100px;
    margin:0 auto;
    padding:120px 0 60px;
}

.hero-inner{
    max-width:680px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.hero h1{
    font-family:"Cormorant Garamond", serif;
    font-size:2.2rem;
    font-weight:500;
    line-height:1.08;
    letter-spacing:-0.02em;
    color:#1f1f1f;

    margin:0 0 0px;
}

.hero-description{
    font-family:"Manrope", sans-serif;
    font-size:1rem;
    line-height:1.85;
    color:#707070;

    margin:0 auto 12px;

    max-width:600px;
}

.hero-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:20px;

    padding:14px 32px;

    border:1px solid #B4976A;
    border-radius:999px;

    background:transparent;

    color:#1f1f1f;
    text-decoration:none;

    font-family:"Manrope", sans-serif;
    font-size:.95rem;
    font-weight:500;

    transition:all .35s ease;
}

.hero-button::after{
    content:"→";
    transition:transform .35s ease;
}

.hero-button:hover{
    background:#55624C;
    border-color:#55624C;
    color:#F3F5EE;
}

.hero-button:hover::after{
    transform:translateX(6px);
}

.hero-image{
    width:100%;
    max-width:760px;
    margin:0 auto 40px;
}

.hero-image img{
    display:block;
    width:100%;
    height:auto;


}
/*==================================================
11. BOTANICAL TITLE ORNAMENT
==================================================*/

.title-ornament{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:18px;

    margin:20px 0;

    opacity:.55;

}

.title-ornament::before,

.title-ornament::after{

    content:"";

    width:90px;

    height:1px;

    background:var(--line);

}

.title-ornament svg{

    width:18px;

    height:18px;

    transition:transform .5s ease;

}

.hero:hover .title-ornament svg{

    transform:rotate(10deg);

}

/*==================================================
12. SECTION INTRO
==================================================*/

.section-heading{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:18px;

    margin-bottom:70px;

    text-align:center;

}

.section-heading p{

    max-width:620px;

}

.eyebrow{

    font-size:.75rem;

    letter-spacing:.24em;

    text-transform:uppercase;

    color:var(--olive);

}

/*==================================================
13. DIVIDERS
==================================================*/

.section-divider{

    width:100%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:80px 0;

}

.section-divider::before,

.section-divider::after{

    content:"";

    width:110px;

    height:1px;

    background:var(--line);

}

.section-divider span{

    width:10px;

    height:10px;

    margin:0 18px;

    border-radius:50%;

    background:var(--olive-light);

}

/*==================================================
14. FADE ANIMATIONS
==================================================*/

.fade-up{

    opacity:0;

    transform:translateY(30px);

    animation:fadeUp .9s ease forwards;

}

.fade-delay-1{

    animation-delay:.15s;

}

.fade-delay-2{

    animation-delay:.3s;

}

.fade-delay-3{

    animation-delay:.45s;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ==========================
   15. LIBRARY HERO
========================== */

.library-hero{

    max-width:1200px;

    margin:120px auto 60px;

    padding:0 40px;

    display:flex;

    justify-content:center;

}

.chapters-heading p{

    margin:18px auto 0;

    max-width: 640px;

    font-family:"Manrope",sans-serif;

    font-size: 1rem;

    line-height:1.8;

    color:#707070;

}

.chapters-heading h1{

    font-size:4.8rem;

    margin:0;

}

.chapters-heading h1:hover{

    color:#6B7561;

}

/* ==========================
 16.  COLLECTION GRID
========================== */

.collection-grid{

    max-width:1200px;

    margin:0 auto 120px;

    padding:0 40px;

    display:grid;

    grid-template-columns:repeat(3, 1fr);

    gap:60px;

    justify-content:center;

}

.collection-card{

    width:340px;

    text-align:center;

}

.collection-card img{

    width:100%;

    max-width: 340px;;


}

.collection-card:hover img{

    transform:translateY(-6px);

}

.collection-info{

    margin-top:22px;

}

.collection-year{

    font-family:"Manrope",sans-serif;

    font-size:.8rem;

    letter-spacing:.18em;

    color:#9b9b9b;

}

.collection-info h2{

    margin:10px 0 18px;

    font-family:"Cormorant Garamond",serif;

    font-size:2rem;

    font-weight:500;

    color:#222;

}

.view-btn{

    display:inline-block;

    padding:12px 26px;

    border:1px solid #B4976A;

    border-radius:999px;

    text-decoration:none;

    color:#222;

    font-family:"Manrope",sans-serif;

    transition:.35s;

}

.view-btn:hover{

    background:#55624C;

    border-color:#55624C;

    color:#F3F5EE;

}

/*==================================================
17. COLLECTION COVER
==================================================*/

.collection-cover{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    background:var(--surface);

    box-shadow:var(--shadow-sm);

}

.collection-cover img{

    width:100%;

    aspect-ratio:4/5;

    object-fit:cover;

    transition:transform .8s ease;

}

.collection:hover .collection-cover img{

    transform:scale(1.04);

}

/*==================================================
18. COLLECTION INFORMATION
==================================================*/

.collection-info{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.collection-year{

    font-size:.72rem;

    letter-spacing:.28em;

    text-transform:uppercase;

    color:var(--olive);

}

.collection-title{

    font-size:2.2rem;

    font-family:"Cormorant Garamond",serif;

    transition:var(--transition);

}

.collection:hover .collection-title{

    color:var(--olive);

}

.collection-description{

    max-width:520px;

}

/*==================================================
19. COLLECTION LINK
==================================================*/

.collection-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:6px;

    font-size:.92rem;

    letter-spacing:.08em;

    text-transform:uppercase;

    color:var(--olive);

    transition:var(--transition);

}

.collection-link svg{

    transition:transform .35s ease;

}

.collection-link:hover svg{

    transform:translateX(6px);

}

/*==================================================
20. SOFT RUINS HEADER
==================================================*/

.collection-page-header{

    text-align:center;

    padding:70px 10px 0px;

}

.collection-page-header h1{

    margin-bottom:10px;
    font-size: 45px;

}

.collection-page-header p{

    max-width:620px;

    margin:0 auto;

}

/*==================================================
21. THUMBNAIL STRIP
==================================================*/

.artwork-strip{

    display:flex;

    justify-content:center;

    gap:16px;

    flex-wrap:wrap;

    margin-top:-65px;

}

.artwork-preview{

    width:140px;

    transition:transform .45s ease;

}

.artwork-preview:hover{

    transform:translateY(-8px);

}

.artwork-preview img{

    width:140px;

    height:530px;

    object-fit:cover;

    border-radius:18px;

    box-shadow:var(--shadow-sm);

}

.artwork-title{

    margin-top:16px;

    font-family:"Cormorant Garamond",serif;

    font-size:1.15rem;

    text-align:center;

}

.artwork-year{

    margin-top:4px;

    text-align:center;

    font-size:.75rem;

    letter-spacing:.18em;

    text-transform:uppercase;

    color:var(--text-light);

}

/*==================================================
22. EMPTY SPACE / MUSEUM FEEL
==================================================*/

.collection-space{

    height:120px;

}

.collection-section{

    margin-bottom:120px;

}

.collection-section:last-child{

    margin-bottom:0;

}
/*==================================================
23. ARTWORK GALLERY
==================================================*/

.gallery{

    width:100%;

    padding:40px 0 140px;

}

.gallery-grid{

    display:grid;

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

    gap:80px 56px;

    align-items:start;

}

/*==================================================
24. ARTWORK CARD
==================================================*/

.art-card{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.art-card figure{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    background:var(--surface);

    box-shadow:var(--shadow-sm);

}

.art-card img{

    width:100%;

    aspect-ratio:4/5;

    object-fit:cover;

    transition:
        transform .9s ease,
        filter .9s ease;

}

.art-card:hover img{

    transform:scale(1.04);

    filter:brightness(1.03);

}

/*==================================================
25. ARTWORK DETAILS
==================================================*/

.art-meta{

    display:flex;

    flex-direction:column;

    gap:10px;

}

.art-title{

    font-family:"Cormorant Garamond",serif;

    font-size:2rem;

    line-height:1.1;

}

.art-title a{

    transition:var(--transition);

}

.art-title a:hover{

    color:var(--olive);

}

.art-year{

    font-size:.72rem;

    letter-spacing:.24em;

    text-transform:uppercase;

    color:var(--olive);

}

.art-medium{

    font-size:.95rem;

    color:var(--text-light);

    line-height:1.9;

}

/*==================================================
26. MUSEUM LABEL
==================================================*/

.museum-label{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:4px;

    font-size:.78rem;

    letter-spacing:.18em;

    text-transform:uppercase;

    color:var(--text-light);

}

.museum-label::before{

    content:"";

    width:36px;

    height:1px;

    background:var(--line);

}

/*==================================================
27. IMAGE OVERLAY
==================================================*/

.art-card figure::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.10),
        rgba(0,0,0,0)
    );

    opacity:0;

    transition:opacity .45s ease;

}

.art-card:hover figure::after{

    opacity:1;

}

/*==================================================
28. FEATURED ARTWORK
==================================================*/

.featured-art{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:90px;

    align-items:center;

    margin:140px 0;

}

.featured-image{

    overflow:hidden;

    border-radius:28px;

    box-shadow:var(--shadow-md);

}

.featured-image img{

    width:100%;

    aspect-ratio:5/6;

    object-fit:cover;

}

.featured-content{

    display:flex;

    flex-direction:column;

    gap:24px;

}

.featured-content h2{

    max-width:420px;

}

.featured-content p{

    max-width:500px;

}

/*==================================================
29. PAGINATION
==================================================*/

.gallery-pagination{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    margin-top:120px;

}

.gallery-pagination a{

    width:44px;

    height:44px;

    display:grid;

    place-items:center;

    border-radius:50%;

    border:1px solid var(--line);

    transition:var(--transition);

}

.gallery-pagination a:hover{

    border-color:var(--olive);

    color:var(--olive);

}

.gallery-pagination .active{

    background:var(--olive);

    color:#fff;

    border-color:var(--olive);

}

/*==================================================
30. GALLERY SPACING
==================================================*/

.gallery section{

    margin-bottom:120px;

}

.gallery section:last-child{

    margin-bottom:0;

}
/*==================================================
31. ARTWORK PAGE
==================================================*/

.artwork-page{

    padding:140px 0 160px;

}

.artwork-layout{

    display:grid;

    grid-template-columns:minmax(420px,650px) minmax(320px,460px);

    gap:80px;

    align-items:start;

    overflow:visible;


}



/*==================================================
32. ARTWORK IMAGE
==================================================*/

.artwork-image{

    position:sticky;

    top:110px;

    z-index:1;

}

.artwork-image img{

    width:100%;

    display:block;

    user-select:none;

    transition:
        transform .65s ease,
        box-shadow .65s ease,
        opacity .45s ease;

}

.artwork-image:hover{

    z-index:20;

}

.artwork-image:hover img{

    transform:scale(1.22);

    box-shadow:
        0 40px 100px rgba(0,0,0,.22);

}
.artwork-layout:has(.artwork-image:hover) .artwork-info{

    opacity:.32;

    transform:translateX(8px);

}



/*==================================================
33. ARTWORK INFORMATION
==================================================*/

.artwork-info{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    transition:
        opacity .7s cubic-bezier(.22,.61,.36,1),
        transform .7s cubic-bezier(.22,.61,.36,1);

}

.collection-name{

    font-size:.72rem;

    letter-spacing:.22em;

    text-transform:uppercase;

    color:var(--text-light);

    margin-bottom:22px;

}

.artwork-info h1{

    font-family:"Cormorant Garamond",serif;

    font-size:4rem;

    font-weight:500;

    line-height:1;

    letter-spacing:-.02em;

    margin-bottom:34px;

    color:var(--text);

}

.artwork-description{

    max-width:520px;

    font-size:1.02rem;

    line-height:2.05;

    color:var(--text);

}

.artwork-description p{

    margin:0;

}

.artwork-description p+p{

    margin-top:26px;

}



/*==================================================
34. METADATA
==================================================*/

.artwork-meta{

    width:100%;

    margin-top:60px;

    padding-bottom:50px;

    border-top:1px solid var(--line-soft);

}

.meta-item{

    display:grid;

    grid-template-columns:120px minmax(420px,1fr);

    gap:56px;

    padding:24px 0;

}

.meta-item:not(:last-child){

    border-bottom:1px solid var(--line-soft);

}

.meta-label{

    font-size:.72rem;

    letter-spacing:.18em;

    text-transform:uppercase;

    color:var(--text-light);

    padding-top:3px;

}

.meta-value{

    color:var(--text);

    line-height:1.9;

}
/*==================================================
35. READING ROOM
==================================================*/

.reading-room{

    padding:120px 0;

}

.reading-header{

    max-width:760px;

    margin:0 auto 90px;

    text-align:center;

}

.reading-header p{

    max-width:620px;

    margin:20px auto 0;

}

.reading-grid{

    display:grid;

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

    gap:70px 56px;

}

/*==================================================
36. ESSAY CARD
==================================================*/

.essay-card{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.essay-card img{

    width:100%;

    aspect-ratio:16/10;

    object-fit:cover;

    border-radius:22px;

    box-shadow:var(--shadow-sm);

    transition:transform .8s ease;

}

.essay-card:hover img{

    transform:scale(1.03);

}

.essay-date{

    font-size:.72rem;

    letter-spacing:.22em;

    text-transform:uppercase;

    color:var(--olive);

}

.essay-title{

    font-family:"Cormorant Garamond",serif;

    font-size:2rem;

    line-height:1.15;

}

.essay-title a{

    transition:var(--transition);

}

.essay-title a:hover{

    color:var(--olive);

}

.essay-excerpt{

    line-height:1.9;

}

/*==================================================
37. PREVIOUS / NEXT NAVIGATION
==================================================*/

.artwork-navigation{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    margin-top:120px;

    padding-top:40px;

    border-top:1px solid var(--line-soft);

}

.artwork-navigation a{

    display:flex;

    flex-direction:column;

    gap:8px;

}

.artwork-navigation small{

    font-size:.7rem;

    letter-spacing:.22em;

    color:var(--text-light);

}

.artwork-navigation strong{

    font-family:"Cormorant Garamond",serif;

    font-size:1.5rem;

    font-weight:500;

    transition:var(--transition);

}

.artwork-navigation a:hover strong{

    color:var(--olive);

}

/*==================================================
38. FOOTER
==================================================*/

.site-footer{

    padding:80px 0;

    border-top:1px solid var(--line-soft);

    text-align:center;

}

.site-footer p{

    font-size:.9rem;

    color:var(--text-light);

}

.site-footer nav{

    display:flex;

    justify-content:center;

    gap:30px;

    margin-top:20px;

}

.site-footer a{

    font-size:.85rem;

    letter-spacing:.08em;

    text-transform:uppercase;

}
/*==================================================
39. UTILITY CLASSES
==================================================*/

.hidden{
    display:none !important;
}

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

.text-left{
    text-align:left;
}

.text-center{
    text-align:center;
}

.text-right{
    text-align:right;
}

.mt-0{margin-top:0!important;}
.mt-1{margin-top:12px!important;}
.mt-2{margin-top:24px!important;}
.mt-3{margin-top:48px!important;}
.mt-4{margin-top:72px!important;}

.mb-0{margin-bottom:0!important;}
.mb-1{margin-bottom:12px!important;}
.mb-2{margin-bottom:24px!important;}
.mb-3{margin-bottom:48px!important;}
.mb-4{margin-bottom:72px!important;}

/*==================================================
40. SCROLLBAR
==================================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:var(--bg);
}

::-webkit-scrollbar-thumb{
    background:#b8bca8;
    border-radius:999px;
}

::-webkit-scrollbar-thumb:hover{
    background:var(--olive);
}

/*==================================================
41. IMAGE PROTECTION
==================================================*/

img{

    -webkit-user-drag:none;

    user-select:none;

    -webkit-touch-callout:none;

    pointer-events:auto;

}

img::selection{

    background:transparent;

}

/*==================================================
42. FOCUS STATES
==================================================*/

a:focus-visible,
button:focus-visible{

    outline:2px solid var(--olive);

    outline-offset:5px;

    border-radius:6px;

}

/*==================================================
43. MOTION
==================================================*/

@media (prefers-reduced-motion:reduce){

    *{

        animation:none!important;

        transition:none!important;

        scroll-behavior:auto!important;

    }

}

/*==================================================
44. TABLET
==================================================*/

@media (max-width:1024px){

    section{

        padding:90px 0;

    }

    .featured-art{

        grid-template-columns:1fr;

        gap:56px;

    }

    .artwork-layout{

        grid-template-columns:1fr;

        gap:60px;

    }

    .artwork-image{

        position:relative;

        top:auto;

    }

    .collection-grid{

        grid-template-columns:1fr;

    }

}

/*==================================================
45. MOBILE
==================================================*/

@media (max-width:768px){

    .header-inner{

        height:72px;

    }

    .nav{

        gap:22px;

    }

    .hero{

        min-height:auto;

        padding:90px 0;

    }

    .hero-actions{

        flex-direction:column;

        width:100%;

    }

    .btn{

        width:100%;

    }

    .gallery-grid{

        grid-template-columns:1fr;

    }

    .reading-grid{

        grid-template-columns:1fr;

    }

    .artwork-strip{

        justify-content:flex-start;

        overflow-x:auto;

        padding-bottom:10px;

    }

    .artwork-preview{

        flex:0 0 auto;

    }

    .artwork-navigation{

        flex-direction:column;

        align-items:flex-start;

    }

}


/*==================================================
46. SMALL MOBILE
==================================================*/

@media (max-width:480px){

    .container,
    .page,
    .page-narrow{

        width:min(calc(100% - 32px),100%);

    }

    h1{

        font-size:2.6rem;

    }

    h2{

        font-size:2rem;

    }

    .collection-title{

        font-size:1.8rem;

    }

    .art-title{

        font-size:1.7rem;

    }

    .essay-title{

        font-size:1.7rem;

    }

    .artwork-preview{

        width:120px;

    }

    .artwork-preview img{

        width:120px;

        height:480px;

    }

}

/*==================================================
47. PRINT
==================================================*/

@media print{

    .site-header,
    .site-footer,
    .hero-actions,
    .gallery-pagination{

        display:none!important;

    }

}

/*==================================================
48. ARCHIVE
==================================================*/

.archive-section{

    margin-top:60px;

    padding-top:42px;

    border-top:1px solid var(--line-soft);

}

.archive-heading{

    font-size:.72rem;

    letter-spacing:.18em;

    text-transform:uppercase;

    color:var(--text-light);

    margin-bottom:18px;

}

.archive-title{

    font-family:"Cormorant Garamond",serif;

    font-size:2rem;

    font-weight:500;

    line-height:1.1;

    color:var(--text);

    margin-bottom:18px;

}

.archive-description{

    max-width:420px;

    color:var(--text-light);

    line-height:1.9;

    margin-bottom:36px;

}

.archive-specs{

    display:flex;

    flex-direction:column;

    gap:16px;

    margin-bottom:42px;

}

.archive-spec{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:40px;

    padding-bottom:14px;

    border-bottom:1px solid var(--line-soft);

}

.archive-spec span:first-child{

    font-size:.72rem;

    letter-spacing:.12em;

    text-transform:uppercase;

    color:var(--text-light);

}

.archive-spec span:last-child{

    color:var(--text);

}

.archive-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 34px;

    border:1px solid var(--text);

    border-radius:999px;

    background:transparent;

    color:var(--text);

    text-decoration:none;

    font-size:.88rem;

    font-weight:500;

    transition:all .35s ease;

}

.archive-button:hover{

    background:var(--surface-hover);

    color:var(--olive);

    border-color:var(--olive);

}


.archive-note{

    margin-top:18px;

    font-size:.82rem;

    line-height:1.8;

    color:var(--text-light);

}

/*==================================================
49. DISABLE TEXT SELECTION
==================================================*/

body{

    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;

}

/*==================================================
50. ATMOSPHERE
==================================================*/

/*==================================================
GLOBAL TRANSITIONS
==================================================*/

html{

    scroll-behavior:smooth;

}

a,
button{

    transition:
        color .35s ease,
        background-color .35s ease,
        border-color .35s ease,
        opacity .35s ease,
        transform .35s ease;

}

img{

    transition:
        opacity .4s ease;

}

/*==================================================
GLOBAL LINK HOVER
==================================================*/

nav a{

    transition:color .35s ease;

}

nav a:hover{

    color:var(--dusty-rose);

}

.menu-toggle{
    display:none;
    width:42px;
    height:42px;
    padding:0;
    background:none;
    border:none;
    cursor:pointer;

    justify-content:center;
    align-items:center;
    flex-direction:column;
    gap:5px;
}

.menu-toggle span{
    width:22px;
    height:2px;
    background:#d7d0c1;
    transition:.35s ease;
    border-radius:2px;
}

.menu-toggle.active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}