:root {
    --cream: #f5e5dc;
    --cream-soft: #fcf3ee;
    --cream-deep: #ecd0c1;
    --brown: #805139;
    --brown-dark: #482c20;
    --brown-mid: #ad7157;
    --gold: #e89573;
    --gold-soft: #f3b89f;
    --ink: #382318;
    --muted: #795c4d;
    --line: rgba(128, 81, 57, .17);
    --white: #fff;
    --sans: 'Lato', sans-serif;
    --script: 'Dancing Script', cursive;
    --shadow: 0 18px 45px rgba(93, 53, 35, .14)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream-soft);
    font-family: var(--sans);
    line-height: 1.6;
    overflow-x: hidden
}

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

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

button {
    font: inherit
}

section {
    scroll-margin-top: 80px
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: -3rem;
    left: 1rem;
    padding: .6rem 1rem;
    color: #fff;
    background: var(--brown)
}

.skip-link:focus {
    top: 1rem
}

.shell {
    width: min(1160px, calc(100% - 2.5rem));
    margin: 0 auto
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid transparent;
    background: rgba(252, 243, 238, .88);
    backdrop-filter: blur(16px)
}

.site-header.is-scrolled {
    border-color: var(--line);
    box-shadow: 0 4px 18px rgba(93, 53, 35, .08)
}

.nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--brown-dark);
    font-size: 1rem;
    white-space: nowrap
}

.brand img {
    width: 35px;
    height: 35px;
    object-fit: contain
}

.brand strong {
    color: var(--brown);
    font-weight: 900
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.45rem;
    color: var(--muted);
    font-size: .88rem;
    font-weight: 700
}

.site-nav>a:not(.nav-cta) {
    padding: .45rem 0;
    border-bottom: 1px solid transparent
}

.site-nav>a:not(.nav-cta):hover {
    color: var(--brown);
    border-color: var(--gold)
}

.nav-cta {
    padding: .65rem 1rem;
    color: #fff;
    background: var(--brown);
    border-radius: 6px
}

.nav-cta:hover {
    background: var(--brown-dark)
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    color: var(--brown);
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 6px
}

.hero {
    position: relative;
    padding: 4.5rem 0 4rem;
    overflow: hidden;
    background: radial-gradient(circle at 90% 35%, rgba(243, 184, 159, .58), transparent 27%), var(--cream-soft)
}

.hero:after {
    content: '';
    position: absolute;
    width: 34rem;
    height: 34rem;
    right: -20rem;
    bottom: -24rem;
    border: 1px solid rgba(232, 149, 115, .35);
    border-radius: 50%
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 2.5rem
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: .45rem;
    margin: 0 0 .85rem;
    color: var(--brown);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase
}

.eyebrow i {
    color: var(--gold)
}

h1,
h2,
h3,
p {
    margin-top: 0
}

h1,
h2 {
    color: var(--brown-dark);
    font-weight: 900;
    line-height: 1.05
}

h1 {
    max-width: 630px;
    margin-bottom: 1.25rem;
    font-size: clamp(2.8rem, 6vw, 5.25rem)
}

h1 em {
    color: var(--brown);
    font-family: var(--script);
    font-size: 1.1em;
    font-style: normal;
    font-weight: 700;
    white-space: nowrap
}

.hero-lead {
    max-width: 570px;
    margin-bottom: 1.7rem;
    color: var(--muted);
    font-size: 1.12rem
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    min-height: 48px;
    padding: .8rem 1.15rem;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: .88rem;
    font-weight: 900;
    transition: transform .2s, box-shadow .2s, background .2s
}

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

.button-primary {
    color: #fff;
    background: var(--brown);
    box-shadow: 0 10px 22px rgba(128, 81, 57, .24)
}

.button-primary:hover {
    background: var(--brown-dark);
    box-shadow: 0 14px 28px rgba(128, 81, 57, .33)
}

.button-quiet,
.button-outline {
    color: var(--brown);
    border-color: var(--brown);
    background: rgba(255, 255, 255, .42)
}

.button-quiet:hover,
.button-outline:hover {
    background: var(--cream-deep)
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.25rem;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 700
}

.trust-row i {
    margin-right: .3rem;
    color: var(--brown)
}

.hero-visual {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center
}

.hero-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(232, 149, 115, .72);
    border-radius: 50%;
    background: rgba(255, 255, 255, .28)
}

