/* ==========================================================================
   Design Tokens & Global Component Resets 
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-color: #172317;
    --text-primary: #f6f1e7;
    --text-muted: rgba(246, 241, 231, 0.65);
    --line-inactive: rgba(246, 241, 231, 0.15);
    --font-display: 'Cinzel', serif;
    --font-sans: 'Montserrat', sans-serif;
    --max-width: 1200px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    letter-spacing: 0.5px;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Branded Motif Background Overlays 
   ========================================================================== */
.bg-watermark {
    position: fixed;
    top: 50%;
    width: 400px;
    height: 400px;
    background-image: url('logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.03;
    pointer-events: none;
    transform: translateY(-50%);
    z-index: 0;
}

.left-motif { left: -100px; filter: grayscale(1); }
.right-motif { right: -100px; filter: grayscale(1); }

/* ==========================================================================
   Layout Containers 
   ========================================================================== */
.landing-container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 2rem 2rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

/* ==========================================================================
   Header Layout Structure (Sourced from Reference Artifact)
   ========================================================================== */
.brand-header {
    margin-bottom: 1.0rem;
    animation: fadeInDown 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.logo-wrapper {
    margin-bottom: 0.2rem;
}

.brand-logo {
    max-width: 320px;
    height: auto;
    object-fit: contain;
}

.brand-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 5px;
    line-height: 1.1;
    text-indent: 1px; /* Offsets padding text-alignment variations */
    margin-bottom: 0.4rem;
}

.brand-subtitle {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 7px;
    text-indent: 7px;
    color: var(--text-primary);
    opacity: 0.9;
}

/* ==========================================================================
   Coming Soon Content & Progress Element Blocks
   ========================================================================== */
.status-section {
    max-width: 750px;
    margin: 0 auto 4rem auto;
    width: 100%;
}

.main-status {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 400;
    letter-spacing: 6px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.construction-text {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    text-transform: uppercase;
}

/* Progress Geometric Assembly */
.progress-bar-container {
    position: relative;
    width: 85%;
    max-width: 650px;
    height: 2px;
    background-color: var(--line-inactive);
    margin: 0 auto;
}

.progress-line {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 68%; /* Indicates architectural production development phase */
    background-color: var(--text-primary);
}

.progress-diamond-indicator {
    position: absolute;
    top: 50%;
    left: 68%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
}

.diamond-node-svg {
    width: 100%;
    height: 100%;
    animation: pulseGlow 3s infinite ease-in-out;
}

/* ==========================================================================
   Semantic Tag Keyword Elements 
   ========================================================================== */
.product-preview {
    margin-bottom: 5rem;
    width: 100%;
    max-width: 900px;
}

.preview-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
    opacity: 0.85;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.tag {
    background-color: rgba(246, 241, 231, 0.02);
    border: 1px solid rgba(246, 241, 231, 0.12);
    padding: 0.55rem 1.2rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.tag:hover {
    border-color: var(--text-primary);
    background-color: rgba(246, 241, 231, 0.06);
    transform: translateY(-1px);
}

/* ==========================================================================
   Footer Configurations (Optimized Local SEO Architecture)
   ========================================================================== */
.contact-footer {
    width: 100%;
    border-top: 1px solid rgba(246, 241, 231, 0.08);
    padding-top: 3.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    text-align: left;
    max-width: 950px;
    margin: 0 auto 4rem auto;
}

.contact-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
    font-weight: 300;
}

.address-priority strong {
    color: var(--text-primary);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.contact-card a {
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.contact-card a:hover {
    opacity: 0.7;
}

.map-link {
    display: inline-block;
    margin-top: 0.8rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--text-primary);
    padding-bottom: 2px;
}

.social-channels {
    margin-top: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.social-channels a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.separator {
    color: rgba(246, 241, 231, 0.2);
    font-size: 0.85rem;
}

.copyright {
    font-size: 0.75rem;
    color: rgba(246, 241, 231, 0.35);
    letter-spacing: 1px;
    text-transform: uppercase;
    border-top: 1px solid rgba(246, 241, 231, 0.04);
    padding-top: 2rem;
}

/* ==========================================================================
   Motion Graphic Keyframes
   ========================================================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0%, 100% { filter: drop-shadow(0 0 2px rgba(246,241,231,0.3)); }
    50% { filter: drop-shadow(0 0 8px rgba(246,241,231,0.7)); }
}

/* ==========================================================================
   Responsive Architecture Breaking Adaptations
   ========================================================================== */
@media (max-width: 900px) {
    .contact-grid {
        gap: 2.5rem;
    }
    .main-status {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .landing-container {
        padding-top: 3rem;
    }
    .bg-watermark {
        display: none; /* Simplifies operational rendering loops on mobile devices */
    }
    .brand-title {
        font-size: 2.4rem;
        letter-spacing: 8px;
        text-indent: 8px;
    }
    .main-status {
        font-size: 2.5rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .social-channels {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .brand-title {
        font-size: 1.9rem;
        letter-spacing: 6px;
        text-indent: 6px;
    }
    .main-status {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    .construction-text {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }
    .progress-bar-container {
        width: 95%;
    }
}