/* =================================================================
   Congo Rare Minerals — main stylesheet
   Ported from the original React + Tailwind build to plain CSS so the
   theme can run inside WordPress without a build step.
   ================================================================= */

:root {
	--crm-black: #0a0a0a;
	--crm-charcoal: #141414;
	--crm-bg-elev: #1a1a1a;
	--crm-cream: #FAF6EC;
	--crm-off-white: #F5F2EA;
	--crm-gold: #D4AF37;
	--crm-gold-light: #F0D878;
	--crm-gold-dark: #AA8C2C;
	--crm-muted-gold: #B89B4A;
	--crm-deep-green: #1A3A2F;
	--crm-success-green: #2E7D5A;
	--crm-border-gold: rgba(212, 175, 55, 0.25);
	--crm-radius: 0.5rem;
	--crm-radius-sm: 4px;
	--crm-shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.18);
	--crm-shadow-gold-lg: 0 12px 40px rgba(212, 175, 55, 0.25);
	--crm-font-display: 'Playfair Display', Georgia, serif;
	--crm-font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--crm-black);
	color: var(--crm-cream);
	font-family: var(--crm-font-body);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--crm-gold); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--crm-gold-light); }

h1, h2, h3, h4, h5, h6 { font-family: var(--crm-font-display); margin: 0; line-height: 1.2; }

button { font-family: inherit; cursor: pointer; }

