:root{
    --bg:#f8f6f2;
    --white:#ffffff;
    --text:#1f1f1f;
    --muted:#353535;
    --gold:#b98a2f;
    --gold-light:#d7b36b;
/* 	--red:#b11b1b; */
    /*--border:#e7e1d8;*/
	--red:#cb006b;
	--border:#ccd4de;
    --dark:#111111;
    --container:1280px;
	/*--font-serif:'Source Serif 4', serif;*/
    --font-sans:'Montserrat', sans-serif;
}

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

html{
    scroll-behavior:smooth;
}

body{
    /*background:var(--bg);*/
	background:#fff;
    color:var(--muted);
    font-family:var(--font-sans);
    font-size:16px;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    color:inherit;
    text-decoration:none;
}

ul{
    list-style:none;
}

h1,
h2,
h3{
	color:var(--text);
}
h1{	line-height:.95;}
h2{	line-height:1;}

p{
	font-family:var(--font-sans);
}
.container{
    width:92%;
    max-width:var(--container);
    margin:0 auto;
}

.section-number{
    color:var(--gold);
    font-size:.75rem;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.gold{
    color:var(--gold);
    /*font-style:italic;*/
}
.red{
	color:var(--red);
}