:root {
    --cream-bg: #fcf9f5;
    --marble-light: #fefdfc;
    --charcoal: #1e1d1b;
    --charcoal-soft: #383532;
    --blush: #f4ece7;
    --blush-dark: #e8dad2;
    
    --rose-gold-light: #f8ded1;
    --rose-gold-mid: #c58c7e;
    --rose-gold-dark: #8a5347;
    
    --rose-gold-gradient: linear-gradient(135deg, #fcece5 0%, #e2a898 30%, #c58c7e 65%, #8a5347 100%);
    --rose-gold-metal: linear-gradient(90deg, #9d6457 0%, #d89e90 25%, #fcedea 50%, #c58c7e 75%, #8a5347 100%);
    
    --font-serif: 'Cormorant Garamond', 'Playfair Display', serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', sans-serif;
    --font-cursive: 'Alex Brush', cursive;
    
    --shadow-soft: 0 10px 30px rgba(138, 83, 71, 0.08);
    --shadow-card: 0 15px 35px rgba(30, 29, 27, 0.06);
}

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

body {
    background-color: var(--cream-bg);
    color: var(--charcoal);
    font-family: var(--font-sans);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

/* Marble Background Pattern */
.marble-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(244, 236, 231, 0.5) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(232, 218, 210, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(254, 253, 252, 0.8) 0%, rgba(246, 239, 233, 0.6) 100%);
    z-index: -3;
}

/* Palm/Leaf Shadow Effect */
.leaf-shadow {
    position: fixed;
    top: 0;
    left: -5%;
    width: 50vw;
    height: 100vh;
    background: radial-gradient(ellipse at center, rgba(30,29,27,0.03) 0%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
    z-index: -2;
}

/* Left Organic Waves */
.left-waves {
    position: fixed;
    top: 0;
    left: 0;
    width: 32vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

.left-waves svg {
    width: 100%;
    height: 100%;
}

/* Hanging Lamp (Top Right) */
.hanging-lamp {
    position: fixed;
    top: 0;
    right: 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    transform-origin: top center;
    animation: lampSwing 6s infinite ease-in-out;
}

.hanging-lamp .cord {
    width: 1.5px;
    height: 90px;
    background: linear-gradient(to bottom, #8a5347, #d49b8d);
}

@keyframes lampSwing {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(1.5deg); }
}

/* Main Page Layout */
.page-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
}

.content-container {
    max-width: 720px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.8rem;
    padding: 1rem 0;
}

/* Header & Monogram */
.brand-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.logo-monogram-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -15px;
}

.monogram-svg {
    filter: drop-shadow(0 4px 12px rgba(197, 140, 126, 0.15));
    transition: transform 0.4s ease;
}

.logo-monogram-container:hover .monogram-svg {
    transform: scale(1.03);
}

.sparkle-star {
    transform-origin: center;
    animation: sparkleGlow 3s infinite ease-in-out;
}

@keyframes sparkleGlow {
    0%, 100% { transform: translate(165px, 38px) scale(0.9) rotate(0deg); opacity: 0.8; }
    50% { transform: translate(165px, 38px) scale(1.2) rotate(15deg); opacity: 1; filter: drop-shadow(0 0 6px #fcedea); }
}

.brand-title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 14px;
    color: var(--charcoal);
    line-height: 1;
    margin-right: -14px; /* Offset letter-spacing */
}

.brand-subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 0.4rem;
}

.brand-subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 8px;
    color: var(--rose-gold-dark);
    margin-right: -8px;
}

.sub-line {
    width: 45px;
    height: 1.5px;
    background: var(--rose-gold-metal);
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    width: 100%;
}

.sub-heading {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--charcoal-soft);
    margin-right: -6px;
}

.main-heading-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 0.2rem;
}

.main-heading {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 700;
    letter-spacing: 12px;
    margin-right: -12px;
    background: var(--rose-gold-metal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(197, 140, 126, 0.2);
}

.sparkle {
    font-size: 1.4rem;
    color: var(--rose-gold-mid);
    animation: pulseSparkle 2.5s infinite ease-in-out;
}

.left-sparkle { animation-delay: 0s; }
.right-sparkle { animation-delay: 1.2s; }

@keyframes pulseSparkle {
    0%, 100% { opacity: 0.5; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.3); }
}

.description-text {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--charcoal-soft);
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.heart-divider {
    margin: 0.2rem 0;
    animation: heartPulse 2s infinite ease-in-out;
}

@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Bell Notification Card (The Card from Reference Image) */
.notification-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: 0.9rem 2.2rem;
    border: 1.5px solid rgba(197, 140, 126, 0.6);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-width: 580px;
    width: 100%;
}

.notification-card:hover, .notification-card:focus {
    transform: translateY(-3px);
    border-color: var(--rose-gold-mid);
    box-shadow: 0 18px 40px rgba(197, 140, 126, 0.2);
    background: rgba(255, 255, 255, 0.85);
    outline: none;
}

.bell-3d {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.notification-card:hover .bell-3d {
    animation: bellRing 0.8s ease-in-out;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0deg); }
    20%, 60% { transform: rotate(15deg); }
    40%, 80% { transform: rotate(-15deg); }
}

