/* HERO - Light & Clean */
.hero-section {
    background: #FAFAF9;
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
}
.hero-bottom-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(28,25,23,0.08) 50%, transparent 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 7.5vw, 6rem);
    font-weight: 900;
    color: #1C1917;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}
.hero-title em {
    font-style: italic;
    color: #1C1917;
    position: relative;
}
.hero-title em::after {
    content: '';
    position: absolute;
    bottom: -0.02em;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-red);
    border-radius: 2px;
    opacity: 0.9;
}
.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: #78716C;
    max-width: 480px;
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 400;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #1C1917;
    color: #fff;
    border: none;
    padding: 0.9rem 2.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-btn-primary:hover {
    background: #292524;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    color: #fff;
}
.hero-btn-primary:active {
    transform: translateY(0) scale(0.98);
}
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #1C1917;
    border: 1px solid rgba(28,25,23,0.2);
    padding: 0.9rem 2.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-btn-secondary:hover {
    background: rgba(28,25,23,0.04);
    border-color: rgba(28,25,23,0.35);
    color: #1C1917;
    transform: translateY(-2px);
}
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem 2rem;
}
.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.hero-meta-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #A8A29E;
}
.hero-meta-value {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: #44403C;
}
.hero-meta-divider {
    width: 1px;
    height: 32px;
    background: rgba(28,25,23,0.1);
}
/* Hero Image */
.hero-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image-wrap::before {
    content: '';
    position: absolute;
    inset: -24px;
    background: radial-gradient(circle at center, rgba(28,25,23,0.05) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
}
.hero-image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-image:hover {
    transform: translateY(-4px);
}

/* ── Page Hero V2 — Compact & Clean ── */
.page-hero {
    background: var(--color-dark-bg);
    position: relative;
    overflow: hidden;
    padding: 2.5rem 0 2rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -60%;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(224,32,32,0.05) 0%, transparent 60%);
    pointer-events: none;
    filter: blur(60px);
}
.page-hero-content {
    position: relative;
    z-index: 1;
}
.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(224,32,32,0.08);
    border: 1px solid rgba(224,32,32,0.15);
    color: rgba(255,138,149,0.85);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 0.85rem;
}
.page-hero-badge svg,
.page-hero-badge .dot {
    width: 6px;
    height: 6px;
    background: #ff6b7a;
    border-radius: 50%;
    flex-shrink: 0;
}
.page-hero h1 {
    font-family: var(--font-display);
    color: #fff;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.page-hero p {
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
    max-width: 480px;
    line-height: 1.6;
}
.page-hero .breadcrumb-custom {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    justify-content: flex-start;
    flex-wrap: wrap;
}
.page-hero .breadcrumb-custom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.page-hero .breadcrumb-custom a:hover { color: #fff; }

/* Hero with big avatar (RJ profile) */
.page-hero-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-red), #b91c2b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 0.75rem;
    box-shadow: 0 6px 24px rgba(224,32,32,0.3);
    position: relative;
    z-index: 1;
}
.page-hero-socials {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    position: relative;
    z-index: 1;
}
.page-hero-socials .social-link {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
    .page-hero { padding: 1.75rem 0 1.5rem; text-align: center; }
    .page-hero h1 { font-size: clamp(1.4rem, 6vw, 1.8rem); }
    .page-hero p { font-size: 0.82rem; margin: 0 auto; }
    .page-hero-badge { font-size: 0.6rem; padding: 4px 10px; }
    .page-hero-avatar { width: 68px; height: 68px; font-size: 1.7rem; }
}

@media (max-width: 768px) {
    .hero-section { min-height: 70vh; text-align: center; }
    .hero-content { padding-top: 3.5rem; padding-bottom: 3.5rem; }
    .hero-title { font-size: clamp(2.4rem, 9vw, 3.2rem); margin-bottom: 1.25rem; }
    .hero-subtitle { max-width: 100%; font-size: 1rem; margin-bottom: 1.75rem; line-height: 1.6; }
    .hero-actions { justify-content: center; gap: 0.75rem; margin-bottom: 2.25rem; }
    .hero-actions .btn { padding: 0.75rem 1.5rem; font-size: 0.8rem; }
    .hero-meta { justify-content: center; gap: 1rem 1.5rem; }
    .hero-meta-item { align-items: center; text-align: center; }
    .hero-meta-label { font-size: 0.65rem; letter-spacing: 1.2px; }
    .hero-meta-value { font-size: 0.9rem; }
    .hero-meta-divider { display: none; }
}
