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

:root {
	--font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	--bg-primary: #fafaf9;
	--bg-secondary: #f0f0eb;
	--bg-card: rgba(255, 255, 255, 0.55);
	--bg-dark: #0d1117;
	--bg-dark-secondary: #161b22;
	--text-primary: #111110;
	--text-secondary: #575757;
	--text-on-dark: #e8e8e3;
	--text-muted-on-dark: #8b949e;
	--accent-primary: #ff5433;
	--accent-secondary: #73a785;
	--accent-secondary-dark: #5a9e70;
	--vermillion: #ff5433;
	--border-light: rgba(0, 0, 0, 0.06);
	--border-medium: rgba(0, 0, 0, 0.1);
	--border-glass: rgba(255, 255, 255, 0.35);
	--shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
	--shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.12);
	--blur: blur(20px);
	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 20px;
	--radius-xl: 28px;
	--radius-pill: 100px;
	--container: 1160px;
	--section-gap: 120px;
	--transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
	--bg-primary: #0d1117;
	--bg-secondary: #161b22;
	--bg-card: rgba(22, 27, 34, 0.7);
	--text-primary: #e8e8e3;
	--text-secondary: #8b949e;
	--border-light: rgba(255, 255, 255, 0.06);
	--border-medium: rgba(255, 255, 255, 0.1);
	--shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
	--shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.5);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	background-color: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transition: background-color var(--transition), color var(--transition);
	overflow: hidden;
	overflow-y: auto;
}

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

/* NAV */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 16px 0;
	transition: var(--transition);
	background: var(--bg-card);
	backdrop-filter: var(--blur);
	-webkit-backdrop-filter: var(--blur);
	border-bottom: 1px solid var(--border-light);
}

.nav.scrolled {
	background: var(--bg-card);
	backdrop-filter: var(--blur);
	-webkit-backdrop-filter: var(--blur);
	border-bottom: 1px solid var(--border-light);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--text-primary);
}

.nav-logo-mark {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-primary) 0%, #ff7a5c 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.nav-logo-mark svg {
	width: 20px;
	height: 20px;
}

.nav-logo-text {
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: -0.01em;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
}

.nav-links a {
	text-decoration: none;
	color: var(--text-primary);
	font-size: 0.9rem;
	font-weight: 500;
	transition: color var(--transition);
}

.nav-links a:hover {
	color: var(--text-primary);
}

.nav-links a:hover::after {
	display: block;
	height: 3px;
	content: '';
	background: var(--accent-primary);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 22px;
	border-radius: var(--radius-pill);
	font-family: var(--font);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	border: none;
	transition: all var(--transition);
}

.btn-primary {
	background: var(--accent-primary);
	color: #fff;
	text-decoration: none;
	border-radius: var(--radius-pill);
}

.btn-primary:hover {
	background: #e64a28;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(255, 84, 51, 0.35);
}

.btn-secondary {
	background: var(--bg-card);
	color: var(--text-primary);
	border: 1px solid var(--border-medium);
	backdrop-filter: var(--blur);
	-webkit-backdrop-filter: var(--blur);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 84, 51, 0.3);
}

.btn-ghost {
	background: transparent;
	color: var(--text-secondary);
	padding: 8px 16px;
}

.btn-ghost:hover {
	color: var(--text-primary);
	background: var(--bg-secondary);
}

.theme-toggle {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--border-medium);
	background: var(--bg-card);
	backdrop-filter: var(--blur);
	-webkit-backdrop-filter: var(--blur);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--transition);
	color: var(--text-secondary);
}

.theme-toggle:hover {
	border-color: var(--accent-secondary);
	color: var(--text-primary);
}

.theme-toggle svg {
	width: 18px;
	height: 18px;
	transition: transform var(--transition);
}

.theme-toggle:hover svg {
	transform: rotate(15deg);
}