.notification-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.1rem;
}

.box-title {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--charcoal);
}

.box-cursive {
    font-family: var(--font-cursive);
    font-size: 1.55rem;
    color: var(--rose-gold-dark);
    line-height: 1.1;
}

/* Email Form Modal / Expandable */
.email-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    max-width: 500px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.email-form.hidden {
    display: none;
}

.input-group {
    display: flex;
    width: 100%;
    gap: 0.5rem;
}

.input-group input {
    flex: 1;
    padding: 0.85rem 1.2rem;
    border-radius: 30px;
    border: 1.5px solid var(--rose-gold-mid);
    background: rgba(255, 255, 255, 0.9);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    border-color: var(--rose-gold-dark);
    box-shadow: 0 0 0 3px rgba(197, 140, 126, 0.15);
}

.submit-btn {
    padding: 0.85rem 1.5rem;
    border-radius: 30px;
    border: none;
    background: var(--rose-gold-metal);
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(138, 83, 71, 0.3);
}

.submit-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(138, 83, 71, 0.4);
}

.form-tip {
    font-size: 0.78rem;
    color: #777;
}

/* Footer Section */
.brand-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-heart-msg {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--charcoal-soft);
}

.heart-icon {
    color: var(--rose-gold-mid);
}

.quick-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    border: 1px solid rgba(197, 140, 126, 0.3);
    background: rgba(255, 255, 255, 0.5);
    color: var(--charcoal-soft);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--rose-gold-mid);
    color: var(--rose-gold-dark);
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Decorative Right Desk Workspace Scene */
.desk-scene-decor {
    position: fixed;
    right: 3vw;
    bottom: 4vh;
    width: 320px;
    height: 240px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.9;
}

/* Laptop Mockup */
.laptop-mockup {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 220px;
}

.laptop-screen {
    width: 200px;
    height: 130px;
    background: #1a1a1a;
    border-radius: 8px 8px 0 0;
    border: 3px solid #333;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

.screen-content {
    width: 90%;
    height: 85%;
    background: #faf6f3;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.laptop-base {
    width: 220px;
    height: 10px;
    background: linear-gradient(to bottom, #d5d5d5, #a3a3a3);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Mug Mockup */
.mug-decor {
    position: absolute;
    right: 0px;
    bottom: 10px;
    width: 50px;
    height: 55px;
}

.mug-body {
    width: 42px;
    height: 50px;
    background: linear-gradient(135deg, #2b2826 0%, #151413 100%);
    border-radius: 4px 4px 12px 12px;
    border-top: 2px solid #c58c7e;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 4px 10px rgba(0,0,0,0.2);
}

.mug-monogram {
    font-family: var(--font-cursive);
    color: #d49b8d;
    font-size: 1.2rem;
}

.mug-handle {
    position: absolute;
    right: 0;
    top: 10px;
    width: 14px;
    height: 26px;
    border: 3px solid #c58c7e;
    border-left: none;
    border-radius: 0 10px 10px 0;
}

/* Vase & Flowers */
.flower-vase-decor {
    position: absolute;
    right: 230px;
    bottom: 15px;
}

.vase {
    width: 38px;
    height: 70px;
    background: linear-gradient(to right, #fbf7f4 0%, #eae0d9 100%);
    border-radius: 12px 12px 6px 6px;
    border: 1px solid #dfd3cb;
    box-shadow: -4px 6px 15px rgba(0,0,0,0.06);
}

.flowers {
    position: relative;
    top: -30px;
    left: 8px;
}

.stem {
    position: absolute;
    width: 1.5px;
    height: 45px;
    background: #b5a297;
}
.stem-1 { transform: rotate(-10deg); }
.stem-2 { transform: rotate(5deg); }
.stem-3 { transform: rotate(18deg); }

.bloom {
    position: absolute;
    font-size: 1rem;
    opacity: 0.85;
}
.b-1 { top: -15px; left: -12px; }
.b-2 { top: -22px; left: 2px; }
.b-3 { top: -10px; left: 16px; }

/* Toast Alert Notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--charcoal);
    color: #ffffff;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    border: 1px solid var(--rose-gold-mid);
    font-size: 0.9rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .desk-scene-decor {
        display: none; /* Hide desk graphics on mobile/tablets for clean focus */
    }
}

@media (max-width: 768px) {
    .left-waves {
        width: 45vw;
    }
    
    .hanging-lamp {
        right: 4%;
        transform: scale(0.85);
    }
    
    .brand-title {
        font-size: 2.4rem;
        letter-spacing: 8px;
    }

    .main-heading {
        font-size: 2.7rem;
        letter-spacing: 6px;
    }

    .sub-heading {
        font-size: 1.3rem;
    }

    .notification-card {
        padding: 0.8rem 1.4rem;
        gap: 0.8rem;
    }

    .box-title {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    .box-cursive {
        font-size: 1.3rem;
    }

    .quick-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .brand-title {
        font-size: 2rem;
        letter-spacing: 6px;
    }

    .main-heading {
        font-size: 2.1rem;
        letter-spacing: 4px;
    }

    .notification-card {
        flex-direction: column;
        text-align: center;
    }

    .notification-text {
        align-items: center;
        text-align: center;
    }
}
