/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('../assets/images/hero_placeholder.png');
    background-size: cover;
    background-position: left center;
    z-index: -1;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--color-text-body);
}

/* Trust Strip */
.trust-strip {
    background-color: rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--color-glass-border);
    border-bottom: 1px solid var(--color-glass-border);
    padding: 3rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 2rem;
}

.trust-item h3 {
    font-size: 3rem;
    color: var(--color-accent-gold);
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Practice Areas */
.practice-areas {
    background: radial-gradient(circle at center, rgba(11, 15, 25, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.practice-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.practice-card h3 {
    font-size: 1.5rem;
    color: var(--color-accent-gold);
}

.practice-card p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent-gold);
    font-weight: 600;
}

.read-more:hover {
    gap: 0.75rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    .hero-bg {
        width: 100%;
        opacity: 0.3;
        mask-image: none;
        -webkit-mask-image: none;
    }
    .trust-grid, .practice-grid {
        grid-template-columns: 1fr;
    }
    .nav-links, .phone-link {
        display: none;
    }
}
