*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --rose: #c05535;
    --rose-light: #e09070;
    --rose-pale: #f8ede6;
    --rose-deep: #c32f02;
    --cream: #fdf6f0;
    --gold: #c49060;
    --gold-dark: #9a6e40;
    --dark: #1a0e08;
    --text: #3d2415;
    --text-muted: #8c5a48;
}

html {
    scroll-behavior: auto
}

body {
    background: var(--cream);
    color: var(--text);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    overflow-x: hidden
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background .4s, backdrop-filter .4s
}

nav.scrolled {
    background: rgba(253, 248, 245, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(196, 168, 130, .25)
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    letter-spacing: .12em;
    color: var(--cream);
    font-weight: 300;
    transition: color .4s
}

nav.scrolled .nav-logo {
    color: var(--rose-deep)
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none
}

.nav-links a {
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255, 255, 255, .85);
    transition: color .3s
}

nav.scrolled .nav-links a {
    color: var(--text-muted)
}

.nav-links a:hover {
    color: var(--rose)
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden
}

.hero-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
    transform: scale(1.08)
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 18, 16, .4) 0%, rgba(26, 18, 16, .22) 50%, rgba(26, 18, 16, .7) 100%)
}

.hero-content {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 2rem
}

.hero-content--top {
    top: 110px
}

.hero-content--bottom {
    bottom: 7rem
}

.hero-names {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 9vw, 7.5rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: .04em;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.1s .5s forwards;
    background: linear-gradient(110deg, #fff 0%, var(--rose-light) 30%, var(--gold) 50%, var(--rose-light) 70%, #fff 100%);
    background-size: 220% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent
}

@media (prefers-reduced-motion: no-preference) {
    .hero-names {
        animation: fadeUp 1.1s .5s forwards, shimmer 7s 1.5s linear infinite
    }
}

@keyframes shimmer {
    to {
        background-position: -120% 0
    }
}

.hero-ampersand {
    color: var(--rose-light);
    -webkit-text-fill-color: var(--rose-light);
    background: none;
    font-style: italic
}

.hero-date {
    font-size: .75rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    margin-top: 1.2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .9s .9s forwards
}


.scroll-cue {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    color: rgba(255, 255, 255, .6);
    font-size: .65rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s 1.8s forwards
}

.scroll-cue span {
    display: block;
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, .4);
    animation: scrollLine 1.5s 2s infinite
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top
    }

    50% {
        transform: scaleY(1);
        transform-origin: top
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom
    }
}

/* SECTIONS */
section {
    padding: 7rem 2rem
}

.section-label {
    font-size: .65rem;
    letter-spacing: .45em;
    text-transform: uppercase;
    color: var(--rose);
    display: block;
    margin-bottom: 1rem
}

.section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--dark)
}

.section-heading em {
    font-style: italic;
    color: var(--rose-deep)
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity .85s cubic-bezier(.16, 1, .3, 1), transform .85s cubic-bezier(.16, 1, .3, 1)
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-48px);
    transition: opacity .85s cubic-bezier(.16, 1, .3, 1), transform .85s cubic-bezier(.16, 1, .3, 1)
}

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

.reveal-right {
    opacity: 0;
    transform: translateX(48px);
    transition: opacity .85s cubic-bezier(.16, 1, .3, 1), transform .85s cubic-bezier(.16, 1, .3, 1)
}

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

.delay-1 {
    transition-delay: .1s
}

.delay-2 {
    transition-delay: .2s
}

.delay-3 {
    transition-delay: .35s
}

.delay-4 {
    transition-delay: .5s
}

/* RED THREAD */
.countdown-section,
.gifts-section {
    position: relative;
    overflow: hidden
}

.red-thread {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.72
}

.red-thread--tl {
    top: 0;
    left: 0
}

.red-thread--br {
    bottom: 0;
    right: 0
}

.red-thread--tr {
    top: 0;
    right: 0
}

.red-thread--bl {
    bottom: 0;
    left: 0
}

/* COUNTDOWN */
.countdown-section {
    background: var(--dark);
    padding: 5rem 2rem;
    text-align: center
}

