 /* 1. Definiamo il font personalizzato */
        @font-face {
            font-family: 'Satoshi';
            /* Assicurati che il nome del file qui sotto corrisponda esattamente al tuo file */
            src: url('Satoshi-Variable.ttf') format('truetype');
            /* Poiché è un font variabile, indichiamo il range di peso supportato */
            font-weight: 300 900;
            font-style: normal;
            font-display: swap; /* Migliora il caricamento */
        }

        /* 2. Applichiamo il font a tutta la pagina */
        body {
            font-family: 'Satoshi', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #070707;
            color: #FFFFFF;
        }

        .wrapper {
            width: 100%;
            padding-left: 7vw;
            padding-right: 7vw;
            box-sizing: border-box;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
        }

        .flex {
            display: flex;
        }
        
        .flex-grid {
            display: flex;
        }

        .flex-2 {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .flex-3 {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .big-gap {
            gap: 80px;
        }

        .mid-gap {
            gap: 40px;
        }

        .small-gap {
            gap: 20px;
        }

        .xs-gap {
            gap: 10px;
        }

        .fullheight {
            height: 100%;
        }

        .fullwidth {
            width: 100%;
        }

        .top-margin {
            margin-top: 12px;
        }

        .top-margin-2 {
            margin-top: 24px;
        }

        .top-margin-3 {
            margin-top: 56px;
        }

        .top-margin-3-5 {
            margin-top: 80px;
        }

        .top-margin-4 {
            margin-top: 180px;
        }

        .bottom-margin-4 {
            margin-bottom: 150px;
        }

        .bottom-padding-1 {
            padding-bottom: 24px;
        }

        /* Pulsanti */
        .btn {
            text-align: center;
            box-sizing: border-box;
            background-color: white;
            padding: 18px 38px;
            font-size: 16px;
            font-weight: 500;
            border: solid 1px white;
            color: black;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 50px;    
        }

        .btn:hover {
            background: none;
            color: white;
            cursor: pointer;
        }

        .btn-2 {
            box-sizing: border-box;
            background-color: #363636;
            padding: 18px 38px;
            font-size: 16px;
            text-align: center;
            font-weight: 500;
            text-decoration: none;
            border: solid 1px #363636;
            color: white;
            transition: all 0.3s ease;
            border-radius: 50px;  
        }

        .btn-2:hover {
            background-color: ##1E1E1E;
            border: solid 1px #cccccc;
            cursor: pointer;
        }

        /* Esempi di utilizzo dei vari pesi del font variabile */
        h1 {
            font-weight: 500; /* Black */
            font-size: 48px;
            line-height: 60px;
            color: white;
        }

        h2 {
            font-weight: 500; /* Black */
            font-size: 34px;
            line-height: 46px;
            color: white;
            margin: 0;
        }

        h3 {
            font-weight: 500; /* Black */
            font-size: 22px;
            line-height: 34px;
            color: white;
            margin-bottom: 0;
        }

        p {
            box-sizing: border-box;
            font-weight: 400; /* Regular */
            font-size: 16px;
            line-height: 26px;
            color: #cecece;
        }

        .hero-section {
            min-height: 100vh;
        }

        .hero-column {
            padding: 200px 40px 200px 7vw;
        }

        .hero-bg-column {
            background-image: url(images/miche.jpg);
            background-size: cover;
            background-repeat: no-repeat;
            min-height: 100vh;
        }

        .line {
            background-color: white;
            width: 200px;
            height: 2px;
        }

        .line-2 {
            margin-top: 36px;
            width: 100%;
            height: 1px;
            background-color: #363636;
        }

        .card {
            padding: 30px;
            background-image: 
                  linear-gradient(rgba(0, 0, 0, 0.4),rgba(0, 0, 0, 0.95)),
                  url(images/miche.jpg);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
         }
         
         a.card-link { text-decoration: none; display: block; color: inherit; }

        

        .pillow { background: rgba(255,255,255,0.2); padding: 10px 18px; border-radius: 50px; font-size: 0.9rem; backdrop-filter: blur(5px); }

        .grey-bg {
            background-color: #232323;
            padding-top: 180px;
            padding-bottom: 150px;
            
        }

        .center-column {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: baseline;
            
        }

        @media (max-width: 768px) {
            .grid-2, .grid-3 {
                grid-template-columns: 1fr;
            }
            
            .flex-grid {display: grid; grid-template-columns: 1fr;}
            
            .hero-column { padding: 100px 7vw 80px 7vw;}
            
            .hero-bg-column { min-height: 60vh;}
            
            .line {
                width: 100px;
            }
            
            h1 {
                font-size: 38px;
                line-height: 48px;
            }
            
            h2 {
                font-size: 32px;
                line-height: 40px;
            }
            
            .card {
                min-height: 60vh;
                padding: 20px;
            }
            
            .pillow {font-size: 11px; padding: 7px 11px;}
        }