/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--sand);
    padding-top: 142px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1rem 3rem;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
}

.hero-content {
    z-index: 2;
    padding-right: 1rem;
}

.hero-subtitle {
    color: var(--text-gray);
    font-weight: 400;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(2.2rem, 4.4vw, 3.8rem);
    color: var(--dark-green);
    margin-bottom: 3rem;
    line-height: 1.15;
    font-weight: 400;
}

.hero-description {
    font-size: 1.7rem;
    line-height: 1.5;
    margin-bottom: 4rem;
    width: 120%;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--primary-teal);
    color: var(--text-dark);
    padding: 1.0rem 1.7rem 1.0rem 2.5rem;
    border-radius: var(--base-border-radius) 0 var(--base-border-radius) 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.hero-cta-arrow {
    line-height: 1;
}

.hero-cta:hover {
    color: var(--white);
    background-color: var(--dark-teal);
}

.hero-cta:hover .hero-cta-arrow path {
    stroke: var(--white);
    transition: stroke 0.3s ease;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.hero-image img {
    width: 120%;
    max-width: none;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}