/* Skip link */
.skip-link {
	position: absolute; left: -9999px; top: auto;
	background: var(--crm-gold); color: var(--crm-black);
	padding: 8px 12px; z-index: 100000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

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

/* Layout helpers */
.crm-container { max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.crm-narrow { max-width: 800px; }
.crm-mid-narrow { max-width: 900px; }

.crm-bg-black { background: var(--crm-black); }
.crm-text-gold { color: var(--crm-gold); }
.crm-text-light { color: #fff; }
.crm-text-cream { color: rgba(250, 246, 236, 0.75); }
.crm-text-charcoal { color: var(--crm-charcoal); }
.crm-text-dark { color: var(--crm-black); }
.crm-text-success { color: var(--crm-success-green); }

/* Buttons */
.crm-btn {
	display: inline-flex; align-items: center; justify-content: center;
	gap: 0.5rem;
	padding: 14px 28px;
	border-radius: var(--crm-radius-sm);
	font-size: 15px; font-weight: 600;
	letter-spacing: 0.04em;
	text-decoration: none;
	border: 1px solid transparent;
	transition: all .2s ease;
	cursor: pointer;
	font-family: inherit;
}
.crm-btn-sm { padding: 9px 20px; font-size: 14px; }
.crm-btn-lg { padding: 16px 32px; font-size: 15px; }
.crm-btn-xl { padding: 18px 40px; font-size: 16px; }
.crm-btn-block { width: 100%; }
@media (min-width: 768px) {
	.crm-btn-block-md { min-width: 280px; }
}
.crm-btn-icon svg { flex: 0 0 auto; }

.crm-btn-gold {
	background: linear-gradient(135deg, #D4AF37 0%, #F0D878 50%, #D4AF37 100%);
	color: var(--crm-black);
	border-color: transparent;
}
.crm-btn-gold:hover { filter: brightness(1.1); transform: scale(1.02); box-shadow: var(--crm-shadow-gold); }
.crm-btn-gold:active { transform: scale(0.98); }

.crm-btn-outline {
	background: transparent;
	color: var(--crm-gold);
	border-color: var(--crm-gold);
}
.crm-btn-outline:hover { background: rgba(212, 175, 55, 0.1); color: var(--crm-gold); }
.crm-btn-outline:active { background: rgba(212, 175, 55, 0.2); }

.crm-btn-green {
	background: var(--crm-deep-green);
	color: #fff;
	border-color: transparent;
}
.crm-btn-green:hover { background: var(--crm-success-green); transform: scale(1.02); color:#fff; }

.crm-btn-charcoal {
	background: transparent;
	color: var(--crm-charcoal);
	border-color: var(--crm-charcoal);
}
.crm-btn-charcoal:hover { background: var(--crm-charcoal); color: var(--crm-cream); }

/* Eyebrow / labels */
.crm-eyebrow {
	display: inline-block;
	color: var(--crm-muted-gold);
	font-size: 12px; font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-bottom: 12px;
}

/* Section primitives */
.crm-section { padding: 96px 0; position: relative; }
@media (max-width: 768px) { .crm-section { padding: 64px 0; } }

.crm-section-header { text-align: center; margin-bottom: 56px; max-width: 720px; margin-left: auto; margin-right: auto; padding: 0 24px;}
.crm-section-title {
	font-size: 28px; font-weight: 700;
	line-height: 1.2;
}
@media (min-width: 768px) { .crm-section-title { font-size: 36px; } }
.crm-section-lead {
	font-size: 16px; line-height: 1.7;
	max-width: 680px; margin: 16px auto 0; padding: 0;
}
@media (min-width: 768px) { .crm-section-lead { font-size: 18px; } }

/* Header / nav */
.crm-site-header {
	position: fixed; top: 0; left: 0; right: 0;
	height: 64px; z-index: 50;
	background: rgba(10, 10, 10, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	transition: box-shadow .3s ease;
}
.crm-site-header.is-scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.crm-header-inner { display:flex; align-items:center; justify-content:space-between; height:100%; }
.crm-branding .crm-site-title,
.crm-branding .custom-logo-link {
	color: var(--crm-gold);
	font-family: var(--crm-font-display);
	font-weight: 700; font-size: 18px;
	letter-spacing: -0.02em;
	text-decoration: none;
}
.crm-branding img.custom-logo { max-height: 44px; width: auto; }

.crm-primary-nav { display:none; align-items:center; gap: 24px; }
@media (min-width: 768px) { .crm-primary-nav { display: flex; } }
.crm-menu, .crm-mobile-menu-list, .crm-footer-menu {
	list-style:none; margin:0; padding:0; display:flex; gap: 24px; align-items:center;
}
.crm-menu a, .crm-mobile-menu-list a {
	color: #fff;
	font-size: 14px; font-weight: 500;
	letter-spacing: 0.02em;
	text-decoration: none;
}
.crm-menu a:hover { color: var(--crm-gold); }

.crm-cta-quote { /* uses .crm-btn-gold styles */ }
.crm-main-website-link {
	display: inline-flex; align-items: center; gap: 4px;
	color:#fff; font-size: 14px; font-weight: 500;
	text-decoration:none;
}
.crm-main-website-link:hover { color: var(--crm-gold); }

.crm-mobile-toggle {
	display: inline-flex;
	background: transparent;
	border: 0;
	color: var(--crm-gold);
	padding: 8px;
}
@media (min-width: 768px) { .crm-mobile-toggle { display: none; } }

.crm-mobile-menu {
	position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
	background: var(--crm-black);
	border-left: 1px solid var(--crm-border-gold);
	transition: right .3s ease;
	z-index: 60;
	padding: 56px 24px 32px;
	overflow-y: auto;
}
.crm-mobile-menu.is-open { right: 0; }
.crm-mobile-close {
	position:absolute; top: 12px; right: 12px;
	background: transparent; color: var(--crm-gold);
	border: 0; padding: 8px;
}
.crm-mobile-menu-list { flex-direction: column; gap: 0; align-items: stretch; }
.crm-mobile-menu-list li { border-bottom: 1px solid rgba(255,255,255,0.1); }
.crm-mobile-menu-list a { display: block; padding: 14px 0; font-size: 16px; }
.crm-mobile-menu-inner > .crm-btn { width: 100%; margin-top: 16px; }
.crm-mobile-menu-inner > .crm-main-website-link { display: block; padding: 12px 0; }

/* Site content offset */
.crm-site-content { padding-top: 64px; }
.crm-elementor-canvas .crm-site-content { padding-top: 0; }

.crm-main-default,
.crm-main-page,
.crm-main-single,
.crm-main-search,
.crm-main-404,
.crm-main-elementor { padding: 64px 0 96px; min-height: 60vh; }

.crm-prose { color: var(--crm-cream); }
.crm-prose h1, .crm-prose h2, .crm-prose h3, .crm-prose h4 { color: #fff; margin-top: 1.4em; margin-bottom: .5em; }
.crm-prose p { line-height: 1.7; margin: 0 0 1.2em; }
.crm-prose a { color: var(--crm-gold); text-decoration: underline; }
.crm-prose ul, .crm-prose ol { padding-left: 1.5em; margin: 0 0 1.2em; }

/* Page header generic */
.crm-page-header { padding: 32px 0 16px; }
.crm-page-title { font-size: 36px; color: #fff; }
.crm-entry-title { font-size: 28px; color: #fff; margin: 0 0 8px; }
.crm-entry-title a { color: inherit; }
.crm-entry-meta { color: var(--crm-muted-gold); font-size: 14px; margin-bottom: 16px; display: flex; gap: 12px; }
.crm-entry-thumbnail img { border-radius: var(--crm-radius); margin: 16px 0; }
.crm-pagination { margin-top: 32px; display: flex; gap: 8px; flex-wrap: wrap; }

/* ==================== HERO ==================== */
.crm-hero {
	min-height: 100vh; min-height: 100dvh;
	display: flex; align-items: center; justify-content: center;
	overflow: hidden; padding: 96px 0 80px;
}
.crm-hero-bg {
	position:absolute; inset:0;
	background-size: cover; background-position: center;
	z-index: 1;
}
.crm-hero-overlay {
	position:absolute; inset:0;
	background: linear-gradient(to bottom, rgba(10,10,10,0.5), rgba(10,10,10,0.85));
	z-index: 2;
}
.crm-hero-glow {
	position:absolute; inset:0;
	background: linear-gradient(to bottom, rgba(212,175,55,0.10), transparent 60%);
	pointer-events:none; z-index:3;
}
.crm-hero-content {
	position:relative; z-index: 4;
	text-align: center; max-width: 900px;
	padding-top: 32px; padding-bottom: 32px;
	margin: 0 auto;
}
.crm-hero-content .crm-eyebrow { color: var(--crm-muted-gold); }
.crm-hero-title {
	color: #fff;
	font-size: 32px; font-weight: 700;
	line-height: 1.15; letter-spacing: -0.01em;
	margin-bottom: 20px;
}
@media (min-width: 768px) { .crm-hero-title { font-size: 48px; } }
.crm-hero-subtitle {
	color: rgba(250,246,236,0.85);
	font-size: 16px; line-height: 1.6;
	max-width: 720px; margin: 0 auto 40px;
}
@media (min-width: 768px) { .crm-hero-subtitle { font-size: 18px; } }
.crm-hero-actions { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap: 16px; }
.crm-hero-trust { color: var(--crm-muted-gold); font-size: 14px; letter-spacing: 0.02em; margin-top: 24px; }

/* ==================== Why Buy ==================== */
.crm-why-buy { background: var(--crm-cream); }
.crm-features-grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 32px;
}
@media (min-width: 640px) { .crm-features-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .crm-features-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1280px) { .crm-features-grid { grid-template-columns: repeat(5, minmax(0,1fr)); } }
.crm-feature { display: flex; flex-direction: column; align-items: flex-start; }
.crm-feature-icon { color: var(--crm-gold); margin-bottom: 16px; }
.crm-feature-icon svg { width: 48px; height: 48px; }
.crm-feature-title { color: var(--crm-black); font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.crm-feature-desc { color: var(--crm-charcoal); font-size: 15px; line-height: 1.7; margin: 0; }

/* ==================== Products ==================== */
.crm-products-grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 24px;
}
@media (min-width: 640px) { .crm-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .crm-products-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.crm-product-card {
	background: var(--crm-charcoal);
	border: 1px solid rgba(212, 175, 55, 0.15);
	border-radius: var(--crm-radius);
	overflow: hidden;
	transition: all .3s ease;
	display: flex; flex-direction: column;
}
.crm-product-card:hover { border-color: rgba(212, 175, 55, 0.45); transform: translateY(-6px); box-shadow: var(--crm-shadow-gold-lg); }
.crm-product-bar { height: 8px; background: linear-gradient(135deg, #D4AF37 0%, #F0D878 50%, #D4AF37 100%); }
.crm-product-image { height: 200px; background: rgba(20,20,20,0.5); overflow: hidden; }
.crm-product-image img { width: 100%; height: 100%; object-fit: cover; }
.crm-product-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.crm-product-name { color: #fff; font-family: var(--crm-font-display); font-weight: 600; font-size: 22px; }
.crm-product-desc { color: rgba(250,246,236,0.75); font-size: 15px; line-height: 1.7; margin: 12px 0 20px; flex: 1; }

.crm-bulk-card {
	margin-top: 32px;
	background: var(--crm-charcoal);
	border: 1px solid rgba(212, 175, 55, 0.15);
	border-radius: var(--crm-radius);
	overflow: hidden;
	transition: all .3s ease;
	display: flex; flex-direction: column;
}
.crm-bulk-card:hover { border-color: rgba(212, 175, 55, 0.45); transform: translateY(-6px); box-shadow: var(--crm-shadow-gold-lg); }
.crm-bulk-image { height: 250px; background: rgba(20,20,20,0.5); overflow: hidden; }
.crm-bulk-image img { width: 100%; height: 100%; object-fit: cover; }
.crm-bulk-body { padding: 32px; }
@media (min-width: 768px) {
	.crm-bulk-card { flex-direction: row; }
	.crm-bulk-image { width: 40%; height: auto; min-height: 280px; }
	.crm-bulk-body { width: 60%; padding: 40px; }
}

/* ==================== Buyers ==================== */
.crm-buyers { background: var(--crm-cream); }
.crm-buyers-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}
@media (min-width: 640px) { .crm-buyers-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .crm-buyers-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.crm-buyer-card {
	background: #fff;
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: var(--crm-radius);
	padding: 24px;
	text-align: center;
	transition: all .25s ease;
}
.crm-buyer-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-2px); }
.crm-buyer-icon { color: var(--crm-gold); margin: 0 auto 16px; }
.crm-buyer-icon svg { width: 36px; height: 36px; margin: 0 auto; }
.crm-buyer-name { color: var(--crm-black); font-weight: 600; font-size: 16px; }

/* ==================== Process ==================== */
.crm-process-list { position: relative; display: flex; flex-direction: column; gap: 32px; }
.crm-process-line {
	position: absolute; left: 24px; top: 0; bottom: 0;
	width: 2px;
	background: linear-gradient(135deg, #D4AF37 0%, #F0D878 50%, #D4AF37 100%);
}
.crm-process-step { display: flex; align-items: flex-start; gap: 20px; position: relative; z-index: 1; }
.crm-process-num {
	width: 48px; height: 48px;
	border-radius: 9999px;
	display: flex; align-items: center; justify-content: center;
	background: linear-gradient(135deg, #D4AF37 0%, #F0D878 50%, #D4AF37 100%);
	color: var(--crm-black);
	font-weight: 700; font-size: 18px;
	flex-shrink: 0;
}
.crm-process-title { color: #fff; font-weight: 600; font-size: 16px; margin-bottom: 4px; font-family: var(--crm-font-display); }
.crm-process-desc { color: rgba(250,246,236,0.7); font-size: 14px; line-height: 1.7; margin: 0; }

@media (min-width: 768px) {
	.crm-process-list {
		flex-direction: row;
		gap: 16px;
		text-align: center;
	}
	.crm-process-line {
		left: 10%; right: 10%; top: 24px; bottom: auto;
		height: 2px; width: auto;
	}
	.crm-process-step { flex-direction: column; align-items: center; }
	.crm-process-content { max-width: 220px; margin: 0 auto; }
	.crm-process-num { margin-bottom: 20px; }
}

/* ==================== Countries ==================== */
.crm-countries { background: var(--crm-cream); }
.crm-countries-grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 24px;
}
@media (min-width: 640px) { .crm-countries-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .crm-countries-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.crm-country-card {
	background: #fff;
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: var(--crm-radius);
	padding: 32px;
	transition: all .3s ease;
}
.crm-country-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); transform: translateY(-3px); }
.crm-country-header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.crm-country-header svg { color: var(--crm-gold); width: 20px; height: 20px; }
.crm-country-name { color: var(--crm-black); font-weight: 600; font-size: 18px; margin: 0; }
.crm-country-divider { height: 1px; background: rgba(212,175,55,0.3); margin-bottom: 12px; }
.crm-country-text { color: var(--crm-charcoal); font-size: 15px; line-height: 1.7; margin: 0; }

/* ==================== Pricing ==================== */
.crm-pricing { text-align: center; }
.crm-pricing-factors {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 40px;
}
@media (min-width: 640px) { .crm-pricing-factors { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.crm-pricing-factor {
	display: flex; flex-direction: column; align-items: center; gap: 8px;
	color: rgba(250,246,236,0.8); font-size: 14px; font-weight: 500;
}
.crm-pricing-factor svg { color: var(--crm-gold); }
.crm-pricing-cta { margin-top: 48px; }
.crm-pricing-note { color: var(--crm-muted-gold); font-size: 14px; margin-top: 12px; }

/* ==================== Inquiry form ==================== */
.crm-inquiry { background: var(--crm-cream); }
.crm-form-card {
	background: var(--crm-charcoal);
	border-radius: 14px;
	padding: 32px;
	border: 1px solid rgba(212,175,55,0.2);
	box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
@media (min-width: 768px) { .crm-form-card { padding: 48px; } }
.crm-form { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .crm-form { grid-template-columns: 1fr 1fr; } }
.crm-field-full { grid-column: 1 / -1; }
.crm-field { display: block; }
.crm-field-label {
	display: block;
	color: #fff;
	font-size: 13px; font-weight: 500;
	letter-spacing: 0.02em;
	margin-bottom: 6px;
}
.crm-form input[type=text],
.crm-form input[type=email],
.crm-form input[type=tel],
.crm-form input[type=url],
.crm-form select,
.crm-form textarea {
	width: 100%;
	background: rgba(255,255,255,0.05);
	color: #fff;
	border: 1px solid rgba(212,175,55,0.3);
	border-radius: var(--crm-radius-sm);
	padding: 14px 16px;
	font-size: 15px;
	font-family: inherit;
	outline: none;
	transition: all .2s ease;
}
.crm-form select { color: #fff; appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat:no-repeat; background-position: right 12px center; background-size: 18px;
	padding-right: 40px;
}
.crm-form select option { background: var(--crm-charcoal); color: #fff; }
.crm-form input::placeholder, .crm-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.crm-form input:focus, .crm-form select:focus, .crm-form textarea:focus {
	border-color: var(--crm-gold);
	box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.crm-form-submit { display: flex; justify-content: center; margin-top: 8px; }
.crm-form-success { text-align: center; padding: 40px 0; }
.crm-form-success-title { color: #fff; font-size: 22px; font-weight: 600; margin: 12px 0 8px; }
.crm-form-success p { color: var(--crm-cream); font-size: 16px; margin: 0 0 24px; }
.crm-form-error {
	background: rgba(220, 38, 38, 0.15);
	color: #ffb4b4;
	padding: 12px 16px; border-radius: var(--crm-radius-sm);
	margin-bottom: 16px; font-size: 14px;
}

/* ==================== Trust ==================== */
.crm-trust-grid {
	display: grid; grid-template-columns: 1fr; gap: 48px; align-items: flex-start;
}
@media (min-width: 768px) { .crm-trust-grid { grid-template-columns: 1fr 1fr; } }
.crm-trust-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.crm-trust-item { display: flex; align-items: flex-start; gap: 12px; color: var(--crm-cream); font-size: 16px; line-height: 1.7; }
.crm-trust-item svg { color: var(--crm-gold); flex-shrink: 0; margin-top: 4px; }
.crm-trust-image img { width: 100%; border-radius: var(--crm-radius); border: 1px solid rgba(212,175,55,0.2); object-fit: cover; }

/* ==================== Other Minerals ==================== */
.crm-other-minerals { background: var(--crm-cream); padding: 64px 0; text-align: center; }
.crm-other-title { color: var(--crm-black); font-size: 24px; font-weight: 600; }
.crm-other-text { color: var(--crm-charcoal); font-size: 16px; line-height: 1.7; margin: 12px auto 24px; max-width: 640px; }

/* ==================== FAQ ==================== */
.crm-accordion { display: flex; flex-direction: column; }
.crm-accordion-item { border-bottom: 1px solid rgba(212,175,55,0.15); }
.crm-accordion-trigger {
	width: 100%; background: transparent; border: 0; color: #fff;
	display: flex; justify-content: space-between; align-items: center; gap: 16px;
	text-align: left;
	padding: 20px 0;
	font-size: 17px; font-weight: 600;
	transition: color .2s ease;
}
.crm-accordion-trigger:hover { color: var(--crm-gold); }
.crm-accordion-chevron { transition: transform .25s ease; flex-shrink: 0; }
.crm-accordion-trigger[aria-expanded="true"] .crm-accordion-chevron { transform: rotate(180deg); color: var(--crm-gold); }
.crm-accordion-panel { color: rgba(250,246,236,0.75); font-size: 15px; line-height: 1.7; padding: 0 0 20px; }
.crm-accordion-panel p { margin: 0; }

/* ==================== Final CTA ==================== */
.crm-final-cta { text-align: center; }
.crm-final-cta-glow {
	position: absolute; top: 0; left: 0; right: 0; height: 128px;
	background: linear-gradient(to bottom, rgba(212,175,55,0.08), transparent);
	pointer-events: none;
}
.crm-final-cta .crm-section-title { font-size: 32px; }
@media (min-width: 768px) { .crm-final-cta .crm-section-title { font-size: 40px; } }
.crm-cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 40px; }

/* ==================== Footer ==================== */
.crm-site-footer { background: var(--crm-charcoal); padding: 48px 0 32px; }
.crm-footer-widgets { margin-bottom: 32px; }
.crm-footer-top { display: flex; flex-direction: column; gap: 24px; }
@media (min-width: 768px) { .crm-footer-top { flex-direction: row; align-items: center; justify-content: space-between; } }
.crm-footer-name { font-family: var(--crm-font-display); font-weight: 700; font-size: 20px; color: var(--crm-gold); }
.crm-footer-tagline { color: var(--crm-muted-gold); font-size: 14px; margin-top: 4px; }
.crm-footer-contact-label { color: rgba(250,246,236,0.8); font-weight: 500; margin-bottom: 4px; }
.crm-footer-contact-email { color: var(--crm-gold); font-size: 14px; }

.crm-gold-divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, #D4AF37, transparent);
	margin: 24px 0;
}
.crm-footer-bottom { display: flex; flex-direction: column; gap: 16px; align-items: center; text-align: center; }
@media (min-width: 768px) { .crm-footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.crm-footer-copyright { color: var(--crm-muted-gold); font-size: 14px; }
.crm-footer-menu { gap: 16px; flex-wrap: wrap; justify-content: center; }
.crm-footer-menu a { color: var(--crm-muted-gold); font-size: 14px; text-decoration: none; }
.crm-footer-menu a:hover { color: var(--crm-gold); }

/* ==================== Sticky widgets ==================== */
.crm-sticky-whatsapp {
	position: fixed; bottom: 24px; right: 24px; z-index: 40;
	width: 56px; height: 56px; border-radius: 9999px;
	background: var(--crm-deep-green);
	color: #fff;
	display: inline-flex; align-items: center; justify-content: center;
	box-shadow: 0 4px 16px rgba(26,58,47,0.4);
	transition: all .2s ease;
}
.crm-sticky-whatsapp:hover { background: var(--crm-success-green); transform: scale(1.1); box-shadow: 0 6px 24px rgba(46,125,90,0.5); color: #fff; }
.crm-sticky-whatsapp-tooltip {
	position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%);
	background: #fff; color: var(--crm-black);
	font-size: 12px; font-weight: 500;
	padding: 4px 10px; border-radius: 4px;
	margin-bottom: 8px; white-space: nowrap;
	opacity: 0; transition: opacity .2s ease;
	pointer-events: none;
}
.crm-sticky-whatsapp:hover .crm-sticky-whatsapp-tooltip { opacity: 1; }
.crm-sticky-whatsapp-pulse {
	position: absolute; inset: 0; border-radius: 9999px;
	background: var(--crm-success-green);
	animation: crm-pulse-ring 2s infinite;
	z-index: -1;
}
@keyframes crm-pulse-ring {
	0%   { transform: scale(1);   opacity: 0.6; }
	100% { transform: scale(1.6); opacity: 0; }
}

.crm-scroll-top {
	position: fixed; bottom: 24px; left: 24px; z-index: 40;
	width: 44px; height: 44px;
	border-radius: 9999px;
	border: 1px solid rgba(212,175,55,0.3);
	background: rgba(212,175,55,0.15);
	color: var(--crm-gold);
	display: inline-flex; align-items: center; justify-content: center;
	opacity: 0; transform: translateY(8px);
	pointer-events: none;
	transition: all .3s ease;
}
.crm-scroll-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.crm-scroll-top:hover { background: rgba(212,175,55,0.25); }

/* ==================== Fade-in animations ==================== */
.crm-fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity .7s ease-out, transform .7s ease-out;
}
.crm-fade-in.is-visible { opacity: 1; transform: translateY(0); }
.crm-fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity .6s ease-out, transform .6s ease-out; }
.crm-fade-in-left.is-visible { opacity: 1; transform: translateX(0); }
.crm-fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity .8s ease-out, transform .8s ease-out; }
.crm-fade-in-right.is-visible { opacity: 1; transform: translateX(0); }
.crm-fade-delay-1 { transition-delay: .1s; }
.crm-fade-delay-2 { transition-delay: .2s; }
.crm-fade-delay-3 { transition-delay: .3s; }
.crm-fade-delay-4 { transition-delay: .4s; }
.crm-fade-delay-5 { transition-delay: .5s; }
.crm-fade-delay-6 { transition-delay: .6s; }
.crm-fade-delay-7 { transition-delay: .7s; }
.crm-fade-delay-8 { transition-delay: .8s; }
@media (prefers-reduced-motion: reduce) {
	.crm-fade-in, .crm-fade-in-left, .crm-fade-in-right { opacity: 1; transform: none; }
}

/* Comments */
.crm-comments-area { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(212,175,55,0.15); }
.crm-comments-area .comment-form input[type=text],
.crm-comments-area .comment-form input[type=email],
.crm-comments-area .comment-form input[type=url],
.crm-comments-area .comment-form textarea {
	width: 100%; padding: 12px 16px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(212,175,55,0.25);
	color: var(--crm-cream); border-radius: var(--crm-radius-sm);
}
.crm-comments-area .form-submit input[type=submit] {
	background: linear-gradient(135deg, #D4AF37 0%, #F0D878 50%, #D4AF37 100%);
	color: var(--crm-black); border: 0;
	padding: 12px 24px; font-weight: 600; border-radius: var(--crm-radius-sm); cursor: pointer;
}

/* Search form */
.crm-search-form { display: flex; gap: 8px; margin: 16px 0; }
.crm-search-field {
	flex: 1; padding: 12px 16px;
	border: 1px solid rgba(212,175,55,0.25);
	background: rgba(255,255,255,0.04);
	color: var(--crm-cream); border-radius: var(--crm-radius-sm);
}
.crm-search-submit { white-space: nowrap; }

/* No results */
.crm-no-results { padding: 32px 0; }
.crm-no-results p { color: var(--crm-cream); }

/* 404 */
.crm-main-404 { text-align: center; padding: 96px 0; }
.crm-404-eyebrow { color: var(--crm-muted-gold); letter-spacing: .2em; text-transform: uppercase; font-size: 13px; }
.crm-404-title { font-size: 96px; color: var(--crm-gold); margin: 16px 0 8px; font-family: var(--crm-font-display); }
.crm-404-text { color: var(--crm-cream); margin: 0 auto 24px; max-width: 520px; line-height: 1.7; }

/* Elementor canvas / full-width compatibility */
body.elementor-editor-active .crm-site-header,
body.elementor-editor-active .crm-site-footer,
body.elementor-editor-active .crm-sticky-whatsapp,
body.elementor-editor-active .crm-scroll-top { transition: none; }
.crm-elementor-content { width: 100%; }
.crm-main-elementor { padding: 0; }
.crm-main-front .crm-elementor-content { padding-top: 0; }

/* Sidebar */
.widget-area .widget { margin-bottom: 32px; color: var(--crm-cream); }
.widget-title { color: #fff; font-family: var(--crm-font-display); font-size: 20px; margin-bottom: 12px; }
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget ul li { padding: 6px 0; border-bottom: 1px solid rgba(212,175,55,0.1); }

/* Body scroll lock when mobile menu open */
body.crm-no-scroll { overflow: hidden; }
