
/* =========================================================
TEVERE Luxury Ecommerce Template
style.css
Version 1.0
NOTE:
This file is the merged stylesheet based on all parts created
during this conversation. It includes the completed foundation
and representative styling for the homepage sections.
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

section{padding:100px 0;position:relative}
.container{
    width:min(1450px,92%);
    margin:0 auto;
}

.container-fluid{
    width:min(1450px,92%);
    margin:0 auto;
}
h1,h2,h3,h4,h5,h6{
font-family:'Cormorant Garamond',serif;
font-weight:600;
}
h1{font-size:76px}
h2{font-size:52px}

.section-subtitle{
color:var(--primary);
font-size:11px;
letter-spacing:4px;
text-transform:uppercase;
display:inline-block;
margin-bottom:15px;
}

.pt-0{
padding-top:0px;
}
.pb-0{
padding-bottom:0px;
}

.btn-gold,.btn-outline{
display:inline-flex;
align-items:center;
justify-content:center;
padding:16px 36px;
text-transform:uppercase;
letter-spacing:2px;
font-size:12px;
transition:.35s;
}
.btn-gold{background:var(--primary);color:#111}
.btn-outline{border:1px solid rgba(255,255,255,.12);color:#fff}
.btn-gold:hover{background:var(--primary-light);transform:translateY(-3px)}
.btn-outline:hover{border-color:var(--primary);color:var(--primary)}

.mt-50
{
margin-top:50px;
}



/*==================================================
GLOBAL CONTAINER
==================================================*/

.container{

    width:min(1450px,92%);

    margin:0 auto;

}

.section{

    width:100%;

    position:relative;

}


/*==================================================
HEADER V4 - PREMIUM
==================================================*/

.header-area{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    z-index:9999;

    background:transparent;

    backdrop-filter:none;
    -webkit-backdrop-filter:none;

    border:none;

    box-shadow:none;

    transition:
        background .45s ease,
        backdrop-filter .45s ease,
        box-shadow .45s ease,
        padding .35s ease;

}

.header-area.scrolled{

    background:rgba(255,255,255,.92);

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

    box-shadow:0 15px 45px rgba(0,0,0,.06);

    

}

.header-inner{

    display:grid;

    grid-template-columns:220px 1fr auto;

    align-items:center;

    min-height:92px;

    column-gap:45px;

}


.site-logo{

    height:72px;

    width:auto;

    transition:.35s;

}
.header-logo:hover .site-logo{

    transform:scale(1.04);

}

/*==================================================
MENU
==================================================*/

.main-navigation{

    display:flex;

    justify-content:center;

    align-items:center;

}

.main-navigation ul{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:38px;

    margin:0;

    padding:0;

    list-style:none;

}

.main-navigation li{

    position:relative;

}

.main-navigation a{

    position:relative;

    display:inline-flex;

    align-items:center;

    padding:8px 0;

    font-size:13px;

    font-weight:500;

    letter-spacing:.14em;

    text-transform:uppercase;

    color:#343434;

    text-decoration:none;

    transition:.35s;

}

.main-navigation a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:1.5px;

    background:#B78A38;

    transition:.35s;

}

.main-navigation a:hover{

    color:#B78A38;

}

.main-navigation a:hover::after{

    width:100%;

}

.main-navigation a.active{

    color:#B78A38;

}

.main-navigation a.active::after{

    width:100%;

}


/*==================================================
RIGHT ICONS
==================================================*/

.header-actions{

    display:flex;

    align-items:center;

    gap:22px;

}

.header-actions a{

    color:#333;

    font-size:18px;

    transition:.35s;

}

.header-actions a:hover{

    color:#B78A38;

    transform:translateY(-2px);

}



.mobile-toggle{

    display:none;

}


.cart-icon{

    position:relative;

}

.cart-count{

    position:absolute;

    top:-7px;

    right:-7px;

    width:18px;

    height:18px;

    border-radius:50%;

    background:#C5A15B;

    color:#fff;

    font-size:10px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:600;

}


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

:root{

    --gold:#C89B2B;
    --black:#111111;
    --text:#2f2f2f;
    --light:#fbf9f6;
    --gray:#777;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

body{

    font-family:'Inter',sans-serif;
    background:#fff;
    color:var(--text);

}

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

.hero{

    position:relative;

    width:100%;

    
   overflow:hidden;

    background:#fff;

}


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

.hero{

    position:relative;

    width:100%;

   

    overflow:hidden;

    background:#fff;

}

.hero::before{

    content:"";

    position:absolute;

    right:-250px;

    top:-200px;

    width:600px;

    height:600px;

    border-radius:50%;

    background:rgba(200,154,43,.05);

    filter:blur(120px);

}

.hero::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to right,
        rgba(255,255,255,.95) 5%,
        rgba(255,255,255,.25) 55%,
        rgba(255,255,255,0) 100%
    );

    pointer-events:none;

}

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

.hero-container{

    height:100%;

    display:grid;

    grid-template-columns:44% 56%;

    align-items:center;

}

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

.hero-content{

    position:relative;

    z-index:20;

    padding-top:60px;

    animation:fadeLeft 1s ease;

}

/*=====================================================
                LABEL
======================================================*/

.hero-label{

    display:inline-block;

    margin-bottom:20px;

    color:var(--gold);

    font-size:13px;

    font-weight:600;

    letter-spacing:4px;

    text-transform:uppercase;

}

/*=====================================================
                TITLE
======================================================*/

.hero-title{

    font-family:'Cormorant Garamond',serif;

    font-size:108px;

    font-weight:300;

    line-height:.88;

    letter-spacing:-3px;

    color:#111;

}

.hero-title span{

    position:relative;

    color:var(--gold);

}

/*=====================================================
                DIVIDER
======================================================*/

.hero-divider{

    width:60px;

    height:2px;

    margin:25px 0;

    background:var(--gold);

}

/*=====================================================
                DESCRIPTION
======================================================*/

.hero-description{

    max-width:430px;

    color:#666;

    font-size:14px;

    line-height:1.9;

}

/*=====================================================
                BUTTON AREA
======================================================*/

.hero-buttons{

    display:flex;

    align-items:center;

    gap:30px;
    margin-top:30px;
    margin-bottom:30px;
}

/*=====================================================
                PAGINATION
======================================================*/

.hero-pagination{

    display:flex;

    align-items:center;

    gap:20px;

    margin-top:70px;

    font-size:15px;

    color:#999;

}

.progress-bar{

    width:130px;

    height:2px;

    background:#ddd;

    overflow:hidden;

}

.progress{

    width:30%;

    height:100%;

    background:#111;

}

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

.hero-right{

    position:relative;

    display:flex;

    align-items:flex-end;

    justify-content:center;

    height:100%;

    z-index:10;

    animation:fadeRight 1.2s ease;

}

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

.hero-bg{

    position:absolute;

    left:0;

    bottom:0;

    width:700px;

    height:100%;

    background:#f5f2ee;

    border-radius:380px 380px 0 0;

    z-index:1;

}

.hero-bg::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        to bottom,

        rgba(255,255,255,.35),

        rgba(255,255,255,0)

    );

}

.hero-bg::after{

    content:"";

    position:absolute;

    top:80px;

    right:80px;

    width:14px;

    height:14px;

    border-radius:50%;

    background:var(--gold);

    opacity:.18;

}

/*=====================================================
                BUTTON
======================================================*/

.btn-dark{

    background:#111;

    color:#fff;

    padding:18px 42px;

    display:flex;

    align-items:center;

    gap:18px;

    text-transform:uppercase;

    font-size:12px;

    font-weight:600;

    letter-spacing:2px;

    transition:.35s;

}

.btn-dark:hover{

    background:var(--gold);

    color:#fff;

}


.btn-link{

    color:#111;

    font-size:13px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:2px;

    transition:.35s;

}

.btn-link:hover{

    color:var(--gold);

}


/*=====================================================
                PAGINATION
======================================================*/

.hero-pagination{

    display:flex;

    align-items:center;

    gap:20px;

    margin-top:70px;

    font-size:15px;

    color:#999;

}

.progress-bar{

    width:130px;

    height:2px;

    background:#ddd;

    overflow:hidden;

}

.progress{

    width:30%;

    height:100%;

    background:#111;

}

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

.hero-right{

    position:relative;

    height:100%;

    display:flex;

    align-items:flex-end;

    justify-content:center;

}

/*=====================================================
            PREMIUM BACKGROUND SHAPE
======================================================*/

.hero-bg{

    position:absolute;

    left:0;

    bottom:0;

    width:700px;

    height:100%;

    background:#f5f2ee;

    border-radius:380px 380px 0 0;

    z-index:1;

}

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

.hero-image{

    position:absolute;

    bottom:0;

    left:40%;

    transform:translateX(-50%);

    height:100%;

    width:auto;

    z-index:5;

    filter:drop-shadow(0 20px 35px rgba(0,0,0,.12));

    transition:1s ease;

}

.hero:hover .hero-image{

    transform:translateX(-50%) scale(1.03);

}

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

.hero-extra{

    position:absolute;

    right:40px;

    top:50%;

    transform:translateY(-50%);

    width:180px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:35px;

    z-index:20;

}

/*=====================================================
                SIDE TEXT
======================================================*/

.hero-side-text{

    position:relative;

    top:28%;

    z-index:8;

}

.hero-side-text p{

    font-family:'Cormorant Garamond',serif;

    font-size:18px;

    line-height:1.25;

    color:#222;

}

.hero-side-text::before{

    content:"";

    position:absolute;

    left:-45px;

    top:18px;

    width:28px;

    height:2px;

    background:var(--gold);

}

/*=====================================================
                CIRCLE BADGE
======================================================*/

.circle-badge{

    position:absolute;

    left:0;

    top:50px;

    width:120px;

    height:120px;

    z-index:9;

    animation:rotateBadge 18s linear infinite;

}

.circle-badge svg{

    width:100%;

    height:100%;

    overflow:visible;

}

.circle-badge text{

    fill:var(--gold);

    font-size:20px;

    font-weight:500;

    letter-spacing:5px;

    text-transform:uppercase;

}

/*=====================================================
                BUTTON
======================================================*/

.btn-dark{

    position:relative;

    display:flex;

    align-items:center;

    gap:18px;

    padding:18px 42px;

    background:#111;

    color:#fff;

    font-size:12px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    overflow:hidden;

    transition:.35s;

}

.btn-dark:hover{

    background:var(--gold);

    color:#fff;

}

.btn-dark::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:120%;

    height:100%;

    background:rgba(255,255,255,.15);

    transform:skewX(-25deg);

    transition:.6s;

}

.btn-dark:hover::before{

    left:130%;

}

/*=====================================================
                BUTTON LINK
======================================================*/

.btn-link{

    position:relative;

    color:#111;

    font-size:13px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    transition:.35s;

}

.btn-link:hover{

    color:var(--gold);

}

.btn-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:1px;

    background:var(--gold);

    transition:.35s;

}

.btn-link:hover::after{

    width:100%;

}

/*=====================================================
                ANIMATIONS
======================================================*/

