/* ========== CSS RESET & VARIABLES ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root 
{
	--orange-primary: #D4691E;
	--orange-bright: #E8852A;
	--orange-light: #F2A65A;
	--brown-dark: #2B1810;
	--brown-mid: #4A2C1A;
	--brown-warm: #6B3A24;
	--cream: #FDF5ED;
	--cream-dark: #F5E6D3;
	--cream-mid: #FAF0E6;
	--gold: #C8982C;
	--gold-light: #E8C060;
	--white: #FFFFFF;
	--text-dark: #1A0E08;
	--text-body: #3D2518;
	--text-muted: #7A5F4F;
	--shadow-soft: 0 4px 20px rgba(43, 24, 16, 0.08);
	--shadow-md: 0 8px 32px rgba(43, 24, 16, 0.12);
	--shadow-lg: 0 16px 48px rgba(43, 24, 16, 0.16);
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body 
{
	font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
	color: var(--text-body);
	background: var(--cream);
	overflow-x: hidden;
	line-height: 1.7;
}

h1, h2, h3, h4 
{
	font-family: 'Playfair Display', Georgia, serif;
	color: var(--brown-dark);
	line-height: 1.25;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }


/* ========== UTILITIES ========== */
.container 
{
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.section-label 
{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--orange-primary);
	margin-bottom: 16px;
}

.section-label::before 
{
	content: '';
	width: 32px;
	height: 2px;
	background: var(--orange-primary);
}

.section-title 
{
	font-size: clamp(1.9rem, 4vw, 2.8rem);
	margin-bottom: 20px;
	font-weight: 700;
}

.section-desc 
{
	font-size: 1.08rem;
	color: var(--text-muted);
	max-width: 620px;
	line-height: 1.8;
}

.btn 
{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	border-radius: 50px;
	font-family: 'Source Sans 3', sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	border: none;
	transition: var(--transition);
	letter-spacing: 0.5px;
}

.btn-primary 
{
	background: var(--orange-primary);
	color: var(--white);
	box-shadow: 0 4px 16px rgba(212, 105, 30, 0.35);
}

.btn-primary:hover 
{
	background: var(--orange-bright);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(212, 105, 30, 0.45);
}

.btn-outline 
{
	background: transparent;
	color: var(--brown-dark);
	border: 2px solid var(--brown-dark);
}

.btn-outline:hover 
{
	background: var(--brown-dark);
	color: var(--cream);
	transform: translateY(-2px);
}

.btn-white 
{
	background: var(--white);
	color: var(--brown-dark);
	box-shadow: var(--shadow-soft);
}

