html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: #f6f4ef;
}

.home-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(244, 242, 236, 0.96) 0%,
            rgba(244, 242, 236, 0.86) 25%,
            rgba(244, 242, 236, 0.46) 48%,
            rgba(244, 242, 236, 0.08) 68%,
            rgba(244, 242, 236, 0.00) 100%
        ),
        url("/assets/images/daniela.jpg");

    background-size: cover;
    background-position: calc(50% + 100px) 35%;
    background-repeat: no-repeat;
}

.home-hero-content {
    position: relative;
    z-index: 2;
    width: min(1380px, calc(100% - 80px));
    margin: 0 auto;
    padding-top: 100px;
}

.home-hero-content > * {
    max-width: 610px;
}

.home-hero-intro {
    margin: 0 0 24px;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #727c6c;
}

.home-hero-title {
    margin: 0;
    max-width: 650px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5.1vw, 78px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: #394337;
}

.home-hero-title span {
    display: block;
    color: #69765f;
    font-style: italic;
}

.home-hero-description {
    max-width: 470px;
    margin: 30px 0 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: #5f675e;
}

.home-hero-actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.home-primary-button,
.home-secondary-button {
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition:
        transform 280ms ease,
        background 280ms ease,
        color 280ms ease,
        border-color 280ms ease,
        box-shadow 280ms ease;
}

.home-primary-button {
    gap: 18px;
    border: 1px solid #6c7862;
    background: #6c7862;
    color: #ffffff;
    box-shadow: 0 12px 35px rgba(63, 73, 57, 0.12);
}

.home-primary-button:hover {
    transform: translateY(-2px);
    background: #5e6a55;
    border-color: #5e6a55;
    box-shadow: 0 16px 38px rgba(63, 73, 57, 0.18);
}

.home-secondary-button {
    border: 1px solid rgba(74, 86, 70, 0.28);
    background: rgba(255, 255, 255, 0.26);
    color: #465043;
}

.home-secondary-button:hover {
    transform: translateY(-2px);
    border-color: rgba(74, 86, 70, 0.50);
    background: rgba(255, 255, 255, 0.55);
}