:root {
    --green: #344724;
    --green2: #526638;
    --cream: #f8f3e8;
    --paper: #fffdf7;
    --gold: #b89a48;
    --ink: #253020;
    --muted: #697064;
    --shadow: 0 18px 55px rgba(38, 52, 30, .13)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "DM Sans", sans-serif;
    line-height: 1.65
}

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

a {
    text-decoration: none;
    color: inherit
}

button {
    font: inherit
}

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

.section {
    padding: 105px 0
}

.section-head {
    max-width: 720px;
    text-align: center;
    margin: 0 auto 50px
}

.section-head p {
    max-width: 630px;
    margin: 12px auto 0
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--green2);
    font-size: .77rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .2em
}

.light {
    color: #dfcf9b
}

.section-head.light h2,
.section-head.light p {
    color: white
}

h1,
h2,
h3 {
    font-family: "Playfair Display", serif;
    line-height: 1.15;
    margin: 0
}

h1 {
    font-size: clamp(2.8rem, 6.5vw, 5.6rem);
    max-width: 900px
}

h2 {
    font-size: clamp(2.1rem, 4.3vw, 3.6rem)
}

h3 {
    font-size: 1.45rem
}

p {
    color: var(--muted)
}

.skip {
    position: fixed;
    left: 20px;
    top: -60px;
    z-index: 100;
    background: white;
    padding: 10px
}

.skip:focus {
    top: 10px
}

header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    transition: .3s
}

header.scrolled {
    background: rgba(34, 48, 24, .97);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15)
}

.nav-wrap {
    height: 82px;
    display: flex;
    align-items: center;
    gap: 28px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .16em;
    line-height: 1.2
}

.brand small {
    display: block;
    font-family: "Playfair Display";
    font-size: 1.08rem;
    letter-spacing: .2em
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    font: 700 1.35rem "Playfair Display"
}

nav {
    display: flex;
    gap: 22px;
    margin-left: auto;
    font-size: .89rem
}

nav a {
    opacity: .86
}

nav a:hover {
    color: #e6d294
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 49px;
    padding: 0 24px;
    border-radius: 4px;
    font-weight: 700;
    transition: .25s;
    border: 1px solid transparent
}

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

.btn-gold {
    background: var(--gold);
    color: #17200f
}

.btn-green {
    background: var(--green);
    color: white
}

.btn-line {
    border-color: rgba(255, 255, 255, .7);
    color: white
}

.menu {
    display: none;
    background: none;
    border: 0
}

.menu i {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    margin: 5px
}

.hero {
    position: relative;
    min-height: 820px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden
}

.hero>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(23, 34, 16, .96) 0%, rgba(34, 49, 23, .86) 48%, rgba(32, 42, 22, .18) 78%)
}

.hero-copy {
    position: relative;
    z-index: 2;
    padding-top: 70px
}

.hero h1 em {
    color: #d6c37f;
    font-style: normal
}

.hero-copy>p:not(.eyebrow) {
    color: #eef0e9;
    max-width: 680px;
    font-size: 1.1rem
}

.actions {
    display: flex;
    gap: 12px;
    margin: 30px 0 35px
}

.trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 25px;
    color: #e7e9e2;
    font-size: .88rem
}

.leaf {
    position: absolute;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(224, 207, 151, .2);
    border-radius: 100% 0;
    transform: rotate(20deg)
}

.leaf-a {
    right: -170px;
    bottom: -90px
}

.leaf-b {
    right: 20%;
    top: -270px
}

.opportunity {
    background: var(--cream)
}

.cards {
    display: grid;
    gap: 22px
}

.three {
    grid-template-columns: repeat(3, 1fr)
}

.feature {
    background: white;
    padding: 34px;
    border-top: 3px solid var(--gold);
    box-shadow: 0 10px 40px rgba(40, 52, 30, .07)
}

.feature b {
    color: var(--gold);
    font-size: .85rem
}

.feature h3 {
    margin: 20px 0 8px
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--green);
    color: white;
    margin-top: 50px;
    padding: 30px
}

.stats div {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .18)
}

.stats div:last-child {
    border: 0
}

.stats strong {
    font: 700 2.3rem "Playfair Display";
    display: block;
    color: #dfc875
}

.stats span {
    font-size: .82rem
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 85px;
    align-items: center
}

.reverse>img {
    order: -1
}

.photo-stack {
    position: relative
}

.photo-stack img,
.rounded {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 220px 220px 12px 12px;
    box-shadow: var(--shadow)
}

.photo-note {
    position: absolute;
    right: -25px;
    bottom: 40px;
    background: var(--green);
    color: white;
    padding: 17px 24px;
    box-shadow: var(--shadow)
}

.ticks {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px
}

.ticks li:before {
    content: "✓";
    color: var(--gold);
    font-weight: 700;
    margin-right: 8px
}

.reasons {
    background: #edf0e8
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.reason-grid article {
    padding: 28px;
    background: rgba(255, 255, 255, .75);
    border: 1px solid #d9dfd1
}

.reason-grid span {
    color: var(--gold)
}

.reason-grid h3 {
    margin: 10px 0
}

.packages {
    background: var(--green);
    color: white
}

.toggle {
    width: max-content;
    margin: 0 auto 36px;
    background: #243318;
    padding: 5px;
    border-radius: 50px
}

.toggle button {
    border: 0;
    border-radius: 50px;
    padding: 12px 23px;
    color: #cfd7c8;
    background: none;
    cursor: pointer
}

.toggle button.active {
    background: var(--gold);
    color: #16200f;
    font-weight: 700
}

.package-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 900px;
    margin: auto
}

.package {
    position: relative;
    background: white;
    color: var(--ink);
    padding: 40px;
    border-radius: 8px
}

