/* Design tokens + base element styles */

:root {
	--color-bg: #faf7f2;
	--color-bg-alt: #f2ebdf;
	--color-ink: #221e19;
	--color-ink-soft: #5f574b;
	--color-accent: #a4602c;
	--color-accent-dark: #855025;
	--color-forest: #33402f;
	--color-forest-deep: #263123;
	--color-line: #e4dacb;
	--color-white: #ffffff;
	--color-whatsapp: #1f9e54;
	--font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
	--font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--container-width: 1240px;
	--content-width: 780px;
	--radius: 16px;
	--radius-sm: 10px;
	--shadow-soft: 0 6px 24px rgba(43, 38, 34, 0.07);
	--shadow-lift: 0 24px 55px rgba(43, 38, 34, 0.16);
	--transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
	background: var(--color-bg);
	color: var(--color-ink);
	font-family: var(--font-body);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.entry-title,
.wp-block-heading {
	font-family: var(--font-heading);
	font-weight: 600;
	color: var(--color-ink);
	line-height: 1.18;
	letter-spacing: 0.005em;
}

h1 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }

a { color: var(--color-accent); transition: color var(--transition); }
a:hover { color: var(--color-accent-dark); }

:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 3px;
	border-radius: 2px;
}

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

::selection { background: var(--color-accent); color: var(--color-white); }

/* Small uppercase label above section headings */
.section-kicker {
	display: block;
	text-align: center;
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.28em;
	color: var(--color-accent);
	margin: 0 auto 14px;
}
.section-kicker::after {
	content: '';
	display: block;
	width: 44px;
	height: 2px;
	background: var(--color-accent);
	opacity: 0.55;
	margin: 12px auto 0;
}

/* Scroll-reveal (JS adds .reveal, then .is-visible in viewport;
   without JS nothing gets the class and everything stays visible) */
.reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.reveal { opacity: 1; transform: none; transition: none; }
}
