/**
 * Cachet Courtesans - Unified Page Hero System
 * Reference: /our-companions/
 *
 * Structure:
 *   <section class="page-hero">
 *     <img src="..." alt="..." loading="eager">
 *     <div class="page-hero-overlay"></div>
 *     <div class="page-hero-content">
 *       <div class="page-hero-badge">...</div>
 *       <h1>Title <span>Accent</span></h1>
 *       <p>Description</p>
 *       <div class="page-hero-cta surface-dark">...</div>
 *     </div>
 *   </section>
 *   <div class="page-trust">...</div>
 */

/* ?? Hero shell ?? */
.page-hero,
.oc-hero,
.tc-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.page-hero img,
.oc-hero img,
.tc-hero img {
    width: 100%;
    height: clamp(320px, 42vw, 520px);
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.page-hero--short img {
    height: clamp(280px, 36vw, 420px);
}

.page-hero--video video,
.page-hero video {
    width: 100%;
    height: clamp(320px, 42vw, 520px);
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.page-hero-overlay,
.oc-hero-overlay,
.tc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.65) 100%);
    pointer-events: none;
}

.page-hero-content,
.oc-hero-content,
.tc-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
    z-index: 1;
}

/* ?? Hero typography ?? */
.page-hero-badge,
.oc-hero-badge,
.tc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #f0e8ff;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
}

.page-hero h1,
.oc-hero h1,
.tc-hero h1 {
    font-family: 'Prata', serif;
    font-size: clamp(2rem, 5.5vw, 3.4rem);
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.15;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
}

.page-hero h1 span,
.oc-hero h1 span,
.tc-hero h1 span {
    color: #d4b8ff;
}

.page-hero p,
.oc-hero p,
.tc-hero p {
    font-family: 'Raleway', sans-serif;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    max-width: 680px;
    line-height: 1.75;
    margin: 0 0 24px;
}

.page-hero-cta,
.oc-hero-cta,
.tc-hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-hero-cta .btn,
.oc-hero-cta .btn,
.tc-hero-cta .btn {
    min-width: 0;
    padding: 14px 28px;
    font-weight: 700;
}

/* ?? Trust strip ?? */
.page-trust,
.oc-trust,
.tc-trust,
.rp-trust {
    background: #0a0a0a;
    border-bottom: 1px solid #1a1a1a;
}

.page-trust-inner,
.oc-trust-inner,
.tc-trust-inner,
.rp-trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 40px;
}

.page-trust-item,
.oc-trust-item,
.tc-trust-item,
.rp-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-size: 0.82rem;
    font-family: 'Raleway', sans-serif;
}

.page-trust-item svg,
.oc-trust-item svg,
.tc-trust-item svg,
.rp-trust-item svg {
    color: #330066;
    flex-shrink: 0;
}

.page-trust-item strong,
.oc-trust-item strong,
.tc-trust-item strong,
.rp-trust-item strong {
    color: #fff;
    font-weight: 600;
}

@media (max-width: 600px) {
    .page-hero-cta,
    .oc-hero-cta,
    .tc-hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .page-hero-cta .btn,
    .oc-hero-cta .btn,
    .tc-hero-cta .btn {
        width: 100%;
        text-align: center;
    }

    .page-trust-inner,
    .oc-trust-inner,
    .tc-trust-inner,
    .rp-trust-inner {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .page-hero img,
    .oc-hero img,
    .tc-hero img,
    .page-hero--video video,
    .page-hero video {
        height: clamp(300px, 55vw, 400px);
    }
}
