/* Studio Lintz : socle graphique, couleurs et typographies du site. */

:root {
	--ar-bg: #F4EEE7;
	--ar-bg-soft: #dcc7b1;
	--ar-blue-dark: #1f2528;
	--ar-blue: #6fafd0;
	--ar-blue-light: #9dd4e0;
	--ar-terra: #b06b43;
	--ar-gold: #b99252;

	--ar-text: #1f2528;
	--ar-text-soft: #6b6b6b;

	/*--ar-font-title: "Yeseva One", serif;*/
	--ar-font-title: "Playfair Display", serif;
	--ar-font-body: "Josefin Sans", sans-serif;
	--ar-font-signature: "Allison", cursive;

	--ar-radius: 0px;
	--ar-max-width: 1280px;
}

body {
	background: var(--ar-bg);
	color: var(--ar-text);
	font-family: var(--ar-font-body);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--ar-font-title);
	font-weight: 400;
	letter-spacing: 0.02em;
	color: var(--ar-text);
}

p {
	line-height: 1.7;
	color: var(--ar-text);
}

.site {
	background: var(--ar-bg);
}

:root {
	/*--ar-font-title: "Yeseva One", serif;*/
	--ar-font-title: "Playfair Display", serif;
	--ar-font-body: "Josefin Sans", sans-serif;
	--ar-font-signature: "Allison", cursive;
}

body {
	font-family: var(--ar-font-body);
	font-weight: 400;
	font-size: 20px;
	line-height: 1.75;
	letter-spacing: 0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--ar-font-title);
	font-weight: 200;
	line-height: 1.1;
	letter-spacing: 0.03em;
}

h1 {
	font-size: clamp(3rem, 7vw, 6.5rem);
}

h2 {
	font-size: clamp(2.2rem, 4vw, 4rem);
}

h3 {
	font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

.ar-eyebrow,
.wp-block-navigation,
.wp-block-button__link {
	font-family: var(--ar-font-body);
	font-size: 0.78rem;
	font-weight: 400;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.ar-signature {
	font-family: var(--ar-font-signature);
	font-size: clamp(2.2rem, 5vw, 4rem);
	line-height: 1;
}

/* Fond general du site : Couleur douce inspirée papier / toile. */

body {
	background-color: var(--ar-bg);
}

.wp-site-blocks {
	position: relative;
	background-color: var(--ar-bg);
	overflow: hidden;
}




/* Motif decoratif : BAS GAUCHE. */

.wp-site-blocks::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 0;

	width: min(600px, 60vw);
	height: 420px;

	background-image: url("../img/bg-corner-paint.png");
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: contain;

	pointer-events: none;
	opacity: 0.75;
}




/**
 * Contenu au.
 * dessus du motif.
 */

.wp-site-blocks > * {
	position: relative;
	z-index: 1;
}




/* Motif decoratif : RESPONSIVE. */

@media (max-width: 767px) {
	.wp-site-blocks::after {
		width: 260px;
		height: 180px;
		bottom: 64px;
		opacity: 0.45;
	}
}


