/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: flex-start;
    padding-top: 15rem;
    padding-bottom: 8rem;
    position: relative;
}

.hero-title {
    font-size: clamp(40px, 8vw, 80px);
    line-height: 1.1;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.hero-title span {
    display: block;
}

.hero-subtitle {
    font-size: var(--fs-md);
    max-width: 600px;
    margin-bottom: 2rem;
    color: var(--premium-silver);
    border-left: 2px solid var(--premium-gold);
    padding-left: 1.5rem;
}

.hero-credentials {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.credential-badge {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0 0.25rem 1rem;
    border: none;
    border-left: 4px solid var(--premium-gold);
    border-radius: 0;
    background: transparent;
    color: var(--premium-gold);
    font-weight: 300;
    backdrop-filter: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

/* Vertical Divider between badges */
.credential-badge:not(:last-child)::after {
    content: "";
    display: block;
    width: 1px;
    height: 1.2em;
    background-color: var(--premium-gold);
    margin-left: 1rem;
    opacity: 0.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding-top: 6rem;
        /* Adjusted for mobile header */
        align-items: flex-start;
    }

    .hero-title {
        font-size: var(--fs-xxl);
    }

    .hero-subtitle {
        font-size: var(--fs-base);
        margin-bottom: 2rem;
    }

    /* Keep credentials inline on mobile */
    .hero-credentials {
        gap: 1rem;
    }

    .credential-badge {
        width: auto;
        justify-content: flex-start;
        font-size: 0.8rem;
    }

    .credential-badge:not(:last-child)::after {
        margin-left: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hero-title {
        font-size: var(--fs-3xl);
    }
}

@media (min-width: 2560px) {
    .hero {
        padding-top: 10rem;
    }

    .hero-subtitle {
        max-width: 800px;
        font-size: var(--fs-lg);
    }
}