/* ==========================================================
   CITYGO TYPOGRAPHY
========================================================== */

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--cg-font);
    color: var(--cg-ink);
    background: var(--cg-bg);
    font-weight: 500;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ----------------------------------------------------------
   Headings
---------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--cg-ink);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

h1 {
    font-size: clamp(42px, 5vw, 76px);
}

h2 {
    font-size: clamp(34px, 4vw, 54px);
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

/* ----------------------------------------------------------
   Paragraph
---------------------------------------------------------- */

p {
    margin: 0;
    color: var(--cg-muted);
    font-size: 17px;
    line-height: 1.7;
}

/* ----------------------------------------------------------
   Links
---------------------------------------------------------- */

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--cg-fast) var(--cg-ease);
}

/* ----------------------------------------------------------
   Small text
---------------------------------------------------------- */

small {
    font-size: 13px;
    color: var(--cg-muted);
}

/* ----------------------------------------------------------
   Strong
---------------------------------------------------------- */

strong {
    font-weight: 800;
}

/* ----------------------------------------------------------
   Selection
---------------------------------------------------------- */

::selection {
    background: var(--cg-primary);
    color: white;
}