/* HERO */
.hero {
	display: flex;
	align-items: center;
	padding: 160px 0 100px;
	position: relative;
	overflow: hidden;
	background: url('../../media/flowers/2025/11.jpg') no-repeat center / cover;
	height: 100vh;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: var(--blur);
	-webkit-backdrop-filter: var(--blur);
	border: 1px solid var(--border-glass);
	box-shadow: var(--shadow-glass);
	z-index: 0;
}


.hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-content {
	max-width: 560px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	border-radius: var(--radius-pill);
	background: var(--bg-card);
	border: 1px solid var(--border-light);
	backdrop-filter: var(--blur);
	-webkit-backdrop-filter: var(--blur);
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 28px;
	box-shadow: var(--shadow-card);
}

.hero-badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent-secondary);
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.4;
	}
}

.hero h1 {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin-bottom: 20px;
	color: var(--text-primary);
}

.hero h1 .accent {
	color: #fff;
}

.hero-description {
	font-size: 1.1rem;
	color: var(--text-primary);
	line-height: 1.7;
	margin-bottom: 36px;
	max-width: 480px;
}

.hero-ctas {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.hero-visual {
	position: relative;
}

.hero-card-main {
	border-radius: var(--radius-xl);
	background: var(--bg-card);
	backdrop-filter: var(--blur);
	-webkit-backdrop-filter: var(--blur);
	border: 1px solid var(--border-light);
	box-shadow: var(--shadow-glass);
	overflow: hidden;
	aspect-ratio: 5/4;
	position: relative;
}

.hero-card-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hero-card-float {
	position: absolute;
	bottom: -24px;
	left: -24px;
	border-radius: var(--radius-lg);
	background: var(--bg-card);
	backdrop-filter: var(--blur);
	-webkit-backdrop-filter: var(--blur);
	border: 1px solid var(--border-light);
	box-shadow: var(--shadow-glass);
	padding: 18px 22px;
	display: flex;
	align-items: center;
	gap: 14px;
}

.hero-card-float-icon {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-md);
	background: linear-gradient(135deg, var(--accent-secondary) 0%, #6fc48b 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.hero-card-float-icon svg {
	width: 22px;
	height: 22px;
	color: #fff;
}

.hero-card-float-text {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--text-primary);
	line-height: 1.3;
}

.hero-card-float-sub {
	font-size: 0.75rem;
	color: var(--text-secondary);
	font-weight: 400;
}

/* ── Banner — Inner Pages ───────────────────────────────── */
.page-banner {
	position: relative;
	height: 320px;
	display: flex;
	align-items: center;
	padding-top: 50px;
	overflow: hidden;
	margin-bottom: var(--section-gap);
	display: flex;
	align-items: center;
	padding: 180px 0 120px;
	position: relative;
	overflow: hidden;
	background: url('../../media/flowers/2025/11.jpg') no-repeat center / cover;
}

.page-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.01);
	backdrop-filter: var(--blur);
	-webkit-backdrop-filter: var(--blur);
	border: 1px solid var(--border-glass);
	box-shadow: var(--shadow-glass);
	z-index: 0;
}

/* .page-banner::after {
	content: '';
	position: absolute;
	top: -20%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(151, 211, 172, 0.12) 0%, transparent 70%);
	border-radius: 50%;
	z-index: 0;
} */

/* .page-banner-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255, 84, 51, 0.12) 0%, transparent 60%),
		linear-gradient(135deg, #1e2524 0%, #2F3837 100%);
} */

.page-banner-flower {
	position: absolute;
	right: -60px;
	top: 50%;
	transform: translateY(-50%);
	width: 320px;
	height: 320px;
	opacity: 0.05;
}

.page-banner-content {
	position: relative;
	z-index: 1;
}

