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

body {
    font-family: 'Inter', sans-serif;
    background: #f5f0e8;
    color: #2c2a25;
    min-height: 100vh;
    overflow-x: hidden;
}

.bg-pattern {
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(139, 169, 120, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(183, 156, 99, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 169, 120, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.inv-wrap {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* ── SPLASH ── */
.splash {
    position: fixed;
    inset: 0;
    background: #1e2d1a;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
    transition: opacity 0.8s ease;
}

.splash-leaf {
    font-size: 56px;
    margin-bottom: 20px;
    animation: sway 3s ease-in-out infinite;
}

@keyframes sway {

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

    50% {
        transform: rotate(5deg);
    }
}

.splash-org {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.splash-badge {
    background: rgba(139, 169, 120, 0.2);
    border: 1px solid rgba(139, 169, 120, 0.4);
    border-radius: 20px;
    padding: 4px 14px 4px 6px;
    font-size: 11px;
    color: #a8c990;
    letter-spacing: 1px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.splash-badge img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.splash-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 7vw, 60px);
    color: #f0ebe0;
    margin-bottom: 10px;
    font-style: italic;
}

.splash-sub {
    font-size: 13px;
    color: rgba(240, 235, 224, 0.6);
    line-height: 1.7;
    margin-bottom: 8px;
    max-width: 340px;
}

.splash-sub strong {
    color: #a8c990;
}

.splash-date-txt {
    font-size: 12px;
    letter-spacing: 3px;
    color: #c9a96e;
    margin-bottom: 36px;
    text-transform: uppercase;
}

.splash-open {
    background: #5a7a42;
    color: #f0ebe0;
    border: none;
    border-radius: 40px;
    padding: 14px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.splash-open:hover {
    background: #4a6534;
    transform: scale(1.04);
}

.splash-hint {
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(240, 235, 224, 0.35);
    margin-top: 14px;
    text-transform: uppercase;
    animation: blink 2s ease-in-out infinite alternate;
}

@keyframes blink {
    from {
        opacity: 0.3;
    }

    to {
        opacity: 0.7;
    }
}

/* ── HEADER ── */
.header-wrap {
    background: #1e2d1a;
    border-radius: 0 0 32px 32px;
    padding: 32px 28px 40px;
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.h-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(139, 169, 120, 0.12);
    pointer-events: none;
}

.h-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -80px;
}

.h-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    top: -40px;
    right: -60px;
}

.h-circle:nth-child(3) {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.badges-row {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
    position: relative;
}

.org-pill {
    background: rgba(139, 169, 120, 0.15);
    border: 1px solid rgba(139, 169, 120, 0.3);
    border-radius: 20px;
    padding: 5px 14px 5px 6px;
    font-size: 11px;
    color: #a8c990;
    letter-spacing: 1px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.org-pill img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.h-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    color: rgba(240, 235, 224, 0.45);
    text-transform: uppercase;
    margin-bottom: 8px;
    position: relative;
}

.h-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 8vw, 64px);
    color: #f0ebe0;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 12px;
    position: relative;
}

.h-subtitle {
    font-size: clamp(13px, 3vw, 17px);
    color: rgba(240, 235, 224, 0.7);
    line-height: 1.6;
    max-width: 420px;
    margin: 0 auto 6px;
    position: relative;
}

.h-subtitle em {
    color: #a8c990;
    font-style: normal;
    font-weight: 500;
}

.h-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px auto;
    max-width: 280px;
}

.h-line {
    flex: 1;
    height: 1px;
    background: rgba(201, 169, 110, 0.4);
}

.h-dot {
    width: 6px;
    height: 6px;
    background: #c9a96e;
    border-radius: 50%;
}

/* ── COUNTDOWN ── */
.countdown-wrap {
    background: #fff8ee;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
}

.cd-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #8a7a5a;
    text-align: center;
    margin-bottom: 14px;
}

.cd-grid {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cd-box {
    background: #1e2d1a;
    border-radius: 14px;
    padding: 14px 16px;
    min-width: 68px;
    text-align: center;
    flex: 1;
    max-width: 90px;
}

.cd-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 5vw, 34px);
    color: #a8c990;
    line-height: 1;
    font-weight: 700;
    display: block;
}

.cd-unit {
    font-size: 9px;
    letter-spacing: 2px;
    color: rgba(240, 235, 224, 0.5);
    margin-top: 4px;
    text-transform: uppercase;
}

/* ── INFO CARDS ── */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