.phone-frame {
    position: relative;
    z-index: 1;
    width: min(255px, 62vw);
    padding: 9px;
    border: 6px solid #251713;
    border-radius: 34px;
    background: #251713;
    box-shadow: 20px 26px 42px rgba(76, 44, 32, .28);
    transform: rotate(5deg);
    animation: phone-float 5s ease-in-out infinite
}

.phone-camera {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 50%;
    width: 80px;
    height: 17px;
    border-radius: 20px;
    background: #181818;
    transform: translateX(-50%)
}

.phone-screen {
    min-height: 455px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.2rem 1.2rem;
    overflow: hidden;
    text-align: center;
    color: #fff8f3;
    background: linear-gradient(160deg, rgba(58, 32, 24, 0), rgba(112, 66, 48, 0)), url('../images/example/ex7.png') center/cover;
    border-radius: 24px
}

.phone-kicker {
    margin-bottom: 1.45rem;
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: .24em
}

.phone-names {
    margin-bottom: .9rem;
    font-family: var(--script);
    font-size: 2.45rem;
    line-height: .9
}

.phone-names span {
    display: block;
    margin: .2rem;
    font-size: 1.3rem
}

.phone-line {
    width: 48px;
    height: 1px;
    margin-bottom: .9rem;
    background: var(--gold-soft)
}

.phone-date {
    font-size: .54rem;
    font-weight: 900;
    letter-spacing: .12em
}

.phone-flower {
    margin: auto 0 .65rem;
    color: var(--gold-soft);
    font-size: 3rem
}

.phone-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    width: 100%;
    padding: .65rem;
    background: rgba(255, 255, 255, .17);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 4px;
    font-size: .62rem
}

.floating-note {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .6rem .75rem;
    color: var(--brown-dark);
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(255, 255, 255, .95);
    border-radius: 5px;
    box-shadow: var(--shadow);
    font-size: .7rem;
    font-weight: 900;
    backdrop-filter: blur(8px)
}

.floating-note i {
    color: var(--brown);
    font-size: 1rem
}

.note-rsvp {
    top: 21%;
    right: 1%
}

.note-share {
    bottom: 15%;
    left: 0
}

.section {
    padding: 6rem 0
}

.benefits {
    background: #fff
}

.section-intro {
    max-width: 680px;
    margin-bottom: 2.75rem
}

.section-intro h2,
.section-heading h2,
.process-copy h2,
.faq-copy h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 3.5vw, 3.25rem)
}

.section-intro>p:last-child,
.process-copy>p,
.faq-copy>p {
    margin-bottom: 0;
    color: var(--muted)
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem
}

.benefit-card {
    min-height: 215px;
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, .95), rgba(245, 229, 220, .7));
    border: 1px solid var(--line);
    border-radius: 7px;
    transition: transform .25s, box-shadow .25s
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow)
}

.icon-wrap {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    margin-bottom: 1.15rem;
    color: var(--brown);
    background: var(--cream-deep);
    border-radius: 5px
}

.benefit-card h3 {
    margin-bottom: .55rem;
    color: var(--brown-dark);
    font-size: 1.05rem
}

.benefit-card p {
    margin: 0;
    color: var(--muted);
    font-size: .86rem
}

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

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem
}

.section-heading h2 {
    margin: 0
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--brown);
    font-size: .84rem;
    font-weight: 900;
    white-space: nowrap
}

.text-link:hover {
    color: var(--brown-dark)
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem
}

.demo-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(128, 81, 57, .12);
    border-radius: 7px
}

.demo-image {
    position: relative;
    display: block;
    aspect-ratio: 359 / 739;
    overflow: hidden;
    background: var(--cream-deep)
}

.demo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .45s
}

.demo-card:hover img {
    transform: scale(1.06)
}

.demo-overlay {
    position: absolute;
    inset: auto .75rem .75rem;
    display: flex;
    justify-content: space-between;
    padding: .75rem .85rem;
    color: #fff;
    background: rgba(72, 44, 32, .84);
    border-radius: 4px;
    font-size: .76rem;
    font-weight: 900;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .25s, transform .25s
}

.demo-card:hover .demo-overlay {
    opacity: 1;
    transform: none
}

.demo-card>div {
    padding: 1rem 1.1rem 1.15rem
}

.demo-card p {
    margin-bottom: .2rem;
    color: var(--brown);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase
}

.demo-card h3 {
    margin: 0;
    color: var(--brown-dark);
    font-size: 1rem
}

.process-section {
    background: var(--brown-dark)
}

.process-grid,
.faq-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 4rem;
    align-items: start
}

