/* Base tokens, reset, typography */
:root {
	--rm-primary: #7C9082;
	--rm-primary-dark: #4B5A50;
	--rm-primary-light: rgba(124, 144, 130, 0.1);
	--rm-bg: #F5F0EB;
	--rm-bg-alt: #EDE7DF;
	--rm-card: #FFFFFF;
	--rm-text: #2D2D2D;
	--rm-muted: #6B6B6B;
	--rm-border: #E2DBD1;
	--rm-cream-50: #FBF8F4;
	--rm-cream-100: #F5F0EB;
	--rm-cream-200: #E8DFD3;
	--rm-cream-300: #D6C9B6;
	--rm-sage-700: #5A6E60;
	--rm-sage-800: #4B5A50;
	--rm-radius: 0.5rem;
	--rm-shadow: 0 4px 12px rgba(0,0,0,0.05);
	--rm-shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
	--rm-container: 1200px;
	--rm-heading-font: 'Cormorant Garamond', Georgia, serif;
	--rm-body-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--rm-body-font);
	color: var(--rm-text);
	background: var(--rm-bg);
	-webkit-font-smoothing: antialiased;
	line-height: 1.6;
	font-weight: 400;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rm-primary-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--rm-primary); }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--rm-heading-font);
	font-weight: 600;
	color: var(--rm-text);
	line-height: 1.2;
	margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.5rem; }

.font-heading { font-family: var(--rm-heading-font); }
.font-body { font-family: var(--rm-body-font); }

.container {
	max-width: var(--rm-container);
	margin: 0 auto;
	padding: 0 1.5rem;
}
.container.narrow { max-width: 800px; }
.center { text-align: center; }
.bg-secondary { background: var(--rm-bg-alt); }

.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 7rem 0; } }

.section-title { text-align: center; margin-bottom: 1rem; }
.section-sub { text-align: center; color: var(--rm-muted); max-width: 480px; margin: 0 auto 4rem; }
.section-cta { text-align: center; margin-top: 3rem; }

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.items-center { align-items: center; }
.gap-lg { gap: 4rem; }
@media (min-width: 768px) {
	.grid-2 { grid-template-columns: 1fr 1fr; }
	.grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-size: 0.75rem;
	color: var(--rm-primary);
	font-weight: 500;
	margin-bottom: 0.75rem;
}
.lede { font-size: 1.125rem; color: var(--rm-muted); line-height: 1.8; }

.rounded-img {
	border-radius: var(--rm-radius);
	box-shadow: var(--rm-shadow-lg);
	width: 100%;
	max-width: 480px;
	margin: 0 auto;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--rm-primary);
	color: #fff;
	padding: 0.5rem 1rem;
	z-index: 100;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px; width: 1px; overflow: hidden;
}