.info-card {
    background: #fff;
    border: 1px solid rgba(139, 169, 120, 0.25);
    border-radius: 18px;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.info-card.clickable {
    cursor: pointer;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(90, 122, 66, 0.12);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #5a7a42, #c9a96e);
    border-radius: 3px 3px 0 0;
}

.ic-icon {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.ic-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #5a7a42;
    font-weight: 600;
    margin-bottom: 6px;
}

.ic-content {
    font-size: 14px;
    line-height: 1.7;
    color: #3a3530;
}

.ic-hl {
    color: #c9a96e;
    font-weight: 600;
}

.ic-hl2 {
    color: #5a7a42;
    font-weight: 600;
}

.ic-link {
    color: #5a7a42;
    font-size: 12px;
    margin-top: 5px;
    display: inline-block;
}

.cal-badge-s {
    display: inline-block;
    background: rgba(90, 122, 66, 0.08);
    border: 1px solid rgba(90, 122, 66, 0.25);
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 11px;
    color: #5a7a42;
    margin-top: 5px;
    cursor: pointer;
}

/* ── SECTIONS ── */
.section-hd {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 28px 0 16px;
}

.section-hd h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(15px, 3vw, 21px);
    color: #1e2d1a;
    font-weight: 700;
    white-space: nowrap;
}

.sec-line {
    flex: 1;
    height: 1px;
    background: rgba(90, 122, 66, 0.2);
}

/* ── SCHEDULE ── */
.sch-item {
    background: #fff;
    border: 1px solid rgba(139, 169, 120, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 12px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.2s;
    position: relative;
    overflow: hidden;
}

.sch-item:hover {
    transform: translateX(4px);
}

.sch-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #5a7a42;
    border-radius: 4px 0 0 4px;
}

.sch-item.day2::before {
    background: #c9a96e;
}

.sch-date-box {
    background: #1e2d1a;
    border-radius: 12px;
    padding: 10px 12px;
    text-align: center;
    min-width: 60px;
    flex-shrink: 0;
    cursor: pointer;
    transition: background 0.2s;
}

.sch-date-box:hover {
    background: #2e4028;
}

.sch-date-box.day2 {
    background: #4a3a1a;
}

.sch-date-box.day2:hover {
    background: #5a4a28;
}

.sch-num {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #a8c990;
    line-height: 1;
}

.sch-date-box.day2 .sch-num {
    color: #e8c97a;
}

.sch-mo {
    font-size: 9px;
    letter-spacing: 1.5px;
    color: rgba(240, 235, 224, 0.5);
    text-transform: uppercase;
    margin-top: 2px;
}

.sch-tag {
    display: inline-block;
    background: rgba(90, 122, 66, 0.1);
    border: 1px solid rgba(90, 122, 66, 0.2);
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 10px;
    letter-spacing: 1px;
    color: #5a7a42;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.sch-tag.d2 {
    background: rgba(201, 169, 110, 0.1);
    border-color: rgba(201, 169, 110, 0.25);
    color: #a07830;
}

.sch-topic {
    font-size: 16px;
    font-weight: 600;
    color: #1e2d1a;
    margin-bottom: 3px;
}

.sch-time {
    font-size: 12px;
    color: #7a7060;
}

.spk-label {
    font-size: 11px;
    color: #5a7a42;
    margin: 8px 0 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.sch-item.day2 .spk-label {
    color: #a07830;
}

.speakers {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.spk-pill {
    background: #f0ebe0;
    border: 1px solid rgba(139, 169, 120, 0.3);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 11px;
    color: #4a3a20;
}

/* ── BENEFITS ── */
.ben-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 8px;
}

@media (max-width: 540px) {
    .ben-grid {
        grid-template-columns: 1fr;
    }
}

.ben-item {
    background: #fff;
    border: 1px solid rgba(139, 169, 120, 0.2);
    border-radius: 16px;
    padding: 18px 14px;
    text-align: center;
    transition: transform 0.2s;
}

.ben-item:hover {
    transform: translateY(-3px);
}

.ben-icon {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
}

.ben-text {
    font-size: 13px;
    color: #4a4030;
    line-height: 1.5;
}

.tag-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 14px;
}

.tag-item {
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid;
}

.tag-green {
    background: rgba(90, 122, 66, 0.08);
    border-color: rgba(90, 122, 66, 0.3);
    color: #3a5a28;
}

.tag-gold {
    background: rgba(201, 169, 110, 0.1);
    border-color: rgba(201, 169, 110, 0.4);
    color: #8a6020;
}

.tag-sage {
    background: rgba(139, 169, 120, 0.1);
    border-color: rgba(139, 169, 120, 0.4);
    color: #2e4820;
}

/* ── PAYMENT ── */
.pay-wrap {
    background: #fff;
    border: 1px solid rgba(201, 169, 110, 0.35);
    border-radius: 20px;
    padding: 24px;
    margin: 8px 0 16px;
    position: relative;
    overflow: hidden;
}

.pay-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c9a96e, #a07830, #c9a96e);
}

.pay-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: #1e2d1a;
    font-weight: 700;
    margin-bottom: 14px;
}

.price-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    align-items: center;
}

.price-chip {
    border-radius: 10px;
    padding: 8px 16px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-chip.green {
    background: rgba(90, 122, 66, 0.08);
    border: 1px solid rgba(90, 122, 66, 0.25);
}

.price-chip.gold {
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.35);
}

.price-chip .amt {
    font-size: 20px;
    font-weight: 700;
}

.price-chip.green .amt {
    color: #3a5a28;
}

.price-chip.gold .amt {
    color: #8a6020;
}

