:root {
    --font-body: "Roboto", sans-serif;
    --font-heading: "Roboto", sans-serif;
    --primary: #2f5d50;
    --surface: #fff;
    --mint-bg: #659e8a2f;
    --text: #0d1f1a;
    --muted: #2f4a41;
    --tile-border: rgba(47, 93, 80, .16);
    --shadow-md: 0 18px 48px rgba(3, 30, 22, .16);
    --shadow-lg: 0 26px 64px rgba(3, 30, 22, .2);
    --radius: 18px;
    --content-max: 1280px
}

*,
:after,
:before {
    box-sizing: border-box
}

body {
    background: var(--surface);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding: 0
}

body,
h1,
h2,
h3,
h4 {
    color: var(--text)
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -.015em;
    line-height: 1.2;
    margin: 0 0 .5rem
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem)
}

h2 {
    font-size: clamp(1.625rem, 3vw, 2.25rem)
}

h3 {
    font-size: 1.15rem
}

.lead {
    font-size: 1.125rem;
    line-height: 1.6
}

.lead,
.muted {
    color: var(--muted)
}

.eyebrow {
    color: var(--primary);
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .14em;
    margin-bottom: 12px;
    text-transform: uppercase
}

a:focus-visible,
button:focus-visible {
    border-radius: 12px;
    outline: 3px solid rgba(47, 93, 80, .35);
    outline-offset: 2px
}

.container {
    margin: 0 auto;
    max-width: var(--content-max);
    padding-left: clamp(16px, 4vw, 40px);
    padding-right: clamp(16px, 4vw, 40px);
    width: 100%
}

header,
section {
    padding-left: 0;
    padding-right: 0;
    width: 100%
}

section {
    padding: clamp(3.5rem, 7vw, 5rem) 0
}

.section-wash:last-of-type {
    padding-bottom: 1.5rem !important;
    padding-top: 1.5rem !important
}

.section-mint {
    background: var(--mint-bg)
}

.btn,
.section-wash {
    background: #fff
}

.btn {
    align-items: center;
    border: 1px solid rgba(47, 93, 80, .12);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    color: var(--primary);
    cursor: pointer;
    display: inline-flex;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 800;
    gap: .625rem;
    padding: .885rem 1.225rem;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .16s ease
}

.btn.primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff
}

.btn.primary:focus-visible,
.btn.primary:hover {
    filter: brightness(1.07);
    transform: translateY(-1px)
}

.btn.ghost {
    background: #fff;
    border-color: var(--primary);
    color: var(--primary)
}

.btns {
    display: flex;
    flex-wrap: wrap;
    gap: .875rem;
    justify-content: center;
    margin-top: 1.25rem
}

@media (max-width:600px) {
    .btns {
        flex-direction: column;
        gap: .75rem
    }

    .btn {
        justify-content: center;
        width: 100%
    }
}

.hero {
    background: #fff;
    border-bottom: 1px solid var(--tile-border);
    padding: 4.5rem 0
}

.hero-wrap {
    margin: 0 auto;
    max-width: 850px;
    text-align: left
}

.hero h1 {
    margin-bottom: 1rem
}

.about-grid {
    align-items: center;
    display: grid;
    gap: 3.5rem;
    grid-template-columns: 440px 1fr;
    margin-bottom: 1.7rem
}

.about-image-single {
    align-items: center;
    background: #f2f7f5;
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(3, 30, 22, .12);
    display: flex;
    height: 340px;
    justify-content: center;
    overflow: hidden
}

.about-image-single img {
    aspect-ratio: 16/10;
    border-radius: 18px;
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%
}

@media (max-width:1000px) {
    .about-grid {
        gap: 2rem;
        grid-template-columns: 1fr
    }

    .about-image-single {
        height: 200px;
        width: 100%
    }
}

@media (max-width:600px) {
    .about-image-single {
        border-radius: 12px;
        height: 120px
    }
}

.about-copy h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem)
}

.about-point {
    align-items: start;
    display: grid;
    gap: 12px;
    grid-template-columns: 2rem 1fr;
    margin: 16px 0 18px
}

.about-ico {
    background: var(--primary);
    border-radius: 8px;
    color: #fff;
    display: grid;
    height: 2rem;
    place-items: center;
    width: 2rem
}

.features {
    border-bottom: 1px solid var(--tile-border);
    padding: 3rem 0
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center
}

.feature-grid {
    display: grid;
    gap: 1.5rem
}

@media (min-width:760px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (min-width:1020px) {
    .feature-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

.feature-card {
    background: #fff;
    border: 1px solid var(--tile-border);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 22px;
    text-align: center
}

.feature-icon-link {
    background: var(--primary);
    border: 1px solid rgba(47, 93, 80, .25);
    border-radius: 14px;
    display: grid;
    height: 56px;
    margin: 0 auto 12px;
    place-items: center;
    width: 56px
}

.feature-icon-img {
    display: block;
    filter: brightness(0) invert(1);
    height: 32px;
    object-fit: contain;
    width: 32px
}

.feature-card h3 {
    color: var(--primary);
    font-size: 1.075rem;
    margin-bottom: .75rem;
    margin-top: .25rem
}

.feature-card p {
    color: var(--muted);
    font-size: .97rem;
    line-height: 1.63;
    margin: 0
}

.details-grid {
    align-items: center;
    display: grid;
    gap: 2.5rem
}

@media (min-width:980px) {
    .details-grid {
        grid-template-columns: 1.08fr .92fr
    }
}

.details-list {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.65;
    margin: 1rem 0 1.25rem 1.45rem;
    padding: 0
}

.details-list li {
    margin: .2rem 0
}

.details-figure {
    background: #f2f7f5;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    margin-left: auto;
    overflow: hidden
}

.details-img {
    display: block;
    height: auto;
    width: 100%
}

.cta {
    background: linear-gradient(135deg, rgba(127, 224, 195, .08), rgba(47, 93, 80, .08));
    border: 2px solid rgba(47, 93, 80, .15);
    border-radius: 22px;
    box-shadow: 0 18px 48px rgba(3, 30, 22, .16);
    color: var(--text);
    margin: 0 auto;
    max-width: 1168px;
    padding: 24px;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
    width: 100%
}

.cta:hover {
    box-shadow: 0 26px 64px rgba(3, 30, 22, .2);
    transform: translateY(-6px)
}

.cta h3 {
    color: var(--text);
    font-size: 1.75rem;
    margin: 0 0 0.5rem
}

.cta p {
    color: var(--muted);
    margin: 0 0 1rem
}

.btn-group,
.btns {
    display: flex;
    flex-wrap: wrap;
    gap: .875rem;
    justify-content: center;
    margin-top: 0.5rem
}

@media (max-width:600px) {

    .btn-group,
    .btns {
        flex-direction: column;
        gap: .75rem
    }

    .btn {
        justify-content: center;
        width: 100%
    }
}

@media (max-width:980px) {
    .container {
        padding-left: 16px;
        padding-right: 16px
    }

    .about-grid,
    .details-grid {
        gap: 1.8rem;
        grid-template-columns: 1fr
    }

    .features .feature-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:700px) {
    .features .feature-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width:520px) {
    .feature-card {
        padding: 14px
    }

    .about-image-single,
    .details-figure,
    .details-img {
        border-radius: 10px !important
    }
}