/* CINGILAPAI — GLOBAL BASE */

:root {
    --green-950: #061814;
    --green-900: #09231c;
    --green-850: #0d2d24;
    --green-800: #12382d;

    --gold: #d8a64d;
    --gold-light: #f0ce82;
    --cream: #f5eedf;

    --text: #f8f4e9;
    --text-dark: #18231f;
    --muted: #b9c3bb;

    --line: rgba(216, 166, 77, 0.35);

    --container: 1240px;

    --radius: 18px;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    background:
        radial-gradient(
            circle at 70% 20%,
            rgba(216,166,77,.08),
            transparent 30%
        ),
        var(--green-950);

    color: var(--text);

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    line-height: 1.6;
}


a {
    color: inherit;
    text-decoration: none;
}


img {
    max-width: 100%;
    display: block;
}


.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;
}



/* Visual base proveniente dal polish v0.1.1 */
body {
    background:
        radial-gradient(circle at 72% 12%, rgba(216,166,77,.10), transparent 28%),
        linear-gradient(180deg, #041711 0%, #07241b 48%, #041612 100%);
}

.container {
    width: min(calc(100% - 56px), 1320px);
}

@media (max-width: 560px) {

    .container {
        width: min(calc(100% - 30px), 1320px);
    }

}
