/*==================================================
MAISON CINNAMONN
TYPOGRAPHY
==================================================*/

/* HEADINGS */

h1,
h2,
h3,
h4{

    font-family:var(--font-serif);

    font-weight:300;

    color:var(--color-text);

    letter-spacing:-0.02em;

    line-height:1.05;

}

h1{

    font-size:clamp(4rem,8vw,8rem);

}

h2{

    font-size:clamp(2.8rem,5vw,5.5rem);

}

h3{

    font-size:clamp(2rem,3vw,3rem);

}

h4{

    font-size:1rem;

}

/* PARAGRAPHS */

p{

    font-family:var(--font-sans);

    font-size:1.05rem;

    font-weight:300;

    line-height:1.9;

    color:var(--color-text-light);

}

/* SMALL LABELS */

.section-label,
.eyebrow,
.chapter-number{

    display:inline-block;

    font-family:var(--font-sans);

    font-size:.72rem;

    font-weight:500;

    text-transform:uppercase;

    letter-spacing:.35em;

    color:var(--color-accent);

}

/* BLOCKQUOTE */

blockquote{

    font-family:var(--font-serif);

    font-size:2rem;

    font-style:italic;

    line-height:1.4;

    color:var(--color-text);

}

/* TEXT HELPERS */

.text-center{

    text-align:center;

}

.text-light{

    color:var(--color-text-light);

}