/**
 * Projects + Get Involved styles.
 * Black/gold sacred aesthetic — Cinzel for headings, Inter for body.
 */

/* ===================================================================
 * Shared shell
 * ================================================================ */

.tohr-projects-archive,
.tohr-project-single,
.tohr-get-involved {
	max-width: 1280px;
	margin: 0 auto;
	padding: 4rem 1.5rem;
	color: #f5f3ee;
	background: var(--tohr-black, #0F0D0B);
}

/* ===================================================================
 * /projects/ archive — "The Exciting Work We're Tending"
 * ================================================================ */

.tohr-projects-header {
	text-align: center;
	margin-bottom: 3.5rem;
	padding: 0 1rem;
}

.tohr-projects-header h1 {
	font-family: 'Cinzel', serif;
	font-size: clamp(2.25rem, 5.5vw, 4rem);
	font-weight: 600;
	letter-spacing: 0.04em;
	color: #c9a227;
	margin-bottom: 1.25rem;
	line-height: 1.15;
}

.tohr-projects-intro {
	font-family: 'Inter', sans-serif;
	font-size: 1.125rem;
	line-height: 1.75;
	max-width: 720px;
	margin: 0 auto;
	color: #d4d0c8;
}

/* Unified grid — auto-fit so it gracefully reflows */
.tohr-projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 2rem;
	margin-bottom: 4rem;
}

