@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600;1,700&display=swap');

:root {
    --bg-ivory: #faf8f5;
    --bg-cream: #f3efe6;
    --bg-card: #ffffff;
    --text-main: #1c1917;
    --text-sub: #57534e;
    --text-muted: #a8a29e;
    
    --gold: #c59b27;
    --gold-light: #f5e3a9;
    --gold-dark: #8c6b12;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #fef0be 30%, #b8860b 60%, #fdf5c9 85%, #996515 100%);
    --gold-glow: rgba(197, 155, 39, 0.2);

    --obsidian: #111113;
    --obsidian-card: linear-gradient(145deg, #18181b 0%, #09090b 100%);
    
    --whatsapp: #25d366;
    --whatsapp-dark: #1da851;
    
    --border-light: rgba(197, 155, 39, 0.25);
    --border-strong: rgba(197, 155, 39, 0.6);
    --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.05);
    --shadow-gold: 0 15px 40px rgba(197, 155, 39, 0.15);
}

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

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background-color: var(--bg-ivory);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    /* Subtle luxury marble/paper pattern in CSS */
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(197, 155, 39, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(197, 155, 39, 0.06) 0%, transparent 40%);
}

/* Floating Gold Particles */
.sparkle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.sparkle {
    position: absolute;
    background: #fef0be;
    border-radius: 50%;
    box-shadow: 0 0 10px 1px var(--gold);
    animation: floatUp 12s infinite linear, twinkle 3s infinite ease-in-out;
    opacity: 0;
}

@keyframes floatUp {
    0% { transform: translateY(100vh) scale(0.5); }
    100% { transform: translateY(-10vh) scale(1.2); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.8; }
}

/* Top Shimmer Banner */
.top-shimmer-bar {
    background: var(--obsidian);
    color: var(--gold-light);
    text-align: center;
    padding: 10px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.top-shimmer-bar i {
    color: var(--gold);
    font-size: 14px;
}

/* Header */
header {
    position: relative;
    z-index: 15;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(197, 155, 39, 0.2);
    width: 100%;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    max-width: 70%;
}

.brand-logo i {
    font-size: 32px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-main);
    text-transform: uppercase;
    line-height: 1;
}

.brand-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold-dark);
    text-transform: uppercase;
    margin-top: 3px;
}



/* Main Container */
main {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 5% 70px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Editorial Hero Section */
.hero {
    text-align: center;
    max-width: 800px;
    margin-bottom: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ornament-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 20px;
    width: 100%;
    max-width: 300px;
    justify-content: center;
}

.ornament-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border-strong);
    color: var(--gold-dark);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(197, 155, 39, 0.1);
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(28px, 7vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--text-main);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 span {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 700;
    /* Deep Burgundy/Crimson Royal Gradient */
    background: linear-gradient(135deg, #7a0016 0%, #b80f2e 50%, #7a0016 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-top: 4px;
    text-transform: none;
    letter-spacing: 1px;
}

.hero p {
    font-size: clamp(14px, 3.5vw, 17px);
    color: var(--text-sub);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 35px;
    font-weight: 400;
}

/* Wristwatch Style Countdown Timer (Responsive) */
.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    width: 100%;
    flex-wrap: wrap;
}

.time-dial {
    background: #ffffff;
    border: 2px solid var(--border-light);
    border-radius: 16px;
    width: clamp(72px, 20vw, 90px);
    height: clamp(72px, 20vw, 90px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 0.3s ease;
}

.time-dial::top {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 2px;
    background: var(--gold);
}

.time-val {
    font-family: 'Cinzel', serif;
    font-size: clamp(22px, 6vw, 32px);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 3px;
}

.time-lbl {
    font-size: 9px;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
}

/* Layout Redesign: Experience Zone */
.zones-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    align-items: stretch;
}

/* Zone 1: Retail Registry Card */
.zone-card {
    background: var(--bg-card);
    border: 1px solid rgba(197, 155, 39, 0.25);
    border-radius: 24px;
    padding: clamp(25px, 6vw, 35px);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.zone-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 12px;
    background: rgba(197, 155, 39, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    align-self: flex-start;
}

.zone-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(20px, 5vw, 24px);
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.25;
}

.zone-desc {
    color: var(--text-sub);
    font-size: clamp(13px, 3.5vw, 15px);
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

/* Responsive Form */
.notify-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.notify-input {
    width: 100%;
    background: #fdfbf7;
    border: 1.5px solid #e7e5e4;
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--text-main);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 500;
}

.notify-input:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 15px var(--gold-glow);
}

.notify-btn {
    width: 100%;
    background: #1c1917;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.notify-btn:hover {
    background: var(--gold-dark);
    color: #fff;
    box-shadow: 0 8px 20px var(--gold-glow);
}



/* WhatsApp Concierge Bar */
.wa-concierge-bar {
    margin-top: 50px;
    background: #ffffff;
    border: 1.5px solid var(--whatsapp);
    border-radius: 20px;
    padding: clamp(20px, 5vw, 25px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.08);
    flex-wrap: wrap;
}

.wa-text {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 250px;
}

.wa-text i {
    font-size: 36px;
    color: var(--whatsapp);
    flex-shrink: 0;
}

.wa-text h4 {
    font-family: 'Cinzel', serif;
    font-size: clamp(16px, 4vw, 18px);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
}

.wa-text p {
    color: var(--text-sub);
    font-size: 13px;
    margin-top: 2px;
}

.btn-wa {
    background: var(--whatsapp);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.25);
    white-space: nowrap;
    width: auto;
}

.btn-wa:hover {
    background: var(--whatsapp-dark);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* Footer */
footer {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(197, 155, 39, 0.2);
    color: var(--text-sub);
    font-size: 14px;
    background: #fff;
    width: 100%;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 15px;
    display: inline-block;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f4;
    border: 1px solid #e7e5e4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold-gradient);
    color: #111;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px var(--gold-glow);
}

.footer-bottom {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 25px;
    right: 25px;
    left: 25px;
    max-width: 400px;
    margin: 0 auto;
    background: #1c1917;
    color: white;
    padding: 16px 20px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    transform: translateY(120px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1.5px solid var(--gold);
}

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

/* MOBILE FIRST STRICT RESPONSIVE OVERRIDES */
@media (max-width: 900px) {
    .zones-container {
        gap: 20px;
    }
}

@media (max-width: 600px) {
    header {
        padding: 15px 4%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .brand-title {
        font-size: 18px;
    }
    .brand-subtitle {
        font-size: 8px;
    }

    main {
        padding: 30px 4% 50px;
    }
    .hero {
        margin-bottom: 35px;
    }
    .status-badge {
        font-size: 10px;
        padding: 6px 14px;
        margin-bottom: 18px;
    }
    .hero h1 {
        margin-bottom: 14px;
    }
    .hero p {
        margin-bottom: 25px;
        font-size: 14px;
    }
    .countdown-wrapper {
        gap: 8px;
        margin-bottom: 30px;
    }
    .time-dial {
        width: 70px;
        height: 70px;
        border-radius: 12px;
    }
    .time-val {
        font-size: 20px;
    }
    .time-lbl {
        font-size: 8px;
    }
    .zone-card {
        padding: 22px 18px;
        border-radius: 20px;
    }
    .wa-concierge-bar {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        gap: 15px;
    }
    .wa-text {
        flex-direction: column;
        gap: 8px;
        min-width: unset;
    }
    .btn-wa {
        width: 100%;
    }
    .toast {
        bottom: 15px;
        right: 15px;
        left: 15px;
    }
}
