:root {
	--black: #080808;
	--white: #f5f2ed;
	--green: #1dff8f;
	--green-dim: rgba(29, 255, 143, 0.12);
	--green-mid: rgba(29, 255, 143, 0.4);
	--muted: #3a3a3a;
	--muted2: #5a5a5a;
	--serif: 'Instrument Serif', Georgia, serif;
	--sans: 'DM Sans', sans-serif;
}

body {
	font-family: var(--sans);
	overflow-x: hidden;
}

/* custom cursor removed */

#mainNav {
	transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s;
}

#mainNav.scrolled {
	background: rgba(8, 8, 8, 0.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#mainNav .nav-link,
#mainNav .navbar-brand,
#mainNav .navbar-toggler,
#mainNav button,
#mainNav a,
a,
button {
	cursor: auto;
}

/* Stats section removed; related styles cleaned up */

.marquee-wrap {
	padding: 20px 0;
	overflow: hidden;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	background: var(--green-dim);
}

.marquee-track {
	display: flex;
	gap: 0;
	white-space: nowrap;
	animation: marq 18s linear infinite;
}

@keyframes marq {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

.marquee-item {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--green);
	padding: 0 40px;
	font-weight: 400;
}

.marquee-dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--green);
	opacity: 0.5;
}

#how {
	padding: 140px 60px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	position: relative;
	overflow: hidden;
}

#how::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: url('https://images.unsplash.com/photo-1559027615-cd4628902d4a?w=900&q=80&auto=format&fit=crop&crop=faces');
	background-size: cover;
	background-position: center 40%;
	opacity: 0.07;
	filter: grayscale(60%);
}

#how > * {
	position: relative;
	z-index: 1;
}

.how-left {
	padding-right: 80px;
	border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.how-right {
	padding-left: 80px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 0;
}

.section-label {
	font-size: 11px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--green);
	margin-bottom: 32px;
	font-weight: 400;
}

.how-title {
	font-family: var(--serif);
	font-size: clamp(36px, 4vw, 56px);
	letter-spacing: -2px;
	line-height: 1.05;
	margin-bottom: 32px;
}

.how-title em {
	font-style: italic;
	color: var(--green);
}

.how-desc {
	font-size: 16px;
	line-height: 1.8;
	color: #9a9a9a;
	font-weight: 300;
	max-width: 400px;
}

.how-photo {
	margin-top: 48px;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
}

.how-photo img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	object-position: center 30%;
	display: block;
	filter: grayscale(20%) brightness(0.7);
	transition: filter 0.5s ease, transform 0.6s ease;
	border-radius: 12px;
}

.how-photo:hover img {
	filter: grayscale(0%) brightness(0.85);
	transform: scale(1.02);
}

.how-photo::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 12px;
	background: linear-gradient(to top, rgba(8, 8, 8, 0.7) 0%, transparent 50%);
	pointer-events: none;
}

.how-photo-caption {
	position: absolute;
	bottom: 16px;
	left: 16px;
	right: 16px;
	font-size: 12px;
	color: rgba(245, 242, 237, 0.6);
	letter-spacing: 0.3px;
	z-index: 1;
}

.step {
	padding: 40px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	display: grid;
	grid-template-columns: 60px 1fr;
	gap: 24px;
	align-items: start;
	position: relative;
	transition: padding-left 0.3s ease;
}

.step:last-child {
	border-bottom: none;
}

.step:hover {
	padding-left: 12px;
}

.step-num {
	font-family: var(--serif);
	font-size: 13px;
	color: var(--green);
	padding-top: 4px;
	opacity: 0.7;
	letter-spacing: 1px;
}

.step-title {
	font-size: 18px;
	font-weight: 400;
	letter-spacing: -0.3px;
	margin-bottom: 10px;
}

.step-desc {
	font-size: 14px;
	line-height: 1.7;
	color: #9a9a9a;
	font-weight: 300;
}

.step-tag {
	display: inline-block;
	margin-top: 12px;
	font-size: 11px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--muted);
	border-bottom: 1px solid var(--muted);
	padding-bottom: 1px;
}

#feature {
	display: grid;
	grid-template-columns: 55% 45%;
	min-height: 80vh;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	position: relative;
	overflow: hidden;
}

#feature::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: url('https://images.unsplash.com/photo-1475721027785-f74eccf877e2?w=1600&q=80&auto=format&fit=crop');
	background-size: cover;
	background-position: center 30%;
	opacity: 0.12;
	filter: grayscale(40%);
}

#feature > * {
	position: relative;
	z-index: 1;
}

.feature-left {
	background: rgba(13, 13, 13, 0.82);
	padding: 100px 80px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-right: 1px solid rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(2px);
}

.feature-right {
	padding: 100px 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 48px;
}

.feature-title {
	font-family: var(--serif);
	font-size: clamp(38px, 4.5vw, 64px);
	letter-spacing: -2px;
	line-height: 1;
}

.feature-title em {
	font-style: italic;
	color: var(--green);
}

.feature-photo-grid {
	display: grid;
	grid-template-columns: 1fr 140px;
	gap: 10px;
	margin-top: 40px;
	height: 220px;
}

.fpg-main {
	border-radius: 10px;
	overflow: hidden;
}

.fpg-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: grayscale(15%) brightness(0.75);
	transition: filter 0.5s, transform 0.6s;
}