@keyframes rotateBadge{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

@keyframes fadeLeft{

    from{

        opacity:0;

        transform:translateX(-70px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes fadeRight{

    from{

        opacity:0;

        transform:translateX(70px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

/*=====================================================
                    1600px
======================================================*/

@media (max-width:1600px){

.hero-title{

    font-size:95px;

}

.hero-bg{

    width:600px;
    height:100%;

}

.hero-image{

    max-height:100%;

}

}


/*=====================================================
                    1400px
======================================================*/

@media (max-width:1400px){

.hero-container{

    width:94%;

}

.hero-title{

    font-size:84px;

}

.hero-description{

    font-size:15px;

}

.hero-bg{

    width:640px;
    height:78%;

}

.hero-side-text{

    right:0;

}

.circle-badge{

    width:140px;
    height:140px;

}

}


/*=====================================================
                    1200px
======================================================*/

@media (max-width:1200px){

.hero{

    min-height:820px;

}

.hero-container{

    grid-template-columns:45% 55%;

}

.hero-title{

    font-size:72px;

}

.hero-description{

    font-size:15px;

}

.hero-buttons{

    flex-wrap:wrap;

}

.hero-bg{

    width:560px;
    height:75%;

}

.hero-side-text p{

    font-size:18px;

}

}


/*=====================================================
                    992px
======================================================*/

@media (max-width:991px){

.header-inner{
    grid-template-columns:1fr auto auto;
    min-height:82px;
}

.main-navigation{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    padding:25px 0;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
    border-radius:0 0 24px 24px;
}

.main-navigation.active{
    display:block;
}

.main-navigation ul{
    flex-direction:column;
    gap:0;
}

.main-navigation li{
    width:100%;
}

.main-navigation a{
    display:block;
    padding:18px 35px;
    font-size:14px;
}

.mobile-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
    width:46px;
    height:46px;
    background:none;
    border:none;
    font-size:34px;
    cursor:pointer;
    color:#222;
    margin-left:12px;
}

.hero{
    min-height:auto;
    height:auto;
    padding:80px 0;
}

.hero-container{
    grid-template-columns:1fr;
    gap:50px;
}

.hero-content{
    order:2;
    text-align:center;
    padding-right:0;
}

.hero-description{
    margin:auto;
}

.hero-buttons{
    justify-content:center;
}

.hero-pagination{
    justify-content:center;
}

.hero-right{
    order:1;
    height:650px;
}

.hero-bg{
    position:absolute;
    width:520px;
    height:620px;
    left:50%;
    transform:translateX(-50%);
    right:auto;
}

.hero-image{
    left:50%;
    transform:translateX(-50%);
    max-height:100%;
}

.hero-side-text,
.circle-badge{
    display:none;
}

}

/*=====================================================
                    768px
======================================================*/

@media (max-width:768px){

.hero{

    padding:60px 0;

}

.hero-title{

    font-size:56px;

    letter-spacing:-1px;

}

.hero-label{

    font-size:12px;

}

.hero-description{

    font-size:15px;

    line-height:1.8;

}

.hero-buttons{

    flex-direction:column;

    gap:18px;

}

.btn-dark{

    width:100%;

    justify-content:center;

}

.btn-link{

    width:100%;

    text-align:center;

}

.hero-right{

    height:520px;

}

.hero-bg{

    width:420px;

    height:520px;

}

.hero-pagination{

    margin-top:45px;

}

}


/*=====================================================
                    576px
======================================================*/

@media (max-width:576px){

.hero{

    padding-top:40px;

}

.hero-title{

    font-size:42px;

    line-height:.95;

}

.hero-divider{

    margin:25px auto;

}

.hero-description{

    font-size:14px;

    max-width:95%;

}

.hero-right{

    height:420px;

}

.hero-bg{

    width:340px;

    height:420px;

}

.hero-image{

    max-height:100%;

}

.hero-pagination{

    font-size:13px;

}

.progress-bar{

    width:80px;

}

}


/*=====================================================
                    420px
======================================================*/

@media (max-width:420px){

.hero-title{

    font-size:36px;

}

.hero-label{

    letter-spacing:2px;

}

.hero-bg{

    width:300px;

    height:370px;

}

.hero-right{

    height:370px;

}

.btn-dark{

    padding:16px 22px;

    font-size:11px;

}

.hero-description{

    font-size:13px;

}

}



/*==========================================================
                COLLECTOR'S EDITION
==========================================================*/

.collector-section{

    position:relative;

    padding:140px 0 110px;

    background:#fff;

    overflow:hidden;

}

.collector-wrapper{

    width:100%;

}

/*==========================================================
                    TOP
==========================================================*/

.collector-top{

    display:grid;

    grid-template-columns:42% 58%;

    align-items:center;

    gap:70px;

}

/*==========================================================
                LEFT CONTENT
==========================================================*/

.collector-content{

    position:relative;

}

.collector-label{

    display:block;

    margin-bottom:24px;

    color:var(--gold);

    font-size:13px;

    font-weight:600;

    letter-spacing:4px;

    text-transform:uppercase;

}

.collector-title{

    margin:0;

    font-family:'Cormorant Garamond',serif;

    font-size:48px;

    font-weight:300;

    line-height:.88;

    letter-spacing:-3px;

    color:#111;

}

.collector-title span{

    color:var(--gold);

}

/*==========================================================
                    DIVIDER
==========================================================*/

.collector-divider{

    display:flex;

    align-items:center;

    gap:22px;

    margin:38px 0;

}

.collector-divider span{

    flex:1;

    height:1px;

    background:#d8c9b4;

}

.collector-divider img{

    width:48px;

}

/*==========================================================
                DESCRIPTION
==========================================================*/

.collector-description{

    max-width:420px;

    margin-bottom:25px;
margin-top:25px;

    color:#555;

    font-size:15px;

    line-height:1.9;

}

/*==========================================================
                EDITION NUMBER
==========================================================*/

.collector-edition{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-bottom:30px;

    padding:0px 28px;

    border:1px solid #cda45d;

    font-size:20px;

    color:#222;

}

.collector-edition span{

    font-size:18px;

}

.collector-edition strong{

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

    font-weight:500;

    color:var(--gold);


}

.collector-edition em{

    font-style:normal;

    font-size:18px;

}

/*==========================================================
                HIGHLIGHTS
==========================================================*/

.collector-highlights{

    display:grid;

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

    border-top:1px solid #ece7df;

    border-bottom:1px solid #ece7df;

}

.collector-highlight{

    padding:35px 18px;

    text-align:center;

    border-right:1px solid #ece7df;

}

.collector-highlight:last-child{

    border-right:none;

}

.collector-highlight img{

    width:44px;

    margin-bottom:18px;

}

.collector-highlight h4{

    margin-bottom:6px;

    font-size:18px;

    font-weight:600;

    color:#111;

}

.collector-highlight h5{

    margin-bottom:16px;

    color:var(--gold);

    font-size:11px;

    letter-spacing:2px;

    text-transform:uppercase;

}

.collector-highlight p{

    margin:0;

    font-size:13px;

    line-height:1.8;

    color:#777;

}

/*==========================================================
                    BUTTON
==========================================================*/

.collector-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    margin-top:30px;

    padding:18px 42px;

    background:#111;

    color:#fff;

    text-decoration:none;

    font-size:13px;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

    transition:.35s ease;

}

.collector-button span{

    font-size:18px;

    transition:.35s;

}

.collector-button:hover{

    background:var(--gold);

    color:#fff;

}

.collector-button:hover span{

    transform:translateX(6px);

}


/*==========================================================
                RIGHT SHOWCASE
==========================================================*/

.collector-showcase{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:760px;

}

.collector-image{

position: absolute;
    
	
    max-width:100%;

    height:80%;

    transition:.6s ease;

    filter:drop-shadow(0 40px 70px rgba(0,0,0,.12));

}

.collector-showcase:hover .collector-image{

    transform:scale(1.03);

}


/*==========================================================
                BOTTOM
==========================================================*/

.collector-bottom{

    margin-top:120px;

}

.collector-bottom-heading{

    display:flex;

    align-items:center;

    gap:25px;

    margin-bottom:60px;

}

.collector-line{

    flex:1;

    height:1px;

    background:#e5dfd7;

}

.collector-bottom-heading h3{

    margin:0;

    font-family:'Cormorant Garamond',serif;

    font-size:42px;

    font-weight:300;

    letter-spacing:-1px;

    color:#111;

}


/*==========================================================
                ITEMS
==========================================================*/

.collector-items{

    display:grid;

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

    gap:0;

    border-top:1px solid #ece7df;

    border-bottom:1px solid #ece7df;

}

.collector-item{

    padding:0 30px 40px;

    text-align:center;

    border-right:1px solid #ece7df;

}

.collector-item:last-child{

    border-right:none;

}


/*==========================================================
                ITEM IMAGE
==========================================================*/

.collector-item-image{

    display:flex;

    justify-content:center;

    align-items:flex-end;

    height:260px;

    margin-bottom:30px;

}

.collector-item-image img{

    max-width:170px;

    max-height:220px;

    transition:.45s;

}

.collector-item:hover .collector-item-image img{

    transform:translateY(-8px);

}


/*==========================================================
                ITEM CONTENT
==========================================================*/

.collector-item-content h4{

    margin-bottom:14px;

    font-size:16px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    color:#111;

}

.collector-item-content p{

    max-width:220px;

    margin:auto;

    color:#777;

    font-size:14px;

    line-height:1.9;

}

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

@media (max-width:1400px){

    .collector-top{

        grid-template-columns:45% 55%;

        gap:50px;

    }

    .collector-title{

        font-size:48px;

    }

    .collector-image{

        max-width:620px;

    }

}


@media (max-width:1200px){

    .collector-top{

        grid-template-columns:1fr;

        gap:70px;

    }

    .collector-content{

        text-align:center;

        max-width:900px;

        margin:auto;

    }

    .collector-description{

        margin:0 auto 35px;

    }

    .collector-divider{

        justify-content:center;

    }

    .collector-edition{

        margin:0 auto 50px;

    }

    .collector-button{

        margin:30px auto 0;

    }

    .collector-showcase{

        min-height:auto;

    }

    .collector-image{

        max-width:520px;

    }

    .collector-items{

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

    }

}


@media (max-width:992px){

    .collector-section{

        padding:90px 0;

    }

    .collector-title{

        font-size:48px;

    }

    .collector-highlights{

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

    }

    .collector-highlight{

        border-bottom:1px solid #ece7df;

    }

    .collector-highlight:nth-child(2){

        border-right:none;

    }

    .collector-highlight:last-child{

        border-right:none;

    }

}


@media (max-width:768px){

    .collector-title{

        font-size:44px;

    }

    .collector-description{

        font-size:15px;

    }

    .collector-highlights{

        grid-template-columns:1fr;

    }

    .collector-highlight{

        border-right:none;

        border-bottom:1px solid #ece7df;

    }

    .collector-highlight:last-child{

        border-bottom:none;

    }

    .collector-items{

        grid-template-columns:1fr;

    }

    .collector-item{

        border-right:none;

        border-bottom:1px solid #ece7df;

    }

    .collector-item:last-child{

        border-bottom:none;

    }

    .collector-bottom{

        margin-top:80px;

    }

}


@media (max-width:576px){

    .collector-section{

        padding:70px 0;

    }

    .collector-title{

        font-size:36px;

        line-height:1;

    }

    .collector-label{

        font-size:11px;

        letter-spacing:3px;

    }

    .collector-divider img{

        width:36px;

    }

    .collector-edition{

        padding:12px 18px;

    }

    .collector-edition strong{

        font-size:36px;

    }

    .collector-image{

        max-width:320px;

    }

    .collector-bottom-heading h3{

        font-size:28px;

    }

}




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

.collection-section{

    width:100%;
    padding:40px 0 60px;
    background:#fff;
    border-top:1px solid #ece8e2;

}

.collection-section .container{

    width:100%;

}
/*====================================================
                HEADER
====================================================*/

.collection-header{

    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:0;

}

.collection-title{

    margin:0;

    font-family:'Cormorant Garamond',serif;
    font-size:70px;
    font-weight:300;
    line-height:.9;
    letter-spacing:-3px;
    color:#111;

}

.collection-view{

    display:flex;
    align-items:center;
    gap:10px;
    color:#111;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    transition:.3s;
margin-bottom:20px;

}

.collection-view:hover{

    color:#C89A2B;

}

/*====================================================
                GRID
====================================================*/

.collection-grid{

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;

}

/*====================================================
                CARD
====================================================*/

.collection-card{

    display:block;

    overflow:hidden;

    text-decoration:none;

    background:#faf8f5;

    border:1px solid #efefef;

    transition:
        transform .35s,
        box-shadow .35s;

}

.collection-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.collection-card:hover .collection-image img{

    transform:scale(1.06);

}

/*====================================================
                IMAGE
====================================================*/

.collection-image{

    height:320px;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;

    background:#f7f5f2;

}

.collection-image img{

    max-width:82%;
    max-height:280px;

    transition:.45s;

}

/*====================================================
                INFO
====================================================*/

.collection-info{

    padding:10px 22px 0;

}

.collection-info h3{

    margin-bottom:8px;

    color:#111;

    font-size:18px;
    font-weight:600;
    letter-spacing:1px;

}

.collection-info p{

    color:#888;

    font-size:12px;

    letter-spacing:2px;

    text-transform:uppercase;

}

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

@media(max-width:1200px){

.collection-title{

    font-size:72px;

}

.collection-grid{

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

}

}

@media(max-width:768px){

.collection-header{

    flex-direction:column;

    align-items:flex-start;

    gap:15px;

}

.collection-title{

    font-size:52px;

}

.collection-grid{

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

}

.collection-image{

    height:240px;

}

}

@media(max-width:480px){

.collection-grid{

    grid-template-columns:1fr;

}

.collection-title{

    font-size:42px;

}

.collection-image{

    height:220px;

}

.collection-info{

    padding:18px;

}

}




/*====================================================
                MANIFESTO SECTION
====================================================*/

.manifesto-section{

    width:100%;

    background:#fff;

    border-top:1px solid #ece8e2;

    border-bottom:1px solid #ece8e2;

}

.manifesto-grid{

    display:grid;

    grid-template-columns:36% 46% 18%;

    

}


/*====================================================
                LEFT CONTENT
====================================================*/

.manifesto-content{

    

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.manifesto-label{

    color:#C89A2B;

    font-size:13px;

    letter-spacing:3px;

    text-transform:uppercase;

    font-weight:600;

    margin-bottom:15px;

}

.manifesto-title{

    font-family:'Cormorant Garamond',serif;

    font-size:42px;

    line-height:1;

    font-weight:300;

    letter-spacing:-2px;

    color:#111;

    margin-bottom:25px;

}

.manifesto-description{

    font-size:14px;

    line-height:2;

    color:#666;

    max-width:420px;

    margin-bottom:25px;

}

.manifesto-btn{

    display:inline-flex;

    align-items:center;

    gap:14px;

    color:#111;

    font-size:13px;

    letter-spacing:2px;

    font-weight:600;

    text-transform:uppercase;

    transition:.3s;

}

.manifesto-btn:hover{

    color:#C89A2B;

}



/*====================================================
                CENTER IMAGE
====================================================*/

.manifesto-image{

    display:flex;

    justify-content:center;

    align-items:flex-end;

    background:#faf8f5;

    overflow:hidden;

    border-left:1px solid #ece8e2;

    border-right:1px solid #ece8e2;

}

.manifesto-image img{

    width:auto;

    max-width:100%;

    max-height:400px;

    transition:.6s;
padding-top:20px;
padding-bottom:20px;


}

.manifesto-image:hover img{

    transform:scale(1.03);

}



/*====================================================
                STATS
====================================================*/

.manifesto-stats{

    display:flex;

    flex-direction:column;

}

.stat-box{

    flex:1;

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding:10px 35px 10px 35px;

    border-bottom:1px solid #ece8e2;

}

.stat-box:last-child{

    border-bottom:none;

}

.stat-box h3{

    font-family:'Cormorant Garamond',serif;

    font-size:22px;

    font-weight:400;

    color:#C89A2B;

    margin-bottom:0px;
text-transform:uppercase;

}

.stat-box span{

    font-size:13px;

    letter-spacing:2px;

    

    color:#777;

}



/*====================================================
                HOVER
====================================================*/

.stat-box{

    transition:.35s;

}

.stat-box:hover{

    background:#faf8f5;

}



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

@media(max-width:1200px){

.manifesto-grid{

    grid-template-columns:1fr;

}

.manifesto-image{

    order:2;

    min-height:500px;

    border-left:none;

    border-right:none;

}

.manifesto-content{

    order:1;

    text-align:center;

}

.manifesto-description{

    margin:auto;

    margin-bottom:40px;

}

.manifesto-btn{

    justify-content:center;

}

.manifesto-stats{

    order:3;

    display:grid;

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

}

.stat-box{

    border-right:1px solid #ece8e2;

    border-bottom:none;

    text-align:center;

}

.stat-box:last-child{

    border-right:none;

}

}



@media(max-width:768px){

.manifesto-title{

    font-size:52px;

}

.manifesto-content{

    padding:50px 30px;

}

.manifesto-description{

    font-size:15px;

}

.manifesto-stats{

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

}

.stat-box{

    border-bottom:1px solid #ece8e2;

}

}



@media(max-width:576px){

.manifesto-title{

    font-size:40px;

}

.manifesto-label{

    font-size:12px;

}

.manifesto-description{

    font-size:14px;

}

.manifesto-image{

    min-height:360px;

}

.manifesto-stats{

    grid-template-columns:1fr;

}

.stat-box{

    text-align:center;

    border-right:none;

}

}



::-webkit-scrollbar{width:10px}
::-webkit-scrollbar-thumb{background:#333}
::-webkit-scrollbar-thumb:hover{background:var(--primary)}

::selection{
background:var(--primary);
color:#111;
}


/*=========================================================
LUXURY SECTION DIVIDER
=========================================================*/

.lux-divider {
    position: relative;
    width: 100%; 
height:2px;   
    display: flex;
    justify-content: center;
    align-items: center;
}

    .lux-divider::before{

background:linear-gradient(

90deg,

transparent,

#C5A15B,

transparent);

height:1px;

opacity:.5;

}




/*==========================================================
                    FEATURED PRODUCTS
==========================================================*/

.featured-products{

    background:#fff;

    padding:55px 0 70px;

    border-top:1px solid #ece8e2;

}

.featured-products .container{

    width:min(96%,1600px);

    margin:auto;

}


/*==========================================================
                        HEADER
==========================================================*/

.featured-header{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    margin-bottom:18px;

}

.featured-heading{

    display:flex;

    flex-direction:column;

}

.featured-label{

    font-size:12px;

    font-weight:600;

    letter-spacing:3px;

    color:#C89A2B;

    text-transform:uppercase;

    margin-bottom:8px;

}

.featured-title{

    font-family:'Cormorant Garamond',serif;

    font-size:60px;

    font-weight:300;

    line-height:.92;

    letter-spacing:-2px;

    color:#111;

}

.featured-view{

    display:flex;

    align-items:center;

    gap:8px;

    margin-top:18px;

    font-size:12px;

    letter-spacing:2px;

    font-weight:600;

    color:#111;

    text-transform:uppercase;

    transition:.3s;

}

.featured-view:hover{

    color:#C89A2B;

}



/*==========================================================
                    PRODUCTS
==========================================================*/

.featured-grid{

    display:grid;

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

    border-top:1px solid #ece8e2;

    border-left:1px solid #ece8e2;

}



/*==========================================================
                    PRODUCT
==========================================================*/

.featured-item{

    border-right:1px solid #ece8e2;

    background:#fff;

    transition:.35s;

}

.featured-item:hover .featured-image img{

    transform:scale(1.05);

}



/*==========================================================
                    IMAGE
==========================================================*/

.featured-image{

    height:360px;

    display:flex;

    justify-content:center;

    align-items:flex-end;

    padding:25px;

    overflow:hidden;

}

.featured-image img{

    
    max-height:300px;

    transition:.45s;

}



/*==========================================================
                    INFO
==========================================================*/

.featured-info{

    padding:18px 18px 22px;

}

.featured-info h3{

    font-size:14px;

    font-weight:600;

    line-height:1.4;

    letter-spacing:.5px;

    text-transform:uppercase;

    color:#111;

    margin-bottom:8px;

}

.price{

    display:block;

    font-size:15px;

    color:#111;

    font-weight:500;

}



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

@media(max-width:1200px){

.featured-grid{

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

}

}


@media(max-width:768px){

.featured-header{

    flex-direction:column;

    gap:20px;

}

.featured-title{

    font-size:42px;

}

.featured-grid{

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

}

.featured-image{

    height:280px;

}

}


@media(max-width:576px){

.featured-grid{

    grid-template-columns:1fr;

}

.featured-title{

    font-size:34px;

}

.featured-image{

    height:240px;

}

}


/*==================================================
CRAFTED LIKE ART
==================================================*/

.crafted-section {
    padding: 0px 0;
    overflow: hidden;
}

.crafted-container {
    width:100%;
    margin: auto;
    display: grid;
    grid-template-columns: 44% 56%;
    align-items: center;
border-bottom: 1px solid rgba(200, 161, 90, .30);
    
}

/*====================================
LEFT CONTENT
====================================*/

.crafted-content {
    max-width: 520px;
   
}

.crafted-subtitle {
    display: block;
    color: #C79A41;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.crafted-title {
    color: #C8A15A;
    font-family: 'Cormorant Garamond',serif;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 28px;
    max-width: 520px;
}

.crafted-text{
    color:var(--muted);
    font-size:17px;
    line-height:1.9;
    max-width:420px;
    margin-bottom:42px;
}
.crafted-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: #C8A15A;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

    .crafted-link svg {
        width: 45px;
        transition: .35s;
    }

    .crafted-link:hover {
        color: #fff;
    }

        .crafted-link:hover svg {
            transform: translateX(8px);
        }

/*====================================
RIGHT IMAGE
====================================*/

.crafted-image {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
}

    .crafted-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        transition: 1.2s;
    }

.crafted-section:hover .crafted-image img {
    transform: scale(1.04);
}

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

@media(max-width:1400px) {

    .crafted-title {
        font-size: 34px;
    }

    .crafted-image {
        height: 460px;
    }
}

@media(max-width:1200px) {

    .crafted-container {
        grid-template-columns: 48% 52%;
    }

    .crafted-title {
        font-size: 34px;
    }
}

@media(max-width:991px) {

    .crafted-container {
        grid-template-columns: 1fr;
    }

    .crafted-image {
        order: -1;
        height: 420px;
        margin-bottom: 50px;
    }

    .crafted-content {
        max-width: 100%;
        padding: 0;
    }
}

@media(max-width:768px) {

    .crafted-title {
        font-size: 34px;
    }

    .crafted-subtitle {
        font-size: 13px;
        letter-spacing: 4px;
    }

    .crafted-text {
        font-size: 18px;
    }

    .crafted-link {
        font-size: 16px;
    }

    .crafted-image {
        height: 340px;
    }
}

@media(max-width:576px) {

    .crafted-section {
        padding: 70px 0;
    }

    .crafted-title {
        font-size: 34px;
    }

    .crafted-text {
        font-size: 16px;
        line-height: 1.8;
    }

    .crafted-link {
        font-size: 14px;
        letter-spacing: 2px;
        gap: 15px;
    }

    .crafted-image {
        height: 260px;
    }
}



/*=========================================================
FEATURES SECTION
=========================================================*/

.features-section {
    
    padding: 30px 0 30px 0px!important;
    position: relative;
}

/*=========================================================
FEATURE ITEM
=========================================================*/

.feature-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 120px;
    padding: 0 35px;
}

    /*=========================================================
SHORT VERTICAL DIVIDER
=========================================================*/

    .feature-item:not(.last)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 70px;
        background: rgba(200,161,90,.35);
    }

/*=========================================================
ICON
=========================================================*/

.feature-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .feature-icon img {
        width: 58px;
        height: 58px;
        object-fit: contain;
        display: block;
    }


.feature-svg {
    width: 56px;
    height: 56px;
    color: #C8A15A;
    display: block;
    transition: .4s;
}

.feature-item:hover .feature-svg {
    color: #E1BE77;
    
}
/*=========================================================
CONTENT
=========================================================*/

.feature-content {
    flex: 1;
    text-align: left;
}

    /*=========================================================
HEADING
=========================================================*/

    .feature-content h4 {
        margin: 0 0 10px;
        color: #111;
        font-family: 'Cormorant Garamond',serif;
        font-size: 22px;
        font-weight: 500;
        line-height: 1.2;
        text-align: left;
    }

    /*=========================================================
DESCRIPTION
=========================================================*/

    .feature-content p {
        margin: 0;
        color: #777;
        font-size: 14px;
        line-height: 1.8;
        font-weight: 300;
        text-align: left;
    }

/*=========================================================
HOVER
=========================================================*/

.feature-item {
    transition: .35s;
}

    .feature-item:hover .feature-icon {
        transform: translateY(-3px);
        transition: .35s;
    }

    .feature-item:hover h4 {
        color: #D6B16A;
    }

/*=========================================================
TABLET
=========================================================*/

@media(max-width:991px) {

    .features-section {
        padding: 50px 0;
    }

    .feature-item {
        padding: 30px 0;
    }

        .feature-item:not(.last)::after {
            display: none;
        }

    .feature-item {
        border-bottom: 1px solid rgba(200,161,90,.18);
    }

    .last {
        border-bottom: none;
    }
}

/*=========================================================
MOBILE
=========================================================*/

@media(max-width:767px) {

    .feature-item {
        gap: 18px;
        min-height: auto;
        padding: 25px 0;
    }

    .feature-icon {
        width: 46px;
        height: 46px;
        flex: 0 0 46px;
    }

        .feature-icon img {
            width: 46px;
            height: 46px;
        }

    .feature-content h4 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .feature-content p {
        font-size: 13px;
        line-height: 1.6;
    }
}

/*=========================================================
JOIN TEVERE
=========================================================*/

.join-section {
    
    overflow: hidden;
    border-top: 1px solid rgba(200,161,90,.30);
    border-bottom: 1px solid rgba(200,161,90,.30);
padding:0;
}

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

.join-container {
    width:100%;
    margin: auto;
    display: grid;
    grid-template-columns: 28% 32% 40%;
    align-items: end;
    min-height: 270px;
}

/*=========================================================
LEFT IMAGE
=========================================================*/

.join-left {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

    .join-left img {
        width: 100%;
        max-width: 430px;
        display: block;
    }

/*=========================================================
CENTER
=========================================================*/

.join-content {
    text-align: center;
    padding: 25px 10px;
}

.join-subtitle{
    display:block;
    color:var(--muted);
    font-size:16px;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:12px;
}


.join-title {
    margin: 0 0 35px;
    font-family: 'Cormorant Garamond',serif;
    font-size: 50px;
    font-weight: 500;
    line-height: 1;
    color: #C8A15A;
    text-transform: uppercase;
}

/*=========================================================
BUTTONS
=========================================================*/

.join-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 54px;
    background: #C8A15A;
    color: #111;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: .35s;
}

    .btn-gold:hover {
        background: #D6B16A;
    }

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 54px;
    border: 1px solid #C8A15A;
    color: #C8A15A;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: .35s;
}

    .btn-outline:hover {
        background: #C8A15A;
        color: #111;
    }

/*=========================================================
RIGHT IMAGE
=========================================================*/

.join-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    overflow: hidden;
}

    .join-right img {
        width: 100%;
        max-width: 560px;
        display: block;
    }

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

@media(max-width:1200px) {

    .join-container {
        grid-template-columns: 30% 35% 35%;
    }

    .join-title {
        font-size: 58px;
    }
}

@media(max-width:991px) {

    .join-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .join-left,
    .join-right {
        justify-content: center;
    }

    .join-left {
        margin-top: 40px;
    }

    .join-content {
        padding: 40px 20px;
    }

    .join-right {
        margin-bottom: 0;
    }

    .join-title {
        font-size: 52px;
    }
}

@media(max-width:576px) {

    .join-title {
        font-size: 40px;
    }

    .join-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-gold,
    .btn-outline {
        width: 100%;
        max-width: 280px;
    }
}

/*=========================================================
FOOTER
=========================================================*/

.footer-section {
    
    border-top: 1px solid rgba(200,161,90,.20);
    padding-top: 40px;
    overflow: hidden;
}

/*=========================================================
GRID
=========================================================*/

.footer-grid {
    display: grid;
    grid-template-columns: 180px 1fr 1fr 1fr 220px;
    align-items: center;
}

/*=========================================================
COLUMN
=========================================================*/

.footer-col {
    position: relative;
    padding: 0 40px 30px;
}

    /*=========================================================
SHORT DIVIDER
=========================================================*/

    .footer-col:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 110px;
        background: rgba(200,161,90,.22);
    }

/*=========================================================
LOGO
=========================================================*/

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .footer-logo img {
        width: 95px;
        display: block;
        transition: .4s;
    }

    .footer-logo:hover img {
        transform: rotate(8deg);
    }

/*=========================================================
HEADING
=========================================================*/

.footer-col h5 {
    margin: 0 0 22px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #C8A15A;
    text-transform: uppercase;
    font-family: 'Montserrat',sans-serif;
}

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

.footer-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 6px;
    }

        .footer-col ul li:last-child {
            margin-bottom: 0;
        }

        .footer-col ul li a {
           color: var(--text) !important;
            text-decoration: none;
            font-size: 13px;
            transition: .35s;
        }

            .footer-col ul li a:hover {
                color: #C8A15A;
                padding-left: 5px;
            }

/*=========================================================
SOCIAL
=========================================================*/

.footer-social {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 12px;
}

    .footer-social a {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #C8A15A;
        font-size: 18px;
        text-decoration: none;
        transition: .35s;
    }

        .footer-social a:hover {
            color: #ffffff;
            transform: translateY(-4px);
        }

    .footer-social i {
        line-height: 1;
    }

/*=========================================================
BOTTOM
=========================================================*/

.footer-bottom {
    border-top: 1px solid rgba(200,161,90,.15);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    color: #707070;
    font-size: 12px;
    letter-spacing: 1px;
}

.footer-policy {
    display: flex;
    align-items: center;
    gap: 16px;
}

    .footer-policy span {
        color: #555;
    }

    .footer-policy a {
        color: #707070;
        text-decoration: none;
        font-size: 12px;
        transition: .35s;
    }

        .footer-policy a:hover {
            color: #C8A15A;
        }

/*=========================================================
TABLET
=========================================================*/

@media(max-width:1200px) {

    .footer-grid {
        grid-template-columns: repeat(3,1fr);
        row-gap: 45px;
    }

    .footer-col {
        padding: 0 25px 35px;
    }

        .footer-col::after {
            display: none;
        }
}

/*=========================================================
MOBILE
=========================================================*/

