/* House of Brene - Luxury Minimal */

:root {
    --cream: #faf8f5;
    --dark: #1a1613;
    --gold: #c9a96e;
    --gold-light: #e4d5b7;
    --muted: #8a7e72;
    --warm-gray: #3d3530;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cream);
    color: var(--dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* Subtle grain texture overlay */
.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    z-index: 1000;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Header */
header {
    padding: 2.5rem 3rem;
    position: relative;
    z-index: 10;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    color: var(--muted);
}

/* Hero Section */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeIn 1.5s ease-out;
}

.crown {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

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

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

h1 .accent {
    color: var(--gold);
}

.tagline {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--muted);
    font-weight: 400;
    margin-bottom: 2rem;
}

.divider {
    margin: 2rem 0;
}

.divider-ornament {
    color: var(--gold-light);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted);
    letter-spacing: 0.02em;
}

/* Coming Soon Section */
.coming-soon {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeIn 1.5s ease-out 0.3s both;
}

.announcement {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.subtext {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Signup Form */
.signup-form {
    display: flex;
    gap: 0;
    max-width: 420px;
    margin: 0 auto 1.5rem;
    border: 1px solid var(--gold-light);
    border-radius: 0;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.signup-form:focus-within {
    border-color: var(--gold);
}

.signup-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--dark);
    outline: none;
    letter-spacing: 0.02em;
}

.signup-form input::placeholder {
    color: var(--gold-light);
}

.signup-form button {
    padding: 1rem 2rem;
    border: none;
    background: var(--dark);
    color: var(--cream);
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.signup-form button:hover {
    background: var(--gold);
    color: var(--dark);
}

.disclaimer {
    font-size: 0.75rem;
    color: var(--muted);
    font-style: italic;
    font-family: 'Libre Baskerville', serif;
    line-height: 1.8;
    opacity: 0.7;
}

/* Quotes */
.quotes {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeIn 1.5s ease-out 0.6s both;
}

blockquote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

blockquote cite {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-style: normal;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-transform: uppercase;
}

/* Footer */
footer {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid var(--gold-light);
    margin-top: auto;
}

.footer-brand {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 0.8rem;
    color: var(--gold);
}

/* Responsive */
@media (max-width: 600px) {
    header {
        padding: 2rem 1.5rem;
    }

    main {
        padding: 1.5rem;
    }

    .signup-form {
        flex-direction: column;
        border: none;
    }

    .signup-form input {
        border: 1px solid var(--gold-light);
        margin-bottom: 0.75rem;
        padding: 1rem;
    }

    .signup-form button {
        padding: 1rem;
        border: 1px solid var(--dark);
    }

    .hero {
        margin-bottom: 3rem;
    }

    .coming-soon {
        margin-bottom: 3rem;
    }
}