.countdown-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3rem;
    font-weight: 300
}

.countdown-grid {
    display: flex;
    justify-content: center;
    gap: 1px;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto
}

.countdown-item {
    flex: 1;
    min-width: 120px;
    max-width: 160px;
    padding: 2.5rem 1rem;
    border: 1px solid rgba(196, 168, 130, .2)
}

.countdown-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5rem);
    color: #fff;
    font-weight: 300;
    line-height: 1;
    display: block
}

.countdown-label {
    font-size: .65rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: .7rem;
    display: block
}

/* CEREMONY */
.ceremony-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center
}

.ceremony-img-wrap {
    position: relative
}

.ceremony-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover
}

.ceremony-img-accent {
    position: absolute;
    bottom: -2.5rem;
    right: -2.5rem;
    width: 65%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border: 6px solid var(--cream)
}

.ceremony-details {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem
}

.detail-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start
}

.detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--rose-pale);
    border: 1px solid var(--rose-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.detail-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--rose-deep);
    fill: none;
    stroke-width: 1.5
}

.detail-text strong {
    display: block;
    font-size: .65rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--rose);
    font-weight: 500;
    margin-bottom: .35rem
}

.detail-text p {
    font-size: .98rem;
    color: var(--text);
    line-height: 1.6
}

/* FLORAL DIVIDER */
.floral-divider {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--rose-light);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    letter-spacing: .5em
}

/* GALLERY INFINITE STRIP */
.gallery-section {
    background: #fff;
    padding: 7rem 0
}

.gallery-header {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 4rem;
    padding: 0 2rem
}

.gallery-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: .8rem auto 1.2rem
}

.gallery-rule::before,
.gallery-rule::after {
    content: '';
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: var(--gold)
}

.gallery-rule-icon {
    color: var(--gold);
    font-size: .9rem;
    letter-spacing: .2em
}

.gallery-strip-wrap {
    overflow: hidden;
    width: 100%;
    cursor: grab;
    user-select: none
}

.gallery-strip-wrap:active {
    cursor: grabbing
}

.gallery-strip {
    display: flex;
    gap: 1.2rem;
    width: max-content;
    animation: infiniteScroll 65s linear infinite;
    padding: 0 .6rem
}

.gallery-strip:hover {
    animation-play-state: paused
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.strip-item {
    flex-shrink: 0;
    overflow: hidden
}

.strip-item img {
    display: block;
    height: 420px;
    width: auto;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.16, 1, .3, 1), filter .4s;
    filter: brightness(.97);
    cursor: zoom-in
}

.strip-item:hover img {
    transform: scale(1.03);
    filter: brightness(1.03)
}

/* GIFTS */
.gifts-section {
    background: var(--rose-pale);
    text-align: center;
    padding: 7rem 2rem
}

.gifts-inner {
    max-width: 680px;
    margin: 0 auto
}

.gifts-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3.5rem;
    flex-wrap: wrap
}

.gifts-cards--single {
    justify-content: center
}

.gifts-cards--single .gift-card {
    flex: 0 0 auto;
    width: 420px
}

.gift-card {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    background: #fff;
    border: 1px solid var(--rose-light);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform .3s, box-shadow .3s
}

.gift-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(160, 90, 69, .12)
}

.gift-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--rose-pale);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.gift-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--rose-deep);
    fill: none;
    stroke-width: 1.5
}

.gift-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: .5rem
}

.gift-card p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem
}

.gift-btn {
    display: inline-block;
    padding: .7rem 1.8rem;
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    border: 1px solid var(--rose-deep);
    color: var(--rose-deep);
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    transition: background .3s, color .3s
}

.gift-btn:hover {
    background: var(--rose-deep);
    color: #fff
}

.pix-key-box {
    margin-top: 1.5rem;
    padding: 1.4rem 2rem;
    background: var(--rose-pale);
    border: 1px solid var(--rose-light);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: .06em;
    color: var(--rose-deep);
    cursor: pointer;
    position: relative;
    transition: background .25s, border-color .25s;
    user-select: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem
}

.pix-key-box:hover {
    background: rgba(224, 144, 112, .18);
    border-color: var(--rose)
}