.price-chip .lbl {
    font-size: 11px;
    color: #7a7060;
}

.pay-box {
    background: #fffcf5;
    border: 1px solid rgba(201, 169, 110, 0.25);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.bank-nm {
    font-size: 12px;
    font-weight: 600;
    color: #8a6020;
    margin-bottom: 3px;
}

.bank-no {
    font-size: 18px;
    font-weight: 700;
    color: #2c2a25;
    letter-spacing: 2px;
    font-family: monospace;
}

.bank-owner {
    font-size: 11px;
    color: #7a7060;
    margin-top: 3px;
}

.copy-btn {
    background: rgba(201, 169, 110, 0.12);
    border: 1px solid rgba(201, 169, 110, 0.4);
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #8a6020;
    cursor: pointer;
    transition: background 0.2s;
}

.copy-btn:hover {
    background: rgba(201, 169, 110, 0.22);
}

.note-box {
    background: rgba(90, 122, 66, 0.05);
    border: 1px solid rgba(90, 122, 66, 0.15);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 12px;
    color: #4a4030;
    line-height: 1.7;
    margin-top: 6px;
}

.cash-box {
    background: rgba(201, 169, 110, 0.06);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 12px;
}

.cash-title {
    font-size: 13px;
    font-weight: 600;
    color: #8a6020;
    margin-bottom: 6px;
}

.cash-desc {
    font-size: 12px;
    color: #4a4030;
    line-height: 1.7;
    margin-bottom: 10px;
}

.wa-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.35);
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 12px;
    color: #8a6020;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.wa-btn:hover {
    background: rgba(201, 169, 110, 0.2);
}

/* ── CONTACT ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 14px;
}

@media (max-width: 480px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-card {
    background: #fff;
    border: 1px solid rgba(139, 169, 120, 0.25);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(90, 122, 66, 0.12);
}

.ct-avatar {
    width: 44px;
    height: 44px;
    background: #1e2d1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.ct-name {
    font-size: 15px;
    font-weight: 600;
    color: #1e2d1a;
}

.ct-num {
    font-size: 12px;
    color: #5a7a42;
    margin-top: 2px;
    font-weight: 500;
}

.ct-wa {
    font-size: 11px;
    color: #3a8a3a;
    margin-top: 3px;
}

/* ── QR ── */
.qr-wrap {
    background: #fff;
    border: 1px solid rgba(139, 169, 120, 0.25);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    margin: 8px 0;
    position: relative;
    overflow: hidden;
}

.qr-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #5a7a42, #a8c990, #5a7a42);
}

.qr-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #1e2d1a;
    font-weight: 700;
    margin-bottom: 16px;
}

.qr-img-wrap {
    width: 160px;
    height: 160px;
    margin: 0 auto 14px;
    background: #f0ebe0;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid rgba(90, 122, 66, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.scan-lbl {
    font-size: 11px;
    letter-spacing: 3px;
    color: #8a7a5a;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.cta-btn {
    display: block;
    max-width: 320px;
    margin: 0 auto;
    background: #1e2d1a;
    color: #f0ebe0;
    padding: 15px 32px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s, transform 0.2s;
}

.cta-btn:hover {
    background: #2e4028;
    transform: scale(1.03);
}

.cta-hint {
    font-size: 12px;
    color: #8a7a5a;
    margin-top: 12px;
}

/* ── FOOTER ── */
.footer {
    text-align: center;
    padding: 28px 0 10px;
    font-size: 11px;
    color: #8a7a5a;
    letter-spacing: 2px;
}

.footer strong {
    color: #5a7a42;
}

.footer-divider {
    margin: 10px auto;
    width: 60px;
    height: 1px;
    background: rgba(90, 122, 66, 0.2);
}

/* ── TOAST ── */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    background: #1e2d1a;
    color: #a8c990;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* ── MUSIC FAB ── */
.music-fab {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 500;
}

.music-fab button {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #1e2d1a;
    border: 2px solid rgba(139, 169, 120, 0.4);
    color: #a8c990;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
}

.music-fab button:hover {
    transform: scale(1.1);
    background: #2e4028;
}

/* ── CALENDAR POPUP ── */
.cal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
}

.cal-overlay.active {
    display: block;
}

.cal-popup {
    display: none;
    position: fixed;
    z-index: 999;
    background: #fff;
    border: 1px solid rgba(90, 122, 66, 0.3);
    border-radius: 14px;
    padding: 16px;
    min-width: 220px;
    box-shadow: 0 8px 30px rgba(30, 45, 26, 0.15);
}

.cal-popup.active {
    display: block;
}

.cal-popup-title {
    font-size: 11px;
    letter-spacing: 1px;
    color: #8a7a5a;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.cal-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    color: #2c2a25;
    font-weight: 500;
    margin-bottom: 4px;
    transition: background 0.15s;
    border: 1px solid transparent;
}

.cal-opt:hover {
    background: rgba(90, 122, 66, 0.08);
    border-color: rgba(90, 122, 66, 0.2);
}

.cal-ico {
    font-size: 16px;
}