.page-banner-label {
	font-size: 0.68rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.page-banner-label::before {
	content: '';
	display: block;
	width: 20px;
	height: 1px;
	background: #fff;
}

.page-banner h1 {
	font-size: 2rem;
	font-weight: 900;
	color: #fff;
	line-height: 1.1;
	max-width: 700px;
}

.page-banner p {
	font-size: 1rem;
	color: #fff;
	margin-top: 0.75rem;
	font-weight: 300;
}


/* SEASONS STRIP */
.seasons-strip {
	padding: var(--section-gap) 0;
}

.seasons-inner {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 0;
	border-radius: var(--radius-xl);
	background: var(--bg-card);
	backdrop-filter: var(--blur);
	-webkit-backdrop-filter: var(--blur);
	border: 1px solid var(--border-light);
	box-shadow: var(--shadow-glass);
	overflow: hidden;
}

.seasons-label {
	padding: 40px 32px;
	background: var(--bg-secondary);
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-right: 1px solid var(--border-light);
}

.seasons-label-text {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--accent-primary);
	margin-bottom: 10px;
}

.seasons-label-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--text-primary);
	line-height: 1.3;
}

.seasons-tracks {
	display: flex;
	align-items: stretch;
}

.seasons-track {
	flex: 1;
	padding: 36px 28px;
	border-right: 1px solid var(--border-light);
	position: relative;
}

.seasons-track:last-child {
	border-right: none;
}

.seasons-track-num {
	font-size: 0.7rem;
	font-weight: 700;
	color: var(--accent-primary);
	margin-bottom: 8px;
}

.seasons-track-title {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 6px;
}

.seasons-track-desc {
	font-size: 0.8rem;
	color: var(--text-secondary);
	line-height: 1.5;
}

/* STATS */
.stats-section {
	padding: var(--section-gap) 0;
	background: var(--bg-secondary);
	position: relative;
}

[data-theme="dark"] .stats-section {
	background: var(--bg-dark-secondary);
}

.stats-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}

.stat-item {
	text-align: center;
	padding: 48px 24px;
	border-right: 1px solid var(--border-light);
}

.stat-item:last-child {
	border-right: none;
}

.stat-number {
	font-size: 2.8rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--text-primary);
	line-height: 1;
	margin-bottom: 8px;
}

.stat-number span {
	color: var(--accent-primary);
}

.stat-label {
	font-size: 0.85rem;
	color: var(--text-secondary);
	font-weight: 500;
}

/* MISSION */
.mission-section {
	padding: var(--section-gap) 0;
}

.mission-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}

.section-label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--accent-primary);
}

.section-title {
	font-size: 2.2rem;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--text-primary);
	margin-bottom: 2rem;
	margin-top: 1.5rem;
}

.mission-text {
	font-size: 1rem;
	color: var(--text-secondary);
	line-height: 1.75;
	margin-bottom: 28px;
}