.pix-hint {
    display: block;
    font-size: .6rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: .4rem
}

.pix-copied {
    display: none;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: #fff;
    font-size: .7rem;
    padding: .3rem .8rem;
    white-space: nowrap
}

.pix-copied.show {
    display: block;
    animation: fadeIn .3s
}

/* LUA DE MEL */
.honeymoon-section {
    position: relative;
    background: var(--cream);
    padding: 7rem 2rem;
    overflow: hidden
}

.honeymoon-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

/* Avião */
.hm-plane {
    position: absolute;
    top: 2.5rem;
    right: 3rem;
    color: var(--rose-light);
    pointer-events: none;
    z-index: 1
}

.hm-plane-svg {
    width: 56px;
    height: auto;
    display: block;
    margin-left: auto
}

.hm-dash-path {
    width: 240px;
    height: auto;
    color: var(--rose-light);
    opacity: .6;
    margin-top: -8px;
    margin-left: auto;
    display: block;
    transform: scaleX(-1)
}

/* Cabeçalho */
.hm-header {
    text-align: center;
    margin-bottom: 4rem
}

/* Corpo */
.hm-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center
}

/* Foto */
.hm-photo-wrap {
    position: relative
}

.hm-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover
}

/* Conteúdo */
.hm-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem
}

.hm-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    line-height: 1.9;
    color: var(--text);
    font-style: italic
}

.hm-word {
    color: rgba(61, 43, 35, 0.15);
    transition: color 0.3s ease;
    display: inline
}

.hm-word.lit {
    color: var(--text)
}

/* PIX wrap */
.hm-pix-wrap {
    display: flex;
    align-items: center;
    gap: 1.8rem
}

.hm-pix-wrap>div {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.hm-qr-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    flex-shrink: 0
}

.hm-qr-label {
    font-size: .65rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: .5rem;
    display: block
}

/* RSVP */
.rsvp-section {
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem;
    text-align: center
}

.rsvp-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: right bottom;
    filter: brightness(.3) saturate(.7)
}

.rsvp-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 600px;
    margin: 0 auto
}

.rsvp-content .section-label {
    color: var(--rose-light)
}

.rsvp-content .section-heading {
    color: #fff
}

.rsvp-content p {
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .75)
}

.rsvp-btn {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 1rem 3rem;
    background: var(--rose);
    color: #fff;
    font-size: .78rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .3s, transform .2s
}

.rsvp-btn:hover {
    background: var(--rose-deep);
    transform: translateY(-2px)
}

/* FOOTER */
footer {
    background: var(--dark);
    padding: 4rem 2rem;
    text-align: center
}

.footer-names {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: .12em;
    margin-bottom: 1rem
}

footer p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .3);
    letter-spacing: .15em
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, .92);
    align-items: center;
    justify-content: center
}

.lightbox.open {
    display: flex
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1
}

/* KEYFRAMES */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeIn {
    to {
        opacity: 1
    }
}

/* ============================================================
   LEONARDO-STYLE EFFECTS
   ============================================================ */

/* Cursor-tracked spotlight on cards */
[data-glow] {
    position: relative;
    isolation: isolate
}

[data-glow]::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle 240px at var(--mx, 50%) var(--my, 50%),
            rgba(196, 144, 96, .35),
            rgba(224, 144, 112, .12) 35%,
            transparent 62%);
    opacity: 0;
    transition: opacity .45s ease;
    pointer-events: none;
    z-index: 0
}

[data-glow]:hover::before {
    opacity: 1
}

[data-glow]>* {
    position: relative;
    z-index: 1
}

/* Glow auras on hover */
.gift-card {
    transition: transform .35s cubic-bezier(.16, 1, .3, 1), box-shadow .45s ease, border-color .35s ease
}

.gift-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(160, 90, 69, .12),
        0 0 38px 4px rgba(196, 144, 96, .25);
    border-color: var(--gold)
}

.strip-item img {
    transition: transform .6s cubic-bezier(.16, 1, .3, 1), filter .4s, box-shadow .45s ease
}

