:root{
    --ink:#000;
    --paper:#fbf8f2;
    --dim:#000;
    --brass:#000;
    --brass-light:#000;
    --block:#f2f2f2;
    --arc:rgb(227 58 59 / 12%);
}
*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:"Marcellus", sans-serif; background:var(--paper); color:var(--ink);}

.showcase{
    max-width:1400px;
    margin:0 auto;
    padding:80px 32px 60px;
}

.showcase-head{
    text-align:center;
    max-width:560px;
    margin:0 auto 30px;
}
.showcase-head .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--brass);
    font-size:13px;
    letter-spacing:0.2em;
    text-transform:uppercase;
    font-weight:600;
    margin-bottom:16px;
}
.showcase-head .eyebrow::before,
.showcase-head .eyebrow::after{
    content:"";
    width:24px;
    height:1px;
    background:var(--brass);
}
.showcase-head h1{
    font-family: "Marcellus", sans-serif;
    font-weight:700;
    font-size:clamp(28px,4vw,42px);
    line-height:1.2;
}

/* pair = two rows that share one big background arc */
.pair{
    position:relative;
    padding:30px 0;
}
.pair-arc{
    position:absolute;
    top:50%;
    left:50%;
    width:1700px;
    height:1700px;
    margin-left:-850px;
    margin-top:-850px;
    border:1px solid var(--arc);
    border-radius:50%;
    z-index:0;
    pointer-events:none;
}

.row{
    position:relative;
    z-index:1;
    display:flex;
    align-items:flex-end;
    min-height:360px;
    margin-bottom:8px;
}
.row.right{justify-content:flex-end;}

.item{
    position:relative;
    width:460px;
}

.item-block{
    width: 360px;
    height: 260px;
    background: #d9d9d91f;
    position: relative;
    z-index: 1;
    transition: background .35s ease;
    transform: rotate(-18deg);
    border-radius: 20px;
}
.row.left .item-block{margin-left:0;}
.row.right .item-block{margin-left:auto;}

.item-image{
    position:absolute;
    width:340px;
    height:auto;
    top:-100px;
    left:40px;
    transform:rotate(-18deg);
    transition:transform .45s ease, top .45s ease;
    filter:drop-shadow(0 18px 24px rgba(19,17,15,0.12));
    z-index:2;
}
.row.right .item-image{left:auto; right:40px;}

.item:hover .item-image{
    transform:rotate(-10deg) scale(1.04);
    top:-108px;
}
.item:hover .item-block{background:#d9d9d91f;}

.item-name{
    position:relative;
    z-index:3;
    font-family: "Marcellus", sans-serif;
    font-weight:700;
    font-size:22px;
    letter-spacing:0.02em;
    text-transform:uppercase;
    margin-top:22px;
}
.row.right .item-name{text-align:right;}

.item-link{
    position:relative;
    z-index:3;
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin-top:10px;
    color:var(--brass);
    text-decoration:none;
    font-size:12.5px;
    font-weight:600;
    letter-spacing:0.18em;
    text-transform:uppercase;
    transition:gap .25s ease, color .25s ease;
}
.row.right .item-link{flex-direction:row-reverse;}
.item-link svg{width:14px; height:14px; transition:transform .25s ease;}
.row.right .item-link svg{transform:scaleX(-1);}
.item-link:hover{color:var(--ink); gap:13px;}
.item-link:hover svg{transform:translateX(3px);}
.row.right .item-link:hover svg{transform:scaleX(-1) translateX(3px);}

@media (max-width:860px){
    .pair-arc{display:none;}
    .row, .row.right{justify-content:center;}
    .row{min-height:auto; margin-bottom:40px;}
    .item{width:300px;}
    .item-block{width:260px; height:190px;}
    .item-image{width:260px; top:-85px; left:20px;}
    .row.right .item-image{right:20px;}
    .item-name, .row.right .item-name{text-align:left;}
    .item-link, .row.right .item-link{flex-direction:row; justify-content:flex-start;}
    .row.right .item-link svg{transform:none;}
}
