/* KULT Design Bureau — base styles */
/* Tailwind CSS (local build) handles most styling; custom overrides go here */

/* Global font: Objektiv MK3 from Adobe Fonts (loaded via use.typekit.net) */
html {
    /* 16px default; small fluid bump for very large viewports */
    font-size: clamp(15px, 0.9rem + 0.1vw, 17px);
}
html, body {
    font-family: "objektiv-mk3", system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

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

body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Remove default anchor underlines */
a {
    text-decoration: none;
    color: inherit;
}

/* Ensure images don't overflow */
img {
    display: block;
    max-width: 100%;
    height: auto;
}
