:root {
    --lime: #e1ff6a;
    --offwhite: #f1f4e1;
    --yellow: #ffe191;
    --pink: #c08388;
    --orange: #f85f15;
    --wine: #6f2f2f;
    --darkwine: #552a2e;
    --black: #000
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--offwhite);
    color: var(--black);
    font-family: "Open Sauce Sans", "Manrope", Arial, sans-serif
}
header{
    background: var(--yellow);
}
img {
    display: block;
    max-width: 100%
}

.site-header {
    height: 180px;
    max-width: 1500px;
    margin: auto;
    padding: 38px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--yellow)
}

.logo img {
    width: 180px;
    height: auto
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 17px 24px;
    border: 0;
    border-radius: 14px;
    color: var(--lime);
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Bryndan Write", "Kalam", cursive;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: .01em;
    transition: .2s ease
}

.button:hover {
    transform: translateY(-3px);
    filter: brightness(.95)
}

.button--yellow {
    background: var(--pink)
}

.button span {
    font-size: 1.4em;
    line-height: 0
}
.button span img {
    width: 24px;
    height: auto;
}
.hero {
    background: linear-gradient(to bottom, var(--wine) 0, var(--wine) 65%, var(--offwhite) 65%, var(--offwhite) 100%);
    padding: 38px 70px 72px
}

.hero__inner {
    max-width: 1370px;
    margin: auto
}

h1,
h2 {
    font-family: "Placard Next Cond", "Barlow Condensed", Impact, sans-serif;
    text-transform: uppercase;
    line-height: .90;
    /* letter-spacing: -.045em; */
    margin: 0;
    font-weight: 900
}

h1 {
    color: var(--lime);
    font-size: clamp(5rem, 10.8vw, 11.5rem);
    text-align: center;
    white-space: nowrap;
    margin-bottom: 30px
}

h1 span {
    color: var(--orange)
}

.hero__media {
    position: relative;
    overflow: hidden;
    border: 6px solid var(--pink);
    border-radius: 48px;
    aspect-ratio: 2.55/1;
    background: #768d4b
}

.hero__media>img,
.hero__media>video {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.intro {
    max-width: 1500px;
    min-height: 1000px;
    margin: auto;
    padding: 72px 80px 0px;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 105px;
    /* overflow: hidden */
}

.intro__copy {
    padding-top: 85px;
    position: relative;
    z-index: 2
}

h2 {
    font-size: clamp(4rem, 5.6vw, 6.5rem);
    color: var(--orange);
    margin-bottom: 38px
}

h2 span {
    color: var(--wine)
}

.intro__copy>p {
    max-width: 600px;
    font-size: clamp(1.1rem, 1.35vw, 1.45rem);
    line-height: 1.35;
    margin: 0 0 24px
}

.intro__copy .lead {
    font-weight: 600;
    margin-bottom: 32px
}

.contact {
    position: relative;
    margin-top: 30px;
    min-height: 210px
}

.contact__links {
    display: flex;
    gap: 12px;
    position: absolute;
    left: 15px;
    bottom: 40px
}

.contact__links a {
    width: auto;
    height: 68px;
    color: var(--wine);
    transition: .18s
}

.contact__links a:hover {
    color: var(--orange);
    transform: translateY(-4px)
}

.contact__links img {
    width: auto;
    height: 100%;
}

.handwritten {
    position: absolute;
    right: 24%;
    top: -10px;
    color: var(--wine);
    font-family: "Bryndan Write", "Kalam", cursive;
    font-weight: 700;
    font-size: 1.35rem;
    line-height: 1.15;
    rotate: -4deg;
    text-align: center
}

.arrow {
    position: absolute;
    left: 245px;
    top: 69px;
    width: 170px;
    height: 80px;
    fill: none;
    stroke: var(--orange);
    stroke-width: 7;
    stroke-linecap: round;
    stroke-linejoin: round
}

.intro__visual {
    position: relative;
    min-height: 880px
}


.mandela {
    position: absolute;
    top: 0;
    right: 0;
    width: min(100%, 650px);
    height: 100%;
    object-fit: cover;
    border: 6px solid var(--lime);
    border-radius: 48px
}
.badges {
    position: relative;
    width: 1500px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    justify-content: flex-end; 
    padding-bottom: 95px;
}
.badge {
    /* position: absolute; */
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: var(--pink);
    display: grid;
    place-items: center;
    padding: 28px;
    aspect-ratio: 1/1;
}

.badge img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.badge--fgasa {
    margin-right: 100px;
}

.badge--ggto {
    margin-top: 120px;
    margin-right: 45px;
}

.badge--calamity {
    margin-top: -30px;
    margin-right: 55px;
}
@media(max-width:1100px) {
    .hero{
        padding: 38px 70px 30px
    }
    .intro{
        padding: 30px 80px 0px;
        min-height: auto;
    }
    .mandela {
        height: auto;
    }
    .intro__visual {
        min-height: auto;
    }
}
@media(max-width:900px) {
    .site-header {
        height: 120px;
        padding: 22px 24px
    }

    .logo img {
        width: 130px
    }

    .button {
        font-size: .8rem;
        padding: 11px 16px
    }

    .hero {
        padding: 30px 18px 34px;
        background: linear-gradient(to bottom, var(--wine) 0, var(--wine) 73%, var(--offwhite) 73%)
    }

    h1 {
        font-size: clamp(3.4rem, 13.5vw, 7rem);
        white-space: normal
    }

    .hero__media {
        border-width: 4px;
        border-radius: 24px;
        aspect-ratio: 1.5
    }

    .intro {
        padding: 44px 24px 35px;
        grid-template-columns: 1fr;
        gap: 30px
    }

    .intro__copy {
        padding-top: 0
    }

    .intro__visual {
        min-height: auto;
    }

    .mandela {
        position: relative;
        width: 100%;
        height: 570px
    }

    .badge {
        width: 130px;
        height: 130px;
        padding: 20px
    }

    .badge--fgasa {
        left: -8px;
        top: 520px;
        width: 145px;
        height: 145px
    }

    .badge--ggto {
        left: calc(50% - 65px);
        top: 625px
    }

    .badge--calamity {
        right: -8px;
        top: 520px
    }

    .contact {
        min-height: 220px
    }

    .contact__links {
        left: 0;
        gap: 20px;
    }

    .handwritten {
        left: 250px
    }

    .arrow {
        left: 245px
    }
}

@media(max-width:520px) {
    /* .site-header .button {
        font-size: 0;
        width: 52px;
        height: 42px;
        justify-content: center;
        padding: 0
    } */

    .site-header .button span {
        font-size: 20px
    }

    .hero {
        padding-inline: 12px
    }

    h1 {
        font-size: 3.7rem
    }

    .hero__media {
        aspect-ratio: 1.15
    }

    .intro {
        padding-inline: 18px
    }

    h2 {
        font-size: 4rem
    }

    .intro__copy>p {
        font-size: 1rem
    }

    .contact__links a {
        /* width: 55px; */
        height: 55px
    }

    .handwritten {
        left: auto;
        right: 0px;
        /* font-size: 1rem */
    }

    .arrow {
        left: auto;
        right: 0px;
        width: 150px
    }

    .mandela {
        height: 430px;
        border-radius: 28px
    }

    .intro__visual {
        min-height: auto;
    }
    .badges {
        padding: 0px;
    }
    .badge--fgasa {
        margin-right: 0px;
    }
    .badge--ggto {
        margin-right: 0px;
    }
    .badge--calamity {
        margin-right: 0px;
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    * {
        transition: none !important
    }
}