:root {
    --bg: #d8d8e7;
    --text: #222222;
    --primary: #377869;
    --primary-light: #7d7ac0;
    --white: #ffffff;

    --max-width: 760px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Manrope", system-ui, sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: var(--primary);
}

.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 3rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;

    width: 130%;
    height: 110px;

    background: var(--primary);

    top: 42%;
    left: -15%;

    transform: rotate(-4deg);

    opacity: .9;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.logo {
    width: 180px;
    margin-bottom: 2rem;
}

.hero-date {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 0.95;
    margin: 0 0 2rem;
    font-weight: 500;
}

.hero-text {
    max-width: 34rem;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta {
    display: inline-block;

    padding: 0.9rem 1.4rem;

    border: 2px solid var(--primary);
    border-radius: 999px;

    text-decoration: none;
    font-weight: 700;

    transition: .2s ease;
}

.cta:hover {
    transform: translateY(-2px);
}

.container {
    width: min(calc(100% - 3rem), var(--max-width));
    margin: 0 auto;
}

.section {
    padding: 6rem 0;
}

.section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-top: 0;
    margin-bottom: 2rem;
}

.facts {
    margin-top: 2rem;
    padding-left: 1.2rem;
}

.facts li {
    margin-bottom: 0.6rem;
}

.section-contact {
    background: rgba(87, 84, 165, 0.08);
}

.address {
    margin-bottom: 2rem;
}

.hint {
    margin-top: 2rem;
    font-size: 0.95rem;
}

footer {
    text-align: center;
    padding: 3rem 1rem;
    opacity: 0.7;
}

@media (max-width: 768px) {

    .hero {
        min-height: auto;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .hero::before {
        height: 80px;
    }

    .logo {
        width: 140px;
    }

    .section {
        padding: 4rem 0;
    }
}