.process-copy {
    position: sticky;
    top: 108px
}

.process-copy h2 {
    color: #fff
}

.process-copy>p {
    margin-bottom: 1.45rem;
    color: rgba(255, 255, 255, .7)
}

.process-copy .eyebrow {
    color: var(--gold-soft)
}

.process-copy .button-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .5);
    background: transparent
}

.process-copy .button-outline:hover {
    background: rgba(255, 255, 255, .1)
}

.steps {
    padding: 0;
    margin: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, .2)
}

.steps li {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: .5rem;
    padding: 1.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2)
}

.steps span {
    color: var(--gold-soft);
    font-size: .78rem;
    font-weight: 900
}

.steps h3 {
    margin-bottom: .35rem;
    color: #fff;
    font-size: 1.12rem
}

.steps p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: .88rem
}

.pricing-section {
    background: var(--cream-soft)
}

.centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center
}

.centered .eyebrow {
    justify-content: center
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 1rem
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 7px
}

.price-card.popular {
    border: 2px solid var(--brown);
    box-shadow: var(--shadow)
}

.popular-tag {
    position: absolute;
    top: 0;
    right: 1rem;
    padding: .35rem .55rem;
    color: #fff;
    background: var(--brown);
    border-radius: 0 0 4px 4px;
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase
}

.price-card h3 {
    margin-bottom: .4rem;
    color: var(--brown-dark);
    font-size: 1.35rem
}

.package-label {
    min-height: 23px;
    margin-bottom: .15rem;
    color: var(--muted);
    font-size: .8rem
}

.price-amount {
    margin-bottom: .65rem;
    color: var(--brown);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1
}

.price-amount span {
    font-size: .65rem;
    letter-spacing: .08em
}

.price-desc {
    min-height: 48px;
    color: var(--muted);
    font-size: .85rem
}

.price-card ul {
    flex: 1;
    padding: 0;
    margin: .7rem 0 1.4rem;
    list-style: none
}

.price-card li {
    display: flex;
    gap: .55rem;
    padding: .45rem 0;
    color: var(--muted);
    font-size: .83rem
}

.price-card li i {
    color: var(--brown);
    padding-top: .25rem
}

.full {
    width: 100%
}

.pricing-note {
    margin: 1.5rem 0 0;
    color: var(--muted);
    text-align: center;
    font-size: .82rem
}

.package-meta {
    min-height: 35px;
    margin: .85rem 0 0;
    color: var(--muted);
    font-size: .7rem;
    line-height: 1.45
}

.custom-package {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 1.25rem;
    padding: 1.4rem 1.6rem;
    border: 1px dashed var(--brown-mid);
    border-radius: 7px;
    background: rgba(236, 208, 193, .34)
}

.custom-package .eyebrow {
    margin-bottom: .3rem
}

.custom-package h3 {
    margin-bottom: .35rem;
    color: var(--brown-dark);
    font-size: 1.2rem
}

.custom-package p:not(.eyebrow) {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    font-size: .84rem
}

.custom-package-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
    gap: .55rem
}

.custom-package-action p {
    color: var(--brown) !important;
    font-size: .76rem !important;
    font-weight: 700
}

.custom-package-action strong {
    font-size: 1.6rem
}

.faq-section {
    background: #fff
}

.faq-copy h2 {
    max-width: 430px
}

.faq-copy>p {
    margin-bottom: 1rem
}

.faq-list {
    border-top: 1px solid var(--line)
}

.faq-list details {
    border-bottom: 1px solid var(--line)
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 0;
    color: var(--brown-dark);
    cursor: pointer;
    font-size: .95rem;
    font-weight: 900;
    list-style: none
}

.faq-list summary::-webkit-details-marker {
    display: none
}

.faq-list summary i {
    color: var(--brown);
    transition: transform .2s
}

.faq-list details[open] summary i {
    transform: rotate(45deg)
}

.faq-list details p {
    max-width: 620px;
    margin: 0;
    padding: 0 1.6rem 1.2rem 0;
    color: var(--muted);
    font-size: .87rem
}

.closing-cta {
    padding: 5.5rem 0;
    color: #fff;
    text-align: center;
    background: linear-gradient(rgba(72, 44, 32, .9), rgba(72, 44, 32, .92)), url('../images/banner.jpg') center/cover
}

.closing-content {
    max-width: 720px
}

.closing-content .eyebrow {
    justify-content: center;
    color: var(--gold-soft)
}

