/* === LIVE FOCUS HIGH-END EDITORIAL STYLE ARCHITECTURE === */

:root {
    /* Color Palette: Classic Heritage Luxury */
    --oxford-navy: #040913;
    --royal-navy: #081120;
    --burnished-gold: #bda073;
    --muted-gold: #8d7553;
    --luxury-crimson: #cca4a4;
    /* Premium muted luxury tint for warnings/deadlines */
    --fine-ivory: #f8fafc;
    --slate-border: rgba(189, 160, 115, 0.2);
    --matte-charcoal: #64748b;

    /* Editorial High-End Typography */
    --font-serif-header: 'Cinzel', serif;
    --font-serif-body: 'Playfair Display', serif;
    --font-sans-ui: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--oxford-navy);
    color: var(--fine-ivory);
    font-family: var(--font-sans-ui);
    margin: 0;
    overflow-x: hidden;
    letter-spacing: 0.02em;
}

.gallery-canvas {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 160px 24px 60px 24px;
    box-sizing: border-box;
    background: radial-gradient(circle at center, var(--royal-navy) 0%, var(--oxford-navy) 100%);
}

/* Master Gallery Vignette Control */
.fine-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 50%, #02050a 100%);
    pointer-events: none;
    z-index: 2;
}

/* --- 1. Curated Art Frame Component --- */
.curated-frame {
    position: relative;
    z-index: 5;
    max-width: 900px;
    width: 100%;
    background: rgba(4, 9, 18, 0.9);
    border: 1px solid var(--slate-border);
    padding: 80px 60px;
    box-sizing: border-box;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

/* Traditional Structural Accent Corners */
.corner-accent {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid var(--burnished-gold);
    pointer-events: none;
}

.corner-accent.top-left {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.corner-accent.top-right {
    top: 15px;
    right: 15px;
    border-left: none;
    border-bottom: none;
}

.corner-accent.bottom-left {
    bottom: 15px;
    left: 15px;
    border-right: none;
    border-top: none;
}

.corner-accent.bottom-right {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

/* --- 2. Insignia Branding System --- */
.insignia-wrapper {
    text-align: center;
    margin-bottom: 45px;
}

.insignia-subtext {
    font-family: var(--font-sans-ui);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--burnished-gold);
    letter-spacing: 4px;
    display: block;
}

.monogram-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.line-element {
    height: 1px;
    background-color: var(--slate-border);
    flex-grow: 1;
}

.brass-icon {
    color: var(--muted-gold);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* --- 3. Exhibition Main Typography Focus --- */
.exhibition-meta {
    text-align: center;
    margin-bottom: 50px;
}

.registration-badge {
    display: inline-block;
    font-family: var(--font-sans-ui);
    font-size: 0.75rem;
    font-weight: 700;
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    background-color: rgba(16, 185, 129, 0.05);
    padding: 6px 18px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.main-title {
    font-family: var(--font-serif-header);
    font-size: 4.2rem;
    font-weight: 400;
    letter-spacing: 8px;
    margin: 0 0 10px 0;
    color: var(--fine-ivory);
}

.sub-title {
    font-family: var(--font-serif-body);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--burnished-gold);
    margin: 0 0 30px 0;
    font-weight: 400;
    letter-spacing: 1px;
}

.editorial-narrative {
    font-family: var(--font-serif-body);
    font-size: 1.15rem;
    line-height: 1.8;
    color: #cbd5e1;
    max-width: 680px;
    margin: 0 auto;
    font-weight: 300;
}

/* --- 4. Call To Action Portal Box --- */
.action-portal-box {
    max-width: 550px;
    margin: 40px auto;
    text-align: center;
    border: 1px solid var(--slate-border);
    background-color: rgba(3, 7, 15, 0.4);
    padding: 35px;
    box-sizing: border-box;
}

.portal-instruction {
    font-family: var(--font-serif-body);
    font-size: 1.05rem;
    color: #cbd5e1;
    margin: 0 0 25px 0;
    font-style: italic;
}

.prestige-submit-btn {
    background-color: var(--burnished-gold);
    border: none;
    color: #040912;
    font-family: var(--font-sans-ui);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 0 24px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.prestige-submit-btn.long-btn {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding: 16px 24px;
    text-decoration: none;
    font-size: 0.85rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.prestige-submit-btn:hover {
    background-color: var(--fine-ivory);
    color: var(--oxford-navy);
}

.btn-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.prestige-submit-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.deadline-memo {
    font-family: var(--font-sans-ui);
    font-size: 0.75rem;
    color: var(--luxury-crimson);
    letter-spacing: 1.5px;
    margin: 20px 0 0 0;
    text-transform: uppercase;
    font-weight: 600;
}

/* --- 5. Precision Mechanical Chronograph --- */
.chronograph-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    border-top: 1px solid var(--slate-border);
    border-bottom: 1px solid var(--slate-border);
    padding: 30px 0;
    max-width: 650px;
    margin: 0 auto 55px auto;
}

.chrono-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.chrono-value {
    font-family: var(--font-serif-header);
    font-size: 3.2rem;
    font-weight: 400;
    color: var(--fine-ivory);
    line-height: 1;
}

.chrono-label {
    font-family: var(--font-sans-ui);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--burnished-gold);
    letter-spacing: 2px;
    margin-top: 12px;
}

.chrono-separator {
    width: 1px;
    height: 40px;
    background-color: var(--slate-border);
}

/* --- 6. Navigation Axis System --- */
.portal-axis {
    text-align: center;
    margin-top: 20px;
}

.portal-link-element {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--matte-charcoal);
    font-family: var(--font-sans-ui);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.portal-link-element:hover {
    color: var(--burnished-gold);
}

.portal-link-element i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.portal-link-element:hover i {
    transform: translateX(3px);
}

/* --- 7. Canvas Footer Layout --- */
.canvas-footer {
    position: relative;
    z-index: 5;
    width: 100%;
    margin-top: auto;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(189, 160, 115, 0.05);
}

.prestige-social-directory {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 20px;
}

.prestige-social-directory a {
    color: #334155;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.prestige-social-directory a:hover {
    color: var(--burnished-gold);
}

.archival-text {
    font-size: 0.75rem;
    color: #475569;
    letter-spacing: 0.5px;
    margin: 0;
}

/* --- 8. Precision Responsive Breakpoint Matrix --- */
@media (max-width: 840px) {
    .curated-frame {
        padding: 60px 30px;
    }

    .main-title {
        font-size: 3.2rem;
        letter-spacing: 5px;
    }

    .sub-title {
        font-size: 1.3rem;
    }

    .editorial-narrative {
        font-size: 1.05rem;
    }

    .chrono-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .main-title {
        font-size: 2.4rem;
        letter-spacing: 3px;
    }

    .chronograph-container {
        padding: 20px 0;
    }

    .chrono-value {
        font-size: 1.9rem;
    }

    .action-portal-box {
        padding: 25px 15px;
    }

    .insignia-subtext {
        letter-spacing: 2px;
        font-size: 0.6rem;
    }
}

@media (max-width: 600px) {
    .chronograph-container {
        padding: 25px 0;
        max-width: 100%;
    }

    .chrono-value {
        font-size: 2.2rem;
        /* Adjusted for modern phone screens */
        letter-spacing: 1px;
    }

    .chrono-label {
        font-size: 0.65rem;
        letter-spacing: 3px;
        /* Slightly tracking out letters for elegance */
        margin-top: 8px;
    }

    .chrono-separator {
        height: 30px;
        /* Kept clean vertical dividers balanced */
    }
}