.mission-values {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.mission-value-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.mission-value-icon {
	width: 40px;
	height: 40px;
	border-radius: var(--radius-md);
	background: linear-gradient(135deg, rgba(151, 211, 172, 0.15) 0%, rgba(151, 211, 172, 0.05) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.mission-value-icon svg {
	width: 20px;
	height: 20px;
	color: var(--accent-secondary-dark);
}

.mission-value-title {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 2px;
}

.mission-value-desc {
	font-size: 0.82rem;
	color: var(--text-secondary);
}

.mission-visual {
	border-radius: var(--radius-xl);
	background: var(--bg-card);
	backdrop-filter: var(--blur);
	-webkit-backdrop-filter: var(--blur);
	border: 1px solid var(--border-light);
	box-shadow: var(--shadow-glass);
	overflow: hidden;
	aspect-ratio: 5/4;
	margin-top: 4rem;
}

.mission-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* BENTO FEATURES */
.features-section {
	padding: var(--section-gap) 0;
}

.features-header {
	text-align: center;
	/* max-width: 600px; */
	margin: 0 auto 64px;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* bento: 6 items, 3 cols: 2+2+2=6 */
.feature-card {
	border-radius: var(--radius-xl);
	background: var(--bg-card);
	backdrop-filter: var(--blur);
	-webkit-backdrop-filter: var(--blur);
	border: 1px solid var(--border-light);
	box-shadow: var(--shadow-card);
	padding: 36px 32px;
	transition: all var(--transition);
	position: relative;
	overflow: hidden;
}

.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-glass);
}

.feature-card:nth-child(1) {
	grid-column: span 1;
}

.feature-card:nth-child(2) {
	grid-column: span 1;
}

.feature-card:nth-child(3) {
	grid-column: span 1;
}

.feature-card:nth-child(4) {
	grid-column: span 1;
}

.feature-card:nth-child(5) {
	grid-column: span 1;
}

.feature-card:nth-child(6) {
	grid-column: span 1;
}

.feature-icon {
	width: 52px;
	height: 52px;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.feature-icon svg {
	width: 26px;
	height: 26px;
}

.feature-icon-orange {
	background: linear-gradient(135deg, rgba(255, 84, 51, 0.12) 0%, rgba(255, 84, 51, 0.04) 100%);
	color: var(--accent-primary);
}

.feature-icon-green {
	background: linear-gradient(135deg, rgba(151, 211, 172, 0.2) 0%, rgba(151, 211, 172, 0.06) 100%);
	color: var(--accent-secondary-dark);
}

.feature-card h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 10px;
	letter-spacing: -0.01em;
}

.feature-card p {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.65;
}

/* GOALS */
.goals-section {
	padding: var(--section-gap) 0;
	background: var(--bg-secondary);
}

[data-theme="dark"] .goals-section {
	background: var(--bg-dark-secondary);
}

.goals-header {
	display: block;
	margin-bottom: 64px;
}

.goals-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* 3 items, 3 cols: 1+1+1=3 */
.goal-card {
	border-radius: var(--radius-xl);
	background: var(--bg-card);
	backdrop-filter: var(--blur);
	-webkit-backdrop-filter: var(--blur);
	border: 1px solid var(--border-light);
	box-shadow: var(--shadow-card);
	padding: 36px 30px;
	text-align: center;
}

.goal-icon {
	width: 64px;
	height: 64px;
	border-radius: var(--radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.goal-icon svg {
	width: 30px;
	height: 30px;
}

.goal-card h3 {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 10px;
}

.goal-card p {
	font-size: 0.85rem;
	color: var(--text-secondary);
	line-height: 1.65;
}

/* CTA SECTION */
.cta-section {
	padding: var(--section-gap) 0;
}

.cta-inner {
	border-radius: var(--radius-xl);
	background: var(--bg-card);
	backdrop-filter: var(--blur);
	-webkit-backdrop-filter: var(--blur);
	border: 1px solid var(--border-light);
	box-shadow: var(--shadow-glass);
	padding: 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-bg-shape {
	position: absolute;
	top: -60px;
	right: -60px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(151, 211, 172, 0.1) 0%, transparent 70%);
	border-radius: 50%;
}

.cta-bg-shape-2 {
	position: absolute;
	bottom: -80px;
	left: -80px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(255, 84, 51, 0.05) 0%, transparent 70%);
	border-radius: 50%;
}

.cta-inner .section-title {
	margin-bottom: 16px;
}

.cta-inner p {
	font-size: 1.05rem;
	color: var(--text-secondary);
	max-width: 480px;
	margin: 0 auto 36px;
	line-height: 1.7;
}

/* VISIT SECTION */
.visit-section {
	padding: var(--section-gap) 0;
}

.visit-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.visit-visual {
	border-radius: var(--radius-xl);
	background: var(--bg-card);
	backdrop-filter: var(--blur);
	-webkit-backdrop-filter: var(--blur);
	border: 1px solid var(--border-light);
	box-shadow: var(--shadow-glass);
	overflow: hidden;
	aspect-ratio: 5/4;
	margin: 2rem 0;
}

.visit-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.visit-info {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.visit-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.visit-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px 24px;
	border-radius: var(--radius-lg);
	background: var(--bg-card);
	border: 1px solid var(--border-light);
	backdrop-filter: var(--blur);
	-webkit-backdrop-filter: var(--blur);
}

.visit-item-icon {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.visit-item-icon svg {
	width: 22px;
	height: 22px;
}

.visit-item-title {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 4px;
}

.visit-item-desc {
	font-size: 0.82rem;
	color: var(--text-secondary);
}

/* FOOTER */
.footer {
	padding: 60px 0 40px;
	border-top: 1px solid var(--border-light);
}

.footer-top {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 48px;
}

.footer-brand-desc {
	font-size: 0.85rem;
	color: var(--text-secondary);
	line-height: 1.7;
	margin-top: 14px;
	max-width: 260px;
}

.footer-col-title {
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-primary);
	margin-bottom: 16px;
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-links a {
	text-decoration: none;
	font-size: 0.875rem;
	color: var(--text-secondary);
	transition: color var(--transition);
}

.footer-links a:hover {
	color: var(--text-primary);
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 28px;
	border-top: 1px solid var(--border-light);
}

.footer-copy {
	font-size: 0.8rem;
	color: var(--text-secondary);
}

.footer-social {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-social a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--bg-card);
	border: 1px solid var(--border-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-secondary);
	text-decoration: none;
	transition: all var(--transition);
}

.footer-social a:hover {
	border-color: var(--accent-secondary);
	color: var(--text-primary);
}

.footer-social a svg {
	width: 16px;
	height: 16px;
}

/* SCROLL TO TOP */
.scroll-top {
	position: fixed;
	bottom: 32px;
	right: 32px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--bg-card);
	backdrop-filter: var(--blur);
	-webkit-backdrop-filter: var(--blur);
	border: 1px solid var(--border-light);
	box-shadow: var(--shadow-glass);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: all var(--transition);
	color: var(--text-secondary);
	z-index: 50;
}

.scroll-top.visible {
	opacity: 1;
	visibility: visible;
}

.scroll-top:hover {
	transform: translateY(-3px);
	color: var(--accent-primary);
}

.scroll-top svg {
	width: 20px;
	height: 20px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {

	.visit-grid {
		grid-template-columns:  1fr;
	}

	.hero-inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.hero-visual {
		max-width: 540px;
	}

	.seasons-inner {
		grid-template-columns: 1fr;
	}

	.seasons-label {
		border-right: none;
		border-bottom: 1px solid var(--border-light);
		padding: 28px 32px;
	}

	.seasons-tracks {
		flex-direction: column;
	}

	.seasons-track {
		border-right: none;
		border-bottom: 1px solid var(--border-light);
		padding: 24px 32px;
	}

	.seasons-track:last-child {
		border-bottom: none;
	}

	.stats-inner {
		grid-template-columns: repeat(2, 1fr);
	}

	.stat-item:nth-child(2) {
		border-right: none;
	}

	.stat-item:nth-child(3) {
		border-top: 1px solid var(--border-light);
	}

	.stat-item:nth-child(4) {
		border-top: 1px solid var(--border-light);
		border-right: none;
	}

	.mission-inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.mission-visual {
		max-width: 540px;
	}

	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.features-grid .feature-card:nth-child(3) {
		grid-column: span 2;
	}

	.features-grid .feature-card:nth-child(3) {
		grid-column: span 1;
	}

	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.goals-header {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.cta-inner {
		padding: 56px 32px;
	}

	.visit-inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.visit-visual {
		max-width: 540px;
	}

	.footer-top {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
}

@media (max-width: 768px) {
	:root {
		--section-gap: 80px;
	}

	.nav-links {
		display: none;
	}

	.hero {
		padding: 120px 0 64px;
	}

	.stats-inner {
		grid-template-columns: 1fr 1fr;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.features-grid .feature-card {
		grid-column: span 1 !important;
	}

	.goals-grid {
		grid-template-columns: 1fr;
	}

	.footer-top {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}

	.hero-card-float {
		left: 12px;
		bottom: -16px;
	}
}

@media (max-width: 480px) {
	.hero-ctas {
		flex-direction: column;
		align-items: flex-start;
	}

	.btn-primary,
	.btn-secondary {
		width: 100%;
		justify-content: center;
	}

	.cta-inner {
		padding: 40px 24px;
	}
}

/* ── Blog Cards ─────────────────────────────────────────── */
.blog-section {
	padding: var(--section-gap) 0;
}

.blog-intro {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 2rem;
	align-items: end;
	margin-bottom: 2.5rem;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.blog-card {
	border: 1px solid var(--border-light);
	border-radius: 12px;
	overflow: hidden;
	transition: box-shadow var(--transition), transform var(--transition);
	text-decoration: none;
	display: flex;
	flex-direction: column;
	color: inherit;
}

.blog-card:hover {
	box-shadow: 0 8px 40px rgba(47, 56, 55, 0.12);
	transform: translateY(-4px);
}

.blog-card-thumb {
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	position: relative;
	overflow: hidden;
}

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

.blog-card-cat {
	font-size: 0.62rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--vermillion);
	margin-bottom: 0.6rem;
}

.blog-card-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--slate);
	line-height: 1.3;
	margin-bottom: 0.6rem;
}

.blog-card-excerpt {
	font-size: 0.82rem;
	color: var(--text-primary);
	line-height: 1.7;
	flex: 1;
	margin-bottom: 1rem;
}

.blog-card-read {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--vermillion);
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.blog-card-read .material-symbols-outlined {
	font-size: 0.9rem;
}

/* ── Blog List Page ─────────────────────────────────────── */
.blog-list-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 3rem;
	padding: 0 0 4rem 0;
}

.blog-list-posts {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.blog-post-card {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 1.5rem;
	background: var(--bg-primary);
	border: 1px solid var(--border-light);
	border-radius: 12px;
	overflow: hidden;
	transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.blog-post-card:hover {
	box-shadow: 0 8px 32px rgba(47, 56, 55, 0.1);
	transform: translateX(4px);
	border-color: rgba(255, 84, 51, 0.3);
}

.blog-post-thumb {
	background: var(--bg-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	min-height: 180px;
}

.blog-post-body {
	padding: 1.5rem 1.5rem 1.5rem 0;
	display: flex;
	flex-direction: column;
}

.blog-post-meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 0.6rem;
}

.blog-post-cat {
	font-size: 0.62rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--vermillion);
}

.blog-post-date {
	font-size: 0.62rem;
	color: var(--vermillion);
}

.blog-post-card h2 {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--text-primary);
	line-height: 1.3;
	margin-bottom: 0.6rem;
}

.blog-post-card h2 a {
	text-decoration: none;
	color: inherit;
	transition: color var(--transition);
}

.blog-post-card h2 a:hover {
	color: var(--vermillion);
}

.blog-post-card p {
	font-size: 0.85rem;
	color: var(--text-primary);
	line-height: 1.7;
	margin-bottom: 1rem;
	flex: 1;
}

.blog-read-more {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--vermillion);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	transition: gap var(--transition);
}

.blog-read-more:hover {
	gap: 0.6rem;
}

.blog-pagination {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 2rem;
}

.page-btn {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border-light);
	border-radius: 4px;
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--text-primary);
	text-decoration: none;
	transition: all var(--transition);
}