.package.featured {
    border: 3px solid var(--gold)
}

.popular {
    position: absolute;
    right: 20px;
    top: -15px;
    background: var(--gold);
    padding: 7px 12px;
    font-size: .7rem;
    font-weight: 800
}

.label {
    color: var(--green2);
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: .12em
}

.old {
    text-decoration: line-through;
    margin-bottom: 0
}

.price {
    font: 700 clamp(2rem, 4vw, 3rem) "Playfair Display";
    color: var(--green)
}

.package ul {
    padding-left: 20px;
    margin: 25px 0
}

.package li {
    margin: 8px 0;
    color: #596052
}

.package .btn {
    width: 100%
}

.fine {
    max-width: 900px;
    margin: 24px auto 0;
    color: #ccd3c5;
    font-size: .79rem
}

.support-list>div {
    display: flex;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid #dfe2d9
}

.support-list b {
    color: var(--gold)
}

.support-list strong {
    display: block;
    color: var(--ink)
}

.proof {
    background: var(--cream)
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.gallery button {
    position: relative;
    padding: 0;
    border: 0;
    background: white;
    box-shadow: var(--shadow);
    cursor: pointer;
    overflow: hidden
}

.gallery img {
    width: 100%;
    height: 410px;
    object-fit: cover;
    object-position: top;
    transition: .4s
}

.gallery button:hover img {
    transform: scale(1.03)
}

.gallery span {
    display: block;
    padding: 18px;
    font-weight: 700
}

.steps {
    background: linear-gradient(135deg, #28391d, #42562c)
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px
}

.step-grid>div {
    background: rgba(255, 255, 255, .07);
    padding: 20px 13px;
    color: white;
    min-height: 150px
}

.step-grid b {
    color: #dec77d
}

.step-grid h3 {
    font-size: 1.05rem;
    margin-top: 35px
}

.narrow {
    max-width: 850px
}

.faq-list article {
    border-bottom: 1px solid #dfe1d9
}

.faq-list button {
    width: 100%;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    background: none;
    border: 0;
    text-align: left;
    font-weight: 700;
    cursor: pointer;
    color: var(--ink)
}

.faq-list button span {
    font-size: 1.4rem
}

.faq-list article p {
    display: none;
    margin: 0;
    padding: 0 30px 20px 0
}

.faq-list article.open p {
    display: block
}

.faq-list article.open button span {
    transform: rotate(45deg)
}

.cta {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(rgba(36, 50, 24, .92), rgba(36, 50, 24, .92)), url('../assets/images/family.png') center/cover;
    color: white
}

.cta h2 {
    max-width: 850px;
    margin: auto
}

.cta p {
    color: #e5eadf
}

.cta .btn {
    margin-top: 16px
}

footer {
    background: #172012;
    color: #d8ddd3;
    padding: 70px 0 25px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.6fr 1.5fr 1fr;
    gap: 35px
}

.footer-grid h3 {
    font-size: 1rem;
    color: #d9c77d
}

.footer-grid p,
.footer-grid a {
    font-size: .85rem;
    color: #aeb6a8
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 20px;
    margin-top: 40px;
    font-size: .78rem;
    color: #8d9687
}

.float-wa,
.top {
    position: fixed;
    z-index: 45;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 0;
    font-weight: 800
}

.float-wa {
    bottom: 24px;
    background: #27a95c;
    color: white
}

.top {
    bottom: 86px;
    background: white;
    color: var(--green);
    opacity: 0;
    pointer-events: none;
    box-shadow: var(--shadow)
}

.top.show {
    opacity: 1;
    pointer-events: auto
}

.modal {
    position: fixed;
    z-index: 100;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    display: grid;
    place-items: center;
    padding: 30px
}

.modal[hidden] {
    display: none
}

.modal img {
    max-height: 90vh
}

.modal-close {
    position: absolute;
    right: 25px;
    top: 15px;
    background: none;
    color: white;
    border: 0;
    font-size: 2.5rem
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: .7s
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@media(max-width:900px) {
    nav {
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        background: var(--green);
        padding: 25px 30px
    }

    .open nav {
        display: flex
    }

    .desktop-cta {
        display: none
    }

    .menu {
        display: block;
        margin-left: auto
    }

    .three,
    .reason-grid {
        grid-template-columns: 1fr 1fr
    }

    .split {
        gap: 45px
    }

    .step-grid {
        grid-template-columns: repeat(4, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .hero {
        min-height: 760px
    }

    .hero-shade {
        background: rgba(30, 44, 20, .79)
    }
}

@media(max-width:640px) {
    .container {
        width: min(100% - 28px, 1140px)
    }

    .section {
        padding: 75px 0
    }

    .hero {
        min-height: 820px
    }

    .hero-copy {
        padding-top: 85px
    }

    .hero h1 {
        font-size: 2.75rem
    }

    .actions {
        flex-direction: column
    }

    .trust {
        display: grid;
        grid-template-columns: 1fr 1fr
    }

    .three,
    .reason-grid,
    .split,
    .package-grid,
    .gallery,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 22px
    }

    .stats div {
        border: 0
    }

    .ticks {
        grid-template-columns: 1fr
    }

    .photo-stack img,
    .rounded {
        height: 390px
    }

    .photo-note {
        right: 10px
    }

    .step-grid {
        grid-template-columns: 1fr 1fr
    }

    .step-grid>div {
        min-height: 120px
    }

    .gallery img {
        height: 90%
    }

    .package {
        padding: 30px 23px
    }

    .footer-grid {
        gap: 20px
    }

    .float-wa {
        bottom: 18px;
        right: 16px
    }

    .top {
        right: 16px
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}

p .text-justify{
    text-align: justify;
}

.text-justify{
    text-align: justify;
}

.text-center{
    text-align: center;
}