/* ===================================================
   DAN-EL — Under Construction (Minimal)
   =================================================== */

:root {
    --bg: #0a0e17;
    --text: #e2e8f0;
    --text-muted: #64748b;
    --accent: #f59e0b;
    --surface: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.06);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

/* --- Main Layout --- */
.page {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    gap: 0;
}

/* --- Company Name (top, one line) --- */
.company-name {
    font-family: var(--font-heading);
    font-size: clamp(0.7rem, 1.5vw, 0.85rem);
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 4rem;
}

/* --- Center Content --- */
.content {
    text-align: center;
    max-width: 600px;
}

/* --- Hero / Under Construction --- */
.hero {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.01em;
    line-height: 1.15;
}

/* --- Divider --- */
.divider {
    border: none;
    width: 40px;
    height: 1px;
    background: var(--border);
    margin: 3rem auto;
}

/* --- Enquiry Label --- */
.enquiry-label {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    margin-bottom: 0.6rem;
}

/* --- Email --- */
.email {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
}

.email:hover {
    color: var(--accent);
}

/* --- Footer --- */
.footer {
    padding: 2.5rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* --- Social Links --- */
.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.social-link:hover {
    color: var(--accent);
    border-color: rgba(245, 158, 11, 0.2);
    transform: translateY(-2px);
}

/* --- Copyright --- */
.copyright {
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0.5;
    letter-spacing: 0.03em;
}

/* --- Responsive --- */
@media (max-width: 480px) {
    .page {
        padding: 2.5rem 1.5rem;
    }

    .company-name {
        white-space: normal;
        text-align: center;
        margin-bottom: 3rem;
    }

    .footer {
        padding: 2rem 1.5rem 2.5rem;
    }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    * {
        transition-duration: 0.01ms !important;
    }
}