.page-btn:hover,
.page-btn.active {
	background: var(--bg-secondary);
	border-color: var(--border-light);
	color: var(--text-primary);
}

/* ── Sidebar ────────────────────────────────────────────── */
.blog-sidebar {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.sidebar-widget {
	background: var(--bg-primary);
	border: 1px solid var(--border-light);
	border-radius: 12px;
	padding: 1.5rem;
}

.sidebar-widget-title {
	font-family: var(--font-mono);
	font-size: 0.65rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--secondary);
	margin-bottom: 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--border-light);
}

.sidebar-widget li {
	list-style: none;
}

.sidebar-cat-list li {
	margin-bottom: 0.5rem;
}

.sidebar-cat-list a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
	color: var(--slate);
	text-decoration: none;
	transition: color var(--transition);
}

.sidebar-cat-list a:hover {
	color: var(--vermillion);
}

.sidebar-cat-count {
	font-family: var(--font-mono);
	font-size: 0.68rem;
	color: var(--text-primary);
	background: var(--bg-secondary);
	padding: 0.1rem 0.5rem;
	border-radius: 20px;
}

.sidebar-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.sidebar-tag {
	font-size: 0.65rem;
	letter-spacing: 0.08em;
	color: var(--text-primary);
	background: var(--bg-secondary);
	border: 1px solid var(--border-light);
	padding: 0.3rem 0.65rem;
	border-radius: 20px;
	transition: background var(--transition), color var(--transition), border-color var(--transition);
	cursor: default;
}

