/*
 * Sistema de 4 temas de cor — custom properties.
 *
 * Valores transcritos verbatim de Docs/PlaceBeads Site.dc.html
 * (ver .planning/phases/02-estrutura-do-tema-e-sistema-de-temas-de-cor/02-RESEARCH.md,
 * seção "The 4 color themes"). Não re-derivar/arredondar estes valores.
 *
 * O tema "gold-sand" (default) é o :root, sem atributo — os outros 3 são
 * overrides via [data-theme="..."] no <html>, injetado server-side pelo
 * filtro language_attributes em inc/customizer.php (sem FOUC).
 *
 * IMPORTANTE: "lilas" é uma paleta invertida/dark (bg/surface escuros,
 * ink claro), diferente de terra/floresta que só trocam o accent.
 */

:root {
	/* default: gold/sand ("areia") */
	--bg: #F5F1EA;
	--surface: #FBF8F3;
	--surface-2: #F1EADF;
	--img: #E5DBCA;
	--img-2: #DBCEB6;
	--img-3: #E8E0D0;
	--ink: #3A3530;
	--ink-soft: #6B6359;
	--ink-faint: #9A8C7A;
	--line: #E5DCCC;
	--accent: #C9A86A;
	--accent-2: #A98B4F;
	--accent-hover: #BD9A56;
	--on-accent: #2B2723;
	--dark: #3A3530;
	--on-dark: #F7F2E9;
	--on-dark-soft: #B8AE9E;
	--footer-bg: #2B2723;
	--footer-head: #C9A86A;
	--footer-text: #C9C0B0;
	--footer-faint: #8C8373;
	--footer-line: #3D3830;
	--footer-brand: #F0E9DB;
	--bead-1: #C9A86A;
	--bead-2: #3A3530;
	--bead-3: #9A8C7A;
	--bead-string: #B7A98F;

	/* Tipografia — independente do tema de cor. Sobrescrita em runtime pelo
	   <style> inline injetado por inc/typography.php quando o cliente escolhe
	   fontes no painel PlaceBeads (aba Fontes). */
	--font-heading: 'Cormorant Garamond', Georgia, serif;
	--font-body: 'Mulish', system-ui, sans-serif;
}

[data-theme="terra"] {
	--bg: #FBF7F2;
	--surface: #FFFDFA;
	--surface-2: #F4ECE2;
	--img: #ECE0D2;
	--img-2: #E3D3C0;
	--img-3: #F0E7DA;
	--ink: #4A3728;
	--ink-soft: #7C6753;
	--ink-faint: #A8927C;
	--line: #E9DECF;
	--accent: #D98E5A;
	--accent-2: #B86E3C;
	--accent-hover: #CC7F4A;
	--on-accent: #2E2014;
	--dark: #3A2A20;
	--on-dark: #F7EFE6;
	--on-dark-soft: #C2AE9C;
	--footer-bg: #2E211A;
	--footer-head: #D98E5A;
	--footer-text: #CBB8A6;
	--footer-faint: #8C7765;
	--footer-line: #43342A;
	--footer-brand: #F2E7DB;
	--bead-1: #D98E5A;
	--bead-2: #6E4E36;
	--bead-3: #A8B89A;
	--bead-string: #C2A98C;
}

[data-theme="floresta"] {
	--bg: #F2EFEA;
	--surface: #FAF8F3;
	--surface-2: #E9E5DC;
	--img: #DDD6C8;
	--img-2: #D2CBB8;
	--img-3: #E5E0D2;
	--ink: #2E4034;
	--ink-soft: #586056;
	--ink-faint: #8A9183;
	--line: #DFD9CC;
	--accent: #C2703D;
	--accent-2: #A85C2E;
	--accent-hover: #B26536;
	--on-accent: #FBF7F0;
	--dark: #2E4034;
	--on-dark: #EFF2EA;
	--on-dark-soft: #A9B6A4;
	--footer-bg: #233028;
	--footer-head: #C2703D;
	--footer-text: #B5C0B0;
	--footer-faint: #7E8A79;
	--footer-line: #324239;
	--footer-brand: #EAF0E6;
	--bead-1: #C2703D;
	--bead-2: #2E4034;
	--bead-3: #9CA98C;
	--bead-string: #A9B099;
}

[data-theme="lilas"] {
	/* NOTE: paleta invertida/dark, diferente das outras 3 */
	--bg: #1E1B26;
	--surface: #2A2733;
	--surface-2: #262330;
	--img: #E0D7E8;
	--img-2: #D3C8DE;
	--img-3: #ECE6F2;
	--ink: #E8DFD2;
	--ink-soft: #B7AFC0;
	--ink-faint: #8C8498;
	--line: #38343F;
	--accent: #B98AC9;
	--accent-2: #C9A2D6;
	--accent-hover: #A878BA;
	--on-accent: #1E1B26;
	--dark: #14121A;
	--on-dark: #ECE6F2;
	--on-dark-soft: #A79FB3;
	--footer-bg: #14121A;
	--footer-head: #B98AC9;
	--footer-text: #B0A8BC;
	--footer-faint: #756E80;
	--footer-line: #2A2733;
	--footer-brand: #ECE6F2;
	--bead-1: #B98AC9;
	--bead-2: #4A4458;
	--bead-3: #7A8FB8;
	--bead-string: #9A93A8;
}

[data-theme="cacau"] {
	/* Cacau — paleta quente marrom/chocolate (accent #7F6051).
	   Valores transcritos verbatim de template/PlaceBeads-Site-standalone.html. */
	--bg: #F7F3EE;
	--surface: #FFFFFF;
	--surface-2: #F0E8E0;
	--img: #E7DDD1;
	--img-2: #DDCFC1;
	--img-3: #EFE7DC;
	--ink: #3B2E27;
	--ink-soft: #6E5C51;
	--ink-faint: #A08E80;
	--line: #E7DDD0;
	--accent: #7F6051;
	--accent-2: #6A4E41;
	--accent-hover: #8E6D5C;
	--on-accent: #FBF6F0;
	--dark: #3B2E27;
	--on-dark: #F5EEE6;
	--on-dark-soft: #C0AE9F;
	--footer-bg: #2E241E;
	--footer-head: #B4907B;
	--footer-text: #C9BAAD;
	--footer-faint: #8A7565;
	--footer-line: #43342A;
	--footer-brand: #F2E7DB;
	--bead-1: #7F6051;
	--bead-2: #3B2E27;
	--bead-3: #A08E80;
	--bead-string: #B7A490;
}
