:root {
    --cream: #fff8f2;
    --soft-cream: #fffdf9;
    --blush: #f7d8d0;
    --blush-light: #fff0eb;
    --rose: #c9897e;
    --gold: #c79b55;
    --gold-light: #e9c985;
    --brown: #3e2922;
    --muted-brown: #7d625a;
    --shadow: 0 18px 45px rgba(89, 48, 38, 0.16);
    --button-shadow: 0 10px 24px rgba(89, 48, 38, 0.13);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    color: var(--brown);
    background:
            radial-gradient(circle at top left, rgba(247, 216, 208, 0.85), transparent 35%),
            radial-gradient(circle at bottom right, rgba(233, 201, 133, 0.35), transparent 30%),
            linear-gradient(135deg, #f7e7df 0%, #fff8f2 48%, #f3d7cf 100%);
}

.page {
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 22px 14px;
}

.card {
    position: relative;
    width: 100%;
    max-width: 460px;
    overflow: hidden;
    padding: 34px 22px 26px;
    border: 1px solid rgba(199, 155, 85, 0.38);
    border-radius: 34px;
    background:
            radial-gradient(circle at 12% 8%, rgba(247, 216, 208, 0.72), transparent 23%),
            radial-gradient(circle at 92% 88%, rgba(247, 216, 208, 0.72), transparent 22%),
            linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(255, 248, 242, 0.96));
    box-shadow: var(--shadow);
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
            linear-gradient(135deg, rgba(199, 155, 85, 0.08) 0 1px, transparent 1px 100%),
            radial-gradient(circle at 82% 12%, rgba(199, 155, 85, 0.14), transparent 8%),
            radial-gradient(circle at 18% 92%, rgba(247, 216, 208, 0.55), transparent 13%);
    background-size: 36px 36px, auto, auto;
    opacity: 0.55;
}

.decor {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 999px;
    pointer-events: none;
    opacity: 0.4;
    filter: blur(1px);
}

.decor-top-left {
    top: -55px;
    left: -55px;
    background: rgba(247, 216, 208, 0.9);
}

.decor-bottom-right {
    right: -65px;
    bottom: -65px;
    background: rgba(233, 201, 133, 0.45);
}

.hero,
.links,
.zelle-card,
footer {
    position: relative;
    z-index: 1;
}

.hero {
    text-align: center;
    margin-bottom: 28px;
}

.logo-circle {
    width: 118px;
    height: 118px;
    margin: 0 auto 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(199, 155, 85, 0.76);
    border-radius: 999px;
    background:
            radial-gradient(circle at 30% 25%, #fff7f4, #f6d4cc 70%);
    box-shadow:
            0 12px 30px rgba(89, 48, 38, 0.13),
            inset 0 0 0 6px rgba(255, 255, 255, 0.5);
}

.logo-text {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 48px;
    line-height: 0.9;
    font-weight: 700;
    color: var(--rose);
    letter-spacing: -2px;
}

.logo-sub {
    margin-top: 5px;
    font-size: 10px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(42px, 11vw, 58px);
    font-weight: 600;
    line-height: 0.95;
    color: var(--brown);
}

.divider,
.footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 18px auto 10px;
    color: var(--gold);
}

.divider span,
.footer-divider span {
    display: block;
    width: 72px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.flower {
    font-size: 20px;
}

.tagline {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted-brown);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.links {
    display: grid;
    gap: 14px;
}

.link-button {
    min-height: 68px;
    display: grid;
    grid-template-columns: 52px 1fr 26px;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid rgba(199, 155, 85, 0.65);
    border-radius: 22px;
    color: var(--brown);
    text-decoration: none;
    background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 238, 233, 0.96));
    box-shadow: var(--button-shadow);
    transition:
            transform 160ms ease,
            box-shadow 160ms ease,
            border-color 160ms ease;
}

.link-button:hover,
.link-button:focus-visible {
    transform: translateY(-2px);
    border-color: var(--gold);
    box-shadow: 0 14px 30px rgba(89, 48, 38, 0.18);
    outline: none;
}

.link-button:active {
    transform: translateY(0);
}

.link-button.primary {
    background:
            linear-gradient(135deg, #fffaf6, #ffeae4);
}

.icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(247, 216, 208, 0.86);
    color: var(--gold);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 25px;
    font-weight: 700;
}

.icon-booking {
    background: #f76f72;
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(247, 111, 114, 0.4);
}

.icon-cash-app {
    background: #00d64f;
    color: #ffffff;
}

.icon-venmo {
    background: #008cff;
    color: #ffffff;
}

.icon-paypal {
    background: #003087;
    color: #ffffff;
}

.icon-zelle {
    width: 34px;
    height: 34px;
    background: #6d1ed4;
    color: #ffffff;
    font-size: 18px;
}

.label {
    text-align: center;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
}

.arrow {
    color: var(--gold);
    font-size: 42px;
    line-height: 1;
}

.zelle-card {
    margin-top: 18px;
    padding: 22px 16px 18px;
    border: 1px solid rgba(199, 155, 85, 0.65);
    border-radius: 24px;
    background:
            linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(255, 246, 241, 0.96));
    box-shadow: var(--button-shadow);
    text-align: center;
}

.zelle-title-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    color: var(--gold);
}

.zelle-title-row h2 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 44px;
    font-weight: 600;
    color: var(--brown);
}

.zelle-note {
    margin: 6px 0 16px;
    font-size: 13px;
    color: var(--muted-brown);
}

.copy-box {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(201, 137, 126, 0.35);
    border-radius: 16px;
    background: rgba(255, 235, 230, 0.82);
    color: var(--brown);
    font: inherit;
    font-size: 16px;
    cursor: pointer;
}

.copy-box span:first-child {
    overflow-wrap: anywhere;
}

.copy-icon {
    color: var(--gold);
    font-size: 24px;
}

.copy-button {
    min-width: 138px;
    margin-top: 12px;
    padding: 11px 18px;
    border: 1px solid rgba(201, 137, 126, 0.42);
    border-radius: 999px;
    background: linear-gradient(180deg, #f7d8d0, #efc0b7);
    color: var(--brown);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(89, 48, 38, 0.13);
}

.copy-button:hover,
.copy-button:focus-visible {
    filter: brightness(1.03);
    outline: none;
}

.copy-status {
    min-height: 20px;
    margin: 10px 0 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--rose);
}

footer {
    margin-top: 24px;
    text-align: center;
}

.footer-divider {
    margin-bottom: 10px;
}

footer p {
    max-width: 280px;
    margin: 0 auto;
    color: var(--muted-brown);
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 390px) {
    .page {
        padding: 12px;
        align-items: flex-start;
    }

    .card {
        min-height: calc(100vh - 24px);
        padding: 26px 16px 22px;
        border-radius: 28px;
    }

    .logo-circle {
        width: 104px;
        height: 104px;
    }

    .logo-text {
        font-size: 42px;
    }

    .tagline {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .link-button {
        min-height: 62px;
        grid-template-columns: 46px 1fr 22px;
        padding: 9px 13px;
        border-radius: 19px;
    }

    .icon {
        width: 39px;
        height: 39px;
        font-size: 22px;
    }

    .label {
        font-size: 28px;
    }

    .arrow {
        font-size: 36px;
    }

    .zelle-title-row h2 {
        font-size: 38px;
    }

    .copy-box {
        font-size: 14px;
    }
}