.sidebar-tag:hover {
	background: rgba(255, 84, 51, 0.08);
	color: var(--vermillion);
	border-color: rgba(255, 84, 51, 0.3);
}

/* ── Blog Post ──────────────────────────────────────────── */
.post-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 3rem;
	padding: 4rem 0;
}

.post-header {
	margin-bottom: 2rem;
}

.post-meta-row {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.post-title {
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	font-weight: 900;
	color: var(--slate);
	line-height: 1.15;
	margin-bottom: 1.5rem;
}

.post-author-row {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.post-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--vermillion);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 700;
	color: white;
	font-size: 0.9rem;
	flex-shrink: 0;
}

.post-author-name {
	font-weight: 600;
	font-size: 0.9rem;
}

.post-author-title {
	font-size: 0.75rem;
	color: var(--slate-light);
}

.post-featured-img {
	width: 100%;
	aspect-ratio: 16/7;
	border-radius: 12px;
	background: var(--slate);
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.fi-icon {
	font-size: 4rem;
	color: rgba(255, 255, 255, 0.1);
	font-variation-settings: 'FILL' 1, 'wght' 100, 'GRAD' 0, 'opsz' 48;
}

.post-body {
	font-size: 1rem;
	line-height: 1.9;
	color: var(--slate-mid);
}

.post-body h2 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--slate);
	margin: 2.5rem 0 0.75rem;
}

