
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800&family=Archivo+Expanded:wght@500;600;700;800;900&display=swap');


:root {
    /* ── UKASIS brand ─────────────────────────────── */
    --red:         #E11020;
    --red-bright:  #FF2A38;
    --red-deep:    #A50912;
    --red-low:     rgba(225, 16, 32, 0.5);
    --red-wash:    rgba(225, 16, 32, 0.08);

    --ink:         #0E0E12;   /* near-black */
    --ink-soft:    #17171D;
    --ink-700:     #26262E;

    --paper:       #F6F5F3;   /* warm off-white */
    --paper-2:     #ECEAE4;
    --white:       #FFFFFF;

    --line:        #E3E0DA;             /* hairline on paper */
    --line-dark:   rgba(255, 255, 255, 0.10);

    --text:        #14141A;
    --text-soft:   #56565F;
    --text-mute:   #8C8C95;
    --text-onink:  #F4F2EF;
    --text-onink-soft: rgba(244, 242, 239, 0.60);

    --font-display: 'Archivo Expanded', 'Archivo', sans-serif;
    --font-body:    'Archivo', sans-serif;

    --container: 1300px;
    --gutter: clamp(20px, 5vw, 72px);
    --radius: 16px;

    /* ── legacy aliases (keep older rules valid) ──── */
    --primary-color: var(--red);
    --primary-color-low: var(--red-low);
    --primary-color-dark: var(--red-deep);
    --secondary-color: #adb5bd;
    --secondary-color-low: rgba(173, 181, 189, 0.5);
    --secondary-color-dark: #6c757d;
    --tertiary-color: var(--paper-2);
    --bg-color: var(--paper);
    --bg-color-low: rgba(246, 245, 243, 0.5);
    --bg-color-dark: var(--paper-2);
    --text-dark: var(--text);
    --text-dark-low: var(--text-soft);
    --text-dark-dark: var(--ink);
    --text-light: var(--paper);
    --text-light-low: var(--text-onink-soft);
    --button-color: var(--red);
    --button-color-dark: var(--red-deep);
    --card-bg: var(--white);
    --card-bg-low: var(--paper);
    --smoothline-color: var(--bg-color);
}

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

html {
    scroll-behavior: auto;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    background-color: var(--bg-color);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--text-dark);
}

i {
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background-color: transparent;
}

button:focus {
    outline: none;
}

button:active {
    outline: none;
}

button:hover {
    outline: none;
}

ul,
li {
    list-style: none;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text-dark);
    line-height: 1.04;
    letter-spacing: -0.01em;
}
h1 { font-size: 2.5rem; font-weight: 800; }
h2 { font-size: 2rem;   font-weight: 800; }
h3 { font-size: 1.5rem; font-weight: 700; }
h4 { font-size: 1.2rem; font-weight: 700; }
h5 { font-size: 1rem;   font-weight: 700; }
h6 { font-size: 0.875rem; font-weight: 700; }


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

::-webkit-scrollbar-track {
    background-color: var(--bg-color);
}



body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

section {
    position: relative;
}
