/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding: 60px 40px 0;
}

/* Ambient orange glow - behind image */
.hero-glow {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(
        circle,
        rgba(245, 158, 11, 0.18) 0%,
        rgba(245, 130, 11, 0.1) 25%,
        rgba(245, 100, 11, 0.04) 45%,
        transparent 65%
    );
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
    height: 100%;
    gap: 40px;
}

/* Left Content */
.hero-left {
    flex: 1;
    padding-bottom: 80px;
    align-self: center;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.hero-name {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 40px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.name-line {
    display: block;
}

.name-line:last-child {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.25);
}

/* Contact Details - 2 column grid */
.hero-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 32px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.detail-item:hover {
    color: rgba(255, 255, 255, 0.8);
}

.detail-item svg {
    flex-shrink: 0;
    opacity: 0.5;
}

/* Right - Image (anchored to bottom, tall) */
.hero-right {
    flex: 0 0 auto;
    align-self: flex-end;
}

.hero-image-wrapper {
    position: relative;
    height: 85vh;
}

.hero-image-wrapper img {
    width: auto;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 0;
    display: block;
}

/* Curve divider */
.section-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 10;
    line-height: 0;
}

.section-curve svg {
    width: 100%;
    height: 250px;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        padding: 60px 30px 0;
    }

    .hero-image-wrapper {
        height: 75vh;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px 0;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        align-items: center;
    }

    .hero-left {
        padding-bottom: 30px;
    }

    .hero-image-wrapper {
        height: 45vh;
    }

    .hero-details {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .hero-name {
        margin-bottom: 20px;
    }
}