.post-body p {
	margin-bottom: 1.25rem;
}

.post-body ul,
.post-body ol {
	padding-left: 1.5rem;
	margin-bottom: 1.25rem;
}

.post-body li {
	margin-bottom: 0.4rem;
	list-style: disc;
}

.post-body blockquote {
	border-left: 3px solid var(--vermillion);
	padding: 0.75rem 0 0.75rem 1.5rem;
	margin: 1.5rem 0;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.1rem;
	color: var(--slate);
}

.post-body code {
	font-family: var(--font-mono);
	font-size: 0.85em;
	background: var(--cream-mid);
	padding: 0.1em 0.4em;
	border-radius: 3px;
	color: var(--vermillion);
}

.post-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 2rem 0;
	padding-top: 1.5rem;
	border-top: 1px solid var(--cream-dark);
}

.post-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--cream-dark);
}

.post-nav-card {
	background: var(--cream-mid);
	border: 1px solid var(--cream-dark);
	border-radius: 8px;
	padding: 1rem 1.25rem;
	text-decoration: none;
	transition: background var(--transition), border-color var(--transition);
}

.post-nav-card:hover {
	background: var(--cream);
	border-color: var(--vermillion);
}

.post-nav-card.next {
	text-align: right;
}

.post-nav-dir {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-family: var(--font-mono);
	font-size: 0.65rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--vermillion);
	margin-bottom: 0.4rem;
}

.post-nav-card.next .post-nav-dir {
	justify-content: flex-end;
}

.post-nav-title {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--slate);
	line-height: 1.35;
}



.photo-grid img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	object-fit: cover;
	box-shadow: 0 4px 20px rgba(47, 56, 55, 0.3);
}

.timeline-nav {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1rem;
	justify-content: center;
	margin-bottom: 2rem;
}

.nav-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin: 0;
}

.nav-item {
	list-style: none;
}

