/* ==========================================================
   Bell Tower Plaza
   Spaces Directory
   ========================================================== */


/* ==========================================================
   1. Hero
   ========================================================== */

.space-directory-hero{
    position:relative;
    padding:11rem 0 7rem;
    background:#faf8f4;
    overflow:hidden;
}

.space-directory-hero::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    width:1px;
    height:80px;
    background:#d7b46a;
    opacity:.7;
}

.space-directory-hero-inner{
    max-width:820px;
    margin:0 auto;
}

.space-directory-hero h1{
    margin:1rem 0 1.5rem;
    font-family:"Cormorant Garamond", serif;
    font-size:clamp(4rem,8vw,7rem);
    font-weight:500;
    line-height:.9;
    letter-spacing:-.04em;
    color:#18324b;
}

.space-directory-hero .lead{
    max-width:700px;
    margin:0 auto 2.5rem;
    color:#5b6773;
    font-size:clamp(1.15rem,2vw,1.35rem);
    line-height:1.75;
}

.space-directory-hero .btn-gold{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#d7b46a;
    color:#18324b;
    border:1px solid #d7b46a;
    border-radius:999px;
    padding:.95rem 2.4rem;
    font-weight:700;
    text-decoration:none;
    transition:.25s ease;
}

.space-directory-hero .btn-gold:hover{
    background:#18324b;
    border-color:#18324b;
    color:#fff;
    transform:translateY(-2px);
}

/* ==========================================================
   Intro
========================================================== */

.space-intro{
    padding:6rem 0 7rem;
    background:#ffffff;
}

.space-intro-content{
    max-width:760px;
    margin:0 auto;
}

.space-intro h2{
    margin:1rem 0 1.5rem;
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(3rem,5vw,4.5rem);
    font-weight:500;
    line-height:1.05;
    color:#2f2c2a;
}

.space-intro .lead{
    color:#5d6773;
    font-size:1.2rem;
    line-height:1.9;
}

/* ==========================================================
   Signature Spaces
========================================================== */

.signature-spaces{
    padding:8rem 0;
    background:#faf8f4;
}

.signature-spaces-heading{
    max-width:760px;
    margin:0 auto 5rem;
}

.signature-spaces-heading h2{
    margin:1rem 0 0;
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(3rem,5vw,4.6rem);
    font-weight:500;
    line-height:1.05;
    color:#2f2c2a;
}

.signature-space-row{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:5rem;
    align-items:center;
    margin-bottom:7rem;
}

.signature-space-row:last-child{
    margin-bottom:0;
}

.signature-space-row.reverse{
    grid-template-columns:.85fr 1.15fr;
}

.signature-space-row.reverse .signature-space-image{
    order:2;
}

.signature-space-row.reverse .signature-space-content{
    order:1;
}

.signature-space-image{
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 30px 80px rgba(16,32,52,.11);
}

.signature-space-image img{
    display:block;
    width:100%;
    height:520px;
    object-fit:cover;
    transition:transform .7s ease;
}

.signature-space-row:hover .signature-space-image img{
    transform:scale(1.04);
}

.signature-space-content{
    max-width:520px;
}

.space-label{
    display:block;
    margin-bottom:.9rem;
    font-size:.75rem;
    font-weight:700;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:#d7b46a;
}

.signature-space-content h3{
    margin:0 0 1.25rem;
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(2.5rem,4vw,4rem);
    font-weight:500;
    line-height:1;
    color:#18324b;
}

.signature-space-content p{
    margin:0 0 1.75rem;
    color:#5b6773;
    font-size:1.08rem;
    line-height:1.8;
}

.space-highlights{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:.75rem 1.25rem;
    list-style:none;
    padding:0;
    margin:0 0 2rem;
}

.space-highlights li{
    position:relative;
    padding-left:1.4rem;
    color:#2f2c2a;
    font-weight:600;
    font-size:.95rem;
}

.space-highlights li::before{
    content:"";
    position:absolute;
    left:0;
    top:.55rem;
    width:7px;
    height:7px;
    border-radius:50%;
    background:#d7b46a;
}

.space-link{
    display:inline-flex;
    align-items:center;
    color:#18324b;
    font-weight:800;
    text-decoration:none;
}

.space-link::after{
    content:"→";
    margin-left:.6rem;
    transition:transform .25s ease;
}

.space-link:hover::after{
    transform:translateX(4px);
}
