/* ===================================
   SECTION HEAD
   =================================== */

.section {
    padding: 100px 0 80px;
    position: relative;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px;
}

.section-head .eyebrow {
    margin-bottom: 28px;
}

.section-head h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(32px, 4.6vw, 54px);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 22px;
    background: linear-gradient(180deg, #fff 0%, var(--gold-bright) 60%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.015em;
}

.section-head .lede {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.55;
}

/* ===================================
   CARDS
   =================================== */

.ccard {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--line-dim);
    padding: 38px 36px;
    position: relative;
    transition: all 0.4s ease;
}

.ccard:hover {
    background: var(--bg-card-hover);
    border-color: var(--line);
    transform: translateY(-4px);
}

.ccard::before,
.ccard::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.4s;
}

.ccard::before {
    top: 10px;
    left: 10px;
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
}

.ccard::after {
    bottom: 10px;
    right: 10px;
    border-bottom: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
}

.ccard:hover::before,
.ccard:hover::after {
    opacity: 0.85;
}
