:root {
    /* Heritage Tweed Brand Colors: Warm Oatmeal & Deep Charcoal */
    --bg-color: #edebe4; 
    --text-primary: #2d2b28; 
    --text-muted: #5c5952;
    --line-color: #c9c5b9;
    
    /* Elegant serif for brand, clean sans for details */
    --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    
    /* Very subtle noise/woven texture effect mimicking tweed */
    background-image: 
        repeating-linear-gradient(45deg, rgba(45,43,40,0.015) 25%, transparent 25%, transparent 75%, rgba(45,43,40,0.015) 75%, rgba(45,43,40,0.015)),
        repeating-linear-gradient(45deg, rgba(45,43,40,0.015) 25%, transparent 25%, transparent 75%, rgba(45,43,40,0.015) 75%, rgba(45,43,40,0.015));
    background-position: 0 0, 2px 2px;
    background-size: 4px 4px;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 2rem 0 0 0;
}

.center-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    margin-top: -10vh;
    animation: fadeIn 1s ease-out;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
}

.coming-soon {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
}

/* Elegant decorative line above coming soon */
.coming-soon::before {
    content: '';
    position: absolute;
    top: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background-color: var(--text-primary);
}

.bottom-details {
    width: 100%;
    padding: 2rem;
    border-top: 1px solid var(--line-color);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-transform: uppercase;
    animation: fadeUp 1s ease-out 0.3s both;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
}

.separator {
    color: var(--line-color);
    margin: 0 0.25rem;
}

a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-primary);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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