/* ==========================================================================
   MORIFA Activities Page Block — Frontend Styles
   Pixel-identical match: https://morifaredesign-swmnq4iy.manus.space/activities
   Computed via Chrome MCP getComputedStyle() on 2026-05-26.

   Color reference (Manus live, canvas-converted):
     --act-sage:        #31573f  (rgb 49,87,63)
     --act-sage-dark:   #153c25  (rgb 21,60,37)
     --act-brass:       #b68700  (oklch 0.65 0.14 85)  — text-brass
     --act-brass-light: #d1a84b  (rgb 209,168,75)      — text-brass-light
     --act-espresso:    #2b1f11  (rgb 43,31,17)
     --act-stone50:     #fafaf9  (rgb 250,250,249)
   ========================================================================== */

/* --------------------------------------------------------------------------
   SHARED UTILITIES
   -------------------------------------------------------------------------- */
.morifa-act-container {
	width: 100%;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.morifa-act-container--narrow {
	max-width: 672px; /* max-w-2xl = 672px */
}

/* ==========================================================================
   SECTION 1 — HERO
   bg: linear-gradient(135deg, #31573f 0%, #153c25 100%)
   padding: 160px 0 (py-32 lg:py-40)
   ========================================================================== */
.morifa-act-hero {
	position: relative;
	background-image: linear-gradient(135deg, #31573f 0%, #153c25 100%);
	padding-top: 160px;
	padding-bottom: 160px;
	overflow: hidden;
}

/* Decorative blurred brass circles — opacity-10 */
.morifa-act-hero-blob {
	position: absolute;
	width: 384px;  /* w-96 */
	height: 384px; /* h-96 */
	background-color: #b68700;
	border-radius: 50%;
	filter: blur(64px);
	opacity: 0.1;
	pointer-events: none;
}

.morifa-act-hero-blob--tr {
	top: 0;
	right: 0;
}

.morifa-act-hero-blob--bl {
	bottom: 0;
	left: 0;
}

.morifa-act-hero-content {
	position: relative;
	z-index: 10;
	max-width: 768px; /* max-w-3xl */
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

/* "COMING SOON" eyebrow — text-brass-light, xs, 0.2em tracking, uppercase */
.morifa-act-hero-eyebrow {
	font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 2.4px; /* 0.2em */
	text-transform: uppercase;
	color: #d1a84b;
	margin-bottom: 1.5rem;
}

/* H1 — font-display light 60px white */
.morifa-act-hero-heading {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 60px;
	font-weight: 300;
	line-height: 1;
	color: #ffffff;
	margin-bottom: 1.5rem;
}

/* Body — white/80, xl (20px) */
.morifa-act-hero-body {
	font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.625;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 0;
}

/* ==========================================================================
   SECTION 2 — FEATURED STORIES
   bg: #fafaf9  padding: 112px 0 (py-20 lg:py-28)
   ========================================================================== */
.morifa-act-stories {
	background-color: #fafaf9;
	padding-top: 112px;
	padding-bottom: 112px;
}

.morifa-act-stories-header {
	text-align: center;
	margin-bottom: 4rem; /* mb-16 */
}

/* "COMING SOON" eyebrow — text-brass (darker), xs, 0.3em tracking, semibold */
.morifa-act-stories-eyebrow {
	font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 3.6px; /* 0.3em */
	text-transform: uppercase;
	color: #b68700;
	margin-bottom: 1rem;
}

/* H2 — font-display light 40px espresso */
.morifa-act-stories-heading {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 40px;
	font-weight: 300;
	line-height: 1.2;
	color: #2b1f11;
	margin-bottom: 0;
}

/* Grid — 1 col mobile, 2 col md, 4 col lg */
.morifa-act-stories-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem; /* gap-6 */
}

@media (min-width: 768px) {
	.morifa-act-stories-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.morifa-act-stories-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Card */
.morifa-act-card {
	background-color: #ffffff;
	border-radius: 8px;
	border: 1px solid rgba(49, 87, 63, 0.1);
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: box-shadow 0.3s ease;
}

.morifa-act-card:hover {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

/* Card image area — 192px height, sage/5 bg */
.morifa-act-card-img {
	position: relative;
	width: 100%;
	height: 192px;
	overflow: hidden;
	background-color: rgba(49, 87, 63, 0.05);
}

.morifa-act-card-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* "UNDER CONSTRUCTION" badge — top-3 right-3, brass/90, pill */
.morifa-act-card-badge {
	position: absolute;
	top: 12px;  /* top-3 */
	right: 12px; /* right-3 */
	background-color: rgba(182, 135, 0, 0.9);
	color: #ffffff;
	padding: 4px 12px;
	border-radius: 9999px;
	line-height: 1.4;
}

.morifa-act-card-badge span {
	font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1.2px; /* 0.1em */
	text-transform: uppercase;
}

/* Card body — p-6 (24px) */
.morifa-act-card-body {
	padding: 24px;
}

/* Card H3 — display semibold 18px espresso */
.morifa-act-card-title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 18px;
	font-weight: 600;
	color: #2b1f11;
	margin-bottom: 0.5rem;
	line-height: 1.3;
}

/* Card desc — body sm espresso/60 */
.morifa-act-card-desc {
	font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: rgba(43, 31, 17, 0.6);
	margin-bottom: 0;
	line-height: 1.5;
}

/* ==========================================================================
   SECTION 3 — STAY TUNED / NOTIFY
   bg: transparent   padding: 128px 0 (py-24 lg:py-32)
   ========================================================================== */
.morifa-act-notify {
	background-color: #ffffff;
	padding-top: 128px;
	padding-bottom: 128px;
}

.morifa-act-notify-inner {
	text-align: center;
}

/* Icon circle — 96×96, sage/10, full-round */
.morifa-act-notify-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 96px;
	height: 96px;
	background-color: rgba(49, 87, 63, 0.1);
	border-radius: 50%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2rem;
	color: #31573f;
}

/* H2 — display light 36px espresso */
.morifa-act-notify-heading {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 36px;
	font-weight: 300;
	line-height: 1.2;
	color: #2b1f11;
	margin-bottom: 1.5rem;
}

/* Body text — lg (18px) espresso/70 */
.morifa-act-notify-body {
	font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.625;
	color: rgba(43, 31, 17, 0.7);
	margin-bottom: 3rem;
}

/* Form box — stone-50 bg, 12px radius, 32px padding, sage/20 border */
.morifa-act-notify-form {
	background-color: #fafaf9;
	border-radius: 12px;
	padding: 32px;
	border: 1px solid rgba(49, 87, 63, 0.2);
	text-align: left;
}

/* Label */
.morifa-act-notify-label {
	display: block;
	font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #2b1f11;
	margin-bottom: 1rem;
}

/* Row — flex, gap-3 */
.morifa-act-notify-row {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

/* Email input */
.morifa-act-notify-input {
	flex: 1;
	min-width: 200px;
	padding: 12px 16px;
	background-color: #ffffff;
	border: 1px solid rgba(49, 87, 63, 0.2);
	border-radius: 8px;
	font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 16px;
	color: #2b1f11;
	outline: none;
	transition: border-color 0.3s ease;
}

.morifa-act-notify-input::placeholder {
	color: rgba(43, 31, 17, 0.4);
}

.morifa-act-notify-input:focus {
	border-color: rgba(49, 87, 63, 0.4);
	box-shadow: 0 0 0 3px rgba(49, 87, 63, 0.1);
}

/* Notify Me button — sage bg, white text, 8px radius, 12px/24px padding */
.morifa-act-notify-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 12px 24px;
	background-color: #31573f;
	color: #ffffff;
	font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 16px;
	font-weight: 600;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	white-space: nowrap;
	transition: background-color 0.3s ease;
}

.morifa-act-notify-btn:hover {
	background-color: #153c25;
}

/* ==========================================================================
   SECTION 4 — EXPLORE CTAs
   bg: #fafaf9   padding: 80px 0 (py-16 lg:py-20)
   ========================================================================== */
.morifa-act-explore {
	background-color: #fafaf9;
	padding-top: 80px;
	padding-bottom: 80px;
}

.morifa-act-explore-inner {
	text-align: center;
}

/* Body — lg (18px) espresso/70 */
.morifa-act-explore-body {
	font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: rgba(43, 31, 17, 0.7);
	margin-bottom: 1.5rem;
	line-height: 1.625;
}

/* Buttons row */
.morifa-act-explore-btns {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

@media (min-width: 640px) {
	.morifa-act-explore-btns {
		flex-direction: row;
		justify-content: center;
	}
}

/* Shared button base — no border-radius (0px from computed), uppercase, tracking-wide */
.morifa-act-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 12px 32px;
	font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	border-radius: 0;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
	text-decoration: none;
	white-space: nowrap;
}

/* Filled — sage bg, white text */
.morifa-act-btn--filled {
	background-color: #31573f;
	color: #ffffff;
	border: none;
}

.morifa-act-btn--filled:hover {
	background-color: #153c25;
	color: #ffffff;
}

/* Outline — transparent bg, sage border + text */
.morifa-act-btn--outline {
	background-color: transparent;
	color: #31573f;
	border: 1px solid #31573f;
}

.morifa-act-btn--outline:hover {
	background-color: rgba(49, 87, 63, 0.05);
	color: #31573f;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 1023px) {
	.morifa-act-hero {
		padding-top: 128px;
		padding-bottom: 128px;
	}

	.morifa-act-hero-heading {
		font-size: 48px;
	}

	.morifa-act-stories {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.morifa-act-stories-heading {
		font-size: 36px;
	}

	.morifa-act-notify {
		padding-top: 96px;
		padding-bottom: 96px;
	}

	.morifa-act-explore {
		padding-top: 64px;
		padding-bottom: 64px;
	}
}

@media (max-width: 767px) {
	.morifa-act-hero-heading {
		font-size: 36px;
	}

	.morifa-act-hero-body {
		font-size: 16px;
	}

	.morifa-act-notify-form {
		padding: 24px;
	}

	.morifa-act-notify-row {
		flex-direction: column;
	}

	.morifa-act-notify-input {
		min-width: unset;
		width: 100%;
	}

	.morifa-act-notify-btn {
		width: 100%;
		justify-content: center;
	}
}