.tohr-project-card {
	background: var(--tohr-ink, #1A1714);
	border: 1px solid rgba( 201, 162, 39, 0.2 );
	border-radius: 4px;
	overflow: hidden;
	transition: border-color 0.2s ease, transform 0.2s ease;
	display: flex;
	flex-direction: column;
}

.tohr-project-card:hover {
	border-color: rgba( 201, 162, 39, 0.6 );
	transform: translateY( -3px );
}

.tohr-card-image-link {
	display: block;
	text-decoration: none;
}

.tohr-card-image img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.tohr-card-image-placeholder {
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, #1a1a1a 0%, var(--tohr-black, #0F0D0B) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid rgba( 201, 162, 39, 0.2 );
}

.tohr-card-image-placeholder span {
	font-family: 'Cinzel', serif;
	color: rgba( 201, 162, 39, 0.5 );
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.tohr-card-body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.tohr-card-meta {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-bottom: 0.75rem;
}

.tohr-card-title {
	font-family: 'Cinzel', serif;
	font-size: 1.35rem;
	font-weight: 500;
	margin: 0 0 0.75rem 0;
	line-height: 1.3;
}

.tohr-card-title a {
	color: #f5f3ee;
	text-decoration: none;
}

.tohr-card-title a:hover { color: #c9a227; }

.tohr-card-blurb {
	font-family: 'Inter', sans-serif;
	font-size: 0.95rem;
	line-height: 1.6;
	color: #b8b3a8;
	margin-bottom: 1.25rem;
	flex: 1;
}

.tohr-card-ctas {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-top: auto;
}

/* Status + stage badges */
.tohr-status-badge,
.tohr-stage-badge,
.tohr-event-date-badge {
	display: inline-block;
	font-family: 'Inter', sans-serif;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.25rem 0.6rem;
	border-radius: 2px;
	background: rgba( 201, 162, 39, 0.15 );
	color: #c9a227;
	border: 1px solid rgba( 201, 162, 39, 0.3 );
}

.tohr-status-planning   { background: rgba( 180, 180, 180, 0.1 ); color: #b8b3a8; border-color: rgba( 180, 180, 180, 0.3 ); }
.tohr-status-in_progress { background: rgba( 201, 162, 39, 0.15 ); color: #c9a227; }
.tohr-status-live       { background: rgba( 100, 200, 120, 0.15 ); color: #7dc88a; border-color: rgba( 100, 200, 120, 0.3 ); }
.tohr-status-completed  { background: rgba( 120, 120, 120, 0.1 ); color: #888; border-color: rgba( 120, 120, 120, 0.3 ); }

.tohr-event-date-badge { background: rgba( 100, 200, 120, 0.1 ); color: #7dc88a; border-color: rgba( 100, 200, 120, 0.3 ); }

.tohr-event-location {
	font-family: 'Inter', sans-serif;
	font-size: 0.85rem;
	color: #b8b3a8;
	font-style: italic;
	margin-bottom: 0.75rem;
}

/* CTA buttons */
.tohr-cta-button {
	display: inline-block;
	font-family: 'Inter', sans-serif;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.65rem 1.25rem;
	border: 1px solid #c9a227;
	color: #c9a227;
	background: transparent;
	text-decoration: none;
	border-radius: 2px;
	transition: background 0.2s ease, color 0.2s ease;
	cursor: pointer;
}

.tohr-cta-button:hover {
	background: #c9a227;
	color: var(--tohr-black, #0F0D0B);
}

.tohr-cta-primary {
	background: #c9a227;
	color: var(--tohr-black, #0F0D0B);
}

.tohr-cta-primary:hover {
	background: #b8902a;
	color: var(--tohr-black, #0F0D0B);
}

.tohr-cta-large {
	padding: 1rem 2rem;
	font-size: 0.95rem;
}

/* Empty state */
.tohr-empty {
	font-family: 'Inter', sans-serif;
	font-style: italic;
	color: #888;
	text-align: center;
	padding: 2rem 1rem;
}

/* Archive footer */
.tohr-projects-footer {
	text-align: center;
	padding: 3rem 1.5rem;
	border-top: 1px solid rgba( 201, 162, 39, 0.3 );
	margin-top: 2rem;
}

.tohr-projects-footer h2 {
	font-family: 'Cinzel', serif;
	font-size: 2rem;
	color: #c9a227;
	margin-bottom: 1rem;
}

.tohr-projects-footer-intro {
	font-family: 'Inter', sans-serif;
	font-size: 1.05rem;
	color: #d4d0c8;
	max-width: 560px;
	margin: 0 auto 2rem auto;
	line-height: 1.6;
}

/* ===================================================================
 * Single project page
 * ================================================================ */

.tohr-project-single { max-width: 1100px; }

.tohr-project-crumbs {
	margin-bottom: 1.5rem;
	font-family: 'Inter', sans-serif;
	font-size: 0.9rem;
}

.tohr-project-crumbs a {
	color: rgba( 201, 162, 39, 0.7 );
	text-decoration: none;
	letter-spacing: 0.05em;
}

.tohr-project-crumbs a:hover { color: #c9a227; }

.tohr-project-hero {
	margin-bottom: 3rem;
}

.tohr-project-hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

@media (max-width: 860px) {
	.tohr-project-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
}

.tohr-project-hero-image img {
	width: 100%;
	height: auto;
	display: block;
	border: 1px solid rgba( 201, 162, 39, 0.3 );
	border-radius: 4px;
}

.tohr-project-badges {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}

.tohr-project-title {
	font-family: 'Cinzel', serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 600;
	letter-spacing: 0.03em;
	color: #f5f3ee;
	margin: 0 0 1rem 0;
	line-height: 1.2;
}

.tohr-project-tagline {
	font-family: 'Inter', sans-serif;
	font-size: 1.2rem;
	line-height: 1.6;
	color: #d4d0c8;
	margin: 0 0 1.5rem 0;
	font-style: italic;
}

.tohr-project-event-meta {
	font-family: 'Inter', sans-serif;
	padding: 1rem 1.25rem;
	background: rgba( 201, 162, 39, 0.08 );
	border-left: 3px solid #c9a227;
	border-radius: 2px;
}

.tohr-project-event-meta strong {
	display: block;
	color: #c9a227;
	letter-spacing: 0.05em;
	font-family: 'Cinzel', serif;
}

.tohr-project-event-meta span {
	color: #d4d0c8;
	font-size: 0.95rem;
}

/* Body content */
.tohr-project-body {
	max-width: 760px;
	margin: 0 auto 3rem auto;
}

.tohr-project-content {
	font-family: 'Inter', sans-serif;
	font-size: 1.075rem;
	line-height: 1.8;
	color: #e3dfd4;
}

.tohr-project-content p { margin-bottom: 1.5rem; }
.tohr-project-content h2 {
	font-family: 'Cinzel', serif;
	color: #c9a227;
	font-size: 1.6rem;
	margin: 2.5rem 0 1rem 0;
	letter-spacing: 0.03em;
}
.tohr-project-content h3 {
	font-family: 'Cinzel', serif;
	color: #c9a227;
	font-size: 1.25rem;
	margin: 2rem 0 0.75rem 0;
}
.tohr-project-content a { color: #c9a227; }
.tohr-project-content ul, .tohr-project-content ol {
	margin: 1rem 0 1.5rem 1.5rem;
}
.tohr-project-content li { margin-bottom: 0.5rem; }

/* Fundraising display */
.tohr-project-fundraising {
	margin: 2rem 0;
	padding: 1.5rem;
	background: rgba( 201, 162, 39, 0.05 );
	border: 1px solid rgba( 201, 162, 39, 0.2 );
	border-radius: 4px;
}

.tohr-progress {
	width: 100%;
	height: 10px;
	background: rgba( 255, 255, 255, 0.08 );
	border-radius: 5px;
	overflow: hidden;
	margin-bottom: 0.75rem;
}

.tohr-progress-bar {
	height: 100%;
	background: linear-gradient( 90deg, #8b6914 0%, #c9a227 100% );
	transition: width 0.4s ease;
}

.tohr-progress-meta {
	font-family: 'Inter', sans-serif;
	font-size: 0.95rem;
	color: #d4d0c8;
	margin-bottom: 1rem;
}

/* Get Involved section on single page */
.tohr-project-get-involved {
	margin: 3rem 0;
	padding: 3rem 2rem;
	background: linear-gradient(135deg, rgba( 201, 162, 39, 0.08 ) 0%, transparent 100%);
	border: 1px solid rgba( 201, 162, 39, 0.3 );
	border-radius: 4px;
}

.tohr-project-get-involved-inner {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 3rem;
	align-items: center;
}

@media (max-width: 860px) {
	.tohr-project-get-involved-inner { grid-template-columns: 1fr; gap: 2rem; text-align: left; }
}

.tohr-project-get-involved h2 {
	font-family: 'Cinzel', serif;
	font-size: 1.8rem;
	color: #c9a227;
	margin: 0 0 1rem 0;
	letter-spacing: 0.04em;
}

.tohr-project-get-involved-lede {
	font-family: 'Inter', sans-serif;
	font-size: 1.05rem;
	color: #d4d0c8;
	margin-bottom: 1.25rem;
}

.tohr-project-get-involved-steps {
	font-family: 'Inter', sans-serif;
	font-size: 0.98rem;
	line-height: 1.6;
	color: #c8c4b8;
	margin: 0 0 0 1.25rem;
	padding: 0;
}

.tohr-project-get-involved-steps li {
	margin-bottom: 0.75rem;
}

.tohr-project-get-involved-steps strong {
	color: #f5f3ee;
}

.tohr-project-get-involved-cta {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: stretch;
}

.tohr-project-get-involved-cta .tohr-cta-button {
	text-align: center;
}

.tohr-project-footer {
	text-align: center;
	padding: 2rem 0;
	border-top: 1px solid rgba( 201, 162, 39, 0.2 );
}

.tohr-back-link {
	color: rgba( 201, 162, 39, 0.7 );
	text-decoration: none;
	font-family: 'Inter', sans-serif;
	letter-spacing: 0.05em;
	font-size: 0.9rem;
}

.tohr-back-link:hover { color: #c9a227; }

/* ===================================================================
 * /get-involved/ form
 * ================================================================ */

.tohr-get-involved { max-width: 800px; }

.tohr-gi-header { margin-bottom: 2.5rem; }

.tohr-gi-header h1 {
	font-family: 'Cinzel', serif;
	font-size: clamp(2rem, 4.5vw, 3rem);
	font-weight: 600;
	letter-spacing: 0.04em;
	color: #c9a227;
	margin: 1rem 0;
	line-height: 1.2;
}

.tohr-gi-context {
	font-family: 'Inter', sans-serif;
	font-size: 1.075rem;
	line-height: 1.7;
	color: #d4d0c8;
	margin: 0 0 1rem 0;
}

.tohr-gi-context strong { color: #c9a227; }

.tohr-gi-form {
	background: var(--tohr-ink, #1A1714);
	border: 1px solid rgba( 201, 162, 39, 0.2 );
	border-radius: 4px;
	padding: 2rem;
	margin-bottom: 2rem;
}

.tohr-gi-field { margin-bottom: 1.75rem; }

.tohr-gi-field label {
	display: block;
	font-family: 'Cinzel', serif;
	font-size: 1.05rem;
	color: #f5f3ee;
	letter-spacing: 0.03em;
	margin-bottom: 0.4rem;
}

.tohr-required { color: #c9a227; }

.tohr-gi-help {
	font-family: 'Inter', sans-serif;
	font-size: 0.9rem;
	font-style: italic;
	color: #999;
	margin: 0.2rem 0 0.6rem 0;
	line-height: 1.5;
}

.tohr-gi-field input[type="text"],
.tohr-gi-field input[type="email"],
.tohr-gi-field textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	background: var(--tohr-black, #0F0D0B);
	border: 1px solid rgba( 201, 162, 39, 0.3 );
	color: #f5f3ee;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	border-radius: 3px;
	transition: border-color 0.2s ease;
	box-sizing: border-box;
}

.tohr-gi-field input[type="text"]:focus,
.tohr-gi-field input[type="email"]:focus,
.tohr-gi-field textarea:focus {
	outline: none;
	border-color: #c9a227;
}

.tohr-gi-field textarea { resize: vertical; }

.tohr-gi-submit { margin-top: 2rem; text-align: center; }

.tohr-gi-submit button { border: none; cursor: pointer; }

.tohr-gi-error {
	background: rgba( 200, 60, 60, 0.15 );
	border: 1px solid rgba( 200, 60, 60, 0.4 );
	color: #ff9999;
	padding: 1rem 1.25rem;
	border-radius: 3px;
	margin-bottom: 1.5rem;
	font-family: 'Inter', sans-serif;
}

.tohr-gi-process {
	background: rgba( 201, 162, 39, 0.05 );
	border-left: 3px solid #c9a227;
	padding: 1.5rem 1.75rem;
	border-radius: 0 3px 3px 0;
}

.tohr-gi-process h3 {
	font-family: 'Cinzel', serif;
	color: #c9a227;
	font-size: 1.1rem;
	margin: 0 0 0.75rem 0;
	letter-spacing: 0.05em;
}

.tohr-gi-process ol {
	font-family: 'Inter', sans-serif;
	color: #d4d0c8;
	line-height: 1.7;
	margin: 0 0 0 1.25rem;
	padding: 0;
}

.tohr-gi-process li { margin-bottom: 0.4rem; }

/* Success state */
.tohr-gi-success {
	text-align: center;
	padding: 2rem 1rem;
}

.tohr-gi-success h1 {
	font-family: 'Cinzel', serif;
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	color: #c9a227;
	margin-bottom: 1.5rem;
	letter-spacing: 0.04em;
}

.tohr-gi-lede {
	font-family: 'Inter', sans-serif;
	font-size: 1.15rem;
	line-height: 1.7;
	color: #d4d0c8;
	max-width: 580px;
	margin: 0 auto 3rem auto;
}

.tohr-gi-next {
	background: rgba( 201, 162, 39, 0.08 );
	border: 1px solid rgba( 201, 162, 39, 0.3 );
	border-radius: 4px;
	padding: 2.5rem 2rem;
	max-width: 640px;
	margin: 0 auto;
}

.tohr-gi-next h2 {
	font-family: 'Cinzel', serif;
	color: #c9a227;
	font-size: 1.6rem;
	margin: 0 0 1rem 0;
	letter-spacing: 0.04em;
}

.tohr-gi-next p {
	font-family: 'Inter', sans-serif;
	color: #d4d0c8;
	line-height: 1.7;
	margin: 0 0 1.5rem 0;
}

.tohr-gi-skip {
	font-size: 0.95rem;
	margin-top: 1.5rem !important;
}

.tohr-gi-skip a {
	color: rgba( 201, 162, 39, 0.7 );
	text-decoration: none;
}

.tohr-gi-skip a:hover { color: #c9a227; }
