/* --- RESET E VARIABILI --- */
:root {
    --parchment: #f6f2ee;
    --ink-black: #17212e;
    --light-gold: #ead27a;
    
    --font-primary: 'EB Garamond', serif;
    --font-heading: 'Archivo', sans-serif;
    --font-accent: 'Bagnard', serif;
    
    --spacing-base: 2rem;
    --spacing-large: 6rem;
}

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

body {
    background-color: var(--parchment);
    color: var(--ink-black);
    font-family: var(--font-primary);
    font-size: 18px; /* Base per leggibilità editoriale */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

html, body {
    max-width: 100%;
    overflow-x: hidden; /* No scorrimento laterale */
}

/* --- TIPOGRAFIA --- */
@font-face {
    font-family: 'Bagnard';
    src: url('fonts/Bagnard.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* --- LAYOUT --- */
.container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: var(--spacing-base);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

p { margin-bottom: 1.5rem; }

/* --- TITOLO --- */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
}

.year-title {
    font-family: var(--font-accent);
    font-weight: normal;
    font-size: clamp(100px, 24vw, 350px);
    color: var(--ink-black);
    text-transform: uppercase;
    white-space: nowrap; /* No a capo */
    letter-spacing: -0.8vw; /* Avvicinamento */
    filter: url(#distorsione-statica);
    user-select: none; 
    pointer-events: none;
}

/* --- FOOTER --- */
#info {
    flex-shrink: 0;
}

.counter {
    text-align: center;
    padding-bottom: 1rem;
    font-size: 0.8rem;
    opacity: 0.5;
}