:root {
    --cream: #fffaf0;
    --paper: #f6f0df;
    --green: #0c542b;
    --mid-green: #4a913e;
    --pale-green: #c4df9a;
    --line: #c7d2bc;
    --ink: #153b28
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif
}

.shell {
    width: min(1140px, calc(100% - 56px));
    margin: auto
}

.site-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 106px
}

.monogram {
    display: block;
    width: 62px;
    height: 62px;
    overflow: hidden;
    border-radius: 50%
}

.monogram img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.site-header nav {
    display: flex;
    gap: 30px
}

.site-header a,
.site-footer a {
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none
}

.header-link {
    justify-self: end;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 4px
}

.header-link span {
    margin-left: 5px
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 38px;
    padding: 54px 0 84px
}

.kicker {
    margin: 0 0 20px;
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase
}

.kicker span {
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--mid-green)
}

h1,
h2,
h3 {
    margin: 0;
    font-family: 'Nunito Sans', 'DM Sans', sans-serif;
    font-weight: 900;
    letter-spacing: -.065em;
    line-height: .95
}

h1 {
    font-size: clamp(65px, 7.3vw, 100px)
}

h2 {
    font-size: clamp(48px, 5.4vw, 72px)
}

h3 {
    font-size: 25px;
    line-height: 1.05
}

h1 strong,
h2 strong {
    color: var(--mid-green);
    font: inherit
}

.hero-text {
    max-width: 425px;
    margin: 30px 0;
    font-size: 18px;
    line-height: 1.55
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 25px
}

.button {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 15px 20px;
    border-radius: 999px;
    background: var(--green);
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none
}

.plain-link {
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 3px
}

.hero-mark {
    position: relative;
    display: grid;
    min-height: 475px;
    place-items: center;
    border-radius: 46% 54% 42% 58%/52% 45% 55% 48%;
    background: var(--pale-green);
    transform: rotate(-2deg)
}

.badge-holder {
    width: min(78%, 390px);
    overflow: hidden;
    border-radius: 50%;
    background: var(--cream);
    box-shadow: 0 13px 0 rgba(12, 84, 43, .14);
    transform: rotate(2deg)
}

.badge-holder img {
    display: block;
    width: 100%;
    height: auto
}

.stamp {
    position: absolute;
    z-index: 2;
    top: 37px;
    right: 31px;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: var(--green);
    color: var(--cream);
    display: grid;
    place-items: center;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    transform: rotate(12deg)
}

.spark {
    position: absolute;
    color: var(--green);
    font-size: 31px
}

.spark.one {
    left: 48px;
    bottom: 70px
}

.spark.two {
    right: 50px;
    top: 165px;
    font-size: 22px
}

.hero-side-note {
    position: absolute;
    right: 31px;
    bottom: 32px;
    margin: 0;
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
    transform: rotate(-8deg)
}

.ingredients {
    padding: 103px 0;
    background: var(--paper)
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px
}

.section-heading .kicker {
    align-self: flex-start
}

.ingredient-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 64px;
    border-top: 1px solid var(--line)
}

.ingredient-grid article {
    position: relative;
    min-height: 275px;
    padding: 30px 32px 30px 0;
    border-right: 1px solid var(--line)
}

.ingredient-grid article+article {
    padding-left: 31px
}

.ingredient-grid article.is-favourite {
    padding-right: 31px;
    background: rgba(196, 223, 154, .32);
    box-shadow: inset 0 0 0 2px var(--pale-green)
}

.ingredient-grid article:last-child {
    border-right: 0
}

.favorite-label {
    position: absolute;
    top: 28px;
    right: 28px;
    margin: 0;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--green);
    color: var(--cream);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase
}

.ingredient-grid article.is-favourite .card-glyph {
    background: var(--green);
    color: var(--cream)
}

.card-glyph {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--pale-green);
    color: var(--green);
    font: 700 31px/1 'Nunito Sans'
}

