:root {
    --font-body: "Roboto", sans-serif;
    --font-heading: "Roboto", sans-serif;
    --primary: #2f5d50;
    --primary-variant: #2f5d50;
    --accent: #2f5d50;
    --surface: #fff;
    --surface-variant: #eef6f2;
    --on-surface: #40524d;
    --on-surface-strong: #0d1f1a;
    --outline: rgba(47, 93, 80, .16);
    --site-gutter: clamp(20px, 3.5vw, 40px);
    --radius: 18px;
    --shadow-sm: 0 10px 28px rgba(3, 30, 22, .1);
    --shadow-md: 0 18px 48px rgba(3, 30, 22, .16);
    --shadow-lg: 0 26px 64px rgba(3, 30, 22, .2)
}

* {
    box-sizing: border-box
}

body,
html {
    margin: 0;
    padding: 0
}

body {
    background: var(--surface);
    color: var(--on-surface);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.container {
    margin-inline: auto;
    max-width: 1280px;
    padding-inline: var(--site-gutter);
    width: 100%
}

header,
section {
    margin: 0;
    padding-inline: 0;
    width: 100%
}

canvas,
img,
video {
    display: block;
    height: auto;
    max-width: 100%
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -.015em;
    margin: 0 0 .5rem
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--on-surface-strong)
}

h1 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    line-height: 1.2
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.3
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    line-height: 1.35
}

h4 {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.4
}

a,
div,
li,
p,
span {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65
}

.lead {
    color: #2c3e36;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.6
}

.lead-xl {
    color: #0f2a23;
    font-size: clamp(1.0625rem, 2.2vw, 1.25rem);
    line-height: 1.75
}

.eyebrow {
    background: rgba(47, 93, 80, .08);
    border: 1px solid rgba(47, 93, 80, .25);
    border-radius: 2rem;
    color: var(--primary);
    display: inline-block;
    font-size: .75rem;
    letter-spacing: .14em;
    margin-bottom: .75rem;
    padding: .375rem .875rem;
    text-transform: uppercase
}

.btn,
.eyebrow {
    font-weight: 800
}

.btn {
    align-items: center;
    border-radius: .875rem;
    cursor: pointer;
    display: inline-flex;
    font-family: var(--font-body);
    font-size: 1rem;
    gap: .625rem;
    padding: .875rem 1.25rem;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease
}

.btn.primary {
    background: var(--primary);
    box-shadow: 0 8px 20px rgba(47, 93, 80, .25);
    color: #fff
}

.btn.primary:focus-visible,
.btn.primary:hover {
    box-shadow: 0 12px 32px rgba(47, 93, 80, .35);
    transform: translateY(-2px) scale(1.02)
}

.btn.ghost {
    background: #fff;
    border: 1px solid rgba(47, 93, 80, .25);
    color: var(--primary)
}

.btn.ghost:focus-visible,
.btn.ghost:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 16px rgba(47, 93, 80, .18);
    transform: translateY(-2px)
}

.btns {
    display: flex;
    flex-wrap: wrap;
    gap: .875rem;
    justify-content: flex-start;
    margin-top: 1.5rem
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px
}

.section-mint {
    background: #659e8a2f
}

.section-mint,
.section-wash {
    color: #0d1f1a;
    padding-block: 4.5rem
}

.section-wash {
    background: #fff
}

@media (max-width:768px) {

    .section-mint,
    .section-wash {
        padding-block: 3.5rem
    }
}

.hero {
    background: #fff;
    border-bottom: 1px solid var(--outline);
    color: #0d1f1a;
    overflow: hidden;
    padding: 4rem 0 3.5rem;
    position: relative
}

@media (max-width:768px) {
    .hero {
        padding: 3rem 0 2.5rem
    }
}

.split {
    align-items: center;
    display: grid;
    gap: 3rem;
    grid-template-columns: 1.05fr .95fr
}

@media (max-width:980px) {
    .split {
        gap: 2.5rem;
        grid-template-columns: 1fr
    }
}

.frame {
    background: #fff;
    border: 1px solid rgba(47, 93, 80, .14);
    border-radius: 1.125rem;
    box-shadow: var(--shadow-md);
    max-width: 400px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    width: 100%
}

.frame:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px)
}

.frame img {
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
    width: 100%
}

.frame:hover img {
    transform: scale(1.05)
}

.value-list {
    display: grid;
    gap: 1rem;
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0
}