.timeline-nav .nav-link {
	border-radius: 8px;
	padding: 0.5rem 1rem;
	text-decoration: none;
	color: var(--text-secondary);
	transition: all var(--transition);
	white-space: nowrap;
}

.timeline-nav .nav-link:hover {
	background: var(--accent-primary);
	color: white;
}

.photo-grid .badge {
	display: none;
}


.video-wrapper {
	position: relative;
	display: block;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	/* 16:9 aspect ratio */
	overflow: hidden;
}

.video-wrapper video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.row {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 20px;
}

.col-6 {
	grid-column: span 6;
	margin-top: 2rem;
}

.col-12 {
	grid-column: span 12;
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.mb-2 {
	margin-bottom: 0.75rem;
}

.mb-3 {
	margin-bottom: 1rem;
}

.mb-4 {
	margin-bottom: 1.5rem;
}

.mb-5 {
	margin-bottom: 2rem;
}

.mt-2 {
	margin-top: 0.55rem;
}

.mt-3 {
	margin-top: 1rem;
}

.mt-4 {
	margin-top: 1.5rem;
}

.mt-5 {
	margin-top: 2rem;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.list-unstyled {
	list-style: none;
	padding-left: 0;
}

.bold {
	font-weight: 700;
}

.donation-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.card {
	border: 1px solid var(--border-light);
	border-radius: 12px;
	padding: 1.5rem;
	transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
	box-shadow: 0 8px 32px rgba(47, 56, 55, 0.1);
	transform: translateY(-4px);
}

.card-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
}

.privacy-content {
	margin-bottom: 3rem;
}

.privacy-content h2 {
	margin-top: 2rem;
}

.form-label {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.form-control,
.form-select {
	width: 100%;
	padding: 0.5rem 0.75rem;
	border: 1px solid var(--border-light);
	border-radius: 4px;
	transition: border-color var(--transition);
}

.alert-info {
	background: var(--bg-secondary);
	border: 1px solid var(--border-light);
	color: var(--text-primary);
	padding: 1rem;
	border-radius: 8px;
	margin-bottom: 1.5rem;
}

.alert-danger {
	background: rgba(255, 84, 51, 0.1);
	border: 1px solid rgba(255, 84, 51, 0.3);
	color: var(--vermillion);
	padding: 1rem;
	border-radius: 8px;
	margin-bottom: 1.5rem;
}

.alert-success {
	background: rgba(151, 211, 172, 0.1);
	border: 1px solid rgba(151, 211, 172, 0.3);
	color: var(--accent-secondary-dark);
	padding: 1rem;
	border-radius: 8px;
	margin-bottom: 1.5rem;
}

.contact-page .card:hover {
	box-shadow: none;
	transform: none;
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.mobile-menu-btn svg {
	width: 26px;
	height: 26px;
	fill: var(--text-primary) #f8fafc;
}

@media (max-width: 1024px) {

	.col-6 {
		grid-column: span 12;
	}


	.mobile-menu-btn {
		display: block;
	}

	.nav-links {
		display: block;
		position: absolute;
		top: 80px;
		left: 0;
		width: 320px;
		height: auto;
		background: var(--bg-primary);
		padding: 30px;
		border-bottom-right-radius: var(--radius-lg);
		transform: translateX(-100%);
		opacity: 0;
		pointer-events: none;
		transition: transform 0.5s ease, opacity 0.5s ease;
	}

	.nav-links.active {
		transform: translateX(0);
		opacity: 1;
		pointer-events: auto;
	}

	.nav-links a {
		display: block;
		text-decoration: none;
		color: var(--text-primary);
		font-size: 0.9rem;
		font-weight: 500;
		transition: color var(--transition);
		padding: 10px 20px;
		width: 100%;
		border-radius: var(--radius-lg);
		margin-bottom: 5px;
	}

	.nav-links a:hover {
		background: var(--bg-secondary);
	}

	.nav-links a:hover::after {
		display: none;
		height: 0;
		content: '';
		background: transparent;
	}
}