@media(max-width:768px) {

    .footer-section {
        padding-top: 40px;
    }

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

    .footer-col {
        text-align: center;
        padding: 25px 0;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-policy {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-col h5 {
        margin-bottom: 18px;
    }
}







/* =========================================================
   TEVERE PRODUCT SHOWCASE
========================================================= */

.product-showcase-section {
    width: 100%;
    background: #fff;
}


/* =========================================================
   PRODUCT ROW
========================================================= */

.product-showcase {
    width: 100%;
    min-height: 720px;

    display: grid;
    grid-template-columns: 55% 45%;

    align-items: center;

    border-top: 1px solid #ece8e2;

    overflow: hidden;
}


/* =========================================================
   IMAGE AREA
========================================================= */

.product-showcase-image {
    height: 720px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #faf9f7;
}


/* Product image wrapper */

.product-image-inner {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 50px;
}


/* Actual product */

.product-image-inner img {
    max-width: 90%;
    max-height: 650px;

    width: auto;
    height: auto;

    object-fit: contain;

    display: block;

    transition:
        transform 1s cubic-bezier(.2,.7,.2,1),
        filter .5s ease;
}


/* Luxury hover */

.product-showcase:hover .product-image-inner img {
    transform: scale(1.035);
}


/* =========================================================
   CONTENT
========================================================= */

.product-showcase-content {

    max-width: 520px;

    padding: 70px 8vw 70px 7vw;

}


/* =========================================================
   LABEL
========================================================= */

.product-showcase-label {

    display: block;

    margin-bottom: 24px;

    color: #C89A2B;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 4px;

    text-transform: uppercase;
}


/* =========================================================
   TITLE
========================================================= */

.product-showcase-title {

    margin: 0 0 16px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 64px;
    font-weight: 300;

    line-height: .88;

    letter-spacing: -2px;

    color: #111;

}


/* =========================================================
   SUBTITLE
========================================================= */

.product-showcase-subtitle {

    color: #C89A2B;

    font-family: 'Cormorant Garamond', serif;

    font-size: 22px;

    letter-spacing: 2px;

    margin-bottom: 24px;
}


/* =========================================================
   DIVIDER
========================================================= */

.product-showcase-divider {

    width: 55px;
    height: 1px;

    background: #C89A2B;

    margin-bottom: 25px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.product-showcase-description {

    max-width: 430px;

    margin: 0 0 35px;

    color: #666;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   PRODUCT META
========================================================= */

.product-showcase-meta {

    display: flex;

    gap: 45px;

    margin-bottom: 40px;

    padding-top: 5px;
}


.product-showcase-meta div {

    display: flex;

    flex-direction: column;

    gap: 6px;

}


.product-showcase-meta span {

    color: #999;

    font-size: 9px;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.product-showcase-meta strong {

    color: #222;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1.5px;
}


/* =========================================================
   BUTTON
========================================================= */

.product-showcase-button {

    display: inline-flex;

    align-items: center;

    gap: 25px;

    color: #111;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    text-decoration: none;

    padding-bottom: 8px;

    border-bottom: 1px solid #111;

    transition:
        color .3s ease,
        border-color .3s ease,
        gap .3s ease;
}


.product-showcase-button span {

    font-size: 20px;

    font-weight: 300;

    line-height: 1;
}


.product-showcase-button:hover {

    color: #C89A2B;

    border-color: #C89A2B;

    gap: 32px;
}


/* =========================================================
   SECOND PRODUCT
   IMAGE RIGHT / CONTENT LEFT
========================================================= */

.product-showcase-reverse {

    grid-template-columns: 45% 55%;

}


/* Give second image slightly different tone */

.product-showcase-reverse .product-showcase-image {

    background: #f6f4f1;

}


/* Content on left */

.product-showcase-reverse .product-showcase-content {

    padding-left: 8vw;
    padding-right: 7vw;

}


/* =========================================================
   ALTERNATING BACKGROUND
========================================================= */

.product-showcase-light {

    background: #fff;

}


.product-showcase-reverse {

    background: #fbfaf8;

}


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

@media (max-width: 1200px) {

    .product-showcase {

        min-height: 620px;

        grid-template-columns: 52% 48%;

    }


    .product-showcase-reverse {

        grid-template-columns: 48% 52%;

    }


    .product-showcase-image {

        height: 620px;

    }


    .product-image-inner img {

        max-height: 560px;

    }


    .product-showcase-title {

        font-size: 56px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .product-showcase,
    .product-showcase-reverse {

        display: flex;

        flex-direction: column;

        min-height: auto;

    }


    .product-showcase-image {

        width: 100%;

        height: 600px;

        order: 1;

    }


    .product-showcase-content {

        width: 100%;

        max-width: 700px;

        order: 2;

        padding: 70px 40px 80px;

    }


    .product-showcase-reverse .product-showcase-content {

        order: 2;

        padding: 70px 40px 80px;

    }


    .product-showcase-reverse .product-showcase-image {

        order: 1;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

    .product-showcase-image {

        height: 430px;

    }


    .product-image-inner {

        padding: 25px;

    }


    .product-image-inner img {

        max-width: 94%;

        max-height: 390px;

    }


    .product-showcase-content,
    .product-showcase-reverse .product-showcase-content {

        padding: 55px 25px 65px;

    }


    .product-showcase-label {

        font-size: 10px;

        letter-spacing: 3px;

        margin-bottom: 18px;

    }


    .product-showcase-title {

        font-size: 45px;

        line-height: .92;

    }


    .product-showcase-subtitle {

        font-size: 18px;

    }


    .product-showcase-description {

        font-size: 14px;

        line-height: 1.8;

    }


    .product-showcase-meta {

        gap: 25px;

        margin-bottom: 32px;

    }

}

/* =========================================================
   TEVERE CATEGORY SHOWCASE
========================================================= */

.tevere-category-section {
    width: 100%;
    background: #fff;
    padding: 90px 0 110px;
}


/* =========================================================
   CONTAINER
========================================================= */

.tevere-category-container {
    width: min(94%, 1500px);
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.tevere-category-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 42px;
}


.tevere-category-label {
    display: block;

    margin-bottom: 12px;

    color: #C89A2B;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 4px;

    text-transform: uppercase;
}


.tevere-category-title {
    margin: 0;

    font-family: 'Cormorant Garamond', serif;

    font-size: 58px;
    font-weight: 300;

    line-height: .9;

    letter-spacing: -2px;

    color: #111;
}


.tevere-category-view {

    display: flex;
    align-items: center;
    gap: 12px;

    color: #111;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 2px;

    text-decoration: none;
    text-transform: uppercase;

    padding-bottom: 8px;

    border-bottom: 1px solid #111;

    transition: .3s;
}


.tevere-category-view:hover {
    color: #C89A2B;
    border-color: #C89A2B;
}


/* =========================================================
   GRID
========================================================= */

.tevere-category-grid {

    display: grid;

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

    gap: 20px;
}


/* =========================================================
   CARD
========================================================= */

.tevere-category-card {

    display: block;

    color: inherit;
    text-decoration: none;

    overflow: hidden;
}


/* =========================================================
   IMAGE
========================================================= */

.tevere-category-image {

    position: relative;

    height: 560px;

    display: flex;

    align-items: flex-end;
    justify-content: center;

    overflow: hidden;

    background: #f7f5f2;
}


.tevere-category-image img {

    width: 90%;
    height: 90%;

    object-fit: contain;

    transition:
        transform .8s cubic-bezier(.2,.7,.2,1);
}


.tevere-category-card:hover
.tevere-category-image img {

    transform: scale(1.045);

}


/* =========================================================
   NUMBER
========================================================= */

.tevere-category-number {

    position: absolute;

    top: 20px;
    left: 20px;

    font-size: 10px;

    letter-spacing: 2px;

    color: #999;
}


/* =========================================================
   INFORMATION
========================================================= */

.tevere-category-info {

    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    padding: 20px 2px 0;
}


.tevere-category-info h3 {

    margin: 0 0 7px;

    color: #111;

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 2px;
}


.tevere-category-info p {

    margin: 0;

    color: #999;

    font-size: 9px;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================================
   ARROW
========================================================= */

.tevere-category-arrow {

    color: #111;

    font-size: 21px;

    font-weight: 300;

    transition:
        transform .35s,
        color .35s;
}


.tevere-category-card:hover
.tevere-category-arrow {

    color: #C89A2B;

    transform: translateX(6px);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .tevere-category-section {
        padding: 70px 0 80px;
    }

    .tevere-category-image {
        height: 440px;
    }

    .tevere-category-title {
        font-size: 50px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .tevere-category-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 22px;
    }


    .tevere-category-title {
        font-size: 45px;
    }


    .tevere-category-grid {

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .tevere-category-image {

        height: 520px;
    }

}


@media (max-width: 480px) {

    .tevere-category-section {
        padding: 55px 0 70px;
    }


    .tevere-category-image {
        height: 430px;
    }


    .tevere-category-title {
        font-size: 40px;
    }

}

/*=========================================================
  TEVERE NEW EDITORIAL SECTIONS
=========================================================*/
.tevere-editorial-presence{width:100%;padding:0 14px 100px;background:#f8f7f4}
.tevere-editorial-presence-inner{min-height:440px;border:1px solid #ddd9d0;display:grid;grid-template-columns:24% 50% 26%;align-items:stretch;background:#faf9f6}
.tevere-editorial-number{display:flex;align-items:center;justify-content:center;color:#d1aa61;font-family:'Cormorant Garamond',serif;font-size:64px;font-weight:400;letter-spacing:1px}
.tevere-editorial-presence-media{min-height:440px;background:#eeece7;overflow:hidden;border-left:1px solid #d8d4cb;border-right:1px solid #d8d4cb}
.tevere-editorial-presence-media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 1s ease}
.tevere-editorial-presence-inner:hover .tevere-editorial-presence-media img{transform:scale(1.025)}
.tevere-editorial-presence-copy{display:flex;flex-direction:column;justify-content:center;padding:55px 28px}
.tevere-editorial-kicker{display:block;margin-bottom:14px;color:#bd8d43;font-size:10px;font-weight:600;letter-spacing:4px;line-height:1.4;text-transform:uppercase}
.tevere-editorial-presence-copy h2,.tevere-exhibit-copy h2,.tevere-house-manifesto-copy h2{margin:0;color:#111;font-family:'Cormorant Garamond',serif;font-weight:400;letter-spacing:-1.8px;line-height:.92}
.tevere-editorial-presence-copy h2{font-size:39px;margin-bottom:20px}
.tevere-editorial-presence-copy p{max-width:280px;margin:0 0 24px;color:#73706b;font-size:11px;line-height:1.7}
.tevere-editorial-link{display:inline-flex;align-items:center;gap:8px;width:max-content;padding-bottom:5px;border-bottom:1px solid #111;color:#111;font-size:9px;font-weight:700;letter-spacing:2px;text-decoration:none;text-transform:uppercase;transition:.3s ease}
.tevere-editorial-link span{font-size:14px;font-weight:400}
.tevere-editorial-link:hover{color:#bd8d43;border-color:#bd8d43}

.tevere-exhibit-section{display:grid;grid-template-columns:42% 58%;width:100%;min-height:560px;background:#fff}
.tevere-exhibit-media{min-height:560px;overflow:hidden;}
.tevere-exhibit-media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 1s ease}
.tevere-exhibit-section:hover .tevere-exhibit-media img{transform:scale(1.025)}
.tevere-exhibit-copy{display:flex;flex-direction:column;justify-content:center;padding:75px 5.5vw}
.tevere-exhibit-copy h2{font-size:55px;margin-bottom:24px}
.tevere-exhibit-intro{max-width:690px;margin:0 0 32px;color:#686762;font-size:13px;line-height:1.9}
.tevere-exhibit-meta{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid #dedbd5;border-bottom:1px solid #dedbd5;margin-bottom:25px}
.tevere-exhibit-meta div{min-height:55px;padding:12px 9px;border-right:1px solid #dedbd5;display:flex;flex-direction:column;justify-content:center;gap:3px}
.tevere-exhibit-meta div:last-child{border-right:0}
.tevere-exhibit-meta strong{color:#111;font-size:8px;letter-spacing:1.5px;text-transform:uppercase}
.tevere-exhibit-meta span{color:#77736d;font-size:8px;letter-spacing:.6px;text-transform:uppercase}
.tevere-dark-button{display:inline-flex;align-items:center;gap:10px;width:max-content;padding:14px 23px;background:#171717;color:#fff;font-size:9px;font-weight:700;letter-spacing:2px;text-decoration:none;text-transform:uppercase;transition:.3s ease}
.tevere-dark-button span{font-size:13px}
.tevere-dark-button:hover{background:#bd8d43;color:#111}

.tevere-featured-pieces{width:100%;padding:100px 24px;background:#faf9f6}
.tevere-piece-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.tevere-piece-card{min-width:0;background:#fff}
.tevere-piece-media{display:block;overflow:hidden;}
.tevere-piece-media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .9s ease}
.tevere-piece-card:hover .tevere-piece-media img{transform:scale(1.035)}
.tevere-piece-copy{padding:26px 28px 0}
.tevere-piece-kicker{color:#bd8d43;font-size:9px;font-weight:600;letter-spacing:3px;text-transform:uppercase}
.tevere-piece-copy h3{margin:13px 0 9px;color:#111;font-family:'Cormorant Garamond',serif;font-size:35px;font-weight:400;line-height:1}
.tevere-piece-copy p{max-width:650px;margin:0;color:#6f6c66;font-size:12px;line-height:1.7}
.tevere-piece-bottom{display:flex;align-items:center;justify-content:space-between;margin-top:20px;padding:14px 0 0;border-top:1px solid #dedbd5}
.tevere-piece-bottom strong{color:#111;font-size:11px;letter-spacing:.3px}
.tevere-piece-bottom span{color:#bd8d43;font-size:8px;letter-spacing:2.5px;text-transform:uppercase}

.tevere-house-manifesto{display:grid;grid-template-columns:52% 48%;align-items:center;min-height:570px;padding:100px 36px;background:#fff}
.tevere-house-manifesto-copy{padding-right:5vw}
.tevere-house-manifesto-copy h2{font-size:59px;margin-bottom:28px}
.tevere-house-manifesto-copy p{max-width:560px;margin:0 0 31px;color:#686762;font-size:13px;line-height:1.95}
.tevere-house-manifesto-media{height:500px;overflow:hidden;background:#eeece7}
.tevere-house-manifesto-media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 1s ease}
.tevere-house-manifesto:hover .tevere-house-manifesto-media img{transform:scale(1.025)}

.tevere-category-exhibits{width:100%;padding:0 18px 100px;background:#f8f7f4}
.tevere-category-exhibit-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:#d8d4cc}
.tevere-category-exhibit{position:relative;display:block;height:540px;overflow:hidden;background:#eceae5;color:#fff;text-decoration:none}
.tevere-category-exhibit-media,.tevere-category-exhibit-media img,.tevere-category-overlay{position:absolute;inset:0;width:100%;height:100%}
.tevere-category-exhibit-media img{object-fit:cover;display:block;transition:transform 1s ease}
.tevere-category-overlay{background:linear-gradient(to bottom,rgba(0,0,0,0) 43%,rgba(0,0,0,.72) 100%)}
.tevere-category-copy{position:absolute;left:22px;right:22px;bottom:25px;z-index:2}
.tevere-category-copy span{display:block;margin-bottom:10px;color:#d1aa61;font-size:8px;font-weight:600;letter-spacing:2.5px;text-transform:uppercase}
.tevere-category-copy h3{margin:0 0 8px;color:#fff;font-family:'Cormorant Garamond',serif;font-size:32px;font-weight:400;line-height:1}
.tevere-category-copy strong{color:#fff;font-size:8px;font-weight:600;letter-spacing:1.3px;text-transform:uppercase}
.tevere-category-exhibit:hover .tevere-category-exhibit-media img{transform:scale(1.04)}

@media (max-width:991px){
.tevere-editorial-presence{padding:0 14px 70px}
.tevere-editorial-presence-inner{grid-template-columns:18% 52% 30%}
.tevere-editorial-number{font-size:50px}
.tevere-editorial-presence-copy{padding:35px 22px}
.tevere-editorial-presence-copy h2{font-size:32px}
.tevere-exhibit-section{grid-template-columns:45% 55%}
.tevere-exhibit-copy{padding:55px 38px}
.tevere-exhibit-copy h2{font-size:45px}
.tevere-piece-media{}
.tevere-house-manifesto{grid-template-columns:50% 50%;padding:80px 28px}
.tevere-house-manifesto-copy h2{font-size:48px}
.tevere-house-manifesto-media{height:430px}
.tevere-category-exhibit{height:460px}
}
@media (max-width:767px){
.tevere-editorial-presence{padding:0 10px 55px}
.tevere-editorial-presence-inner{grid-template-columns:1fr;min-height:auto}
.tevere-editorial-number{min-height:95px;justify-content:flex-start;padding:0 22px;font-size:45px}
.tevere-editorial-presence-media{min-height:420px;border:0;border-top:1px solid #d8d4cb;border-bottom:1px solid #d8d4cb}
.tevere-editorial-presence-copy{padding:35px 22px 40px}
.tevere-editorial-presence-copy h2{font-size:39px}
.tevere-exhibit-section{display:flex;flex-direction:column}
.tevere-exhibit-media{min-height:430px;height:430px}
.tevere-exhibit-copy{padding:55px 25px 65px}
.tevere-exhibit-copy h2{font-size:43px}
.tevere-exhibit-meta{grid-template-columns:1fr}
.tevere-exhibit-meta div{border-right:0;border-bottom:1px solid #dedbd5}
.tevere-exhibit-meta div:last-child{border-bottom:0}
.tevere-featured-pieces{padding:65px 14px}
.tevere-piece-grid{grid-template-columns:1fr;gap:55px}
.tevere-piece-media{height:390px}
.tevere-piece-copy{padding:22px 8px 0}
.tevere-piece-copy h3{font-size:32px}
.tevere-house-manifesto{grid-template-columns:1fr;padding:70px 25px}
.tevere-house-manifesto-copy{padding-right:0;padding-bottom:50px}
.tevere-house-manifesto-copy h2{font-size:43px}
.tevere-house-manifesto-media{height:360px}
.tevere-category-exhibits{padding:0 10px 65px}
.tevere-category-exhibit-grid{grid-template-columns:1fr}
.tevere-category-exhibit{height:430px}
}
@media (max-width:480px){
.tevere-editorial-presence-media{min-height:340px}
.tevere-exhibit-media{min-height:350px;height:350px}
.tevere-exhibit-copy h2{font-size:38px}
.tevere-piece-media{height:330px}
.tevere-piece-bottom{align-items:flex-start;gap:15px;flex-direction:column}
.tevere-house-manifesto-copy h2{font-size:37px}
.tevere-house-manifesto-media{height:300px}
.tevere-category-exhibit{height:360px}
}


/* =========================================================
   EDITORIAL EXHIBITS — ALIGN WITH EXISTING TEVERE GRID
   These sections intentionally use the same .container system
   as the existing homepage instead of touching the viewport edges.
========================================================= */
.tevere-editorial-presence {
    width:100%;
    padding:100px 0;
    background:#fff;
}
.tevere-editorial-container {
    width:min(1450px,92%);
    margin:0 auto;
}
.tevere-editorial-presence-inner {
    display:grid;
    grid-template-columns:18% 52% 30%;
    min-height:440px;
    align-items:stretch;
    border:1px solid #e1ddd5;
}
.tevere-editorial-number {
    display:flex;
    align-items:center;
    justify-content:center;
    color:#cda45a;
    font-family:'Cormorant Garamond',serif;
    font-size:64px;
    font-weight:400;
}
.tevere-editorial-presence-media {
    min-height:440px;
    background:#eeece7;
    overflow:hidden;
}
.tevere-editorial-presence-media img {
    width:100%; height:100%; object-fit:cover; display:block;
    transition:transform 1s ease;
}
.tevere-editorial-presence-inner:hover .tevere-editorial-presence-media img {transform:scale(1.025)}
.tevere-editorial-presence-copy {
    display:flex; flex-direction:column; justify-content:center;
    padding:55px 42px;
}
.tevere-editorial-kicker,.tevere-piece-kicker {
    display:block; color:#bf8f42; font-size:9px; font-weight:600;
    letter-spacing:3px; text-transform:uppercase; margin-bottom:16px;
}
.tevere-editorial-presence-copy h2,.tevere-exhibit-copy h2,.tevere-house-manifesto-copy h2 {
    margin:0; color:#111; font-family:'Cormorant Garamond',serif;
    font-weight:400; letter-spacing:-1.8px; line-height:.92;
}
.tevere-editorial-presence-copy h2 {font-size:43px; margin-bottom:22px}
.tevere-editorial-presence-copy p {
    max-width:390px; color:#6c6963; font-size:12px; line-height:1.8; margin:0 0 25px;
}
.tevere-editorial-link {
    display:inline-flex; align-items:center; gap:8px; width:max-content;
    color:#111; font-size:9px; font-weight:700; letter-spacing:1.8px;
    text-transform:uppercase; text-decoration:none; border-bottom:1px solid #111;
    padding-bottom:7px;
}
.tevere-editorial-link:hover {color:#c89a2b; border-color:#c89a2b}

.tevere-exhibit {width:100%; padding:100px 0; background:#fff}
.tevere-exhibit-section {
    width:min(1450px,92%); margin:0 auto; min-height:560px;
    display:grid; grid-template-columns:42% 58%; align-items:stretch;
    background:#fff;
}
.tevere-exhibit-media {min-height:560px; overflow:hidden; }
.tevere-exhibit-media img {width:100%;height:100%;object-fit:cover;display:block;transition:transform 1s ease}
.tevere-exhibit-section:hover .tevere-exhibit-media img {transform:scale(1.025)}
.tevere-exhibit-copy {display:flex;flex-direction:column;justify-content:center;padding:60px 5.5vw}
.tevere-exhibit-copy h2 {font-size:55px;margin-bottom:24px}
.tevere-exhibit-intro {max-width:690px;margin:0 0 32px;color:#686762;font-size:13px;line-height:1.9}
.tevere-exhibit-meta {display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid #dedbd5;border-bottom:1px solid #dedbd5;margin-bottom:25px}
.tevere-exhibit-meta div {min-height:55px;padding:12px 9px;border-right:1px solid #dedbd5;display:flex;flex-direction:column;justify-content:center;gap:3px}
.tevere-exhibit-meta div:last-child {border-right:0}
.tevere-exhibit-meta strong {color:#111;font-size:8px;letter-spacing:1.5px;text-transform:uppercase}
.tevere-exhibit-meta span {color:#77736d;font-size:8px;letter-spacing:.6px;text-transform:uppercase}
.tevere-dark-button {display:inline-flex;align-items:center;gap:10px;width:max-content;background:#151515;color:#fff;text-decoration:none;padding:14px 23px;font-size:9px;font-weight:700;letter-spacing:1.6px;text-transform:uppercase}
.tevere-dark-button:hover {background:#c89a2b;color:#111}

.tevere-featured-pieces {padding:100px 0;background:#fff}
.tevere-piece-grid {display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.tevere-piece-card {min-width:0;background:#fff}
.tevere-piece-media {display:block;overflow:hidden}
.tevere-piece-media img {width:100%;height:100%;object-fit:contain;display:block;transition:transform .9s ease}
.tevere-piece-card:hover .tevere-piece-media img {transform:scale(1.03)}
.tevere-piece-copy {padding:25px 22px 0}
.tevere-piece-copy h3 {margin:0 0 10px;color:#111;font-family:'Cormorant Garamond',serif;font-size:26px;font-weight:400;line-height:1; text-transform:uppercase}
.tevere-piece-copy p {max-width:650px;color:#686762;font-size:12px;line-height:1.8;margin:0 0 18px}
.tevere-piece-bottom {display:flex;justify-content:space-between;align-items:center;border-top:1px solid #dedbd5;padding-top:13px;color:#111}
.tevere-piece-bottom strong {font-size:11px}.tevere-piece-bottom span {color:#b98b43;font-size:8px;letter-spacing:2.3px;text-transform:uppercase}

.tevere-house-manifesto {padding:100px 0;background:#fff}
.tevere-house-manifesto-container {display:grid;grid-template-columns:52% 48%;align-items:center;gap:0}
.tevere-house-manifesto-copy {padding:20px 45px 20px 0}
.tevere-house-manifesto-copy h2 {font-size:61px;max-width:720px;margin-bottom:28px}
.tevere-house-manifesto-copy p {max-width:540px;color:#686762;font-size:13px;line-height:1.9;margin:0 0 30px}
.tevere-house-manifesto-media {height:500px;background:#eeece7;overflow:hidden}
.tevere-house-manifesto-media img {width:100%;height:100%;object-fit:cover;display:block;transition:transform 1s ease}
.tevere-house-manifesto:hover .tevere-house-manifesto-media img {transform:scale(1.025)}

.tevere-category-exhibits {padding:0 0 100px;background:#fff}
.tevere-category-exhibit-grid {display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:#d8d4cc}
.tevere-category-exhibit {position:relative;display:block;height:540px;overflow:hidden;background:#eceae5;color:#fff;text-decoration:none}
.tevere-category-exhibit-media,.tevere-category-exhibit-media img,.tevere-category-overlay {position:absolute;inset:0;width:100%;height:100%}
.tevere-category-exhibit-media img {object-fit:cover;display:block;transition:transform 1s ease}
.tevere-category-overlay {background:linear-gradient(to bottom,rgba(0,0,0,0) 43%,rgba(0,0,0,.72) 100%)}
.tevere-category-copy {position:absolute;left:22px;right:22px;bottom:25px;z-index:2}
.tevere-category-copy span {display:block;margin-bottom:10px;color:#d1aa61;font-size:8px;font-weight:600;letter-spacing:2.5px;text-transform:uppercase}
.tevere-category-copy h3 {margin:0 0 8px;color:#fff;font-family:'Cormorant Garamond',serif;font-size:32px;font-weight:400;line-height:1}
.tevere-category-copy strong {color:#fff;font-size:8px;font-weight:600;letter-spacing:1.3px;text-transform:uppercase}
.tevere-category-exhibit:hover .tevere-category-exhibit-media img {transform:scale(1.04)}

@media(max-width:991px){
 .tevere-editorial-presence,.tevere-exhibit,.tevere-featured-pieces,.tevere-house-manifesto{padding:70px 0}
 .tevere-editorial-presence-inner{grid-template-columns:1fr;min-height:0}
 .tevere-editorial-number{height:100px}
 .tevere-editorial-presence-media{height:430px;min-height:0}
 .tevere-exhibit-section{grid-template-columns:1fr;min-height:0}
 .tevere-exhibit-media{height:430px;min-height:0}
 .tevere-exhibit-copy{padding:55px 40px}
 .tevere-house-manifesto-container{grid-template-columns:1fr}
 .tevere-house-manifesto-media{order:-1;height:430px}
 .tevere-house-manifesto-copy{padding:50px 0 0}
 .tevere-category-exhibits{padding-bottom:70px}
}
@media(max-width:767px){
 .tevere-editorial-container,.tevere-exhibit-section{width:calc(100% - 40px)}
 .tevere-editorial-presence-copy{padding:40px 25px}
 .tevere-editorial-presence-copy h2{font-size:38px}
 .tevere-exhibit-copy{padding:40px 25px 50px}
 .tevere-exhibit-copy h2{font-size:42px}
 .tevere-exhibit-meta{grid-template-columns:1fr}
 .tevere-exhibit-meta div{border-right:0;border-bottom:1px solid #dedbd5}
 .tevere-exhibit-meta div:last-child{border-bottom:0}
 .tevere-piece-grid{grid-template-columns:1fr;gap:55px}
 .tevere-piece-media{height:390px}
 .tevere-piece-copy{padding:20px 10px 0}
 .tevere-piece-copy h3{font-size:32px}
 .tevere-house-manifesto-copy h2{font-size:43px}
 .tevere-house-manifesto-media{height:340px}
 .tevere-category-exhibit-grid{grid-template-columns:1fr}
 .tevere-category-exhibit{height:390px}
}

/* =========================================================
   FINAL FIX — TEVERE MANIFESTO EDITORIAL SECTION
   Matches the supplied left-text / right-image reference
   while respecting the existing TEVERE .container grid.
========================================================= */
.tevere-house-manifesto {
    width: 100%;
    padding: 0 0 100px;
    background: #fff;
}

.tevere-house-manifesto-container {
    width: min(1450px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 52% 48%;
    align-items: stretch;
    min-height: 500px;
}

.tevere-house-manifesto-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 35px 70px 35px 0;
}

.tevere-house-manifesto-copy .tevere-editorial-kicker {
    margin-bottom: 18px;
}

.tevere-house-manifesto-copy h2 {
    margin: 0 0 26px;
    max-width: 730px;
    color: #111;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 4.1vw, 68px);
    font-weight: 400;
    line-height: .94;
    letter-spacing: -2.4px;
}

.tevere-house-manifesto-copy p {
    max-width: 540px;
    margin: 0 0 30px;
    color: #686762;
    font-size: 13px;
    line-height: 1.9;
}

.tevere-house-manifesto-media {
    width: 100%;
    height: 500px;
    min-width: 0;
    overflow: hidden;
    background: #eeece7;
}

.tevere-house-manifesto-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.tevere-house-manifesto:hover .tevere-house-manifesto-media img {
    transform: scale(1.02);
}

@media (max-width: 991px) {
    .tevere-house-manifesto {
        padding: 70px 0;
    }

    .tevere-house-manifesto-container {
        grid-template-columns: 1fr 1fr;
        min-height: 430px;
    }

    .tevere-house-manifesto-copy {
        padding: 30px 40px 30px 0;
    }

    .tevere-house-manifesto-copy h2 {
        font-size: 47px;
    }

    .tevere-house-manifesto-media {
        height: 430px;
    }
}

@media (max-width: 767px) {
    .tevere-house-manifesto {
        padding: 65px 0;
    }

    .tevere-house-manifesto-container {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .tevere-house-manifesto-copy {
        padding: 0 0 45px;
    }

    .tevere-house-manifesto-copy h2 {
        font-size: 43px;
        letter-spacing: -1.5px;
    }

    .tevere-house-manifesto-media {
        height: 360px;
    }
}

@media (max-width: 480px) {
    .tevere-house-manifesto-copy h2 {
        font-size: 37px;
    }

    .tevere-house-manifesto-media {
        height: 300px;
    }
}

/* =========================================================
   TEVERE MANIFESTO — REFERENCE MATCH
   Left editorial copy / right artifact image.
   Desktop geometry follows the supplied 1536px reference:
   ~36px outer gutters, ~52/48 split, 500px image.
========================================================= */
.tevere-house-manifesto{
    width:100%;
    padding:65px 0;
    background:#fff;
}

.tevere-house-manifesto-container{
    width:calc(100% - 72px);
    max-width:none;
    margin:0 auto;
    display:grid;
    grid-template-columns:52% 48%;
    align-items:center;
    min-height:500px;
}

.tevere-house-manifesto-copy{
    min-width:0;
    padding:0 80px 0 0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
}

.tevere-house-manifesto-copy .tevere-editorial-kicker{
    margin:0 0 20px;
}

.tevere-house-manifesto-copy h2{
    margin:0 0 27px;
    max-width:730px;
    font-family:'Cormorant Garamond',serif;
    font-size:62px;
    font-weight:400;
    line-height:.92;
    letter-spacing:-2.3px;
    color:#111;
}

.tevere-house-manifesto-copy p{
    max-width:540px;
    margin:0 0 30px;
    color:#686762;
    font-size:13px;
    line-height:1.9;
}

.tevere-house-manifesto-media{
    width:100%;
    height:500px;
    overflow:hidden;
    background:#eeece7;
}

.tevere-house-manifesto-media img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}

@media (max-width:1199px){
    .tevere-house-manifesto-container{grid-template-columns:52% 48%;}
    .tevere-house-manifesto-copy{padding-right:55px;}
    .tevere-house-manifesto-copy h2{font-size:53px;}
    .tevere-house-manifesto-media{height:460px;}
}

@media (max-width:991px){
    .tevere-house-manifesto{padding:70px 0;}
    .tevere-house-manifesto-container{width:calc(100% - 48px);grid-template-columns:1fr 1fr;min-height:430px;}
    .tevere-house-manifesto-copy{padding-right:35px;}
    .tevere-house-manifesto-copy h2{font-size:45px;letter-spacing:-1.6px;}
    .tevere-house-manifesto-media{height:430px;}
}

@media (max-width:767px){
    .tevere-house-manifesto{padding:60px 0;}
    .tevere-house-manifesto-container{width:calc(100% - 40px);grid-template-columns:1fr;min-height:0;}
    .tevere-house-manifesto-copy{padding:0 0 42px;}
    .tevere-house-manifesto-copy h2{font-size:42px;line-height:.96;}
    .tevere-house-manifesto-media{height:360px;}
}

@media (max-width:480px){
    .tevere-house-manifesto-copy h2{font-size:36px;}
    .tevere-house-manifesto-media{height:300px;}
}


/* =========================================================
   TEVERE 2.0 — UI/UX COMPLETION LAYER
   Ivory / ink / champagne palette, editorial spacing,
   asymmetric compositions and restrained micro-interactions.
========================================================= */
:root{
  --ivory:#f8f6f1;
  --paper:#f1eee7;
  --ink:#121212;
  --ink-soft:#292725;
  --champagne:#b99659;
  --line:rgba(18,18,18,.12);
  --muted:#77736d;
}

html{scroll-behavior:smooth}
body{background:#fff;color:var(--ink)}
a{text-decoration:none}
.eyebrow{
  display:inline-block;
  font:500 10px/1.2 Inter,sans-serif;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--champagne);
}
.manifesto-rule{height:1px;background:var(--line);margin-top:55px}
.house-manifesto{padding:115px 0 90px;background:var(--ivory)}
.manifesto-topline,.manifesto-stats{display:flex;justify-content:space-between;align-items:center}
.manifesto-topline{font:500 10px/1 Inter,sans-serif;letter-spacing:.2em;color:#777}
.manifesto-grid{display:grid;grid-template-columns:90px 1.4fr 1fr;gap:35px;align-items:end;margin-top:70px}
.manifesto-number{font:300 80px/1 "Cormorant Garamond",serif;color:#cbbda5}
.manifesto-title h2,.section-heading-lux h2,.curated-head h2,.atelier-copy h2,.private-copy h2,.journal-section h2,.concierge-strip h2{
  margin:12px 0 0;font:300 clamp(48px,5vw,78px)/.92 "Cormorant Garamond",serif;letter-spacing:-.035em;
}
.manifesto-title em,.section-heading-lux em,.curated-head em,.atelier-copy em,.private-copy em,.journal-section em,.concierge-strip em{font-style:italic;color:var(--champagne)}
.manifesto-copy{max-width:420px;padding-bottom:5px}
.manifesto-copy p{font-size:14px;line-height:1.9;color:#65615b;margin:0 0 28px}
.text-arrow,.minimal-link{font:600 10px/1 Inter,sans-serif;letter-spacing:.18em;color:#171717}
.text-arrow span,.minimal-link span{color:var(--champagne);font-size:15px;margin-left:10px}
.manifesto-stats{padding-top:26px;gap:25px}
.manifesto-stats div{flex:1;border-right:1px solid var(--line);padding-left:15px}
.manifesto-stats div:first-child{padding-left:0}
.manifesto-stats div:last-child{border:0}
.manifesto-stats strong{display:block;font:400 32px/1 "Cormorant Garamond",serif}
.manifesto-stats span{display:block;margin-top:8px;font:500 9px/1 Inter,sans-serif;letter-spacing:.17em;color:#777}

.category-exhibit{padding:120px 0;background:#fff}
.section-heading-lux,.curated-head{display:flex;justify-content:space-between;align-items:end;gap:50px;margin-bottom:55px}
.section-heading-lux>p{max-width:320px;font-size:13px;line-height:1.8;color:#777}
.category-grid{display:grid;grid-template-columns:1.45fr .85fr .75fr;grid-template-rows:300px 300px;gap:14px}
.category-tile{position:relative;display:block;overflow:hidden;background:#e8e3da}
.category-tile img{width:100%;height:100%;object-fit:cover;transition:transform .9s cubic-bezier(.2,.7,.2,1)}
.category-tile:hover img{transform:scale(1.055)}
.category-tile-large{grid-row:span 2}
.category-tile-tall{grid-row:span 2}
.category-overlay{position:absolute;inset:auto 0 0;padding:30px;color:#fff;background:linear-gradient(transparent,rgba(0,0,0,.75))}
.category-overlay span{font:500 9px/1 Inter,sans-serif;letter-spacing:.2em;opacity:.8}
.category-overlay h3{font:400 37px/.9 "Cormorant Garamond",serif;margin:11px 0 18px}
.category-overlay b{font:600 9px/1 Inter,sans-serif;letter-spacing:.18em}
.category-placeholder{height:100%;display:flex;flex-direction:column;justify-content:space-between;padding:28px;background:#151515;color:#fff}
.category-placeholder span{font:500 9px/1 Inter,sans-serif;letter-spacing:.2em;color:var(--champagne)}
.category-placeholder strong{font:400 34px/.95 "Cormorant Garamond",serif}
.category-placeholder b{font:600 9px/1 Inter,sans-serif;letter-spacing:.18em}

.curated-edit{padding:115px 0;background:var(--ivory)}
.lux-product-rail{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.product-art{position:relative;height:510px;background:#e7e1d7;overflow:hidden;display:flex;align-items:flex-end;justify-content:center}
.product-art-light{background:#eeeae2}
.product-art img{width:88%;height:96%;object-fit:contain;transition:transform .8s ease}
.lux-product-card:hover .product-art img{transform:scale(1.035) translateY(-6px)}
.product-index{position:absolute;left:18px;top:18px;z-index:2;font:500 9px/1 Inter,sans-serif;letter-spacing:.2em;color:#777}
.lux-product-meta{padding:19px 2px 0}
.lux-product-meta>div{display:flex;justify-content:space-between;font:500 8px/1 Inter,sans-serif;letter-spacing:.16em;color:#777}
.lux-product-meta i{font-style:normal;color:var(--champagne)}
.lux-product-meta h3{font:500 29px/1 "Cormorant Garamond",serif;margin:12px 0 7px}
.lux-product-meta p{font-size:11px;color:#8b8780;margin:0 0 14px}
.lux-product-meta strong{font:600 13px/1 Inter,sans-serif}

.atelier-section{padding:130px 0;background:#fff}
.atelier-grid{display:grid;grid-template-columns:1fr 1fr;gap:100px;align-items:center}
.atelier-copy>p{max-width:480px;color:#666;font-size:14px;line-height:1.95;margin:35px 0}
.atelier-process{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid var(--line);border-bottom:1px solid var(--line);margin:35px 0 30px}
.atelier-process div{padding:20px 15px 20px 0;border-right:1px solid var(--line)}
.atelier-process div+div{padding-left:15px}
.atelier-process div:last-child{border:0}
.atelier-process span{display:block;font:400 12px/1 Inter,sans-serif;color:var(--champagne);margin-bottom:18px}
.atelier-process b{display:block;font:600 9px/1 Inter,sans-serif;letter-spacing:.17em}
.atelier-process small{display:block;margin-top:8px;font-size:10px;color:#888}
.dark-outline{display:inline-flex;border:1px solid #171717;padding:15px 20px;font:600 9px/1 Inter,sans-serif;letter-spacing:.18em;color:#171717}
.dark-outline span{margin-left:18px;color:var(--champagne)}
.atelier-visual{position:relative;min-height:650px;background:#ece7de;display:flex;align-items:center;justify-content:center;overflow:hidden}
.atelier-visual img{width:82%;height:88%;object-fit:cover;object-position:center;position:relative;z-index:2;filter:grayscale(18%)}
.atelier-frame{position:absolute;width:72%;height:82%;border:1px solid rgba(185,150,89,.65);z-index:3;transform:translate(22px,-22px)}
.atelier-caption{position:absolute;left:25px;bottom:25px;z-index:4;color:#fff}
.atelier-caption span{font:500 8px/1 Inter,sans-serif;letter-spacing:.18em}
.atelier-caption strong{display:block;font:400 28px/.9 "Cormorant Garamond",serif;margin-top:8px}

.private-access{padding:95px 0;background:var(--ivory)}
.private-panel{min-height:420px;background:#171615;color:#fff;display:grid;grid-template-columns:120px 1fr 180px;align-items:center;padding:65px 75px;position:relative;overflow:hidden}
.private-panel:before{content:"";position:absolute;width:520px;height:520px;border:1px solid rgba(185,150,89,.2);border-radius:50%;right:-130px;top:-170px}
.private-mark{font:300 105px/1 "Cormorant Garamond",serif;color:var(--champagne)}
.private-copy{max-width:650px}
.private-copy h2{font-size:65px}
.private-copy p{max-width:520px;color:#aaa;font-size:13px;line-height:1.8;margin:25px 0}
.private-actions{display:flex;align-items:center;gap:28px}
.private-text-link{font:600 9px/1 Inter,sans-serif;letter-spacing:.16em;color:#fff}
.private-side{justify-self:end;text-align:right;position:relative;z-index:2}
.private-side span{display:block;font:500 12px/1 Inter,sans-serif;letter-spacing:.3em}
.private-side small{display:block;margin-top:14px;color:#8e8b86;font:500 8px/1.5 Inter,sans-serif;letter-spacing:.2em}

.journal-section{padding:120px 0;background:#fff}
.journal-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.journal-card{min-height:310px;padding:34px 32px;border-right:1px solid var(--line);display:flex;flex-direction:column;justify-content:flex-end}
.journal-card:last-child{border:0}
.journal-card span{font:500 8px/1 Inter,sans-serif;letter-spacing:.17em;color:var(--champagne)}
.journal-card h3{font:400 32px/.98 "Cormorant Garamond",serif;margin:15px 0 25px}
.journal-card a{font:600 9px/1 Inter,sans-serif;letter-spacing:.17em;color:#171717}
.journal-featured{background:var(--ivory);position:relative}
.journal-number{position:absolute;right:28px;top:20px;font:300 80px/1 "Cormorant Garamond",serif;color:#d8d0c3}

.concierge-strip{padding:85px 0;background:#171615;color:#fff}
.concierge-inner{display:grid;grid-template-columns:1fr 1fr;gap:100px;align-items:end}
.concierge-strip h2{font-size:55px}
.concierge-form label{display:block;font:600 9px/1 Inter,sans-serif;letter-spacing:.18em;color:#9b978f;margin-bottom:12px}
.concierge-form>div{display:flex;border-bottom:1px solid rgba(255,255,255,.3)}
.concierge-form input{flex:1;border:0;outline:0;background:transparent;color:#fff;padding:15px 0;font:400 14px Inter,sans-serif}
.concierge-form input::placeholder{color:#777}
.concierge-form button{border:0;background:transparent;color:var(--champagne);font:600 9px/1 Inter,sans-serif;letter-spacing:.16em}
.concierge-form small{display:block;color:#6f6b65;font-size:9px;margin-top:12px}

@media(max-width:991px){
  .manifesto-grid,.atelier-grid,.concierge-inner{grid-template-columns:1fr;gap:35px}
  .manifesto-number{display:none}
  .category-grid{grid-template-columns:1fr 1fr;grid-template-rows:420px 300px}
  .category-tile-large{grid-row:auto}
  .category-tile-tall{grid-row:auto}
  .lux-product-rail{grid-template-columns:1fr 1fr}
  .lux-product-card:last-child{display:none}
  .private-panel{grid-template-columns:80px 1fr;padding:45px}
  .private-side{display:none}
  .journal-grid{grid-template-columns:1fr}
  .journal-card{border-right:0;border-bottom:1px solid var(--line)}
  .journal-card:last-child{border-bottom:0}
}
@media(max-width:767px){
  .house-manifesto,.category-exhibit,.curated-edit,.atelier-section,.journal-section{padding:80px 0}
  .section-heading-lux,.curated-head{display:block}
  .section-heading-lux>p{margin-top:25px}
  .minimal-link{display:inline-block;margin-top:25px}
  .category-grid{display:grid;grid-template-columns:1fr;grid-template-rows:360px 360px 280px 280px}
  .lux-product-rail{grid-template-columns:1fr}
  .lux-product-card:last-child{display:block}
  .product-art{height:430px}
  .atelier-visual{min-height:500px}
  .atelier-process{grid-template-columns:1fr}
  .atelier-process div,.atelier-process div+div{border-right:0;border-bottom:1px solid var(--line);padding:18px 0}
  .atelier-process div:last-child{border-bottom:0}
  .private-panel{grid-template-columns:1fr;padding:40px 28px}
  .private-mark{font-size:75px;margin-bottom:25px}
  .private-copy h2{font-size:47px}
  .private-actions{flex-direction:column;align-items:flex-start}
  .concierge-inner{gap:45px}
  .concierge-strip h2{font-size:45px}
}


/* =========================================================
   TEVERE 3.0 — CREATIVE EDITORIAL LAYER
   Intentionally more art-directed: runway ticker, object
   storytelling, character index, collector cabinet and
   cinematic close.
========================================================= */
.runway-ticker{background:#151413;color:#fff;overflow:hidden;border-top:1px solid rgba(185,150,89,.35);border-bottom:1px solid rgba(185,150,89,.35);height:47px;display:flex;align-items:center}
.runway-track{display:flex;align-items:center;gap:30px;white-space:nowrap;animation:tevereMarquee 28s linear infinite;font:500 9px/1 Inter,sans-serif;letter-spacing:.25em}
.runway-track i{font-style:normal;color:var(--champagne);font-size:12px}
@keyframes tevereMarquee{to{transform:translateX(-50%)}}

.one-piece-section{padding:135px 0;background:#f8f6f1;overflow:hidden}
.one-piece-intro{display:flex;justify-content:space-between;align-items:start;border-bottom:1px solid var(--line);padding-bottom:24px}
.one-piece-intro p{max-width:300px;margin:0;font:400 15px/1.65 "Cormorant Garamond",serif;color:#69645d}
.one-piece-stage{display:grid;grid-template-columns:43% 57%;min-height:680px}
.one-piece-copy{padding:85px 60px 50px 0;position:relative}
.giant-roman{position:absolute;top:35px;right:30px;font:300 140px/.7 "Cormorant Garamond",serif;color:#ddd4c5}
.one-piece-copy h2{font:300 clamp(65px,7vw,108px)/.8 "Cormorant Garamond",serif;letter-spacing:-.05em;margin:18px 0 30px}
.one-piece-copy h2 em{font-style:italic;color:var(--champagne)}
.one-piece-copy>p{max-width:390px;color:#6e6962;font-size:13px;line-height:1.9}
.object-specs{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid var(--line);border-bottom:1px solid var(--line);margin:42px 0 28px}
.object-specs span{padding:19px 10px 19px 0;border-right:1px solid var(--line)}
.object-specs span+span{padding-left:15px}
.object-specs span:last-child{border:0}
.object-specs b,.object-specs strong{display:block}
.object-specs b{font:500 8px/1 Inter,sans-serif;letter-spacing:.16em;color:#8b867f}
.object-specs strong{margin-top:9px;font:500 10px/1 Inter,sans-serif;letter-spacing:.08em}
.object-link{font:600 9px/1 Inter,sans-serif;letter-spacing:.18em;color:#111}
.object-link span{color:var(--champagne);font-size:14px;margin-left:12px}
.one-piece-art{position:relative;min-height:680px;background:#dfd9ce;display:flex;align-items:flex-end;justify-content:center;overflow:hidden}
.one-piece-art img{height:95%;width:86%;object-fit:contain;position:relative;z-index:3;filter:drop-shadow(0 28px 35px rgba(0,0,0,.12));transition:transform 1s cubic-bezier(.2,.7,.2,1)}
.one-piece-stage:hover .one-piece-art img{transform:scale(1.035) translateY(-8px)}
.art-circle{position:absolute;width:480px;height:480px;border:1px solid rgba(185,150,89,.45);border-radius:50%;top:70px;right:-30px}
.art-circle:after{content:"";position:absolute;inset:28px;border:1px solid rgba(185,150,89,.2);border-radius:50%}
.art-vertical{position:absolute;left:18px;top:50%;transform:rotate(-90deg) translateX(-50%);transform-origin:left top;font:500 8px/1 Inter,sans-serif;letter-spacing:.28em;color:#827d75;z-index:4}
.art-tag{position:absolute;right:25px;bottom:27px;z-index:5;font:500 8px/1.7 Inter,sans-serif;letter-spacing:.16em;color:#5c5750;text-align:right}
.art-tag b{font:400 38px/1 "Cormorant Garamond",serif;color:#171717}

.visual-index{padding:125px 0;background:#fff}
.index-header{display:flex;justify-content:space-between;align-items:end;margin-bottom:65px}
.index-header h2{font:300 clamp(55px,6vw,86px)/.82 "Cormorant Garamond",serif;letter-spacing:-.04em;margin:12px 0 0}
.index-header h2 em{font-style:italic;color:var(--champagne)}
.index-list{border-top:1px solid #171717}
.index-row{display:grid;grid-template-columns:75px 1fr 1.2fr 50px;align-items:center;padding:28px 0;border-bottom:1px solid var(--line);color:#171717;transition:.4s;padding-left:0}
.index-row:hover{padding-left:20px;background:#faf9f6}
.index-row span{font:400 13px/1 "Cormorant Garamond",serif;color:var(--champagne)}
.index-row strong{font:400 clamp(25px,3vw,42px)/1 "Cormorant Garamond",serif}
.index-row small{font:500 8px/1 Inter,sans-serif;letter-spacing:.17em;color:#858078}
.index-row b{font:400 22px/1 Inter,sans-serif;text-align:right}

.cabinet-section{padding:125px 0;background:#171615;color:#fff}
.cabinet-head{display:flex;justify-content:space-between;align-items:end;margin-bottom:55px}
.cabinet-head h2{font:300 clamp(52px,5vw,78px)/.85 "Cormorant Garamond",serif;margin:13px 0 0}
.cabinet-head h2 em{font-style:italic;color:var(--champagne)}
.cabinet-note{text-align:right;color:#77736c;font:500 8px/1.7 Inter,sans-serif;letter-spacing:.18em}
.cabinet-grid{display:grid;grid-template-columns:1fr 1.2fr 1fr 1fr;gap:12px;min-height:450px}
.cabinet-card{min-height:450px;position:relative;overflow:hidden;padding:27px}
.cabinet-dark{background:#22201e}
.cabinet-dark>span,.cabinet-image>div span,.cabinet-paper>span{font:500 8px/1 Inter,sans-serif;letter-spacing:.18em;color:var(--champagne)}
.cabinet-dark h3{font:400 48px/.82 "Cormorant Garamond",serif;margin-top:150px}
.cabinet-bottom{position:absolute;bottom:28px;left:27px;border-top:1px solid rgba(255,255,255,.15);width:70%;padding-top:14px}
.cabinet-bottom b{font:400 28px/1 "Cormorant Garamond",serif;color:var(--champagne)}
.cabinet-bottom small{font:500 8px/1 Inter,sans-serif;letter-spacing:.16em;color:#777;margin-left:10px}
.cabinet-image{background:#ded8ce;padding:0}
.cabinet-image img{width:100%;height:100%;object-fit:contain;transition:transform .8s}
.cabinet-image:hover img{transform:scale(1.05)}
.cabinet-image>div{position:absolute;inset:27px;color:#222}
.cabinet-image>div strong{display:block;margin-top:170px;font:400 32px/.85 "Cormorant Garamond",serif}
.cabinet-paper{background:#eeeae2;color:#181716}
.cabinet-paper h3{font:400 52px/.82 "Cormorant Garamond",serif;margin-top:125px}
.cabinet-paper>small{position:absolute;bottom:28px;font:500 8px/1 Inter,sans-serif;letter-spacing:.13em;color:#777}
.seal{position:absolute;right:25px;top:25px;width:58px;height:58px;border:1px solid var(--champagne);border-radius:50%;display:flex;align-items:center;justify-content:center;font:400 30px "Cormorant Garamond",serif;color:var(--champagne)}
.cabinet-last{display:flex;flex-direction:column;justify-content:space-between}
.cabinet-last h3{margin:0;font-size:39px}
.cabinet-last a{font:600 8px/1 Inter,sans-serif;letter-spacing:.17em;color:#fff}

.cinematic-close{height:650px;background:#e7e2d9;position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center}
.cinematic-word{position:absolute;inset:50% auto auto 50%;transform:translate(-50%,-50%);font:300 min(23vw,310px)/.7 "Cormorant Garamond",serif;letter-spacing:-.07em;color:rgba(18,18,18,.045);white-space:nowrap}
.cinematic-content{position:relative;text-align:center;z-index:2}
.cinematic-content>span{font:500 9px/1 Inter,sans-serif;letter-spacing:.3em;color:#777}
.cinematic-content h2{font:300 clamp(65px,8vw,120px)/.78 "Cormorant Garamond",serif;letter-spacing:-.05em;margin:25px 0 42px}
.cinematic-content h2 em{font-style:italic;color:var(--champagne)}
.cinematic-content a{display:inline-flex;gap:18px;align-items:center;color:#111;border-bottom:1px solid #111;padding-bottom:10px;font:600 9px/1 Inter,sans-serif;letter-spacing:.18em}
.cinematic-content a b{color:var(--champagne);font-size:15px}
.cinematic-corner{position:absolute;right:35px;bottom:30px;font:500 8px/1.7 Inter,sans-serif;letter-spacing:.18em;color:#858078;text-align:right}

@media(max-width:991px){
  .one-piece-stage{grid-template-columns:1fr}
  .one-piece-copy{padding-right:0;padding-bottom:65px}
  .one-piece-art{min-height:560px}
  .cabinet-grid{grid-template-columns:1fr 1fr}
  .cabinet-card{min-height:400px}
  .index-row{grid-template-columns:55px 1fr 45px}
  .index-row small{display:none}
}
@media(max-width:767px){
  .one-piece-intro,.index-header,.cabinet-head{display:block}
  .one-piece-intro p{margin-top:18px}
  .one-piece-copy h2{font-size:63px}
  .object-specs{grid-template-columns:1fr}
  .object-specs span,.object-specs span+span{border-right:0;border-bottom:1px solid var(--line);padding:15px 0}
  .object-specs span:last-child{border-bottom:0}
  .one-piece-art{min-height:470px}
  .art-circle{width:330px;height:330px;top:65px}
  .index-header{margin-bottom:40px}
  .index-row{grid-template-columns:40px 1fr 30px;padding:22px 0}
  .index-row strong{font-size:28px}
  .cabinet-head h2{font-size:55px}
  .cabinet-note{text-align:left;margin-top:25px}
  .cabinet-grid{grid-template-columns:1fr}
  .cabinet-card{min-height:360px}
  .cabinet-dark h3{margin-top:110px}
  .cabinet-paper h3{margin-top:105px}
  .cinematic-close{height:520px}
  .cinematic-corner{right:20px;bottom:20px}
}


/* ===== V4 — PRIVATE HOUSE / DIGITAL EXHIBITION LAYER ===== */
.tevere-portal{position:relative;min-height:78vh;background:#f5f1e8;color:#171614;overflow:hidden;padding:44px 6vw 70px;display:flex;align-items:center}
.portal-noise{position:absolute;inset:0;opacity:.08;background-image:radial-gradient(#171614 .55px,transparent .55px);background-size:7px 7px;pointer-events:none}
.portal-topline{position:absolute;top:28px;left:6vw;right:6vw;display:flex;justify-content:space-between;font:500 10px/1 Inter,sans-serif;letter-spacing:.25em;text-transform:uppercase}
.portal-grid{width:100%;display:grid;grid-template-columns:70px 1fr 360px;gap:5vw;align-items:center}
.portal-side{height:100%;display:flex;align-items:center;justify-content:center;border-right:1px solid rgba(23,22,20,.2)}
.portal-vertical{writing-mode:vertical-rl;transform:rotate(180deg);font:500 9px/1 Inter,sans-serif;letter-spacing:.3em}
.portal-main{max-width:760px}
.portal-main h2{font:400 clamp(55px,8vw,125px)/.82 "Cormorant Garamond",serif;letter-spacing:-.045em;margin:15px 0 32px}
.portal-main h2 em{font-style:italic;font-weight:300}
.portal-copy{max-width:450px;font:400 14px/1.8 Inter,sans-serif;color:#57534c}
.portal-actions{display:flex;gap:28px;margin-top:40px}
.portal-link{font:500 10px/1 Inter,sans-serif;letter-spacing:.2em;text-transform:uppercase;text-decoration:none;color:inherit;border-bottom:1px solid #171614;padding-bottom:11px}
.portal-link span{margin-left:20px}.portal-link.muted{opacity:.5}
.portal-orbit{height:330px;width:330px;position:relative;justify-self:end;display:grid;place-items:center}
.orbit-ring{position:absolute;border:1px solid rgba(23,22,20,.25);border-radius:50%}
.ring-a{inset:12%}.ring-b{inset:0;border-style:dashed;animation:orbitspin 28s linear infinite}
.orbit-core{width:116px;height:116px;border:1px solid #171614;border-radius:50%;display:grid;place-items:center;background:#f5f1e8;z-index:2}
.orbit-core span{font:italic 72px/1 "Cormorant Garamond",serif}
.orbit-label{position:absolute;bottom:12px;right:8px;font:500 8px/1.5 Inter,sans-serif;letter-spacing:.25em;text-align:right}
@keyframes orbitspin{to{transform:rotate(360deg)}}

.tevere-dossier{padding:120px 6vw 135px;background:#fbfaf7;color:#171614}
.dossier-head{display:flex;justify-content:space-between;align-items:end;gap:40px;margin-bottom:65px}
.dossier-head h2{font:400 clamp(48px,6.5vw,98px)/.88 "Cormorant Garamond",serif;letter-spacing:-.04em;margin:14px 0 0}
.dossier-head h2 em{font-style:italic}.dossier-intro{max-width:280px;font:400 12px/1.7 Inter,sans-serif;color:#77736b}
.dossier-cards{display:grid;grid-template-columns:repeat(4,1fr);min-height:410px}
.dossier-card{position:relative;padding:34px 30px;border-top:1px solid #1b1916;border-bottom:1px solid #1b1916;min-height:390px;display:flex;flex-direction:column;justify-content:flex-end;overflow:hidden;transition:transform .5s ease}
.dossier-card+.dossier-card{border-left:1px solid rgba(23,22,20,.18)}
.dossier-card:hover{transform:translateY(-12px);z-index:2}
.dossier-card.dark{background:#1b1916;color:#f4f0e7}.dossier-card.image-card{background:linear-gradient(180deg,rgba(20,18,16,.05),rgba(20,18,16,.72)),url("/images/furr.png") center/cover;color:#fff}.dossier-card.line-card:before{content:"";position:absolute;width:260px;height:260px;border:1px solid rgba(23,22,20,.22);border-radius:50%;top:50px;right:-80px}.dossier-no{position:absolute;top:28px;left:30px;font:400 15px/1 "Cormorant Garamond",serif}.dossier-type{position:absolute;top:31px;right:28px;font:500 8px/1 Inter,sans-serif;letter-spacing:.22em}.dossier-card h3{font:400 42px/.87 "Cormorant Garamond",serif;letter-spacing:-.035em;margin:0 0 22px}.dossier-card p{font:400 11px/1.6 Inter,sans-serif;opacity:.65;max-width:190px;margin:0 0 24px}.dossier-card a{font:500 9px/1 Inter,sans-serif;letter-spacing:.18em;text-transform:uppercase;color:inherit;text-decoration:none}

.tevere-counterpoint{min-height:340px;background:#171614;color:#f4f0e7;display:grid;grid-template-columns:1fr 1.5fr 1fr;align-items:center;padding:70px 6vw;gap:40px}
.counterpoint-left,.counterpoint-right{display:flex;flex-direction:column;gap:25px;font:500 9px/1 Inter,sans-serif;letter-spacing:.25em}.counterpoint-left strong,.counterpoint-right strong{font:300 65px/1 "Cormorant Garamond",serif;letter-spacing:0}.counterpoint-right{text-align:right;align-items:flex-end}.counterpoint-center{text-align:center}.counterpoint-center p{font:400 clamp(32px,4.5vw,70px)/.85 "Cormorant Garamond",serif;letter-spacing:-.035em;margin:24px 0}.counterpoint-center em{font-style:italic}.hairline{height:1px;background:rgba(244,240,231,.28);width:100%}

@media(max-width:900px){
 .portal-grid{grid-template-columns:1fr}.portal-side{display:none}.portal-orbit{justify-self:start;width:230px;height:230px;margin-top:30px}.portal-actions{flex-wrap:wrap}
 .dossier-head{display:block}.dossier-intro{margin-top:25px}.dossier-cards{grid-template-columns:1fr 1fr}.dossier-card+.dossier-card{border-left:0}.dossier-card:nth-child(even){border-left:1px solid rgba(23,22,20,.18)}
 .tevere-counterpoint{grid-template-columns:1fr;text-align:center}.counterpoint-right{align-items:center;text-align:center}
}
@media(max-width:560px){
 .tevere-portal{min-height:auto;padding:90px 7vw 70px}.portal-topline{font-size:8px}.portal-main h2{font-size:58px}.portal-orbit{width:200px;height:200px}
 .tevere-dossier{padding:85px 7vw}.dossier-cards{grid-template-columns:1fr}.dossier-card{min-height:330px}.dossier-card+.dossier-card,.dossier-card:nth-child(even){border-left:0;border-top:0}
 .tevere-counterpoint{padding:65px 7vw}.counterpoint-center p{font-size:40px}
}

/* =========================================================
   V5 — PRODUCT DISPLAY LABORATORY
   18 radically different product presentation systems
   ========================================================= */
.product-lab{background:#f7f3eb;color:#171614;padding:0 5vw 120px;overflow:hidden}
.lab-intro{min-height:65vh;display:flex;align-items:end;justify-content:space-between;gap:50px;padding:110px 2vw 90px;border-bottom:1px solid rgba(23,22,20,.22)}
.lab-intro h2{font:400 clamp(58px,8vw,135px)/.78 "Cormorant Garamond",serif;letter-spacing:-.055em;margin:18px 0 0}.lab-intro h2 em{font-style:italic}.lab-intro>p{max-width:300px;font:400 12px/1.8 Inter,sans-serif;color:#716d65}
.display-exp{position:relative;padding:85px 0 100px;border-bottom:1px solid rgba(23,22,20,.16)}
.exp-meta{display:flex;align-items:center;gap:18px;margin:0 0 38px;font:500 9px/1 Inter,sans-serif;letter-spacing:.22em;text-transform:uppercase}.exp-meta b{font:400 20px/1 "Cormorant Garamond",serif;letter-spacing:0}.exp-meta span{opacity:.65}
.lab-product{position:relative;background:#eeeae2;min-width:210px;padding:15px;transition:.5s ease;overflow:hidden}.lab-product:hover{transform:translateY(-8px)}.lab-product>span{font:400 10px/1 "Cormorant Garamond",serif}.lab-img{height:250px;display:grid;place-items:center}.lab-img img{max-width:100%;max-height:100%;object-fit:contain}.lab-product h3{font:500 11px/1.2 Inter,sans-serif;letter-spacing:.09em;margin:12px 0 5px}.lab-product p{font:400 9px/1 Inter,sans-serif;opacity:.55;margin:0}
.cabinet-row{display:grid;grid-template-columns:repeat(1,1fr);max-width:300px}.cabinet-row .lab-product{min-width:0}.cabinet-row .lab-img{height:370px;background:#1a1816}.cabinet-row .lab-product h3,.cabinet-row .lab-product p{color:#f7f3eb}
.monument{min-height:620px;background:#1a1816;color:#f4f0e8;display:grid;grid-template-columns:34% 66%;align-items:center;overflow:hidden}.monument-copy{padding:60px}.monument-copy small,.portrait-caption span,.black-room small,.pedestal-copy small{font:500 8px/1 Inter,sans-serif;letter-spacing:.25em}.monument-copy h3{font:400 clamp(48px,6vw,90px)/.82 "Cormorant Garamond",serif;margin:25px 0 50px}.monument-copy h3 em{font-style:italic}.monument-copy a,.portrait-caption a,.black-room a,.pedestal-copy a{font:500 9px/1 Inter,sans-serif;letter-spacing:.2em;color:inherit;text-decoration:none;border-bottom:1px solid currentColor;padding-bottom:10px}.monument-image{height:620px;display:grid;place-items:center;background:radial-gradient(circle at center,#48433a 0,#1a1816 62%)}.monument-image img{height:90%;max-width:90%;object-fit:contain}
.index-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:1px;background:#bbb5aa;border:1px solid #bbb5aa}.index-grid .lab-product{min-width:0}.index-grid .lab-img{height:190px}.floating-archive{height:680px;position:relative;background:#e9e3d8;overflow:hidden}.float-item{position:absolute;width:240px;padding:12px;background:#f7f3eb;box-shadow:0 18px 45px rgba(0,0,0,.12);transition:.6s}.float-item img{width:100%;height:260px;object-fit:contain}.float-item span{display:block;font:500 8px/1 Inter,sans-serif;letter-spacing:.16em;margin-top:10px}.fi-a{left:4%;top:70px;transform:rotate(-5deg)}.fi-b{left:31%;top:20px;transform:rotate(3deg)}.fi-c{left:58%;top:100px;transform:rotate(-2deg)}.fi-d{right:4%;top:260px;transform:rotate(6deg)}.float-item:hover{transform:rotate(0) scale(1.06);z-index:5}
.runway-strip{display:flex;gap:12px;overflow:hidden}.runway-strip .lab-product{min-width:280px;flex:0 0 280px}.runway-strip .lab-img{height:340px}
.portrait-display{min-height:700px;display:grid;grid-template-columns:70% 30%;background:#e8e1d6}.portrait-image{display:grid;place-items:center;overflow:hidden}.portrait-image img{height:90%;max-width:90%;object-fit:contain}.portrait-caption{padding:70px 35px;border-left:1px solid rgba(23,22,20,.2);display:flex;flex-direction:column;justify-content:end}.portrait-caption h3{font:400 60px/.82 "Cormorant Garamond",serif;margin:20px 0}.portrait-caption h3 em{font-style:italic}.portrait-caption p{font:11px/1.6 Inter,sans-serif;opacity:.6}.portrait-caption strong{font:400 12px/1 "Cormorant Garamond",serif;margin-top:20px}
.material-table{display:grid;grid-template-columns:1fr 1fr 1.2fr 1fr;min-height:430px;background:#171614;color:#f4f0e7;gap:1px}.material-table>div{position:relative;overflow:hidden}.material-table img{width:100%;height:100%;object-fit:cover;opacity:.82}.material-table>div>span{position:absolute;left:18px;bottom:18px;font:500 8px/1 Inter,sans-serif;letter-spacing:.2em}.material-copy{display:flex;flex-direction:column;justify-content:center;padding:35px}.material-copy small{font:500 8px/1 Inter,sans-serif;letter-spacing:.2em;opacity:.5}.material-copy h3{font:400 48px/.85 "Cormorant Garamond",serif}.material-copy h3 em{font-style:italic}
.split-screen{display:grid;grid-template-columns:1fr .7fr 1fr;min-height:570px;background:#1b1917;color:#f4f0e7}.split-screen>div{position:relative;overflow:hidden;border-right:1px solid rgba(255,255,255,.16)}.split-screen img{width:100%;height:100%;object-fit:cover}.split-screen>div>span{position:absolute;left:20px;bottom:20px;font:500 8px/1 Inter,sans-serif;letter-spacing:.2em}.split-screen>div:nth-child(2){display:flex;flex-direction:column;justify-content:center;padding:40px}.split-word{font:400 55px/.8 "Cormorant Garamond",serif}.split-screen p{font:11px/1.7 Inter,sans-serif;opacity:.55;margin:35px 0}.split-screen a{color:inherit;text-decoration:none;font:500 8px/1 Inter,sans-serif;letter-spacing:.2em}
.constellation{height:650px;position:relative;background:#f0ebe2}.const-main,.const-node{position:absolute;background:#e7e1d6;padding:15px;box-shadow:0 15px 40px rgba(0,0,0,.1)}.const-main{width:360px;left:34%;top:95px}.const-node{width:180px}.const-node img,.const-main img{width:100%;height:100%;object-fit:contain}.const-main{height:450px}.const-node{height:230px}.const-node b,.const-main b{position:absolute;top:8px;left:10px;font:400 12px "Cormorant Garamond",serif}.n1{left:8%;top:40px}.n2{right:7%;top:70px}.n3{left:15%;bottom:25px}.const-line{position:absolute;height:1px;background:#8b857a;transform-origin:left center}.l1{width:220px;left:23%;top:160px;transform:rotate(18deg)}.l2{width:230px;left:64%;top:220px;transform:rotate(-18deg)}.l3{width:190px;left:30%;top:500px;transform:rotate(-20deg)}
.contact-sheet{display:grid;grid-template-columns:repeat(6,1fr);gap:1px;background:#bdb6aa}.contact-sheet .lab-product{min-width:0}.contact-sheet .lab-img{height:190px}
.dark-lab{background:#171614;color:#f4f0e7;margin:0 -5vw;padding-left:5vw;padding-right:5vw}.black-room{min-height:650px;display:grid;grid-template-columns:65% 35%;background:#11100f;overflow:hidden}.black-room img{width:100%;height:650px;object-fit:contain;background:radial-gradient(circle,#403a31,#11100f 65%)}.black-room>div{display:flex;flex-direction:column;justify-content:center;padding:50px}.black-room h3{font:400 62px/.82 "Cormorant Garamond",serif;margin:25px 0}.black-room h3 em{font-style:italic}.black-room p{font:11px/1.7 Inter,sans-serif;opacity:.5;margin-bottom:40px}
.editorial-wall{min-height:680px;display:grid;grid-template-columns:1.5fr .7fr .7fr;grid-template-rows:1fr 1fr;gap:10px;background:#1b1917;padding:10px;color:#f5f1e9}.wall-hero{grid-row:span 2;position:relative}.wall-small{position:relative}.editorial-wall img{width:100%;height:100%;object-fit:cover}.editorial-wall span{position:absolute;left:15px;bottom:15px;font:500 8px/1 Inter,sans-serif;letter-spacing:.18em}.wall-copy{display:flex;align-items:center;padding:30px;font:italic 45px/.85 "Cormorant Garamond",serif}
.twin{display:grid;grid-template-columns:1fr 1fr;gap:2px;background:#171614}.twin>div{background:#e9e3da;min-height:600px;padding:35px}.twin img{height:480px;width:100%;object-fit:contain}.twin h3{font:400 42px/.8 "Cormorant Garamond",serif;margin:15px 0 5px}.twin p{font:10px/1 Inter,sans-serif;opacity:.5}
.rail-stage{position:relative;overflow:hidden}.rail-track{display:flex;gap:14px;width:max-content;transition:transform .7s ease}.rail-track .lab-product{width:290px;flex:0 0 290px}.rail-track .lab-img{height:340px}.rail-controls{display:flex;justify-content:flex-end;gap:8px;margin-top:20px}.rail-controls button{width:45px;height:45px;border:1px solid #171614;background:transparent;border-radius:50%;cursor:pointer}
.reveal-object{height:700px;position:relative;display:grid;place-items:center;background:#ded7cb;overflow:hidden}.reveal-back{position:absolute;width:600px;height:600px;border:1px solid rgba(23,22,20,.2);border-radius:50%}.reveal-object>img{height:85%;max-width:75%;object-fit:contain;z-index:2}.reveal-overlay{position:absolute;inset:0;z-index:3;display:flex;flex-direction:column;justify-content:space-between;padding:45px}.reveal-overlay span{font:500 8px/1 Inter,sans-serif;letter-spacing:.22em}.reveal-overlay h3{font:400 clamp(55px,7vw,105px)/.78 "Cormorant Garamond",serif;margin:0}.reveal-overlay h3 em{font-style:italic}.reveal-overlay a{align-self:flex-start;font:500 9px/1 Inter,sans-serif;letter-spacing:.2em;color:#171614;text-decoration:none;border-bottom:1px solid #171614;padding-bottom:9px}
.type-product{height:650px;background:#171614;color:#f4f0e7;position:relative;display:grid;place-items:center;overflow:hidden}.giant-type{position:absolute;font:400 30vw/.7 "Cormorant Garamond",serif;color:rgba(244,240,231,.07);letter-spacing:-.08em}.type-product img{height:90%;max-width:70%;object-fit:contain;z-index:2}.type-info{position:absolute;right:5%;bottom:8%;font:500 8px/1.8 Inter,sans-serif;letter-spacing:.18em;text-align:right}
.collector-list{border-top:1px solid #171614}.list-row{display:grid;grid-template-columns:70px 1.3fr 1fr 120px;align-items:center;gap:20px;padding:27px 10px;border-bottom:1px solid rgba(23,22,20,.2);transition:.4s}.list-row:hover{background:#171614;color:#f4f0e7;padding-left:25px}.list-row span{font:400 13px "Cormorant Garamond",serif}.list-row b{font:400 27px "Cormorant Garamond",serif}.list-row em{font:italic 12px "Cormorant Garamond",serif;opacity:.6}.list-row strong{font:500 8px Inter,sans-serif;letter-spacing:.15em;text-align:right}
.pedestal{min-height:650px;background:#1b1917;color:#f4f0e7;display:grid;grid-template-columns:60% 40%;align-items:center}.pedestal-image{height:650px;display:grid;place-items:center;background:radial-gradient(circle at center,#494237,#1b1917 65%)}.pedestal-image img{height:85%;max-width:85%;object-fit:contain}.pedestal-copy{padding:55px}.pedestal-copy h3{font:400 60px/.82 "Cormorant Garamond",serif;margin:25px 0 45px}.pedestal-copy h3 em{font-style:italic}

/* Responsive */
@media(max-width:900px){
 .lab-intro{min-height:55vh;display:block;padding-top:90px}.lab-intro>p{margin-top:35px}.index-grid,.contact-sheet{grid-template-columns:repeat(3,1fr)}.monument{grid-template-columns:1fr}.monument-image{height:500px}.portrait-display{grid-template-columns:1fr}.portrait-image{min-height:520px}.portrait-caption{border-left:0;border-top:1px solid rgba(23,22,20,.2);min-height:330px}.material-table{grid-template-columns:1fr 1fr}.material-copy{min-height:300px}.split-screen{grid-template-columns:1fr 1fr}.split-screen>div:nth-child(2){display:none}.const-main{left:30%;width:300px}.black-room{grid-template-columns:1fr}.black-room img{height:500px}.black-room>div{min-height:330px}.editorial-wall{grid-template-columns:1fr 1fr}.wall-hero{grid-row:span 2}.twin>div{min-height:500px}.twin img{height:390px}.pedestal{grid-template-columns:1fr}.pedestal-image{height:520px}
}
@media(max-width:560px){
 .product-lab{padding:0 7vw 80px}.lab-intro{padding:80px 0}.lab-intro h2{font-size:58px}.display-exp{padding:65px 0 75px}.index-grid,.contact-sheet{grid-template-columns:1fr 1fr}.index-grid .lab-img,.contact-sheet .lab-img{height:150px}.floating-archive{height:600px}.float-item{width:145px}.float-item img{height:160px}.fi-a{left:2%;top:55px}.fi-b{left:36%;top:20px}.fi-c{left:12%;top:285px}.fi-d{right:2%;top:330px}.runway-strip .lab-product{min-width:220px;flex-basis:220px}.runway-strip .lab-img,.rail-track .lab-img{height:270px}.portrait-image{min-height:430px}.material-table{grid-template-columns:1fr}.material-table>div{min-height:300px}.constellation{height:540px}.const-main{left:28%;top:85px;width:210px;height:310px}.const-node{width:105px;height:145px}.n1{left:0}.n2{right:0}.n3{left:2%;bottom:20px}.l1{width:120px;left:23%;top:130px}.l2{width:120px;left:60%;top:180px}.l3{width:110px;left:28%;top:400px}.contact-sheet .lab-product:nth-child(n+7){display:none}.black-room img{height:390px}.editorial-wall{grid-template-columns:1fr 1fr;min-height:520px}.wall-hero{grid-row:span 2}.wall-copy{font-size:32px}.twin{grid-template-columns:1fr}.twin>div{min-height:450px}.twin img{height:330px}.reveal-object{height:550px}.reveal-back{width:360px;height:360px}.type-product{height:540px}.collector-list .list-row{grid-template-columns:40px 1fr 75px}.collector-list .list-row em{display:none}.list-row b{font-size:20px}.pedestal-image{height:430px}.pedestal-copy h3{font-size:46px}
}

/* =========================================================
   V6 — TEVERE EIGHT SIGNATURE PRODUCT DISPLAY SYSTEMS
   ========================================================= */
.tevere-showcase{color:#171614;overflow:hidden}
.tevere-showcase section{position:relative;padding:115px 6vw;border-bottom:1px solid rgba(23,22,20,.18)}
.section-index{position:absolute;left:2vw;top:120px;font:400 15px/1 "Cormorant Garamond",serif;opacity:.65}
.wardrobe-section{display:grid;grid-template-columns:34% 66%;gap:45px}.wardrobe-heading{padding-left:4vw}.wardrobe-heading h2,.edit-top h2,.cabinet-heading h2,.material-head h2,.split-header h2{font:400 clamp(52px,6.8vw,100px)/.82 "Cormorant Garamond",serif;letter-spacing:-.045em;margin:18px 0 25px}.wardrobe-heading h2 em,.edit-top h2 em,.cabinet-heading h2 em,.material-head h2 em,.split-header h2 em{font-style:italic}.wardrobe-heading>p:last-child,.edit-top>p,.cabinet-heading>p{font:11px/1.7 Inter,sans-serif;color:#777168;max-width:280px}.wardrobe-grid{display:grid;grid-template-columns:1.35fr 1fr;grid-template-rows:1fr 1fr;gap:2px;background:#171614}.wardrobe-item{position:relative;min-height:310px;background:#eae4da;overflow:hidden;color:#171614;text-decoration:none}.wardrobe-item.hero{grid-row:span 2}.wardrobe-item img{width:100%;height:100%;object-fit:contain;transition:transform .8s}.wardrobe-item:hover img{transform:scale(1.06)}.wardrobe-item span,.wardrobe-item strong{position:absolute;left:18px;z-index:2}.wardrobe-item span{top:18px;font:500 8px Inter,sans-serif;letter-spacing:.17em}.wardrobe-item strong{bottom:18px;font:400 22px "Cormorant Garamond",serif}

.edit-section{background:#fbfaf7}.edit-top{display:flex;justify-content:space-between;align-items:end;padding-left:4vw}.edit-line{display:grid;grid-template-columns:repeat(4,1fr);gap:2px;background:#c5beb2;margin-top:55px}.edit-line article{position:relative;background:#eee9df;padding:15px;min-height:430px;transition:.5s}.edit-line article:hover{transform:translateY(-10px);z-index:2}.edit-line article>b{font:400 13px "Cormorant Garamond",serif}.edit-line img{display:block;width:100%;height:300px;object-fit:contain}.edit-line h3{font:500 10px Inter,sans-serif;letter-spacing:.12em;margin:10px 0 5px}.edit-line span{font:400 9px Inter,sans-serif;opacity:.5}.edit-line .featured-edit{background:#1b1917;color:#f5f1e8}.edit-footer{display:flex;justify-content:space-between;margin-top:25px;font:500 8px Inter,sans-serif;letter-spacing:.18em}.edit-footer a{color:inherit;text-decoration:none;border-bottom:1px solid currentColor;padding-bottom:8px}

.atelier-section{background:#e7dfd3}.atelier-layout{display:grid;grid-template-columns:30% 55% 15%;min-height:650px;margin-left:4vw}.atelier-copy{display:flex;flex-direction:column;justify-content:center;padding-right:45px}.atelier-copy h2{font:400 clamp(48px,5.5vw,85px)/.82 "Cormorant Garamond",serif;margin:18px 0 30px;letter-spacing:-.04em}.atelier-copy h2 em{font-style:italic}.atelier-copy>p:not(.eyebrow){font:11px/1.8 Inter,sans-serif;color:#6f6a62;max-width:290px;margin-bottom:35px}.atelier-copy a{font:500 8px Inter,sans-serif;letter-spacing:.2em;color:inherit;text-decoration:none;border-bottom:1px solid;padding-bottom:9px;align-self:flex-start}.atelier-image{position:relative;display:grid;place-items:center;background:#1a1816;overflow:hidden}.atelier-image img{height:92%;width:92%;object-fit:contain}.atelier-stamp{position:absolute;right:25px;bottom:25px;width:75px;height:75px;border:1px solid rgba(245,241,232,.5);border-radius:50%;display:grid;place-items:center;text-align:center;color:#f5f1e8;font:500 7px/1.4 Inter,sans-serif;letter-spacing:.12em}.atelier-note{border-left:1px solid rgba(23,22,20,.2);display:flex;flex-direction:column;justify-content:space-between;padding:25px 15px;font:500 7px/1.5 Inter,sans-serif;letter-spacing:.17em}.atelier-note strong{font:400 25px/.9 "Cormorant Garamond",serif}

.cabinet-section{background:#171614;color:#f4f0e7;display:grid;grid-template-columns:30% 70%;min-height:800px}.cabinet-heading{padding-left:4vw;align-self:center}.cabinet-heading>p{color:#aaa59b}.cabinet-display{display:grid;grid-template-columns:1fr 55px;align-items:center;gap:25px}.cabinet-frame{position:relative;background:radial-gradient(circle,#474136,#1a1816 65%);display:grid;place-items:center;border:1px solid rgba(244,240,231,.18)}.cabinet-frame img{height:82%;max-width:82%;object-fit:contain}.cab-no{position:absolute;left:20px;top:18px;font:500 8px Inter,sans-serif;letter-spacing:.18em}.cab-info{position:absolute;left:25px;bottom:22px}.cab-info h3{font:400 25px "Cormorant Garamond",serif;margin:0 0 6px}.cab-info p{font:500 7px Inter,sans-serif;letter-spacing:.16em;opacity:.55}.cab-info strong{position:absolute;left:400px;bottom:3px;font:400 11px "Cormorant Garamond",serif}.cab-side{height:620px;border-left:1px solid rgba(244,240,231,.2);display:flex;flex-direction:column;justify-content:space-between;align-items:center;padding:20px 0}.cab-side span{writing-mode:vertical-rl;font:500 7px Inter,sans-serif;letter-spacing:.22em}.cab-side b{font:400 30px "Cormorant Garamond",serif}.cab-side i{font-style:normal;font-size:15px}

.portrait-section{background:#f7f7f7;}
.portrait-stage {
    display: grid;
    grid-template-columns: 58% 42%;
    min-height: 720px;
    
    margin-left: 4vw;
    position: relative
}.portrait-label{position:absolute;top:25px;left:25px;font:500 8px Inter,sans-serif;letter-spacing:.2em}.portrait-image{display:grid;place-items:center;overflow:hidden}.portrait-image img{width:90%;height:90%;object-fit:contain}.portrait-copy{border-left:1px solid rgba(23,22,20,.2);display:flex;flex-direction:column;justify-content:center;padding:60px}.portrait-copy h2{font:400 clamp(65px,7vw,105px)/.75 "Cormorant Garamond",serif;letter-spacing:-.05em;margin:18px 0}.portrait-copy h2 em{font-style:italic}.portrait-copy>p:not(.eyebrow){font:11px/1.7 Inter,sans-serif;max-width:260px;color:#6e6961}.portrait-meta{display:flex;flex-direction:column;gap:10px;margin:30px 0;font:500 8px Inter,sans-serif;letter-spacing:.17em}.portrait-copy a{font:500 8px Inter,sans-serif;letter-spacing:.2em;text-decoration:none;color:inherit;border-bottom:1px solid;padding-bottom:10px;align-self:flex-start}

.material-section{background:#1b1917;color:#f4f0e8}.material-head{margin-left:4vw;margin-bottom:45px}.material-grid{margin-left:4vw;display:grid;grid-template-columns:1fr 1fr 1.2fr 1fr;grid-template-rows:300px 150px;gap:2px;background:#454139}.material-tile,.material-center,.material-detail{position:relative;overflow:hidden;background:#24221f}.material-tile img{width:100%;height:100%;object-fit:cover}.material-tile span{position:absolute;bottom:15px;left:15px;font:500 7px Inter,sans-serif;letter-spacing:.2em}.material-center{grid-column:3;grid-row:span 2;padding:45px;display:flex;flex-direction:column;justify-content:center}.material-center small{font:500 7px Inter,sans-serif;letter-spacing:.2em;opacity:.5}.material-center h3{font:400 46px/.82 "Cormorant Garamond",serif;margin:22px 0}.material-center h3 em{font-style:italic}.material-center p{font:10px/1.7 Inter,sans-serif;opacity:.5}.material-detail{grid-column:1/3;display:flex;align-items:center;gap:40px;padding:25px}.material-detail span{font:400 45px "Cormorant Garamond",serif}.material-detail b{font:500 8px Inter,sans-serif;letter-spacing:.2em}.material-detail i{margin-left:auto;font:400 9px Inter,sans-serif;opacity:.45}

.split-section{}.split-header{margin-left:4vw;margin-bottom:45px}.split-display{margin-left:4vw;display:grid;grid-template-columns:1fr .45fr 1fr;min-height:650px;background:#171614;color:#f4f0e8}.split-half{position:relative;overflow:hidden;border-right:1px solid rgba(244,240,231,.15)}.split-half img{width:100%;height:100%;object-fit:cover}.split-half div{position:absolute;bottom:20px;left:20px;display:flex;flex-direction:column;gap:7px}.split-half span,.split-center>span{font:500 7px Inter,sans-serif;letter-spacing:.2em;opacity:.65}.split-half b{font:400 28px "Cormorant Garamond",serif}.split-center{display:flex;flex-direction:column;justify-content:center;padding:35px}.split-center p{font:11px/1.7 Inter,sans-serif;opacity:.55;margin:25px 0}.split-center a{color:inherit;text-decoration:none;font:500 7px Inter,sans-serif;letter-spacing:.2em;border-bottom:1px solid;padding-bottom:9px;align-self:flex-start}

.blackroom-section{background:#0f0e0d;color:#f4f0e8;padding-bottom:130px}.blackroom{margin-left:4vw;display:grid;grid-template-columns:62% 38%;min-height:680px;background:#151311}.blackroom-image{position:relative;display:grid;place-items:center;background:radial-gradient(circle,#4a4337,#151311 65%)}.blackroom-image img{width:90%;height:70%;object-fit:contain}.blackroom-image span{position:absolute;left:22px;bottom:20px;font:500 7px Inter,sans-serif;letter-spacing:.2em}.blackroom-copy{padding:60px;display:flex;flex-direction:column;justify-content:center;border-left:1px solid rgba(244,240,231,.15)}.blackroom-copy h2{font:400 clamp(55px,6vw,90px)/.8 "Cormorant Garamond",serif;letter-spacing:-.045em;margin:22px 0 30px}.blackroom-copy h2 em{font-style:italic}.blackroom-copy>p:not(.eyebrow){font:11px/1.8 Inter,sans-serif;opacity:.5;max-width:260px;margin-bottom:35px}.blackroom-copy a{color:inherit;text-decoration:none;font:500 8px Inter,sans-serif;letter-spacing:.2em;border-bottom:1px solid;padding-bottom:10px;align-self:flex-start}.blackroom-number{margin-top:60px;font:400 9px Inter,sans-serif;letter-spacing:.18em;opacity:.4}

@media(max-width:900px){
 .tevere-showcase section{padding:85px 7vw}.section-index{left:2vw;top:90px}.wardrobe-section,.cabinet-section{grid-template-columns:1fr}.wardrobe-heading,.edit-top,.cabinet-heading,.material-head,.split-header{padding-left:4vw;margin-bottom:35px}.wardrobe-grid{grid-template-columns:1fr 1fr}.wardrobe-item.hero{grid-row:span 1}.edit-top{display:block}.edit-line{grid-template-columns:1fr 1fr}.atelier-layout{grid-template-columns:1fr 1.5fr}.atelier-note{display:none}.cabinet-display{grid-template-columns:1fr}.cab-side{display:none}.portrait-stage{grid-template-columns:1fr}.portrait-image{min-height:560px}.portrait-copy{border-left:0;border-top:1px solid rgba(23,22,20,.2);min-height:430px}.material-grid{grid-template-columns:1fr 1fr;grid-template-rows:260px 300px 150px}.material-center{grid-column:1/3;grid-row:2}.material-detail{grid-column:1/3}.split-display{grid-template-columns:1fr 1fr}.split-center{display:none}.blackroom{grid-template-columns:1fr}.blackroom-copy{border-left:0;border-top:1px solid rgba(244,240,231,.15);min-height:400px}
}
@media(max-width:560px){
 .tevere-showcase section{padding:70px 7vw}.wardrobe-grid{grid-template-columns:1fr}.wardrobe-item{min-height:290px}.wardrobe-item.hero{min-height:420px}.edit-line{grid-template-columns:1fr}.edit-line article{min-height:390px}.edit-line img{height:275px}.edit-footer{display:block}.edit-footer a{display:inline-block;margin-top:15px}.atelier-layout{grid-template-columns:1fr}.atelier-image{min-height:500px}.cabinet-frame{height:540px}.cab-info strong{position:static;display:block;margin-top:10px}.portrait-stage{margin-left:0}.portrait-image{min-height:430px}.portrait-copy{padding:45px 30px}.material-grid{grid-template-columns:1fr;grid-template-rows:300px 300px 360px 140px}.material-center{grid-column:1;grid-row:3}.material-detail{grid-column:1;grid-row:4}.split-display{grid-template-columns:1fr}.split-half:nth-child(2){display:none}.blackroom{margin-left:0}.blackroom-image{min-height:430px}.blackroom-copy{padding:45px 30px}
}

/* =========================================================
   V7 — QUIETER, MORE COHESIVE VERSIONS OF THE TWO SECTIONS
   ========================================================= */
.wardrobe-v7{display:grid;grid-template-columns:30% 70%;gap:4vw;align-items:center;background:#f7f3eb}
.wardrobe-v7-head{padding-left:4vw}.wardrobe-v7-head h2{font:400 clamp(54px,6vw,92px)/.82 "Cormorant Garamond",serif;letter-spacing:-.045em;margin:18px 0 25px}.wardrobe-v7-head h2 em{font-style:italic}.wardrobe-v7-sub{font:11px/1.7 Inter,sans-serif;color:#777168;max-width:250px}
.wardrobe-v7-stage{display:grid;grid-template-columns:1.25fr .75fr;min-height:560px;background:#ebe5dc}
.wardrobe-v7-feature{position:relative;display:grid;place-items:center;background:#e4ddd2;overflow:hidden}.wardrobe-v7-feature img{width:88%;height:88%;object-fit:contain;transition:transform .8s ease}.wardrobe-v7-feature:hover img{transform:scale(1.035)}.wardrobe-v7-caption{position:absolute;left:22px;right:22px;bottom:20px;display:grid;grid-template-columns:35px 1fr;column-gap:10px;align-items:end}.wardrobe-v7-caption span{grid-row:span 2;font:400 13px "Cormorant Garamond",serif}.wardrobe-v7-caption strong{font:500 9px Inter,sans-serif;letter-spacing:.14em}.wardrobe-v7-caption em{font:400 9px Inter,sans-serif;font-style:normal;opacity:.5;margin-top:5px}
.wardrobe-v7-list{display:flex;flex-direction:column;justify-content:center;padding:25px 28px;border-left:1px solid rgba(23,22,20,.18)}.wardrobe-v7-list a{display:grid;grid-template-columns:32px 1fr auto 18px;gap:12px;align-items:center;padding:25px 0;border-bottom:1px solid rgba(23,22,20,.17);color:#171614;text-decoration:none}.wardrobe-v7-list a:first-child{border-top:1px solid rgba(23,22,20,.17)}.wardrobe-v7-list span{font:400 12px "Cormorant Garamond",serif}.wardrobe-v7-list b{font:500 10px Inter,sans-serif;letter-spacing:.14em}.wardrobe-v7-list em{font:400 9px Inter,sans-serif;font-style:normal;opacity:.45}.wardrobe-v7-list i{font-style:normal;transition:transform .3s}.wardrobe-v7-list a:hover i{transform:translate(4px,-4px)}

.cabinet-v7{background:#171614;color:#f4f0e8;display:block;min-height:760px}.cabinet-v7-inner{margin-left:4vw}.cabinet-v7-intro{display:flex;justify-content:space-between;align-items:center;margin-bottom:35px}.cabinet-v7-kicker{font:500 8px Inter,sans-serif;letter-spacing:.2em;opacity:.5}.cabinet-v7-object{display:grid;grid-template-columns:62% 38%;min-height:610px;background:#1c1a18}.cabinet-v7-image{position:relative;display:grid;place-items:center;background:radial-gradient(circle at center,#403a31 0,#1c1a18 63%);overflow:hidden}.cabinet-v7-image:before{content:"";position:absolute;width:68%;aspect-ratio:1;border:1px solid rgba(244,240,232,.12);border-radius:50%}.cabinet-v7-image img{height:88%;max-width:85%;object-fit:contain;z-index:1;transition:transform .8s ease}.cabinet-v7-image:hover img{transform:scale(1.035)}.cabinet-v7-details{padding:55px;display:flex;flex-direction:column;justify-content:space-between;border-left:1px solid rgba(244,240,232,.15)}.cabinet-v7-details h2{font:400 clamp(55px,6vw,92px)/.78 "Cormorant Garamond",serif;letter-spacing:-.045em;margin:0 0 25px}.cabinet-v7-details h2 em{font-style:italic}.cabinet-v7-details p{font:10px/1.6 Inter,sans-serif;opacity:.45}.cabinet-v7-edition{display:flex;flex-direction:column;gap:12px}.cabinet-v7-edition span{font:500 7px Inter,sans-serif;letter-spacing:.22em;opacity:.45}.cabinet-v7-edition strong{font:400 17px "Cormorant Garamond",serif}.cabinet-v7-edition a{color:inherit;text-decoration:none;font:500 8px Inter,sans-serif;letter-spacing:.2em;border-bottom:1px solid rgba(244,240,232,.5);padding-bottom:10px;align-self:flex-start;margin-top:12px}

@media(max-width:900px){
 .wardrobe-v7{grid-template-columns:1fr}.wardrobe-v7-head{padding-left:4vw}.wardrobe-v7-stage{margin-left:4vw}.cabinet-v7-object{grid-template-columns:1fr}.cabinet-v7-details{border-left:0;border-top:1px solid rgba(244,240,232,.15);min-height:390px}
}
@media(max-width:560px){
 .wardrobe-v7-stage{grid-template-columns:1fr;min-height:0}.wardrobe-v7-feature{min-height:450px}.wardrobe-v7-list{padding:10px 20px}.wardrobe-v7-list a{padding:21px 0;grid-template-columns:28px 1fr 18px}.wardrobe-v7-list em{display:none}.cabinet-v7-inner{margin-left:0}.cabinet-v7-object{min-height:0}.cabinet-v7-image{min-height:470px}.cabinet-v7-details{padding:42px 30px;min-height:360px}
}


/* =========================================================
   TEVERE — REQUESTED HOMEPAGE REFINEMENTS
   ========================================================= */

/* 01 — Hero flows directly into the runway ticker. */
.hero { margin-bottom: 0 !important; }
.lux-divider { display: none !important; }
.runway-ticker { margin-top: 0 !important; }

/* 02 — Curated edit heading above the four featured pieces. */
.tevere-featured-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 45px;
}
.tevere-featured-heading h2 {
    margin: 0 0 13px;
    color: #111;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.045em;
}
.tevere-featured-heading p {
    margin: 0;
    max-width: 390px;
    color: #77736d;
    font: 11px/1.75 Inter, sans-serif;
}
.tevere-featured-link {
    flex: 0 0 auto;
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid #111;
    padding-bottom: 9px;
    font: 600 8px/1 Inter, sans-serif;
    letter-spacing: .2em;
    text-transform: uppercase;
    transition: color .3s ease, border-color .3s ease;
}
.tevere-featured-link:hover { color: #bd8d43; border-color: #bd8d43; }

/* 03 — Split Screen now uses the same editorial title language as Rebel Edit. */
.tevere-split-heading {
    margin-left: 4vw;
    margin-bottom: 45px;
}
.tevere-split-heading .tevere-editorial-kicker {
    margin-bottom: 16px;
}
.tevere-split-heading h2 {
    margin: 0;
    color: #111;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(45px, 5vw, 55px);
    font-weight: 400;
    line-height: .88;
    letter-spacing: -.04em;
    text-transform: uppercase;
}

@media(max-width:767px) {
    .tevere-featured-heading {
        display: block;
        margin-bottom: 35px;
    }
    .tevere-featured-heading h2 { font-size: 42px; }
    .tevere-featured-heading p { margin-bottom: 22px; }
    .tevere-split-heading { margin-left: 4vw; margin-bottom: 35px; }
    .tevere-split-heading h2 { font-size: 43px; }
}


/* =========================================================
   TEVERE — UNIFIED EDITORIAL TITLES / FINAL DISPLAY PASS
   One visual language across the signature homepage exhibits.
   ========================================================= */

html{scroll-behavior:smooth}

/* Hero → ticker: no visual dead zone */
.hero.pb-0{padding-bottom:0!important;margin-bottom:0!important}
.hero + .lux-divider{margin:0!important;height:1px!important}
.hero + .lux-divider + .runway-ticker{margin-top:0!important}

/* Shared editorial heading */
.editorial-heading .tevere-editorial-kicker,
.tevere-editorial-kicker{
    display:block;
    margin:0 0 18px;
    color:#B78A38;
    font:500 9px/1.2 Inter,sans-serif;
    letter-spacing:.24em;
    text-transform:uppercase;
}

.editorial-heading h2{
    margin:0;
    color:inherit;
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(48px,5.7vw,82px);
    font-weight:400;
    line-height:.86;
    letter-spacing:-.045em;
    text-transform:uppercase;
}

.editorial-heading h2 em{
    font-style:italic;
    text-transform:none;
}

.editorial-heading>p:last-child{
    margin-top:24px;
    max-width:300px;
    font:400 10px/1.75 Inter,sans-serif;
    letter-spacing:.01em;
    opacity:.58;
}

/* Collector's Cabinet */
.cabinet-heading{
    padding-top:6px;
}
.cabinet-heading .tevere-editorial-kicker{
    opacity:.72;
}

/* Curated four-piece edit */
.tevere-featured-heading{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:40px;
    margin-bottom:42px;
}
.tevere-featured-heading h2{
    margin:0;
    font:400 clamp(48px,5.7vw,82px)/.86 "Cormorant Garamond",serif;
    letter-spacing:-.045em;
    text-transform:uppercase;
}
.tevere-featured-heading h2 br{display:block}
.tevere-featured-link{
    flex:0 0 auto;
    margin-bottom:6px;
    font:500 8px/1 Inter,sans-serif;
    letter-spacing:.2em;
    color:#171614;
    text-decoration:none;
    border-bottom:1px solid rgba(23,22,20,.55);
    padding-bottom:9px;
    transition:.3s ease;
}
.tevere-featured-link:hover{
    color:#B78A38;
    border-color:#B78A38;
}

/* Black Room: same title architecture, but with enough contrast */
.blackroom-copy .tevere-editorial-kicker{
    color:#C8A15A;
}
.blackroom-copy h2{
    margin-top:0;
}

/* Split Screen: eliminate the old oversized/odd header feeling */
.split-section{
    padding-top:105px!important;
}
.split-header,
.split-header h2,
.tevere-split-heading{
    margin-top:0;
}
.tevere-split-heading{
    margin-left:4vw;
    margin-bottom:42px;
}
.tevere-split-heading h2{
    margin:0;
    font:400 clamp(48px,5.7vw,82px)/.86 "Cormorant Garamond",serif;
    letter-spacing:-.045em;
    text-transform:uppercase;
}

/* Product Portrait */
.portrait-copy .tevere-editorial-kicker{
    color:#B78A38;
}
.portrait-copy h2{
    margin-top:0;
    font-size:clamp(54px,6.3vw,92px);
}

/* Consistent spacing rhythm */
.cabinet-section,
.tevere-featured-pieces,
.blackroom-section,
.split-section,
.portrait-section{
    scroll-margin-top:70px;
}

/* Better desktop composition */
@media(min-width:1200px){
    .tevere-featured-pieces .container{
        width:min(1450px,92%);
    }
    .tevere-piece-grid{
        gap:22px!important;
    }
    .tevere-piece-media{
        
    }
}

/* Tablet */
@media(max-width:900px){
    .tevere-featured-heading{
        align-items:flex-start;
        flex-direction:column;
        gap:22px;
    }
    .tevere-featured-link{
        margin-bottom:0;
    }
    .tevere-split-heading{
        margin-left:4vw;
        margin-bottom:32px;
    }
    .editorial-heading h2,
    .tevere-featured-heading h2,
    .tevere-split-heading h2{
        font-size:clamp(46px,8vw,68px);
    }
}

/* Mobile */
@media(max-width:560px){
    .editorial-heading .tevere-editorial-kicker,
    .tevere-editorial-kicker{
        font-size:8px;
        letter-spacing:.18em;
        margin-bottom:14px;
    }
    .editorial-heading h2,
    .tevere-featured-heading h2,
    .tevere-split-heading h2{
        font-size:45px;
        line-height:.9;
    }
    .editorial-heading>p:last-child{
        margin-top:18px;
        font-size:10px;
    }
    .tevere-featured-heading{
        margin-bottom:30px;
    }
    .tevere-split-heading{
        margin-left:0;
        margin-bottom:28px;
    }
    .split-section{
        padding-top:70px!important;
    }
}


/* =========================================================
   TEVERE — EXHIBIT 06 / THE CHAMBER
   Reference-led private edition display
   ========================================================= */
.tevere-chamber-section{
    position:relative;
    min-height:797px;
    height:min(100vh,797px);
    background:#090909;
    color:#f3eee5;
    overflow:hidden;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
    scroll-margin-top:70px;
}

.tevere-chamber-inner{
    position:relative;
    width:100%;
    height:100%;
    min-height:inherit;
}

.tevere-chamber-index{
    position:absolute;
    z-index:5;
    left:5.9vw;
    top:6.2%;
    display:flex;
    flex-direction:column;
    gap:34px;
    font:600 8px/1 Inter,sans-serif;
    letter-spacing:.22em;
    color:#f2eee5;
    text-transform:uppercase;
}

.tevere-chamber-index span:first-child::first-letter{
    color:#c89b4b;
}

.tevere-chamber-object{
    position:absolute;
    z-index:2;
    left:49.5%;
    top:50%;
    width:min(47vw,760px);
    height:min(86vh,690px);
    transform:translate(-50%,-50%);
    display:grid;
    place-items:center;
}

.tevere-chamber-halo{
    position:absolute;
    width:72%;
    height:72%;
    border-radius:50%;
    background:radial-gradient(circle,rgba(166,127,70,.10) 0%,rgba(166,127,70,.035) 38%,transparent 72%);
    filter:blur(14px);
    opacity:.8;
    pointer-events:none;
}

.tevere-chamber-image{
    position:relative;
    z-index:2;
    width:92%;
    height:92%;
    object-fit:contain;
    filter:drop-shadow(0 28px 38px rgba(0,0,0,.45));
    transform:translate3d(0,0,0) scale(1);
    transition:transform 1s cubic-bezier(.2,.7,.2,1),filter 1s ease;
    will-change:transform;
}

.tevere-chamber-object:hover .tevere-chamber-image{
    transform:translate3d(0,-7px,0) scale(1.025);
    filter:drop-shadow(0 35px 48px rgba(0,0,0,.58));
}

.tevere-chamber-edition{
    position:absolute;
    left:0;
    bottom:5px;
    z-index:4;
    font:500 7px/1 Inter,sans-serif;
    letter-spacing:.22em;
    color:rgba(244,240,232,.42);
}

.tevere-chamber-copy{
    position:absolute;
    z-index:5;
    right:5.7vw;
    top:50%;
    width:min(300px,22vw);
    transform:translateY(-42%);
}

.tevere-chamber-kicker{
    display:block;
    margin-bottom:17px;
    color:#d0b274;
    font:600 8px/1 Inter,sans-serif;
    letter-spacing:.18em;
    text-transform:uppercase;
}

.tevere-chamber-copy h2{
    margin:0;
    color:#f2ede4;
    font:400 clamp(56px,5.4vw,88px)/.84 "Cormorant Garamond",serif;
    letter-spacing:-.045em;
}

.tevere-chamber-copy h2 em{
    font-style:italic;
}

.tevere-chamber-link{
    display:inline-flex;
    align-items:center;
    gap:12px;
    margin-top:42px;
    padding-bottom:10px;
    border-bottom:1px solid rgba(242,237,228,.55);
    color:#f2ede4;
    text-decoration:none;
    font:600 8px/1 Inter,sans-serif;
    letter-spacing:.18em;
    transition:color .35s ease,border-color .35s ease,gap .35s ease;
}

.tevere-chamber-link span{font-size:12px;line-height:1}
.tevere-chamber-link:hover{color:#c89b4b;border-color:#c89b4b;gap:17px}

@media(max-width:1200px){
    .tevere-chamber-section{height:720px;min-height:720px}
    .tevere-chamber-object{left:48%;width:55vw;height:620px}
    .tevere-chamber-copy{right:4.5vw;width:250px}
}


/* =========================================================
   TEVERE — EXHIBIT 07 / THE FINALE
   Reference-led private collection finale
   ========================================================= */
.tevere-finale-section{
    position:relative;
    
    height:min(100vh,808px);
    background:#090909;
    color:#f4efe6;
    overflow:hidden;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
    scroll-margin-top:70px;
}
.tevere-finale-inner{
    position:relative;
    width:100%;
    height:100%;
    min-height:inherit;
}
.tevere-finale-index{
    position:absolute;
    z-index:5;
    left:5.9vw;
    top:7.8%;
    color:#f3eee5;
    font:600 8px/1 Inter,sans-serif;
    letter-spacing:.22em;
    text-transform:uppercase;
}
.tevere-finale-index::first-letter{color:#c89b4b}
.tevere-finale-copy{
    position:absolute;
    z-index:6;
    left:5.9vw;
    top:50%;
    width:min(47vw,760px);
    transform:translateY(-36%);
}
.tevere-finale-kicker{
    display:block;
    margin-bottom:20px;
    color:#d0b274;
    font:600 8px/1 Inter,sans-serif;
    letter-spacing:.18em;
    text-transform:uppercase;
}
.tevere-finale-copy h2{
    margin:0;
    color:#f4efe6;
    font:400 clamp(58px,5.8vw,96px)/.86 "Cormorant Garamond",serif;
    letter-spacing:-.045em;
}
.tevere-finale-copy h2 em{font-style:italic}
.tevere-finale-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:44px;
    padding-bottom:9px;
    border-bottom:1px solid rgba(244,239,230,.55);
    color:#f4efe6;
    text-decoration:none;
    font:600 8px/1 Inter,sans-serif;
    letter-spacing:.18em;
    transition:color .35s ease,border-color .35s ease,gap .35s ease;
}
.tevere-finale-link span{font-size:11px}
.tevere-finale-link:hover{color:#c89b4b;border-color:#c89b4b;gap:15px}
.tevere-finale-product{
    position:absolute;
    z-index:3;
    top:11%;
    right:9.6vw;
    width:min(42.6vw,807px);
    height:79.7%;
    overflow:hidden;
    background:#fff;
    display:block;
    box-shadow:0 24px 60px rgba(0,0,0,.20);
}
.tevere-finale-product::after{
    content:"";
    position:absolute;
    inset:0;
    border:1px solid rgba(255,255,255,.35);
    pointer-events:none;
}
.tevere-finale-product img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transform:scale(1.001);
    transition:transform 1s cubic-bezier(.2,.7,.2,1);
    will-change:transform;
}
.tevere-finale-product:hover img{transform:scale(1.025)}

@media(max-width:1200px){
    .tevere-finale-section{height:720px;min-height:720px}
    .tevere-finale-product{right:5vw;width:47vw;height:76%;top:12%}
    .tevere-finale-copy{left:5vw;width:43vw}
    .tevere-finale-copy h2{font-size:clamp(52px,5.7vw,78px)}
}


/* =========================================================
   TEVERE — EXHIBIT 08 / THE PICTURE FRAME
   Reference-led editorial object presentation
   ========================================================= */
.tevere-picture-frame-section{
    position:relative;
    min-height:808px;
    height:min(100vh,808px);
    background:#f4f1eb;
    color:#171614;
    overflow:hidden;
    border-top:1px solid rgba(23,22,20,.08);
    border-bottom:1px solid rgba(23,22,20,.12);
    scroll-margin-top:70px;
}
.tevere-picture-frame-inner{
    position:relative;
    width:100%;
    height:100%;
    min-height:inherit;
}
.tevere-picture-frame-index{
    position:absolute;
    z-index:5;
    left:12.5vw;
    top:3.7%;
    color:#8c8275;
    font:500 8px/1 Inter,sans-serif;
    letter-spacing:.22em;
    text-transform:uppercase;
}
.tevere-picture-frame-index::first-letter{color:#b18a4a}
.tevere-picture-frame-stage{
    position:absolute;
    z-index:2;
    left:12.5vw;
    top:8.6%;
    width:min(41.4vw,783px);
    height:73.2%;
    padding:35px;
    border:1px solid #c5bfb4;
    background:#f4f1eb;
    transition:transform .8s cubic-bezier(.2,.7,.2,1),border-color .45s ease;
}
.tevere-picture-frame-stage:hover{
    transform:translateY(-4px);
    border-color:#aaa195;
}
.tevere-picture-frame-border{
    width:100%;
    height:100%;
    display:grid;
    place-items:center;
    background:#eeeae2;
    overflow:hidden;
}
.tevere-picture-frame-mat{
    width:100%;
    height:100%;
    display:grid;
    place-items:center;
    background:#ece8df;
    overflow:hidden;
}
.tevere-picture-frame-image{
    width:100%;
    height:100%;
    object-fit:contain;
    transform:scale(1.001);
    transition:transform 1s cubic-bezier(.2,.7,.2,1),filter 1s ease;
    filter:drop-shadow(0 18px 24px rgba(45,39,31,.10));
}
.tevere-picture-frame-stage:hover .tevere-picture-frame-image{
    transform:scale(1.025);
    filter:drop-shadow(0 25px 32px rgba(45,39,31,.15));
}
.tevere-picture-frame-copy{
    position:absolute;
    z-index:5;
    left:62.2vw;
    top:50%;
    width:min(24vw,300px);
    transform:translateY(-39%);
}
.tevere-picture-frame-kicker{
    display:block;
    margin-bottom:12px;
    color:#8d7861;
    font:500 8px/1 Inter,sans-serif;
    letter-spacing:.22em;
    text-transform:uppercase;
}
.tevere-picture-frame-copy h2{
    margin:0;
    color:#171614;
    font:400 clamp(58px,5.1vw,86px)/.86 "Cormorant Garamond",serif;
    letter-spacing:-.045em;
}
.tevere-picture-frame-copy h2 em{font-style:italic}
.tevere-picture-frame-meta{
    display:block;
    margin-top:18px;
    color:#6f675d;
    font:500 7px/1 Inter,sans-serif;
    letter-spacing:.20em;
    text-transform:uppercase;
}

@media(max-width:1200px){
    .tevere-picture-frame-section{height:720px;min-height:720px}
    .tevere-picture-frame-index{left:8vw}
    .tevere-picture-frame-stage{left:8vw;width:47vw;height:70%;padding:30px}
    .tevere-picture-frame-copy{left:61vw;width:30vw}
    .tevere-picture-frame-copy h2{font-size:clamp(52px,5.6vw,76px)}
}


/* =========================================================
   TEVERE — EXHIBIT 09 / THE PILLAR
   Quietly monumental — regalia object presentation
   ========================================================= */
.tevere-pillar-section{
    position:relative;
    min-height:808px;
    height:min(100vh,808px);
    background:#f4f1eb;
    color:#171614;
    overflow:hidden;
    border-top:1px solid rgba(23,22,20,.08);
    border-bottom:1px solid rgba(23,22,20,.12);
    scroll-margin-top:70px;
}
.tevere-pillar-inner{
    position:relative;
    width:100%;
    height:100%;
    min-height:inherit;
}
.tevere-pillar-index{
    position:absolute;
    z-index:6;
    left:5.9vw;
    top:6.8%;
    color:#746b60;
    font:500 8px/1 Inter,sans-serif;
    letter-spacing:.24em;
    text-transform:uppercase;
}
.tevere-pillar-index::first-letter{color:#a7834b}
.tevere-pillar-rule{
    position:absolute;
    z-index:1;
    left:50%;
    top:8.4%;
    width:1px;
    height:85%;
    background:rgba(23,22,20,.28);
    transform:translateX(-50%);
}
.tevere-pillar-copy{
    position:absolute;
    z-index:5;
    left:13.2vw;
    top:58.5%;
    width:min(31vw,490px);
    transform:translateY(-50%);
}
.tevere-pillar-kicker{
    display:block;
    margin-bottom:12px;
    color:#806f5e;
    font:500 8px/1 Inter,sans-serif;
    letter-spacing:.22em;
    text-transform:uppercase;
}
.tevere-pillar-copy h2{
    margin:0;
    color:#171614;
    font:400 clamp(60px,6vw,92px)/.84 "Cormorant Garamond",serif;
    letter-spacing:-.05em;
}
.tevere-pillar-copy h2 em{font-style:italic}
.tevere-pillar-object{
    position:absolute;
    z-index:3;
    left:50%;
    top:7%;
    width:min(37vw,620px);
    height:87%;
    transform:translateX(-50%);
    display:grid;
    place-items:center;
    text-decoration:none;
    cursor:pointer;
}
.tevere-pillar-object img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
    filter:drop-shadow(0 24px 24px rgba(38,31,22,.10));
    transform:translate3d(0,0,0) scale(1);
    transition:transform 1s cubic-bezier(.2,.7,.2,1),filter 1s ease;
    will-change:transform;
}
.tevere-pillar-object:hover img{
    transform:translate3d(0,-5px,0) scale(1.018);
    filter:drop-shadow(0 30px 30px rgba(38,31,22,.14));
}

@media(max-width:1200px){
    .tevere-pillar-section{height:720px;min-height:720px}
    .tevere-pillar-index{left:6vw}
    .tevere-pillar-copy{left:8vw;width:35vw}
    .tevere-pillar-copy h2{font-size:clamp(54px,6.2vw,78px)}
    .tevere-pillar-object{width:44vw;height:86%;top:7%}
}


/* =========================================================
   TEVERE — EXHIBIT 10 / THE DIPTYCH
   Clean dual-object presentation — no image boxes, no center copy
   ========================================================= */
.tevere-diptych-section{
    position:relative;
    min-height:760px;
    height:min(100vh,808px);
    background:#f4f1eb;
    color:#171614;
    overflow:hidden;
    border-top:1px solid rgba(23,22,20,.08);
    border-bottom:1px solid rgba(23,22,20,.12);
    scroll-margin-top:70px;
}
.tevere-diptych-inner{position:relative;width:100%;height:100%;min-height:inherit}
.tevere-diptych-index{
    position:absolute;z-index:8;left:5.9vw;top:7.5%;
    color:#6f675e;font:500 8px/1 Inter,sans-serif;letter-spacing:.24em;text-transform:uppercase
}
.tevere-diptych-index::first-letter{color:#a7834b}
.tevere-diptych-stage{
    position:absolute;left:5.9vw;right:5.9vw;top:9.1%;bottom:5.8%;
    display:grid;grid-template-columns:1fr 1fr;
    background:#e7e2d9;
    border:0;
    overflow:hidden;
}
.tevere-diptych-panel{
    position:relative;min-width:0;min-height:0;
    display:flex;flex-direction:column;align-items:center;justify-content:space-between;
    overflow:hidden;text-decoration:none;color:#171614;
    border-right:1px solid rgba(244,241,235,.95);
    padding:0 3vw 4.2%;
}
.tevere-diptych-panel:last-of-type{border-right:0}
.tevere-diptych-panel img{
    width:100%;height:calc(100% - 64px);
    display:block;object-fit:contain;object-position:center center;
    mix-blend-mode:multiply;
    transform:scale(.96);
    transition:transform .8s cubic-bezier(.2,.7,.2,1),filter .5s ease;
    will-change:transform;
}
.tevere-diptych-panel:hover img{transform:scale(.985) translateY(-5px);filter:saturate(1.04) contrast(1.02)}
.tevere-diptych-panel>span{
    position:relative;z-index:3;
    display:flex;align-items:center;justify-content:center;
    min-width:130px;height:34px;padding:0 18px;
    color:#171614;background:#f4f1eb;
    border-top:1px solid #b58b4d;border-bottom:1px solid rgba(181,139,77,.55);
    font:600 8px/1 Inter,sans-serif;letter-spacing:.25em;text-transform:uppercase;
    white-space:nowrap;
    transition:background .3s ease,color .3s ease,border-color .3s ease,transform .3s ease;
}
.tevere-diptych-panel:hover>span{background:#171614;color:#f4f1eb;border-color:#171614;transform:translateY(-2px)}


/* =========================================================
   TEVERE — UNIFIED EDITORIAL DISPLAY HEADING
   All major editorial section headings follow the FINALE
   / PRIVATE COLLECTION typography system.
   ========================================================= */
.tevere-unified-heading,
.tevere-editorial-presence-copy h2,
.tevere-exhibit-copy h2,
.tevere-house-manifesto-copy h2,
.wardrobe-heading h2,
.edit-top h2,
.cabinet-heading h2,
.material-head h2,
.split-header h2,
.atelier-copy h2,
.private-copy h2,
.one-piece-copy h2,
.index-header h2,
.cabinet-head h2,
.cinematic-content h2,
.portal-main h2,
.dossier-head h2,
.lab-intro h2,
.blackroom-copy h2,
.tevere-split-heading h2,
.portrait-copy h2,
.tevere-chamber-copy h2,
.tevere-finale-copy h2,
.tevere-picture-frame-copy h2,
.tevere-pillar-copy h2,
.cabinet-v7-details h2,
.wardrobe-v7-head h2,
.tevere-featured-heading h2 {
    font-family:"Cormorant Garamond",serif !important;
    font-weight:400 !important;
    line-height:.86 !important;
    letter-spacing:-.045em !important;
}

/* Keep the Finale reference as the master desktop scale. */
.tevere-finale-copy h2,
.tevere-picture-frame-copy h2,
.tevere-pillar-copy h2,
.tevere-chamber-copy h2,
.tevere-diptych-section h2,
.tevere-editorial-presence-copy h2,
.tevere-exhibit-copy h2,
.tevere-house-manifesto-copy h2,
.wardrobe-heading h2,
.edit-top h2,
.cabinet-heading h2,
.material-head h2,
.split-header h2,
.atelier-copy h2,
.private-copy h2,
.one-piece-copy h2,
.index-header h2,
.cabinet-head h2,
.cinematic-content h2,
.portal-main h2,
.dossier-head h2,
.lab-intro h2,
.blackroom-copy h2,
.tevere-split-heading h2,
.portrait-copy h2,
.cabinet-v7-details h2,
.wardrobe-v7-head h2,
.tevere-featured-heading h2 {
    font-size:clamp(58px,5.8vw,96px) !important;
}

@media(max-width:1200px){
    .tevere-finale-copy h2,
    .tevere-picture-frame-copy h2,
    .tevere-pillar-copy h2,
    .tevere-chamber-copy h2,
    .tevere-diptych-section h2,
    .tevere-editorial-presence-copy h2,
    .tevere-exhibit-copy h2,
    .tevere-house-manifesto-copy h2,
    .wardrobe-heading h2,
    .edit-top h2,
    .cabinet-heading h2,
    .material-head h2,
    .split-header h2,
    .atelier-copy h2,
    .private-copy h2,
    .one-piece-copy h2,
    .index-header h2,
    .cabinet-head h2,
    .cinematic-content h2,
    .portal-main h2,
    .dossier-head h2,
    .lab-intro h2,
    .blackroom-copy h2,
    .tevere-split-heading h2,
    .portrait-copy h2,
    .cabinet-v7-details h2,
    .wardrobe-v7-head h2,
    .tevere-featured-heading h2 {
        font-size:clamp(52px,5.7vw,78px) !important;
    }
}

@media(max-width:767px){
    .tevere-finale-copy h2,
    .tevere-picture-frame-copy h2,
    .tevere-pillar-copy h2,
    .tevere-chamber-copy h2,
    .tevere-diptych-section h2,
    .tevere-editorial-presence-copy h2,
    .tevere-exhibit-copy h2,
    .tevere-house-manifesto-copy h2,
    .wardrobe-heading h2,
    .edit-top h2,
    .cabinet-heading h2,
    .material-head h2,
    .split-header h2,
    .atelier-copy h2,
    .private-copy h2,
    .one-piece-copy h2,
    .index-header h2,
    .cabinet-head h2,
    .cinematic-content h2,
    .portal-main h2,
    .dossier-head h2,
    .lab-intro h2,
    .blackroom-copy h2,
    .tevere-split-heading h2,
    .portrait-copy h2,
    .cabinet-v7-details h2,
    .wardrobe-v7-head h2,
    .tevere-featured-heading h2 {
        font-size:clamp(42px,10vw,58px) !important;
        line-height:.88 !important;
        letter-spacing:-.045em !important;
    }
}

/* =========================================================
   TEVERE — SENTENCE CASE HEADINGS
   Major headings use sentence case; TEVERE brand remains uppercase.
   ========================================================= */
h1, h2, h3, h4, h5, h6,
.hero-title,
.editorial-heading h2,
.cabinet-heading h2,
.tevere-featured-heading h2,
.join-title,
.concierge-inner h2 {
    text-transform: none !important;
}

/* =========================================================
   THE FINALE — CLEAN CUT-OUT PRODUCT PRESENTATION
   Product floats directly on the black canvas.
   No white box, border, shadow or framed image area.
   Equal vertical breathing room above and below.
   ========================================================= */
.tevere-finale-product{
    top:50%;
    right:8.8vw;
    width:min(42.6vw,807px);
    height:auto;
    aspect-ratio:auto;
    overflow:visible;
    background:transparent !important;
    border:0 !important;
    box-shadow:none !important;
    transform:translateY(-50%);
}
.tevere-finale-product::after{display:none !important}
.tevere-finale-product img{
    width:100%;
    height:auto;
    max-height:none;
    object-fit:contain;
    display:block;
    background:transparent !important;
    box-shadow:none !important;
    transform:none;
    transition:transform 1s cubic-bezier(.2,.7,.2,1);
}
.tevere-finale-product:hover img{transform:scale(1.018)}

@media(max-width:1200px){
    .tevere-finale-product{
        top:50%;
        right:5vw;
        width:46vw;
        height:auto;
        transform:translateY(-50%);
    }
}

@media(max-width:991px){
    .tevere-finale-product{
        top:47%;
        left:50%;
        right:auto;
        width:min(78vw,620px);
        height:auto;
        transform:translate(-50%,-50%);
    }
    .tevere-finale-product:hover img{transform:scale(1.012)}
}

@media(max-width:575px){
    .tevere-finale-product{
        top:43%;
        width:calc(100% - 36px);
        transform:translate(-50%,-50%);
    }
}


/* =========================================================
   TEVERE — THE NOIR JACKET
   EXACT REFERENCE DIRECTION
   ========================================================= */

.noir-reference{
    width:100%;
    min-height:773px;
    height:min(100vh,773px);
    padding:0 !important;
    margin:0 !important;
    background:#090909 !important;
    color:#f3eee5;
    overflow:hidden;
    position:relative;
    box-sizing:border-box;
}

.noir-triptych{
    width:100%;
    height:100%;
    min-height:773px;
    display:grid;
    grid-template-columns:40.15% 18.75% 41.10%;
    margin:0;
    padding:0;
    background:#090909;
    box-sizing:border-box;
}

/* LEFT + RIGHT: completely open canvas.
   There are NO image boxes and NO inner borders. */
.noir-panel{
    position:relative;
    height:100%;
    min-width:0;
    background:#090909;
    overflow:hidden;
    box-sizing:border-box;
    border:0 !important;
}

.noir-product-stage{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:44px 52px 116px;
    box-sizing:border-box;
    background:transparent !important;
    border:0 !important;
}

.noir-product-stage img{
    display:block;
    width:auto;
    height:auto;
    max-width:100%;
    max-height:100%;
    object-fit:contain;
    object-position:center;
    background:transparent !important;
    border:0 !important;
    box-shadow:none !important;
    filter:none !important;
}

/* Match the relative product scale in the 2035 × 773 reference. */
.noir-panel-left .noir-product-stage img{
    
    
}

.noir-panel-right .noir-product-stage img{
        
}

/* Captions are low, centered, and separated from the bottom edge. */
.noir-caption{
    position:absolute;
    left:0;
    right:0;
    bottom:55px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-align:center;
    z-index:2;
}

.noir-caption span{
    margin:0;
    font:500 8px/1 Inter,sans-serif;
    letter-spacing:.25em;
    color:#c7a05b;
    white-space:nowrap;
}

.noir-caption strong{
    margin:0;
    font:400 30px/.9 "Cormorant Garamond",serif;
    letter-spacing:-.025em;
    color:#f3eee5;
    white-space:nowrap;
}

/* CENTER STRIPE — exact narrow editorial column. */
.noir-center{
    position:relative;
    height:100%;
    min-width:0;
    background:#090909;
    border-left:1px solid rgba(198,160,91,.72) !important;
    border-right:1px solid rgba(198,160,91,.72) !important;
    box-sizing:border-box;
    overflow:hidden;
}

.noir-center-inner{
    position:absolute;
    top:79px;
    left:50%;
    width:74%;
    transform:translateX(-50%);
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    box-sizing:border-box;
}

.noir-kicker{
    display:block;
    margin:0 0 42px;
    font:500 7px/1 Inter,sans-serif;
    letter-spacing:.25em;
    color:#c7a05b;
    white-space:nowrap;
}

.noir-center h2{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    margin:0;
    padding:0;
    color:#f3eee5;
    font:400 72px/.79 "Cormorant Garamond",serif;
    letter-spacing:-.055em;
    text-transform:none !important;
}

.noir-center h2 span{
    display:block;
}

.noir-center h2 em{
    display:block;
    margin-left:0;
    color:#c7a05b;
    font-style:italic;
    font-weight:400;
}

.noir-gold-rule{
    display:block;
    width:52px;
    height:1px;
    margin:25px 0 24px;
    background:#c7a05b;
}

.noir-description{
    margin:0;
    color:rgba(243,238,229,.57);
    font:10px/1.75 Inter,sans-serif;
    letter-spacing:.005em;
}

.noir-specs{
    width:100%;
    margin:35px 0 0;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:11px;
}

.noir-specs span{
    font:500 7px/1 Inter,sans-serif;
    letter-spacing:.22em;
    color:rgba(243,238,229,.62);
}

.noir-cta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    max-width:205px;
    margin-top:47px;
    padding:0 0 11px;
    color:#f3eee5 !important;
    text-decoration:none !important;
    border-bottom:1px solid rgba(243,238,229,.45);
    font:500 7px/1 Inter,sans-serif;
    letter-spacing:.22em;
    box-sizing:border-box;
}

.noir-cta i{
    font-style:normal;
    font-size:13px;
    line-height:1;
}

/* Prevent any older split rules from introducing frames/margins. */
.noir-reference .split-display,
.noir-reference .split-half,
.noir-reference .split-image-box,
.noir-reference .split-center{
    all:unset;
}

.noir-reference .noir-triptych,
.noir-reference .noir-panel,
.noir-reference .noir-center,
.noir-reference .noir-product-stage,
.noir-reference .noir-caption,
.noir-reference .noir-center-inner{
    box-sizing:border-box;
}

/* Desktop refinements */
@media(min-width:1200px){
    .noir-reference,
    .noir-triptych{
        min-height:773px;
    }

    .noir-center h2{
        font-size:72px;
    }
}

/* Tablet */
@media(max-width:900px){
    .noir-reference{
        height:auto;
        min-height:0;
        overflow:visible;
    }

    .noir-triptych{
        min-height:0;
        height:auto;
        grid-template-columns:1fr 1fr;
    }

    .noir-panel{
        min-height:560px;
    }

    .noir-center{
        grid-column:1 / -1;
        grid-row:2;
        min-height:510px;
        border-top:1px solid rgba(198,160,91,.55) !important;
        border-left:1px solid rgba(198,160,91,.55) !important;
        border-right:1px solid rgba(198,160,91,.55) !important;
        border-bottom:1px solid rgba(198,160,91,.55) !important;
    }

    .noir-center-inner{
        top:70px;
        width:min(74%,320px);
    }

    .noir-center h2{
        font-size:64px;
    }

    .noir-product-stage{
        padding:35px 25px 105px;
    }

    .noir-panel-left .noir-product-stage img,
    .noir-panel-right .noir-product-stage img{
        width:82%;
        max-height:67%;
    }

    .noir-caption{
        bottom:42px;
    }
}

/* Mobile */
@media(max-width:560px){
    .noir-triptych{
        grid-template-columns:1fr;
    }

    .noir-panel{
        min-height:470px;
    }

    .noir-panel-right{
        border-top:1px solid rgba(198,160,91,.28) !important;
    }

    .noir-center{
        grid-column:auto;
        grid-row:auto;
        min-height:480px;
    }

    .noir-center-inner{
        top:55px;
        width:calc(100% - 60px);
    }

    .noir-center h2{
        font-size:58px;
    }

    .noir-kicker{
        margin-bottom:30px;
    }

    .noir-product-stage{
        padding:28px 20px 95px;
    }

    .noir-panel-left .noir-product-stage img,
    .noir-panel-right .noir-product-stage img{
        width:82%;
        max-height:69%;
    }

    .noir-caption{
        bottom:31px;
    }

    .noir-caption strong{
        font-size:26px;
    }

    .noir-description{
        font-size:9.5px;
    }

    .noir-specs{
        margin-top:28px;
    }

    .noir-cta{
        margin-top:36px;
    }
}


/* =========================================================
   TEVERE — EXHIBIT 05 / THE PRODUCT PORTRAIT
   FINAL REFINED EDITORIAL VERSION
   ========================================================= */

.tevere-product-portrait{
    position:relative !important;
    width:100% !important;
    min-height:760px;
    height:min(100vh,760px);
    display:grid !important;
    grid-template-columns:9% 47% 1px 44%;
    padding:0 !important;
    margin:0 !important;
    background:#fbfaf8 !important;
    color:#111 !important;
    overflow:hidden;
    box-sizing:border-box;
}

/* Quiet editorial margin on the far left */
.tevere-product-portrait .product-portrait-side{
    position:relative;
    min-width:0;
    height:100%;
    padding:48px 0 52px 48px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    box-sizing:border-box;
    background:#fbfaf8;
}

.product-portrait-side-top,
.product-portrait-side-bottom{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.product-portrait-side-top > span,
.product-portrait-side-bottom > span{
    color:#77736d;
    font:500 7px/1.8 Inter,sans-serif;
    letter-spacing:.28em;
    text-transform:uppercase;
}

.product-portrait-side-top i{
    display:block;
    width:1px;
    height:68px;
    margin-top:18px;
    background:#c49a58;
}

.product-portrait-side-bottom strong{
    color:#222;
    font:400 16px/1 "Cormorant Garamond",serif;
    letter-spacing:.18em;
}

.product-portrait-side-bottom i{
    display:block;
    width:42px;
    height:1px;
    margin:14px 0 15px;
    background:#c49a58;
}

.product-portrait-side-bottom span{
    line-height:1.55;
}

/* Product is open on white — no frame, no card */
.tevere-product-portrait .product-portrait-media{
    position:relative;
    min-width:0;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:42px 34px 48px;
    background:#fbfaf8 !important;
    overflow:hidden;
    box-sizing:border-box;
}

.product-portrait-object{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.product-portrait-object img{
    display:block;
    width:auto;
    height:auto;
    max-width:100%;
    max-height:88%;
    object-fit:contain;
    object-position:center;
    background:transparent !important;
    border:0 !important;
    box-shadow:none !important;
    filter:none !important;
    transition:transform 1s cubic-bezier(.2,.7,.2,1);
}

.product-portrait-media:hover .product-portrait-object img{
    transform:scale(1.012);
}

/* One restrained architectural divider */
.product-portrait-divider{
    width:1px;
    height:100%;
    background:rgba(17,17,17,.13);
}

/* Right editorial panel */
.tevere-product-portrait .product-portrait-copy{
    position:relative;
    min-width:0;
    height:100%;
    padding:0;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    background:#fbfaf8 !important;
    overflow:hidden;
    box-sizing:border-box;
}

.product-portrait-copy-inner{
    position:relative;
    z-index:2;
    width:min(560px,78%);
    margin-left:clamp(48px,5.2vw,92px);
    padding-top:145px;
    box-sizing:border-box;
}

.product-portrait-kicker{
    display:block;
    margin:0 0 25px;
    color:#b78335;
    font:500 8px/1.2 Inter,sans-serif;
    letter-spacing:.27em;
    text-transform:uppercase;
}

.product-portrait-copy h2{
    margin:0 !important;
    color:#111 !important;
    font:400 clamp(58px,5.2vw,82px)/.82 "Cormorant Garamond",serif !important;
    letter-spacing:-.055em !important;
    text-transform:none !important;
}

.product-portrait-copy h2 em{
    display:block;
    color:#b78335;
    font-style:italic;
    font-weight:400;
}

.product-portrait-description{
    margin:27px 0 0;
    color:#66635e;
    font:11px/1.75 Inter,sans-serif;
    letter-spacing:.005em;
}

.product-portrait-rule{
    display:block;
    width:180px;
    height:1px;
    margin:39px 0 31px;
    background:#caa064;
    opacity:.72;
}

.product-portrait-meta{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.product-portrait-meta span{
    color:#222;
    font:500 8px/1 Inter,sans-serif;
    letter-spacing:.25em;
}

.product-portrait-link{
    display:inline-flex;
    align-items:center;
    gap:12px;
    width:max-content;
    margin-top:45px;
    padding:0 0 11px;
    color:#111 !important;
    border-bottom:1px solid rgba(17,17,17,.55);
    text-decoration:none !important;
    font:500 8px/1 Inter,sans-serif;
    letter-spacing:.23em;
    transition:.3s ease;
}

.product-portrait-link i{
    font-style:normal;
    font-size:12px;
    transition:transform .3s ease;
}

.product-portrait-link:hover{
    color:#b78335 !important;
    border-color:#b78335;
}

.product-portrait-link:hover i{
    transform:translate(4px,-3px);
}

/* Large ghost exhibit number — intentionally very subtle */
.product-portrait-bg-number{
    position:absolute;
    top:18px;
    right:6%;
    z-index:0;
    color:rgba(145,126,94,.105);
    font:400 clamp(170px,17vw,260px)/.8 "Cormorant Garamond",serif;
    letter-spacing:-.08em;
    pointer-events:none;
    user-select:none;
}

/* Catalogue signature at lower right */
.product-portrait-catalogue{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:38px;
    width:min(560px,78%);
    margin-left:clamp(48px,5.2vw,92px);
    margin-bottom:52px;
}

.product-portrait-catalogue > span{
    width:1px;
    height:52px;
    background:#c49a58;
}

.product-portrait-catalogue > div{
    display:flex;
    flex-direction:column;
    gap:8px;
    min-width:145px;
}

.product-portrait-catalogue > div span{
    color:#77736d;
    font:500 7px/1 Inter,sans-serif;
    letter-spacing:.23em;
}

/* Desktop proportions */
@media(min-width:1200px){
    .tevere-product-portrait{
        grid-template-columns:9% 47% 1px 44%;
    }
}

/* Tablet */
@media(max-width:991px){
    .tevere-product-portrait{
        height:auto;
        min-height:0;
        grid-template-columns:8% 92%;
    }

    .tevere-product-portrait .product-portrait-side{
        min-height:640px;
        padding:34px 0 38px 28px;
    }

    .tevere-product-portrait .product-portrait-media{
        min-height:640px;
        padding:35px 25px 40px;
    }

    .product-portrait-object img{
        max-height:82%;
    }

    .product-portrait-divider{
        display:none;
    }

    .tevere-product-portrait .product-portrait-copy{
        grid-column:1 / -1;
        min-height:590px;
        border-top:1px solid rgba(17,17,17,.13);
    }

    .product-portrait-copy-inner{
        width:min(600px,calc(100% - 100px));
        margin:0 auto;
        padding-top:75px;
    }

    .product-portrait-bg-number{
        top:8px;
        right:8%;
        font-size:180px;
    }

    .product-portrait-catalogue{
        width:min(600px,calc(100% - 100px));
        margin:0 auto 40px;
    }
}

/* Mobile */
@media(max-width:560px){
    .tevere-product-portrait{
        display:grid !important;
        grid-template-columns:1fr;
    }

    .tevere-product-portrait .product-portrait-side{
        min-height:auto;
        height:auto;
        padding:28px 24px;
        flex-direction:row;
        align-items:flex-start;
    }

    .product-portrait-side-top{
        flex-direction:row;
        gap:4px;
    }

    .product-portrait-side-top > span{
        display:inline;
    }

    .product-portrait-side-top i{
        display:none;
    }

    .product-portrait-side-bottom{
        align-items:flex-end;
        text-align:right;
    }

    .product-portrait-side-bottom i,
    .product-portrait-side-bottom span{
        display:none;
    }

    .product-portrait-side-bottom strong{
        font-size:14px;
    }

    .tevere-product-portrait .product-portrait-media{
        min-height:510px;
        padding:20px 20px 35px;
    }

    .product-portrait-object img{
        max-width:100%;
        max-height:88%;
    }

    .tevere-product-portrait .product-portrait-copy{
        min-height:560px;
        border-top:1px solid rgba(17,17,17,.13);
    }

    .product-portrait-copy-inner{
        width:calc(100% - 48px);
        padding-top:58px;
    }

    .product-portrait-kicker{
        font-size:7px;
        letter-spacing:.2em;
        margin-bottom:22px;
    }

    .product-portrait-copy h2{
        font-size:58px !important;
    }

    .product-portrait-description{
        margin-top:22px;
    }

    .product-portrait-rule{
        margin:30px 0 25px;
        width:130px;
    }

    .product-portrait-link{
        margin-top:35px;
    }

    .product-portrait-bg-number{
        top:20px;
        right:5%;
        font-size:145px;
    }

    .product-portrait-catalogue{
        width:calc(100% - 48px);
        margin:0 auto 30px;
        gap:22px;
    }

    .product-portrait-catalogue > span{
        height:42px;
    }

    .product-portrait-catalogue > div{
        min-width:0;
    }
}


/* =========================================================
   THE CURATED EDIT / 001 — TITLE RESTORATION
   ========================================================= */
.tevere-featured-heading h2 em{
    font-style:italic;
    font-weight:400;
}