.closing-content h2 {
    margin-bottom: 1.35rem;
    color: #fff;
    font-size: clamp(2.15rem, 4.4vw, 3.8rem)
}

.site-footer {
    padding-top: 3.7rem;
    color: rgba(255, 255, 255, .7);
    background: #342018
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr 1.3fr .8fr;
    gap: 2rem;
    padding-bottom: 2.8rem
}

.footer-brand {
    color: #fff;
    margin-bottom: .85rem
}

.footer-grid p {
    max-width: 270px;
    margin: 0;
    font-size: .84rem
}

.footer-grid h2 {
    margin-bottom: .8rem;
    color: var(--gold-soft);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase
}

.footer-grid>div:not(:first-child) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .45rem;
    font-size: .83rem
}

.footer-grid a:hover {
    color: #fff
}

.social-row {
    display: flex;
    gap: .55rem
}

.social-row a {
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    border-radius: 4px
}

.social-row a:hover {
    background: var(--brown-mid)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 0;
    border-top: 1px solid rgba(255, 255, 255, .13);
    font-size: .72rem
}

.footer-bottom a {
    color: var(--gold-soft);
    font-weight: 900
}

.whatsapp-float {
    position: fixed;
    z-index: 45;
    right: 1.1rem;
    bottom: 1.1rem;
    display: grid;
    place-items: center;
    width: 53px;
    height: 53px;
    color: #fff;
    background: #25d366;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
    font-size: 1.55rem;
    transition: transform .2s
}

.whatsapp-float:hover {
    transform: scale(1.08)
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .65s, transform .65s
}

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

@keyframes phone-float {

    0%,
    100% {
        transform: rotate(5deg) translateY(0)
    }

    50% {
        transform: rotate(5deg) translateY(-9px)
    }
}

@media (prefers-reduced-motion:reduce) {

    *,
    *:before,
    *:after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        transition-duration: .01ms !important
    }

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

@media (max-width:820px) {
    .menu-toggle {
        display: grid;
        place-items: center
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: .65rem 1.25rem 1rem;
        border-bottom: 1px solid var(--line);
        background: var(--cream-soft);
        box-shadow: 0 14px 22px rgba(93, 53, 35, .1)
    }

    .site-nav.is-open {
        display: flex
    }

    .site-nav>a {
        padding: .8rem 0 !important
    }

    .site-nav .nav-cta {
        margin-top: .45rem;
        text-align: center
    }

    .hero {
        padding-top: 3rem
    }

    .hero-grid,
    .process-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2.7rem
    }

    .hero-copy {
        text-align: center
    }

    .hero-copy .eyebrow,
    .hero-actions,
    .trust-row {
        justify-content: center
    }

    .hero-lead {
        margin-right: auto;
        margin-left: auto
    }

    .hero-visual {
        min-height: 440px;
        order: -1
    }

    .note-rsvp {
        right: 3%
    }

    .note-share {
        left: 3%
    }

    .benefit-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .process-copy {

        .custom-package {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem
        }

        .custom-package-action {
            align-items: flex-start;
            width: 100%
        }

        .custom-package-action .button {
            width: 100%
        }

        position: static
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid>div:first-child {
        grid-column: span 2
    }
}

@media (max-width:600px) {
    .shell {
        width: min(100% - 2rem, 1160px)
    }

    .nav-wrap {
        min-height: 66px
    }

    .brand {
        font-size: .86rem
    }

    .brand img {
        width: 30px;
        height: 30px
    }

    .hero {
        padding: 2.5rem 0 2.3rem
    }

    .hero-actions .button {
        width: 100%
    }

    .hero-visual {
        min-height: 410px
    }

    .hero-glow {
        width: 285px;
        height: 285px
    }

    .phone-screen {
        min-height: 390px
    }

    .note-rsvp {
        top: 13%
    }

    .note-share {
        bottom: 10%
    }

    .section {
        padding: 4rem 0
    }

    .section-heading {
        display: block
    }

    .section-heading .text-link {
        margin-top: .75rem
    }

    .benefit-grid,
    .demo-grid,
    .pricing-grid {
        grid-template-columns: 1fr
    }

    .benefit-card {
        min-height: 0
    }

    .process-grid,
    .faq-grid {
        gap: 2rem
    }

    .steps li {
        grid-template-columns: 50px 1fr
    }

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

    .footer-grid>div:first-child {
        grid-column: auto
    }

    .footer-bottom {
        flex-direction: column
    }

    .whatsapp-float {
        right: .85rem;
        bottom: .85rem
    }
}