:root {
    --primary: #C5A059;
    --secondary: #8E7D6F;
    --tertiary: #F5F2ED;
    --neutral: #968A7F;
    --font-headline: 'Newsreader', serif;
    --font-body: 'Manrope', sans-serif;
}

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

/* Accessibility: Visually hidden but accessible to screen readers/bots */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

body {
    background-color: var(--tertiary);
    color: var(--tertiary);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image: url('public/hero-background.jpg');
    background-size: cover;
    background-position: center top; 
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.coming-soon-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-end; 
    padding: 2rem 1rem 3rem 1rem;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(20, 20, 20, 0.85) 100%);
    pointer-events: none;
    z-index: 1;
}

.content-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 650px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem; 
    background-color: rgba(245, 242, 237, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.logo-wrapper {
    margin-bottom: 0.25rem;
    opacity: 0;
    visibility: hidden;
}

.brand-logo {
    width: 110px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(197, 160, 89, 0.4));
    transition: transform 0.5s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.brand-name {
    font-family: var(--font-headline);
    font-size: 1.3rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-top: 0.75rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(197, 160, 89, 0.2);
}

.headline {
    font-family: var(--font-headline);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--tertiary);
    line-height: 1.1;
    letter-spacing: -0.01em;
    opacity: 0;
    visibility: hidden;
}

.headline span {
    color: var(--primary);
    font-style: italic;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(197, 160, 89, 0.2);
}

.body-text {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    line-height: 1.6;
    color: rgba(245, 242, 237, 0.9);
    max-width: 480px;
    margin: 0 auto;
    font-weight: 300;
    opacity: 0;
    visibility: hidden;
}

.slogan-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(245, 242, 237, 0.9);
    margin-top: 0.5rem;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
}

.slogan-text span {
    font-family: var(--font-headline);
    font-style: italic;
    color: var(--primary);
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    display: block;
    margin-top: 0.35rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
}

.footer-links a {
    color: #1a1a1a; /* Dark icon stands out on gold */
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px; /* Bigger overall button */
    height: 52px;
    border-radius: 50%;
    background: var(--primary); /* Solid gold background makes it instantly noticeable */
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

.footer-links a:hover {
    color: #fff;
    background: #e0b464;
    border-color: rgba(245, 242, 237, 0.5); /* Delicate rim on hover */
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.6);
}

/* Highly Responsive Media Queries */
@media (max-width: 800px) {
    body {
        background-size: 100% auto;
        background-color: #050505;
    }

    .coming-soon-wrapper {
        align-items: flex-end; 
        padding: 1rem 0.5rem 2rem 0.5rem;
    }
    
    .content-container {
        padding: 2rem 1.25rem;
        gap: 1rem;
        background-color: rgba(15, 15, 15, 0.4); 
    }

    .brand-logo {
        width: 85px;
    }

    .headline {
        font-size: 2.1rem;
    }
}

@media (max-width: 600px) {
    .body-text {
        font-size: 0.85rem;
    }
}