/* ==========================================================================
   FT Grid 1 — Base Reset & Typography
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--sk-font-body);
    font-size: var(--sk-body-size);
    line-height: var(--sk-body-lh);
    color: var(--sk-dark);
    background: var(--sk-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings — Manrope weight 400, matching Skold */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--sk-font-body);
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

h1 { font-size: var(--sk-h1-size); text-transform: uppercase; letter-spacing: 1px; }
h2 { font-size: var(--sk-h2-size); }
h3 { font-size: var(--sk-h3-size); }

/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
    cursor: pointer;
}

button,
[role="button"],
input[type="submit"],
input[type="button"],
input[type="reset"],
select,
label[for],
.facetwp-checkbox,
.facetwp-radio,
.facetwp-page,
.sk-nav__link,
.sk-lang-switcher a,
.sk-archive-tab,
.sk-facet__list a,
.sk-view-toggle__btn,
.sk-btn {
    cursor: pointer;
}
a:hover {
    color: var(--sk-gray);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lists */
ul, ol {
    list-style: none;
}

/* Mono utility class — Roboto Mono uppercase, Skold's signature style */
.sk-mono {
    font-family: var(--sk-font-mono);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: var(--sk-nav-size);
    font-weight: 400;
}

/* Container */
.sk-container {
    max-width: var(--sk-container-max);
    margin-inline: auto;
    padding-inline: var(--sk-padding-md);
}

/* Page header */
.sk-page-header {
    padding: var(--sk-padding-lg) 0 var(--sk-padding-md);
}

.sk-page-title {
    font-size: var(--sk-h1-size);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Selection */
::selection {
    background: var(--sk-lime);
    color: var(--sk-dark);
}