.strip-item:hover img {
    transform: scale(1.03);
    filter: brightness(1.05);
    box-shadow: 0 0 42px 6px rgba(196, 144, 96, .45),
        0 0 0 1px rgba(196, 144, 96, .55)
}

.countdown-item {
    transition: border-color .4s ease, box-shadow .45s ease, background .4s ease
}

.countdown-item:hover {
    border-color: rgba(196, 168, 130, .55);
    box-shadow: inset 0 0 60px rgba(196, 144, 96, .12)
}

.detail-icon {
    transition: transform .4s cubic-bezier(.16, 1, .3, 1), box-shadow .45s ease, background .35s ease
}

.detail-item:hover .detail-icon {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 0 22px 2px rgba(196, 144, 96, .35);
    background: #fff
}

/* Magnetic CTA — JS sets --mtx/--mty */
[data-magnetic] {
    transition: transform .4s cubic-bezier(.22, 1, .36, 1)
}

[data-magnetic]:hover {
    transform: translate(var(--mtx, 0), var(--mty, 0))
}

.rsvp-btn[data-magnetic]:hover {
    background: var(--rose-deep);
    transform: translate(var(--mtx, 0), calc(var(--mty, 0) - 2px));
    box-shadow: 0 0 28px 4px rgba(196, 144, 96, .35)
}

.gift-btn[data-magnetic]:hover {
    background: var(--rose-deep);
    color: #fff;
    transform: translate(var(--mtx, 0), var(--mty, 0));
    box-shadow: 0 0 22px 3px rgba(196, 144, 96, .3)
}

/* Word-by-word heading reveal */
.section-heading .split-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
    transition-delay: calc(var(--i, 0) * 70ms)
}

.section-heading.visible .split-word,
.section-heading.reveal.visible .split-word {
    opacity: 1;
    transform: none
}

/* Headings carrying .reveal already animate via .reveal .visible.
   Override the wrapper transform so per-word transforms own the motion. */
.section-heading.reveal {
    opacity: 1;
    transform: none
}

.section-heading.reveal:not(.visible) .split-word {
    opacity: 0
}

@media (prefers-reduced-motion: reduce) {
    .section-heading .split-word {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important
    }
}

/* Petals canvas in hero */
#petalsCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen
}

/* Hero img will-change for blur/scale */
.hero-img {
    will-change: transform, filter
}

/* RESPONSIVE */
@media(max-width:768px) {
    nav {
        padding: 1rem 1.5rem
    }

    .nav-links {
        display: none
    }

    .ceremony-wrap {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .ceremony-img-accent {
        display: none
    }

    .strip-item img {
        height: 260px
    }

    .countdown-item {
        min-width: 90px
    }

    .hm-body {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .hm-plane {
        right: 1rem;
        top: 1.5rem
    }

    .hm-dash-path {
        width: 160px
    }

    .hm-pix-wrap {
        flex-direction: column;
        align-items: flex-start
    }

    .rsvp-section {
        padding: 6rem 2rem 18rem
    }
}

/* PAYMENT PAGE */
.payment-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.payment-photo-col {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden
}

.payment-photo-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block
}

.payment-info-col {
    padding: 7rem 4rem 5rem;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh
}

.payment-back {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color .25s;
    margin-bottom: 3rem
}

.payment-back:hover {
    color: var(--rose)
}

.payment-qr-wrap {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem
}

.payment-qr-img {
    width: 160px;
    height: 160px;
    border: 1px solid var(--rose-light);
    padding: .6rem;
    background: #fff
}

.bank-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: .8rem
}

.bank-details p {
    font-size: .82rem;
    color: var(--text-muted);
    letter-spacing: .04em
}

.bank-details strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text);
    margin-left: .5rem
}

.bank-label {
    font-size: .6rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--rose);
    display: block;
    margin-bottom: .8rem
}

@media(max-width: 768px) {
    .payment-page {
        grid-template-columns: 1fr
    }

    .payment-photo-col {
        position: relative;
        height: 55vw;
        min-height: 280px
    }

    .payment-info-col {
        padding: 4rem 2rem 5rem;
        min-height: auto
    }
}