.btn-white:hover 
{
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.btn-gold 
{
	background: linear-gradient(135deg, var(--gold), var(--gold-light));
	color: var(--brown-dark);
	font-weight: 700;
	box-shadow: 0 4px 16px rgba(200, 152, 44, 0.4);
}

.btn-gold:hover 
{
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 8px 24px rgba(200, 152, 44, 0.5);
}


/* ========== ANNOUNCEMENT BAR ========== */
.announcement-bar 
{
	background: var(--brown-dark);
	color: var(--cream-dark);
	padding: 10px 0;
	font-size: 0.82rem;
	text-align: center;
	letter-spacing: 0.3px;
}

.announcement-bar a 
{
	color: var(--orange-light);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.announcement-bar a:hover { color: var(--gold-light); }


/* ========== NAVIGATION ========== */
.navbar 
{
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(253, 245, 237, 0.92);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(43, 24, 16, 0.06);
	transition: var(--transition);
}

.navbar.scrolled 
{
	box-shadow: 0 2px 20px rgba(43, 24, 16, 0.08);
}

.nav-inner 
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 76px;
}

.nav-logo 
{
	display: flex;
	align-items: center;
	gap: 14px;
}

.nav-logo img 
{
	width: 50px;
	height: 50px;
	object-fit: contain;
}

.nav-logo-text 
{
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.nav-logo-text .name 
{
	font-family: 'Playfair Display', serif;
	font-size: 1rem;
	font-weight: 700;
	color: var(--brown-dark);
}

.nav-logo-text .sub 
{
	font-size: 0.68rem;
	font-weight: 600;
	color: var(--text-muted);
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.nav-links 
{
	display: flex;
	align-items: center;
	gap: 4px;
}

.nav-links a 
{
	padding: 8px 18px;
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--text-body);
	border-radius: 8px;
	transition: var(--transition);
}

.nav-links a:hover 
{
	color: var(--orange-primary);
	background: rgba(212, 105, 30, 0.06);
}

.nav-links a.active 
{
	color: var(--orange-primary);
	font-weight: 600;
}

.nav-cta 
{
	display: flex;
	align-items: center;
	gap: 12px;
}

.nav-cta .btn { padding: 10px 24px; font-size: 0.85rem; }

.nav-election-btn 
{
	background: linear-gradient(135deg, #B8860B, #DAA520) !important;
	color: var(--white) !important;
	animation: pulse-gold 2.5s ease-in-out infinite;
}

@keyframes pulse-gold 
{
	0%, 100% { box-shadow: 0 0 0 0 rgba(218, 165, 32, 0.5); }
	50% { box-shadow: 0 0 0 8px rgba(218, 165, 32, 0); }
}


/* Hamburger */
.hamburger 
{
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 8px;
	z-index: 1002;
}

.hamburger span 
{
	width: 24px;
	height: 2.5px;
	background: var(--brown-dark);
	border-radius: 2px;
	transition: var(--transition);
}

.hamburger.active span:nth-child(1) 
{
	transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) { opacity: 0; }

.hamburger.active span:nth-child(3) 
{
	transform: rotate(-45deg) translate(5px, -5px);
}


/* ========== HERO SECTION ========== */
.hero 
{
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: center;
	background: linear-gradient(165deg, var(--cream) 0%, var(--cream-dark) 35%, #EEDCC8 70%, #E8CDAF 100%);
	overflow: hidden;
}

.hero::before 
{
	content: '';
	position: absolute;
	top: -20%;
	right: -10%;
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(212, 105, 30, 0.07) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.hero::after 
{
	content: '';
	position: absolute;
	bottom: -10%;
	left: -5%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(200, 152, 44, 0.06) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}


/* Decorative gear pattern */
.hero-gear-pattern 
{
	position: absolute;
	top: 10%;
	right: 5%;
	width: 400px;
	height: 400px;
	opacity: 0.03;
	pointer-events: none;
}

.hero-content 
{
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-text { max-width: 560px; }

.hero-badge 
{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--white);
	border: 1px solid rgba(212, 105, 30, 0.15);
	padding: 8px 18px;
	border-radius: 50px;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--orange-primary);
	margin-bottom: 28px;
	letter-spacing: 0.5px;
	animation: fadeInUp 0.8s ease-out;
}

.hero-badge .dot 
{
	width: 6px;
	height: 6px;
	background: var(--orange-primary);
	border-radius: 50%;
	animation: blink 2s ease-in-out infinite;
}

@keyframes blink 
{
	0%, 100% { opacity: 1; }
	50% { opacity: 0.3; }
}

.hero h1 
{
	font-size: clamp(2.4rem, 5vw, 3.6rem);
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 24px;
	animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero h1 span 
{
	background: linear-gradient(135deg, var(--orange-primary), var(--brown-warm));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle 
{
	font-size: 1.12rem;
	color: var(--text-muted);
	margin-bottom: 12px;
	font-weight: 500;
	line-height: 1.7;
	animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-former-name 
{
	font-size: 0.88rem;
	color: var(--text-muted);
	font-style: italic;
	margin-bottom: 36px;
	opacity: 0.8;
	animation: fadeInUp 0.8s ease-out 0.35s both;
}

.hero-actions 
{
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	animation: fadeInUp 0.8s ease-out 0.45s both;
}

.hero-stats 
{
	display: flex;
	gap: 40px;
	margin-top: 52px;
	padding-top: 36px;
	border-top: 1px solid rgba(43, 24, 16, 0.08);
	animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stat h3 
{
	font-size: 1.7rem;
	font-weight: 700;
	color: var(--orange-primary);
	font-family: 'Source Sans 3', sans-serif;
}

.hero-stat p 
{
	font-size: 0.82rem;
	color: var(--text-muted);
	font-weight: 500;
	margin-top: 2px;
}

.hero-visual 
{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	animation: fadeInRight 1s ease-out 0.4s both;
}

.hero-logo-showcase 
{
	position: relative;
	width: 380px;
	height: 380px;
}

.hero-logo-showcase img 
{
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 20px 40px rgba(43, 24, 16, 0.15));
}

.hero-logo-ring 
{
	position: absolute;
	inset: -30px;
	border: 2px dashed rgba(212, 105, 30, 0.12);
	border-radius: 50%;
	animation: spin-slow 60s linear infinite;
}

.hero-logo-ring-2 
{
	position: absolute;
	inset: -60px;
	border: 1px solid rgba(212, 105, 30, 0.06);
	border-radius: 50%;
	animation: spin-slow 90s linear infinite reverse;
}

@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }


/* Floating elements */
.hero-float 
{
	position: absolute;
	background: var(--white);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
	padding: 14px 20px;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--brown-dark);
	animation: float 4s ease-in-out infinite;
}

.hero-float-1 { top: 20px; right: -20px; animation-delay: 0s; }
.hero-float-2 { bottom: 40px; left: -10px; animation-delay: 1.5s; }

.hero-float .emoji { font-size: 1.2rem; margin-right: 6px; }

@keyframes float 
{
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-12px); }
}

@keyframes fadeInUp 
{
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight 
{
	from { opacity: 0; transform: translateX(40px); }
	to { opacity: 1; transform: translateX(0); }
}


/* ========== MOTTO BANNER ========== */
.motto-banner 
{
	background: var(--brown-dark);
	padding: 20px 0;
	text-align: center;
	overflow: hidden;
	position: relative;
}

.motto-inner 
{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
}

.motto-banner p 
{
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--cream-dark);
	letter-spacing: 4px;
	text-transform: uppercase;
}

.motto-divider 
{
	width: 40px;
	height: 1px;
	background: var(--orange-primary);
}


/* ========== ABOUT SECTION ========== */
.about 
{
	padding: 100px 0;
	background: var(--white);
	position: relative;
}

.about-grid 
{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.about-image-area 
{
	position: relative;
}

.about-image-main 
{
	width: 100%;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	position: relative;
}

.about-image-main img 
{
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.about-accent 
{
	position: absolute;
	bottom: -20px;
	right: -20px;
	width: 180px;
	height: 180px;
	background: linear-gradient(135deg, var(--orange-primary), var(--orange-bright));
	border-radius: var(--radius-lg);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--white);
	box-shadow: var(--shadow-md);
}

.about-accent .year 
{
	font-family: 'Playfair Display', serif;
	font-size: 2.2rem;
	font-weight: 800;
}

.about-accent .label 
{
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-top: 2px;
}

.about-content .section-desc { margin-bottom: 32px; }

.about-values 
{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 36px;
}

.about-value 
{
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px;
	background: var(--cream);
	border-radius: var(--radius-md);
	transition: var(--transition);
}

.about-value:hover 
{
	transform: translateY(-3px);
	box-shadow: var(--shadow-soft);
}

.about-value-icon 
{
	width: 42px;
	height: 42px;
	min-width: 42px;
	background: linear-gradient(135deg, var(--orange-primary), var(--orange-bright));
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
}

.about-value h4 
{
	font-family: 'Source Sans 3', sans-serif;
	font-size: 0.92rem;
	font-weight: 700;
	margin-bottom: 2px;
}

.about-value p 
{
	font-size: 0.82rem;
	color: var(--text-muted);
	line-height: 1.5;
}


/* ========== FEATURES / WHAT WE OFFER ========== */
.features 
{
	padding: 100px 0;
	background: linear-gradient(180deg, var(--cream) 0%, var(--cream-mid) 100%);
}

.features-header 
{
	text-align: center;
	max-width: 660px;
	margin: 0 auto 60px;
}

.features-header .section-label { justify-content: center; }
.features-header .section-label::before { display: none; }
.features-header .section-desc { margin: 0 auto; }

.features-grid 
{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.feature-card 
{
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 36px 30px;
	border: 1px solid rgba(43, 24, 16, 0.04);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.feature-card::before 
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--orange-primary), var(--gold));
	transform: scaleX(0);
	transform-origin: left;
	transition: var(--transition);
}

.feature-card:hover 
{
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon 
{
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, rgba(212, 105, 30, 0.08), rgba(212, 105, 30, 0.03));
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 22px;
}

.feature-card h3 
{
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.feature-card p 
{
	font-size: 0.9rem;
	color: var(--text-muted);
	line-height: 1.7;
}


/* ========== EVENTS SECTION ========== */
.events 
{
	padding: 100px 0;
	background: var(--white);
}

.events-top 
{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 50px;
}

.events-grid 
{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.event-card 
{
	background: var(--cream);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: var(--transition);
	border: 1px solid rgba(43, 24, 16, 0.04);
}

.event-card:hover 
{
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.event-image 
{
	height: 200px;
	background: linear-gradient(135deg, var(--brown-warm), var(--orange-primary));
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.event-image-overlay 
{
	font-family: 'Playfair Display', serif;
	font-size: 3rem;
	color: rgba(255,255,255,0.15);
	font-weight: 800;
}

.event-date-badge 
{
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--white);
	border-radius: 10px;
	padding: 8px 14px;
	text-align: center;
	box-shadow: var(--shadow-soft);
}

.event-date-badge .day 
{
	display: block;
	font-size: 1.3rem;
	font-weight: 800;
	color: var(--orange-primary);
	line-height: 1;
}

.event-date-badge .month 
{
	font-size: 0.7rem;
	font-weight: 700;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.event-body { padding: 24px; }

.event-tag 
{
	display: inline-block;
	background: rgba(212, 105, 30, 0.08);
	color: var(--orange-primary);
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	padding: 4px 12px;
	border-radius: 20px;
	margin-bottom: 12px;
}

.event-body h3 
{
	font-size: 1.15rem;
	margin-bottom: 8px;
}

.event-body p 
{
	font-size: 0.88rem;
	color: var(--text-muted);
	margin-bottom: 18px;
	line-height: 1.6;
}

.event-meta 
{
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 0.8rem;
	color: var(--text-muted);
}

.event-meta span { display: flex; align-items: center; gap: 5px; }


/* ========== NEWS SECTION ========== */
.news 
{
	padding: 100px 0;
	background: linear-gradient(180deg, var(--cream) 0%, var(--cream-mid) 100%);
}

.news-top 
{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 50px;
}

.news-grid 
{
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 28px;
}

.news-featured 
{
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: var(--transition);
	border: 1px solid rgba(43, 24, 16, 0.04);
}

.news-featured:hover 
{
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.news-featured-img 
{
	height: 280px;
	background: linear-gradient(160deg, var(--brown-dark), var(--brown-warm));
	position: relative;
	display: flex;
	align-items: flex-end;
}

.news-featured-img .overlay-text 
{
	padding: 30px;
	color: var(--white);
	position: relative;
	z-index: 2;
}

.news-featured-img::after 
{
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(43, 24, 16, 0.6) 0%, transparent 70%);
}

.news-featured-body { padding: 28px; }

.news-cat 
{
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--orange-primary);
	margin-bottom: 10px;
}

.news-featured-body h3 
{
	font-size: 1.35rem;
	margin-bottom: 12px;
}

.news-featured-body p 
{
	font-size: 0.92rem;
	color: var(--text-muted);
	line-height: 1.7;
	margin-bottom: 20px;
}

.news-date 
{
	font-size: 0.8rem;
	color: var(--text-muted);
}

.news-sidebar { display: flex; flex-direction: column; gap: 20px; }

.news-item 
{
	display: flex;
	gap: 18px;
	background: var(--white);
	border-radius: var(--radius-md);
	padding: 18px;
	border: 1px solid rgba(43, 24, 16, 0.04);
	transition: var(--transition);
}

.news-item:hover 
{
	transform: translateX(6px);
	box-shadow: var(--shadow-soft);
}

.news-item-thumb 
{
	width: 80px;
	min-width: 80px;
	height: 80px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--orange-primary), var(--brown-warm));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}

.news-item-content h4 
{
	font-size: 0.95rem;
	font-weight: 700;
	margin-bottom: 6px;
	line-height: 1.35;
}

.news-item-content p 
{
	font-size: 0.82rem;
	color: var(--text-muted);
	line-height: 1.5;
}


/* ========== ELECTION CTA ========== */
.election-cta 
{
	padding: 80px 0;
	background: var(--brown-dark);
	position: relative;
	overflow: hidden;
}

.election-cta::before 
{
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(218, 165, 32, 0.08) 0%, transparent 60%);
	border-radius: 50%;
}

.election-inner 
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	position: relative;
	z-index: 2;
}

.election-content { max-width: 600px; }

.election-content .section-label { color: var(--gold-light); }
.election-content .section-label::before { background: var(--gold-light); }

.election-content h2 
{
	color: var(--cream);
	font-size: clamp(1.8rem, 3.5vw, 2.5rem);
	margin-bottom: 16px;
}

.election-content p 
{
	color: rgba(253, 245, 237, 0.7);
	font-size: 1.05rem;
	line-height: 1.7;
	margin-bottom: 32px;
}

.election-btn-wrap { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-election 
{
	background: linear-gradient(135deg, #DAA520, #FFD700);
	color: var(--brown-dark);
	font-size: 1.05rem;
	font-weight: 800;
	padding: 18px 44px;
	letter-spacing: 1px;
	text-transform: uppercase;
	position: relative;
	overflow: hidden;
	animation: election-glow 3s ease-in-out infinite;
}

.btn-election::after 
{
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
	animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer 
{
	0% { transform: translateX(-100%); }
	100% { transform: translateX(100%); }
}

@keyframes election-glow 
{
	0%, 100% { box-shadow: 0 0 20px rgba(218, 165, 32, 0.4), 0 0 40px rgba(218, 165, 32, 0.1); }
	50% { box-shadow: 0 0 30px rgba(218, 165, 32, 0.6), 0 0 60px rgba(218, 165, 32, 0.2); }
}

.btn-election:hover 
{
	transform: translateY(-3px) scale(1.03);
}

.election-icon-area 
{
	font-size: 6rem;
	opacity: 0.15;
	color: var(--gold-light);
}


/* ========== MEMBERSHIP / JOIN ========== */
.membership 
{
	padding: 100px 0;
	background: var(--white);
}

.membership-wrapper 
{
	background: linear-gradient(160deg, var(--cream), var(--cream-dark));
	border-radius: var(--radius-lg);
	padding: 70px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.membership-wrapper::before 
{
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(212, 105, 30, 0.06), transparent 70%);
	border-radius: 50%;
}

.membership-content { position: relative; z-index: 2; }

.membership-content h2 
{
	font-size: clamp(1.8rem, 3.5vw, 2.4rem);
	margin-bottom: 18px;
}

.membership-content > p 
{
	font-size: 1.05rem;
	color: var(--text-muted);
	margin-bottom: 36px;
	line-height: 1.7;
}

.membership-benefits { display: flex; flex-direction: column; gap: 18px; }

.benefit-item 
{
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.benefit-check 
{
	width: 28px;
	height: 28px;
	min-width: 28px;
	background: var(--orange-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 0.75rem;
	font-weight: 800;
	margin-top: 2px;
}

.benefit-item p 
{
	font-size: 0.95rem;
	color: var(--text-body);
	line-height: 1.6;
}

.benefit-item strong { color: var(--brown-dark); }

.membership-form-area 
{
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 40px;
	box-shadow: var(--shadow-md);
	position: relative;
	z-index: 2;
}

.membership-form-area h3 
{
	font-size: 1.3rem;
	margin-bottom: 6px;
}

.membership-form-area > p 
{
	font-size: 0.88rem;
	color: var(--text-muted);
	margin-bottom: 28px;
}

.form-group 
{
	margin-bottom: 18px;
}

.form-group label 
{
	display: block;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--text-body);
	margin-bottom: 6px;
}

.form-group input,
.form-group select 
{
	width: 100%;
	padding: 12px 16px;
	border: 1.5px solid rgba(43, 24, 16, 0.1);
	border-radius: 10px;
	font-family: 'Source Sans 3', sans-serif;
	font-size: 0.9rem;
	color: var(--text-dark);
	background: var(--cream);
	transition: var(--transition);
	outline: none;
}

.form-group input:focus,
.form-group select:focus 
{
	border-color: var(--orange-primary);
	box-shadow: 0 0 0 3px rgba(212, 105, 30, 0.1);
}

.form-group input::placeholder { color: var(--text-muted); }

.form-row 
{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.form-submit 
{
	width: 100%;
	margin-top: 8px;
}


/* ========== FUNDRAISING ========== */
.fundraising 
{
	padding: 100px 0;
	background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.fundraising-header 
{
	text-align: center;
	max-width: 660px;
	margin: 0 auto 60px;
}

.fundraising-header .section-label { justify-content: center; }
.fundraising-header .section-label::before { display: none; }
.fundraising-header .section-desc { margin: 0 auto; }

.fundraising-cards 
{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.fund-card 
{
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 32px;
	border: 1px solid rgba(43, 24, 16, 0.04);
	transition: var(--transition);
}

.fund-card:hover 
{
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.fund-card-header 
{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 16px;
}

.fund-card-icon 
{
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, rgba(212, 105, 30, 0.1), rgba(212, 105, 30, 0.03));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
}

.fund-card-badge 
{
	background: rgba(76, 175, 80, 0.1);
	color: #2E7D32;
	font-size: 0.7rem;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.fund-card h3 
{
	font-size: 1.1rem;
	margin-bottom: 8px;
}

.fund-card p 
{
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 20px;
}

.fund-progress 
{
	margin-bottom: 22px;
}

.fund-progress-bar 
{
	width: 100%;
	height: 8px;
	background: var(--cream-dark);
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 8px;
}

.fund-progress-fill 
{
	height: 100%;
	background: linear-gradient(90deg, var(--orange-primary), var(--gold));
	border-radius: 4px;
	transition: width 1.5s ease-out;
}

.fund-progress-meta 
{
	display: flex;
	justify-content: space-between;
	font-size: 0.78rem;
	color: var(--text-muted);
}

.fund-progress-meta strong 
{
	color: var(--orange-primary);
	font-weight: 700;
}


/* ========== NEWSLETTER ========== */
.newsletter 
{
	padding: 80px 0;
	background: var(--orange-primary);
	position: relative;
	overflow: hidden;
}

.newsletter::before 
{
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.newsletter-inner 
{
	text-align: center;
	position: relative;
	z-index: 2;
}

.newsletter h2 
{
	color: var(--white);
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	margin-bottom: 12px;
}

.newsletter p 
{
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.05rem;
	margin-bottom: 32px;
}

.newsletter-form 
{
	display: flex;
	gap: 12px;
	max-width: 500px;
	margin: 0 auto;
}

.newsletter-form input 
{
	flex: 1;
	padding: 14px 20px;
	border-radius: 50px;
	border: 2px solid rgba(255,255,255,0.3);
	background: rgba(255,255,255,0.15);
	color: var(--white);
	font-family: 'Source Sans 3', sans-serif;
	font-size: 0.92rem;
	outline: none;
	transition: var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus 
{
	border-color: rgba(255,255,255,0.6);
	background: rgba(255,255,255,0.22);
}

.newsletter-form .btn-white { white-space: nowrap; }


/* ========== FOOTER ========== */
.footer 
{
	background: var(--brown-dark);
	padding: 80px 0 0;
	color: rgba(253, 245, 237, 0.7);
}

.footer-grid 
{
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 50px;
	padding-bottom: 60px;
	border-bottom: 1px solid rgba(253, 245, 237, 0.08);
}

.footer-brand img 
{
	width: 60px;
	margin-bottom: 18px;
	filter: brightness(1.1);
}

.footer-brand p 
{
	font-size: 0.88rem;
	line-height: 1.7;
	margin-bottom: 22px;
	max-width: 300px;
}

.footer-socials 
{
	display: flex;
	gap: 10px;
}

.footer-social-link 
{
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: rgba(253, 245, 237, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	color: var(--cream-dark);
	transition: var(--transition);
}

.footer-social-link:hover 
{
	background: var(--orange-primary);
	color: var(--white);
	transform: translateY(-3px);
}

.footer-col h4 
{
	color: var(--cream);
	font-family: 'Source Sans 3', sans-serif;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 22px;
}

.footer-col a 
{
	display: block;
	font-size: 0.88rem;
	padding: 5px 0;
	color: rgba(253, 245, 237, 0.6);
	transition: var(--transition);
}

.footer-col a:hover 
{
	color: var(--orange-light);
	transform: translateX(4px);
}

.footer-contact-item 
{
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 14px;
	font-size: 0.86rem;
}

.footer-contact-icon { min-width: 18px; text-align: center; }

.footer-bottom 
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 28px 0;
	font-size: 0.82rem;
}

.footer-bottom a 
{
	color: var(--orange-light);
	transition: var(--transition);
}

.footer-bottom a:hover { color: var(--gold-light); }


/* ========== SCROLL ANIMATIONS ========== */
.reveal 
{
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible 
{
	opacity: 1;
	transform: translateY(0);
}


/* ========== BACK TO TOP ========== */
.back-to-top 
{
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 46px;
	height: 46px;
	background: var(--orange-primary);
	color: var(--white);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	box-shadow: var(--shadow-md);
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	z-index: 999;
}

.back-to-top.visible 
{
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover 
{
	background: var(--orange-bright);
	transform: translateY(-3px);
}


/* ========== MOBILE OVERLAY ========== */
.mobile-menu 
{
	position: fixed;
	inset: 0;
	background: rgba(43, 24, 16, 0.95);
	backdrop-filter: blur(20px);
	z-index: 1001;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	overflow-y: auto;
	padding: 100px 24px 40px;
}

.mobile-menu.active 
{
	opacity: 1;
	visibility: visible;
}

.mobile-menu-close 
{
	position: absolute;
	top: 24px;
	right: 24px;
	width: 44px;
	height: 44px;
	background: rgba(253, 245, 237, 0.08);
	border: 1.5px solid rgba(253, 245, 237, 0.15);
	border-radius: 50%;
	color: var(--cream);
	font-size: 1.15rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	z-index: 1003;
}

.mobile-menu-close:hover 
{
	background: var(--orange-primary);
	border-color: var(--orange-primary);
	transform: rotate(90deg);
}

.mobile-menu a 
{
	font-family: 'Playfair Display', serif;
	font-size: 1.6rem;
	color: var(--cream);
	padding: 12px 32px;
	border-radius: 8px;
	transition: var(--transition);
}

.mobile-menu a:hover 
{
	color: var(--orange-light);
}

.mobile-menu .btn 
{
	margin-top: 20px;
	font-family: 'Source Sans 3', sans-serif;
}


/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) 
{
	.hero-content { grid-template-columns: 1fr; gap: 40px; }
	.hero-visual { order: -1; }
	.hero-logo-showcase { width: 260px; height: 260px; }
	.hero-text { max-width: 100%; text-align: center; }
	.hero-actions { justify-content: center; }
	.hero-stats { justify-content: center; }
	.hero-float { display: none; }

	.about-grid { grid-template-columns: 1fr; gap: 50px; }
	.features-grid { grid-template-columns: repeat(2, 1fr); }
	.events-grid { grid-template-columns: repeat(2, 1fr); }
	.news-grid { grid-template-columns: 1fr; }
	.fundraising-cards { grid-template-columns: repeat(2, 1fr); }
	.membership-wrapper 
	{
		grid-template-columns: 1fr;
		padding: 40px;
	}
	.election-inner { flex-direction: column; text-align: center; }
	.election-btn-wrap { justify-content: center; }
	.election-icon-area { display: none; }
	.footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) 
{
	.nav-links, .nav-cta { display: none; }
	.hamburger { display: flex; }
	.hero { min-height: auto; padding: 60px 0 80px; }
	.hero-logo-showcase { width: 200px; height: 200px; }
	.hero-stats { gap: 24px; flex-wrap: wrap; }
	.features-grid { grid-template-columns: 1fr; }
	.events-grid { grid-template-columns: 1fr; }
	.events-top, .news-top { flex-direction: column; gap: 16px; align-items: flex-start; }
	.fundraising-cards { grid-template-columns: 1fr; }
	.form-row { grid-template-columns: 1fr; }
	.membership-wrapper { padding: 30px 24px; }
	.newsletter-form { flex-direction: column; }
	.footer-grid { grid-template-columns: 1fr; gap: 36px; }
	.footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
	.about-accent { width: 140px; height: 140px; bottom: -15px; right: -10px; }
	.about-accent .year { font-size: 1.7rem; }
}

@media (max-width: 480px) 
{
	.container { padding: 0 16px; }
	.hero h1 { font-size: 2rem; }
	.hero-logo-showcase { width: 160px; height: 160px; }
	.about-values { grid-template-columns: 1fr; }
	.announcement-bar { font-size: 0.75rem; }
}



/* ── Cookie Notice ── */

.cookie-notice 
{
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, #2B1810 0%, #4A2C1A 100%);
	border-top: 3px solid #D4691E;
	box-shadow: 0 -6px 24px rgba(43, 24, 16, 0.35);
	z-index: 1100;
	opacity: 0;
	visibility: hidden;
	transform: translateY(100%);
	transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s;
}

.cookie-notice.visible 
{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.cookie-notice-inner 
{
	max-width: 1100px;
	margin: 0 auto;
	padding: 18px 24px;
	display: flex;
	align-items: center;
	gap: 18px;
}

.cookie-notice-icon 
{
	font-size: 1.9rem;
	flex-shrink: 0;
}

.cookie-notice-text 
{
	flex: 1;
	color: rgba(253, 245, 237, 0.85);
	font-size: 0.92rem;
	line-height: 1.65;
}

.cookie-notice-text strong 
{
	color: #FDF5ED;
	display: block;
	font-size: 0.98rem;
	margin-bottom: 2px;
}

.cookie-notice-text a 
{
	color: #f0c89a;
	text-decoration: underline;
	transition: color 0.25s ease;
}

.cookie-notice-text a:hover 
{
	color: #D4691E;
}

.cookie-notice-btn 
{
	flex-shrink: 0;
	background: #D4691E;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 12px 26px;
	font-family: 'Source Sans 3', sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.3px;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.25s ease;
}

.cookie-notice-btn:hover 
{
	background: #E8842F;
	transform: translateY(-2px);
}

@media (max-width: 640px) 
{
	.cookie-notice-inner 
	{
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		padding: 16px 18px;
	}

	.cookie-notice-icon { display: none; }

	.cookie-notice-btn 
	{
		width: 100%;
		padding: 13px 20px;
	}
}
