/**
* Color variables
*/
:root{
    --pk-page-bg-color: #ffffff;
    --pk-heading-color: #191919;
    --pk-text-color: #191919;
}

/**
* Grid variables
*/
:root{
    --pk-container-width: 100svw;
    --pk-column-gap: calc(1.5 * var(--su));
    --pk-row-spacing: calc(7.5 * var(--su));
    --pk-site-gutter: 112px;
}

/**
* Scaling variables
*/
:root{

}

/**
* Font variables
*/
:root{
    --pk-heading-font-family: neue-haas-grotesk-display;
    --pk-heading-font-weight: 600;
    --pk-heading-line-height: 1.2;

    --pk-text-line-height: 1.33;
    --pk-text-font-family: neue-haas-grotesk-display;
    --pk-text-font-weight: 500;

    --pk-text-font-size: max(1rem, calc(1 * var(--su)));
}

/**
* Button variables
*/
:root{
    --pk-button-font-family: neue-haas-grotesk-display;
    --pk-button-font-size: max(1rem, calc(1.25 * var(--su)));
    --pk-button-font-weight: 600;
}

