*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green-deep: #1a3a1f;
    --green-mid: #2d6a35;
    --green-light: #4a9e55;
    --green-pale: #c8e6cb;
    --cream: #f5f0e8;
    --gold: #c9a84c;
    --white: #ffffff;
}

html,
body {
    height: 100%;
    font-family: 'Nunito', sans-serif;
    background: var(--green-deep);
    overflow-x: hidden;
}

/* ── Animated background ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 10%, #162016 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 80%, #111a11 0%, transparent 60%),
        linear-gradient(160deg, #0d140d 0%, #1a271a 50%, #080c08 100%);
    animation: bgShift 8s ease-in-out infinite alternate;
    z-index: 0;

     --bg-void: ;
    --bg-deep: ;
    --bg-surface: ;
    --bg-raised: ;
    --bg-card: ;
}

@keyframes bgShift {
    0% {
        filter: brightness(1);
    }

    100% {
        filter: brightness(1.12);
    }
}

/* Leaf / texture overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle 1px at 15% 25%, rgba(255, 255, 255, .08) 1px, transparent 1px),
        radial-gradient(circle 1px at 70% 55%, rgba(255, 255, 255, .06) 1px, transparent 1px),
        radial-gradient(circle 1px at 40% 75%, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 300px 300px, 200px 200px, 400px 400px;
    z-index: 0;
    pointer-events: none;
}

/* ── Page wrapper ── */
.page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px 64px;
    gap: 0;
}

/* ── Logo ── */
.logo-wrap {
    animation: fadeDown .7s ease both;
    margin-bottom: 28px;
}

.logo-wrap img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .45), 0 0 0 3px var(--gold);
}

.logo-placeholder {
    width: 110px;
    height: 110px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    line-height: 1.3;
    padding: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .45), 0 0 0 3px var(--gold);
}

/* ── Heading ── */
.heading {
    animation: fadeDown .7s .1s ease both;
    text-align: center;
    margin-bottom: 10px;
}

.heading h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 6vw, 40px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .4);
}

.heading h1 span {
    color: var(--gold);
}

.subhead {
    font-size: 15px;
    color: var(--green-pale);
    margin-top: 8px;
    letter-spacing: .02em;
    animation: fadeDown .7s .2s ease both;
    margin-bottom: 36px;
    text-align: center;
}

/* ── Cards ── */
.cards {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
    animation: fadeUp .6s ease both;
}

.card:nth-child(1) {
    animation-delay: .3s;
}

.card:nth-child(2) {
    animation-delay: .45s;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .13) 0%, rgba(255, 255, 255, .04) 100%);
    border: 1.5px solid rgba(255, 255, 255, .18);
    pointer-events: none;
}

.card-group {
    background: linear-gradient(135deg, #25623a 0%, #1c4a2b 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .12);
}

.card-chat {
    background: linear-gradient(135deg, #1b5c2e 0%, #154422 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .12);
}

.card:hover,
.card:focus-visible {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .45), 0 0 0 2px var(--gold);
    outline: none;
}

.card:active {
    transform: scale(.98);
}

/* WA icon */
.wa-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
}

.wa-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* Phone icon */
.ph-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold), #a07830);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(201, 168, 76, .35);
}

.ph-icon svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.card-text {
    flex: 1;
}

.card-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green-pale);
    margin-bottom: 3px;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
}

.card-desc {
    font-size: 12.5px;
    color: rgba(200, 230, 203, .65);
    margin-top: 3px;
}

.arrow {
    flex-shrink: 0;
    color: var(--gold);
    font-size: 22px;
    line-height: 1;
    transition: transform .2s ease;
}

.card:hover .arrow {
    transform: translateX(4px);
}

/* Phone sub-options */
.phone-picker {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
}

.phone-picker.open {
    display: flex;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    text-decoration: none;
    transition: background .15s ease, transform .15s ease;
}

.phone-btn:hover {
    background: rgba(255, 255, 255, .13);
    transform: translateX(3px);
}

.phone-btn span {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .03em;
}

.phone-btn small {
    font-size: 11px;
    color: var(--green-pale);
    margin-left: auto;
}

/* ── Divider text ── */
.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(200, 230, 203, .4);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    animation: fadeUp .6s .38s ease both;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(200, 230, 203, .2);
}

/* ── Footer ── */
.footer {
    margin-top: 44px;
    font-size: 11.5px;
    color: rgba(200, 230, 203, .35);
    text-align: center;
    animation: fadeUp .6s .6s ease both;
}

/* ── Animations ── */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse ring on WA icon */
.wa-icon {
    position: relative;
}

.wa-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 18px;
    border: 2px solid #25d366;
    opacity: 0;
    animation: pulseRing 2.4s ease-in-out infinite;
}

@keyframes pulseRing {
    0% {
        opacity: .5;
        transform: scale(1);
    }

    70% {
        opacity: 0;
        transform: scale(1.25);
    }

    100% {
        opacity: 0;
        transform: scale(1.25);
    }
}