:root {
    --color-primary: #1a1a1a;
    --color-secondary: #2c2c2c;
    --color-text: #2c2c2c;
    --color-text-light: #666666;
    --color-bg: #ffffff;
    --color-bg-subtle: #fafafa;
    --color-border: #e5e5e5;
    --spacing-unit: 1rem;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
}

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

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

body {
    font-family: var(--font-family);
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)),
        url('/assets/images/Background-Travertino.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
    padding: 0;
    font-weight: var(--font-weight-regular);
    letter-spacing: 0.01em;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    text-align: center;
    padding: 10rem 0 8rem;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.company-name {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 3.5rem;
    line-height: 1.2;
    text-transform: none;
}

.main-message {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: var(--font-weight-light);
    letter-spacing: -0.02em;
    color: var(--color-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
    text-transform: none;
}

.secondary-text {
    font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
    color: var(--color-text-light);
    font-weight: var(--font-weight-regular);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: 0;
}

.site-footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--color-text-light);
    font-size: 0.875rem;
    margin-top: auto;
    width: 100%;
}

.site-footer p {
    margin: 0;
}

.secondary-text br {
    display: block;
    margin: 0.5rem 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .content {
        padding: 8rem 0 6rem;
    }
    
    .company-name {
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .content {
        padding: 6rem 0 5rem;
    }
    
    .company-name {
        margin-bottom: 2.5rem;
        font-size: clamp(1.5rem, 3.5vw, 2rem);
    }
    
    .main-message {
        margin-bottom: 1.75rem;
        line-height: 1.15;
    }
    
    .secondary-text {
        line-height: 1.7;
    }
    
    .site-footer {
        padding: 1.5rem 0;
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .content {
        padding: 5rem 0 4rem;
    }
    
    .company-name {
        margin-bottom: 2rem;
        font-size: clamp(1.375rem, 3vw, 1.75rem);
        letter-spacing: 0.04em;
    }
    
    .main-message {
        margin-bottom: 1.5rem;
    }
    
    .site-footer {
        padding: 1.25rem 0;
        font-size: 0.75rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --color-bg: #0a0a0a;
        --color-bg-subtle: #141414;
        --color-text: #e8e8e8;
        --color-text-light: #a0a0a0;
        --color-primary: #ffffff;
        --color-border: rgba(255, 255, 255, 0.1);
    }
    
    body {
        background-image: 
            linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)),
            url('/assets/images/Background-Travertino.png');
    }
}