.fpg-main:hover img {
	filter: grayscale(0%) brightness(0.9);
	transform: scale(1.03);
}

.fpg-side {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.fpg-small {
	border-radius: 10px;
	overflow: hidden;
	flex: 1;
}

.fpg-small img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(20%) brightness(0.7);
}

/* Accent tile removed per user request */

.feat-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.feat-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

/* .feat-icon removed — icons replaced by text-only layout */

.feat-text-title {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 6px;
	letter-spacing: -0.2px;
}

.feat-text-desc {
	font-size: 14px;
	color: #9a9a9a;
	font-weight: 300;
	line-height: 1.6;
}

#voices {
	padding: 120px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	overflow: hidden;
}

.voices-header {
	padding: 0 60px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 60px;
}

.voices-title {
	font-family: var(--serif);
	font-size: clamp(32px, 3.5vw, 52px);
	letter-spacing: -2px;
	line-height: 1.05;
}

.voices-title em {
	font-style: italic;
	color: var(--green);
}

.voices-count {
	font-size: 13px;
	color: #8e8e8e;
}

.voices-scroll {
	display: flex;
	gap: 0;
	overflow-x: auto;
	padding: 0 60px;
	scrollbar-width: none;
}

.voices-scroll::-webkit-scrollbar {
	display: none;
}

.voice {
	flex-shrink: 0;
	width: 380px;
	padding: 0 40px;
	border-right: 1px solid rgba(255, 255, 255, 0.06);
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.voice:first-child {
	padding-left: 0;
}

.voice:last-child {
	border-right: none;
}

.voice-quote {
	font-family: var(--serif);
	font-size: 20px;
	line-height: 1.5;
	letter-spacing: -0.5px;
	color: var(--white);
	font-style: italic;
}

.voice-meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.voice-name {
	font-size: 13px;
	font-weight: 500;
}

.voice-role {
	font-size: 12px;
	color: #8e8e8e;
}

#cta-section {
	padding: 160px 60px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-eyebrow {
	font-size: 11px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--green);
	margin-bottom: 28px;
}

.cta-title {
	font-family: var(--serif);
	font-size: clamp(40px, 5vw, 72px);
	letter-spacing: -2.5px;
	line-height: 0.95;
	margin-bottom: 32px;
}

.cta-title em {
	font-style: italic;
	color: var(--green);
}

.cta-sub {
	font-size: 15px;
	color: #9a9a9a;
	line-height: 1.7;
	font-weight: 300;
}

.cta-right {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.cta-email-row {
	display: flex;
	gap: 0;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.03);
	transition: border-color 0.3s;
}

.cta-email-row:focus-within {
	border-color: var(--green);
}

.cta-email-row input {
	flex: 1;
	background: none;
	border: none;
	outline: none;
	font-family: var(--sans);
	font-size: 14px;
	color: var(--white);
	padding: 16px 24px;
	caret-color: var(--green);
}

.cta-email-row input::placeholder {
	color: var(--muted);
}

.cta-email-row button {
	background: var(--green);
	color: var(--black);
	border: none;
	padding: 12px 24px;
	border-radius: 50px;
	margin: 4px;
	font-family: var(--sans);
	font-size: 13px;
	font-weight: 500;
	cursor: none;
	transition: box-shadow 0.2s;
}

.cta-email-row button:hover {
	box-shadow: 0 0 20px rgba(29, 255, 143, 0.3);
}

.cta-note {
	font-size: 12px;
	color: var(--muted);
	padding-left: 24px;
}

.cta-choice {
	display: flex;
	gap: 16px;
	align-items: center;
	margin-top: 8px;
}

.choice-btn {
	flex: 1;
	padding: 14px;
	border-radius: 12px;
	text-align: center;
	font-size: 13px;
	font-weight: 400;
	cursor: none;
	transition: all 0.2s;
	text-decoration: none;
}

.choice-organiser {
	border: 1px solid rgba(29, 255, 143, 0.3);
	color: var(--green);
	background: var(--green-dim);
}

.choice-organiser:hover {
	background: rgba(29, 255, 143, 0.18);
}

.choice-volunteer {
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #8e8e8e;
}

.choice-volunteer:hover {
	border-color: rgba(255, 255, 255, 0.25);
	color: var(--white);
}

.choice-label {
	font-size: 11px;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.choice-sub {
	font-size: 12px;
	opacity: 0.7;
}

.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-delay-1 {
	transition-delay: 0.1s;
}

.reveal-delay-2 {
	transition-delay: 0.2s;
}

.reveal-delay-3 {
	transition-delay: 0.3s;
}

.reveal-delay-4 {
	transition-delay: 0.4s;
}

@media (max-width: 900px) {
	#stats {
		grid-template-columns: 1fr;
	}

	.stat-item {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
		padding: 36px 24px;
	}

	#how {
		grid-template-columns: 1fr;
		padding: 80px 24px;
		gap: 60px;
	}

	.how-left {
		padding-right: 0;
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
		padding-bottom: 60px;
	}

	.how-right {
		padding-left: 0;
	}

	#feature {
		grid-template-columns: 1fr;
	}

	.feature-left {
		padding: 60px 24px;
	}

	.feature-right {
		padding: 60px 24px;
	}

	.voices-header {
		padding: 0 24px;
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.voices-scroll {
		padding: 0 24px;
	}

	#cta-section {
		grid-template-columns: 1fr;
		padding: 80px 24px;
	}
}
