/* base.css — reset y estilos base del documento.
   El tema controla todo el documento, así que el reset es global (sin scoping body.rcio-homepage).
   La Fase 3 añade layout.css y components.css; la Fase 5 woocommerce.css. */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--rcio-font-body);
	background: var(--rcio-black);
	color: var(--rcio-white);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

img,
picture,
svg,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
}

h1, h2, h3, h4 {
	font-family: var(--rcio-font-display);
	line-height: 1.1;
}

.site-main {
	max-width: var(--rcio-container);
	margin-inline: auto;
	padding: var(--rcio-gap);
}

.site-header,
.site-footer {
	max-width: var(--rcio-container);
	margin-inline: auto;
	padding: var(--rcio-gap);
}

/* Marca tipográfica RCIO. Envuelve EXACTAMENTE las 4 letras "RCIO" (sin punto ni
 * texto vecino) para renderizarlas con la fuente de marca. Inline: hereda el
 * font-size del contexto y solo cambia la familia, así escala con el texto. */
.brand-mark {
	font-family: var(--font-brand);
	font-style: normal;
	font-weight: 400;
}