.value-list li {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: hsla(0, 0%, 100%, .6);
    border: 1px solid rgba(47, 93, 80, .2);
    border-radius: 12px;
    color: #2f4a41;
    padding: 1.125rem 1.125rem 1.125rem 4rem;
    position: relative;
    transition: all .3s ease
}

.value-list li:hover {
    background: hsla(0, 0%, 100%, .95);
    border-color: rgba(47, 93, 80, .35);
    box-shadow: 0 8px 24px rgba(47, 93, 80, .12);
    transform: translateX(12px) scale(1.02)
}

.value-list li .icon {
    background: var(--primary);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(47, 93, 80, .2);
    color: #fff;
    display: grid;
    height: 2.5rem;
    left: 1rem;
    place-items: center;
    position: absolute;
    top: 1.125rem;
    transition: all .4s;
    width: 2.5rem
}

.value-list li:hover .icon {
    box-shadow: 0 6px 20px rgba(47, 93, 80, .35);
    transform: scale(1.15)
}

#key-benefits .kb-grid {
    align-items: stretch;
    display: grid;
    gap: 2.5rem;
    grid-template-columns: .95fr 1.05fr;
    margin-top: 2rem
}

#key-benefits h2 {
    text-align: center;
}

#key-benefits .kb-photo {
    background: #fff;
    border: 1px solid var(--outline);
    border-radius: 1.125rem;
    box-shadow: var(--shadow-lg);
    height: 560px;
    overflow: hidden;
    position: relative
}

#key-benefits .kb-photo img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%
}

#key-benefits .kb-photo:after {
    border: 1px solid rgba(47, 93, 80, .18);
    border-radius: 20px;
    content: "";
    inset: 6%;
    pointer-events: none;
    position: absolute
}

#key-benefits .kb-list {
    display: grid;
    gap: .875rem;
    grid-template-rows: repeat(4, 1fr);
    height: 560px;
    justify-self: start;
    list-style: none;
    margin: 0;
    max-width: 600px;
    padding: 0
}

#key-benefits .kb-card {
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    background: hsla(0, 0%, 100%, .85);
    border: 1px solid var(--outline);
    border-radius: .875rem;
    box-shadow: var(--shadow-sm);
    padding: 1.125rem 3.5rem 1.125rem 1.125rem;
    position: relative;
    transition: all .3s
}

#key-benefits .kb-card:hover {
    background: #fff;
    box-shadow: var(--shadow-md);
    transform: translateX(8px)
}

#key-benefits .kb-card:before {
    background: var(--primary);
    border-radius: 6px;
    bottom: 8px;
    box-shadow: 0 4px 12px rgba(47, 93, 80, .25);
    content: "";
    left: -8px;
    position: absolute;
    top: 8px;
    width: 5px
}

#key-benefits .kb-card h3 {
    color: var(--on-surface-strong);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.45;
    margin: 0
}

#key-benefits .kb-num {
    bottom: 6px;
    color: rgba(3, 30, 22, .14);
    font-size: 1.75rem;
    font-weight: 800;
    pointer-events: none;
    position: absolute;
    right: 10px
}

#key-benefits .kb-card:first-child {
    transform: translateX(0)
}

#key-benefits .kb-card:nth-child(2) {
    transform: translateX(8px)
}

#key-benefits .kb-card:nth-child(3) {
    transform: translateX(16px)
}

#key-benefits .kb-card:nth-child(4) {
    transform: translateX(24px)
}

@media (max-width:980px) {
    #key-benefits .kb-grid {
        grid-template-columns: 1fr
    }

    #key-benefits .kb-photo {
        height: 320px
    }

    #key-benefits .kb-list {
        grid-template-rows: none;
        height: auto
    }

    #key-benefits .kb-card {
        transform: none !important
    }
}

.why-sg .section-head {
    margin-bottom: 2.5rem
}

.why-sg .section-head h2 {
    margin: 0 0 .5rem
}

.why-sg .section-head p.lead {
    margin: 0 0 1rem
}

.why-sg-wrap {
    align-items: start;
    display: grid;
    gap: 3rem;
    grid-template-columns: 400px 1fr
}

@media (max-width:1100px) {
    .why-sg-wrap {
        gap: 2.5rem;
        grid-template-columns: 350px 1fr
    }
}

@media (max-width:980px) {
    .why-sg-wrap {
        gap: 2rem;
        grid-template-columns: 1fr
    }
}

