:root {
    --bg: #ffffff;
    --text: #000000;
    --accent: #e62117;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, Helvetica, Arial, sans-serif;
    line-height: 1.1;
    -webkit-font-smoothing: antialiased;
}

.grid-container {
    padding: 60px 40px;
    max-width: 800px;
    /* Rimosso margin: 0 auto per allineare a sx */
    margin-left: 0; 
}

/* Header */
.grid-header {
    font-weight: 900;
    font-size: 0.7rem; 
    padding-bottom: 10px;
    border-bottom: 2px solid var(--text);
    margin-bottom: 60px;
    display: block; /* Forza allineamento a sx */
}

.brand span { color: var(--accent); }

/* Titolo */
.title-section {
    margin-bottom: 50px;
    text-align: left;
}

h1 {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 15px;
    line-height: 0.95;
}

.description {
    font-size: 0.95rem;
    opacity: 0.7;
    max-width: 400px;
}

/* Navigazione */
.navigation {
    margin-bottom: 80px;
}

.link-list {
    list-style: none;
    border-top: 2px solid var(--text);
}

.link-wrapper {
    border-bottom: 1px solid var(--text);
}

.link-item {
    display: flex;
    align-items: baseline;
    padding: 22px 0;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, color 0.2s ease;
}

/* .link-item:hover {
    color: var(--accent);
    transform: translateX(10px); 
} */

.number {
    font-size: 0.8rem;
    font-weight: 900;
    margin-right: 30px;
}

.name {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

/* Footer */
.grid-footer {
    padding-top: 30px;
    border-top: 1px solid #eee;
    text-align: left;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 0.75rem;
    font-weight: 600;
}

.footer-info span {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-info a {
    color: inherit;
    text-decoration: none;
    opacity: 0.5;
}

.footer-info a:hover {
    opacity: 1;
    color: var(--accent);
}

.status {
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    opacity: 0.3;
}