@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600&family=Montserrat:wght@300;400;500&display=swap');

:root {
    --bg-color: #Fdfcf9; /* Pearl white */
    --text-primary: #111111;
    --text-secondary: #666666;
    --accent-gold: #c29b57; /* Matte gold */
    --border-light: rgba(0,0,0,0.05);
}

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

body {
    background-color: var(--bg-color);
    /* Subtle studio lighting background */
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(194, 155, 87, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.02) 0%, transparent 40%);
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    padding: 2.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--text-primary);
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    padding: 2rem 5% 5rem;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 5rem;
    width: 100%;
    max-width: 1200px;
    align-items: center;
    animation: fadeUp 1s ease-out;
}

.hero-content > *:not(.hero-image) {
    grid-column: 1;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 400;
}

.hero-content > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Features */
.features {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.feature svg {
    color: var(--accent-gold);
    width: 20px;
    height: 20px;
}

/* Waitlist Card - Minimalist */
.waitlist-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 4px; /* Sharp editorial edges */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

/* Accent line on card */
.waitlist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gold);
}

.waitlist-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.waitlist-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.waitlist-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.waitlist-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid var(--border-light);
    background: #fafafa;
    border-radius: 0; /* Sharp edges */
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.waitlist-form input:focus {
    border-color: var(--accent-gold);
    background: #ffffff;
}

.waitlist-form button {
    padding: 1rem 2rem;
    background: var(--text-primary);
    color: #fff;
    border: none;
    border-radius: 0;
    font-family: inherit;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.waitlist-form button:hover {
    background: var(--accent-gold);
}

.disclaimer {
    font-size: 0.75rem !important;
    margin-bottom: 0 !important;
    text-align: left;
    color: #999 !important;
}

/* Image Section - The Spotlight */
.hero-image {
    grid-column: 2;
    grid-row: 1 / span 6;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* The 'radiant' spotlight effect behind the image */
.hero-image::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(253,252,249,0) 70%);
    z-index: -1;
}

.image-container {
    width: 100%;
    max-width: 700px;
    height: auto; /* Let the image dictate the height */
    /* Removed the hard borders and background to make it look like it's floating in the studio */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    /* A very soft, diffuse shadow for depth */
    box-shadow: 0 40px 80px rgba(0,0,0,0.06);
    animation: float 6s ease-in-out infinite;
    background: transparent; /* Changed from white to transparent to avoid borders */
}

.placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    text-align: center;
    padding: 3rem;
    color: var(--accent-gold);
    font-weight: 300;
    line-height: 1.6;
}

.product-render {
    width: 100%;
    height: auto;
    object-fit: contain; /* Ensures the image is never cropped */
    display: block;
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        padding-top: 2rem;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-image {
        margin-bottom: 3rem;
        width: 100%;
    }
    
    .features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .waitlist-form {
        flex-direction: column;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    .waitlist-card h3 {
        text-align: center;
    }
    .disclaimer {
        text-align: center;
    }
}