.why-sg-media {
    background: #fff;
    border: 1px solid var(--outline);
    border-radius: 1.75rem;
    box-shadow: 0 24px 60px rgba(3, 30, 22, .18);
    height: auto;
    margin: 0;
    overflow: hidden;
    position: sticky;
    top: 2rem;
    width: 100%
}

.why-sg-media img {
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%
}

.why-sg-benefits {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr
}

.benefit-card {
    align-items: start;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: hsla(0, 0%, 100%, .7);
    border: 1px solid rgba(47, 93, 80, .2);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 4rem 1fr;
    padding: 1.75rem;
    transition: all .3s ease
}

.benefit-card:hover {
    background: #fff;
    border-color: rgba(47, 93, 80, .35);
    box-shadow: 0 8px 28px rgba(47, 93, 80, .15);
    transform: translateX(8px)
}

.benefit-icon {
    background: var(--primary);
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(47, 93, 80, .24);
    color: #fff;
    display: grid;
    flex-shrink: 0;
    height: 4rem;
    place-items: center;
    transition: all .3s ease;
    width: 4rem
}

.benefit-card:hover .benefit-icon {
    box-shadow: 0 12px 24px rgba(47, 93, 80, .4);
    transform: scale(1.1)
}

.benefit-icon svg {
    height: 24px;
    width: 24px
}

.benefit-content h3 {
    color: var(--primary);
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 .75rem
}

.benefit-content ul {
    display: grid;
    gap: .5rem;
    list-style: none;
    margin: 0;
    padding: 0
}

.benefit-content ul li {
    color: #2f4a41;
    font-size: .9375rem;
    line-height: 1.55;
    padding-left: 1.5rem;
    position: relative
}

.benefit-content ul li:before {
    color: var(--primary);
    content: "•";
    font-size: 1.125rem;
    font-weight: 700;
    left: 0;
    position: absolute
}

@media (max-width:980px) {
    .why-sg-media {
        max-width: 100%;
        position: relative;
        top: 0
    }
}

@media (max-width:640px) {
    .benefit-card {
        gap: 1rem;
        grid-template-columns: 3.5rem 1fr;
        padding: 1.25rem
    }

    .benefit-icon {
        height: 3.5rem;
        width: 3.5rem
    }

    .benefit-icon svg {
        height: 20px;
        width: 20px
    }
}

.tiles {
    display: grid;
    gap: 1.5rem;
    margin-top: 2.5rem
}

@media (min-width:760px) {
    .tiles {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (min-width:1020px) {
    .tiles {
        grid-template-columns: repeat(4, 1fr)
    }
}

.tile {
    background: #fff;
    border: 1px solid var(--outline);
    border-radius: 1.125rem;
    box-shadow: var(--shadow-sm);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: box-shadow .3s, transform .3s
}

.tile:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-8px) scale(1.02)
}

.tile-icon {
    background: var(--primary);
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(47, 93, 80, .24);
    color: #fff;
    display: grid;
    height: 4.5rem;
    margin: 0 auto 1rem;
    place-items: center;
    transition: all .3s;
    width: 4.5rem
}

.tile:hover .tile-icon {
    box-shadow: 0 12px 28px rgba(47, 93, 80, .35);
    transform: scale(1.1)
}

.tile h3 {
    color: var(--on-surface-strong);
    font-size: 1.125rem;
    margin: 0 0 .5rem
}

.tile p {
    color: #2f4a41;
    font-size: .9375rem;
    margin: 0
}

.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: var(--shadow-md);
    color: #0d1f1a;
    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: var(--shadow-lg);
    transform: translateY(-6px)
}

.cta h3 {
    color: var(--on-surface-strong);
    font-size: 1.75rem;
    margin: 0 0 0.5rem
}

.cta p {
    color: #2c3e36;
    font-size: 1.0625rem;
    margin: 0 0 1rem
}

.cta .btns {
    justify-content: center;
    margin-top: 0.5rem;
}

@media (max-width:768px) {
    .hero h1 {
        font-size: 2rem
    }

    .btns {
        flex-direction: column;
        gap: .75rem
    }

    .btn {
        justify-content: center;
        width: 100%
    }

    .cta {
        padding: 2.5rem 1.5rem
    }

    .frame {
        max-width: 100%
    }
}

@media (prefers-reduced-motion:reduce) {

    *,
    :after,
    :before {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important
    }
}