.card-number {
    margin: 31px 0 10px;
    color: var(--mid-green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .11em
}

.ingredient-grid article>p:last-child {
    max-width: 265px;
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.55
}

.club {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: stretch;
    margin-top: 115px;
    margin-bottom: 110px;
    border: 2px solid var(--green);
    border-radius: 25px;
    overflow: hidden
}

.club-copy {
    padding: 72px 70px
}

.club-copy>p:not(.kicker) {
    max-width: 390px;
    margin: 24px 0;
    font-size: 17px;
    line-height: 1.55
}

.club form {
    display: flex;
    max-width: 450px;
    margin-top: 31px
}

.club input {
    flex: 1;
    min-width: 0;
    padding: 15px;
    border: 1px solid var(--green);
    border-right: 0;
    background: transparent;
    color: var(--green);
    font: 14px 'DM Sans';
    outline: 0
}

.club input::placeholder {
    color: rgba(12, 84, 43, .65)
}

.club button {
    padding: 0 17px;
    border: 1px solid var(--green);
    background: var(--green);
    color: white;
    font: 700 13px 'DM Sans';
    cursor: pointer
}

.club small {
    display: block;
    margin-top: 11px;
    color: var(--green);
    font-size: 11px
}

.club-art {
    position: relative;
    display: grid;
    overflow: hidden;
    place-items: center;
    min-height: 440px;
    background: var(--pale-green)
}

.club-circle {
    width: 245px;
    height: 245px;
    overflow: hidden;
    border-radius: 50%;
    background: var(--cream);
    box-shadow: 0 10px 0 rgba(12, 84, 43, .13)
}

.club-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.club-art p {
    position: absolute;
    right: 34px;
    bottom: 31px;
    margin: 0;
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
    text-align: right;
    text-transform: uppercase;
    transform: rotate(-8deg)
}

.little-spark {
    position: absolute;
    top: 53px;
    left: 53px;
    color: var(--green);
    font-size: 37px
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 105px;
    border-top: 1px solid var(--line)
}

.site-footer .monogram {
    width: 48px;
    height: 48px
}

.site-footer p {
    font-size: 12px
}

.site-footer a:last-child {
    border-bottom: 1px solid var(--ink);
    padding-bottom: 3px
}

.sr-only {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

@media(max-width:760px) {
    .shell {
        width: min(100% - 36px, 1140px)
    }

    .site-header {
        grid-template-columns: 1fr auto;
        min-height: 86px
    }

    .site-header nav {
        display: none
    }

    .monogram {
        width: 54px;
        height: 54px
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 48px 0 66px
    }

    .hero-mark {
        min-height: 390px
    }

    .badge-holder {
        width: 76%
    }

    .ingredients {
        padding: 75px 0
    }

    .section-heading {
        display: block
    }

    .section-heading .kicker {
        margin-bottom: 22px
    }

    .ingredient-grid {
        grid-template-columns: 1fr;
        margin-top: 42px
    }

    .ingredient-grid article,
    .ingredient-grid article+article {
        min-height: 0;
        padding: 27px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .ingredient-grid article.is-favourite {
        padding: 27px 18px;
        margin: 0 -18px
    }

    .favorite-label {
        position: static;
        display: inline-flex;
        margin-bottom: 18px
    }

    .ingredient-grid article:last-child {
        border-bottom: 0
    }

    .card-glyph {
        float: right
    }

    .club {
        grid-template-columns: 1fr;
        margin-top: 75px;
        margin-bottom: 75px
    }

    .club-copy {
        padding: 55px 27px
    }

    .club-art {
        min-height: 300px
    }

    .club-circle {
        width: 190px;
        height: 190px
    }

    .site-footer {
        min-height: 130px;
        flex-wrap: wrap;
        gap: 8px;
        padding: 18px 0
    }

    .site-footer p {
        order: 3;
        width: 100%;
        margin: 0
    }

    .stamp {
        top: 22px;
        right: 17px;
        width: 88px;
        height: 88px;
        font-size: 9px
    }

    .spark.one {
        left: 28px;
        bottom: 45px
    }

    .spark.two {
        right: 25px;
        top: 135px
    }

    .hero-side-note {
        right: 22px;
        bottom: 23px
    }

    .club form {
        margin-top: 27px
    }
}
.header-tools{display:flex;align-items:center;justify-self:end;gap:18px}.language-toggle{display:flex;gap:3px;padding:3px;border:1px solid var(--line);border-radius:999px}.language-toggle button{padding:4px 6px;border:0;border-radius:999px;background:transparent;color:var(--green);font:700 10px 'DM Sans';letter-spacing:.04em;cursor:pointer}.language-toggle button.active{background:var(--green);color:var(--cream)}@media(max-width:760px){.header-tools{gap:10px}.header-link{font-size:11px!important}.language-toggle button{padding:4px 5px}}
