/* --- Hero Section --- */
#hero .section-container { /* Hero has specific styling */
    text-align: center;
    background: linear-gradient(145deg, var(--bg-secondary) 0%, #14171a 100%);
    border-radius: 12px;
    padding: 6rem 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.hero-content h1 {
    /* Use clamp for fluid typography - reduced size by ~30% */
    font-size: clamp(2.1rem, 1.3rem + 2.5vw, 3.9rem);
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
    font-weight: 700;
    line-height: 1.15;
}

.hero-content h2 {
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    font-weight: 300;
    font-size: 1.6rem; /* This could also use clamp if needed */
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

/* Hero Photo - Simplified border */
.hero-photo {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    object-fit: cover;
    margin: 3rem auto 3rem;
    display: block;
    position: relative;
    /* Added direct border */
    border: 6px solid var(--accent-luxury);
    /* Removed background-clip */
}

/* Removed ::before pseudo-element rule */
