/* ── FONTS ── */
			@font-face {
			font-family: "Gilroy";
			src: url("fonts/Gilroy-Light.woff2") format('woff2');
			font-weight: 300;
			font-style: normal;
			font-display: swap;
		}
@font-face {
			font-family: "Gilroy";
			src: url("fonts/Gilroy-LightItalic.woff2") format('woff2');
			font-weight: 300;
			font-style: italic;
			font-display: swap;
		}
@font-face {
			font-family: "Gilroy";
			src: url("fonts/Gilroy-Regular.woff2") format('woff2');
			font-weight: 400;
			font-style: normal;
			font-display: swap;
		}
@font-face {
			font-family: "Gilroy";
			src: url("fonts/Gilroy-RegularItalic.woff2") format('woff2');
			font-weight: 400;
			font-style: italic;
			font-display: swap;
		}
@font-face {
			font-family: "Gilroy";
			src: url("fonts/Gilroy-Medium.woff2") format('woff2');
			font-weight: 500;
			font-style: normal;
			font-display: swap;
		}
@font-face {
			font-family: "Gilroy";
			src: url("fonts/Gilroy-SemiBold.woff2") format('woff2');
			font-weight: 600;
			font-style: normal;
			font-display: swap;
		}
@font-face {
			font-family: "Gilroy";
			src: url("fonts/Gilroy-Bold.woff2") format('woff2');
			font-weight: 700;
			font-style: normal;
			font-display: swap;
		}

			/* ── TOKENS ── */
			:root {
				--bg: #f6f4ed; --surface: #ffffff;
				--text: #000000; --text-light: #666666; --text-muted: #999999;
				--border: rgba(0,0,0,0.07); --teal: #8caaab; --teal-dark: #6e8b8d;
				--nav-border: rgba(0,0,0,0.06); --divider: rgba(0,0,0,0.07);
				--card-bg: #ffffff; --toggle-bg: rgba(0,0,0,0.06);
				--toggle-icon-color: #555;
				--tag-bg: rgba(140,170,171,0.12); --tag-color: #6e8b8d;
				--pill-bg: #ffffff; --pill-border: rgba(0,0,0,0.07);
				--pill-active-bg: #8caaab; --pill-active-text: #ffffff;
			}
			html.dark {
				--bg: #1f1f1f; --surface: #2a2a2a;
				--text: #ffffff; --text-light: #bcbcbc; --text-muted: #888888;
				--border: rgba(255,255,255,0.07); --nav-border: rgba(255,255,255,0.06);
				--divider: rgba(255,255,255,0.07); --card-bg: #2a2a2a;
				--toggle-bg: rgba(255,255,255,0.1); --toggle-icon-color: #bcbcbc;
				--tag-bg: rgba(140,170,171,0.15); --tag-color: #8caaab;
				--pill-bg: #2a2a2a; --pill-border: rgba(255,255,255,0.1);
				--pill-active-bg: #6e8b8d; --pill-active-text: #ffffff;
			}

			*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
			html { scroll-behavior: smooth; background: var(--bg); transition: background 0.3s ease; }
			body {
				font-family: "Gilroy", sans-serif; font-weight: 300;
				background: var(--bg); color: var(--text); overflow-x: hidden;
				-webkit-font-smoothing: antialiased;
				transition: background 0.3s ease, color 0.3s ease;
			}
			a { text-decoration: none; color: inherit; }

			/* ── NAV ── */
			nav {
				position: sticky; top: 0; z-index: 100;
				display: flex; align-items: center; justify-content: space-between;
				padding: 18px 32px; background: var(--bg);
				border-bottom: 1px solid var(--nav-border);
				transition: background 0.3s ease, border-color 0.3s ease;
			}
			.nav-logo { font-size: 22px; font-weight: 400; letter-spacing: 0.02em; color: var(--text); transition: color 0.3s ease; }
			.nav-active { font-size: 13px; font-weight: 400; color: var(--teal); margin-left: auto; margin-right: 20px; pointer-events: none; transition: color 0.3s ease; }
			.dm-toggle { width: 36px; height: 36px; border-radius: 50%; border: none; background: var(--toggle-bg); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.3s ease; }
			.icon-sun { display: none; }
			html.dark .icon-moon { display: none; }
			html.dark .icon-sun { display: block; }

			/* ── PAGE HEADER ── */
			.blog-header { max-width: 960px; margin: 0 auto; padding: 72px 32px 48px; }
			.blog-header-eyebrow { font-size: 11px; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; transition: color 0.3s; }
			.blog-header h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 300; color: var(--text); line-height: 1.15; margin-bottom: 16px; transition: color 0.3s; }
			.blog-header > p { font-size: 16px; color: var(--text-light); max-width: 520px; line-height: 1.7; margin-bottom: 32px; transition: color 0.3s; }

			/* ── STREAM PILLS — clickable filter ── */
			.stream-pills { display: flex; gap: 12px; flex-wrap: wrap; max-width: 640px; margin-bottom: 24px; }
			.stream-pill {
				display: flex; flex-direction: column; gap: 5px;
				background: var(--pill-bg); border: 1.5px solid var(--pill-border);
				border-radius: 14px; padding: 16px 20px;
				flex: 1; min-width: 200px;
				cursor: pointer;
				transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
				user-select: none;
			}
			.stream-pill:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.07); }
			.stream-pill.active {
				background: var(--pill-active-bg);
				border-color: var(--pill-active-bg);
			}
			.stream-pill.active .stream-pill-label { color: var(--pill-active-text); }
			.stream-pill.active .stream-pill-desc { color: rgba(255,255,255,0.75); }
			.stream-pill-label { font-size: 12px; font-weight: 400; letter-spacing: 0.06em; color: var(--teal-dark); transition: color 0.25s ease; }
			.stream-pill-desc { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.55; transition: color 0.25s ease; }

			/* ── SEE ALL LINK ── */
			.see-all-link {
				display: inline-flex; align-items: center; gap: 6px;
				font-size: 13px; font-weight: 400; color: var(--text-muted);
				transition: color 0.2s ease, gap 0.2s ease;
				margin-top: 4px;
			}
			.see-all-link:hover { color: var(--teal-dark); gap: 10px; }

			/* ── DIVIDER ── */
			.section-divider { height: 1px; background: var(--divider); max-width: 960px; margin: 0 auto; transition: background 0.3s; }

			/* ── BLOG GRID ── */
			.blog-grid {
				max-width: 960px; margin: 0 auto;
				padding: 56px 32px 32px;
				display: grid;
				grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
				gap: 28px;
			}
			.post-card-featured {
				grid-column: 1 / -1; background: var(--card-bg); border-radius: 20px;
				overflow: hidden; display: grid; grid-template-columns: 1fr 1fr;
				border: 1px solid var(--border);
				transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
			}
			.post-card-featured:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
			.post-card-featured .post-img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; }
			.post-card-featured .post-content { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
			.post-card {
				background: var(--card-bg); border-radius: 20px; overflow: hidden;
				display: flex; flex-direction: column; border: 1px solid var(--border);
				transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
			}
			.post-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
			.post-card .post-img { width: 100%; height: 200px; object-fit: cover; display: block; }
			.post-card .post-content { padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
			.post-tag { display: inline-block; font-size: 10px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tag-color); background: var(--tag-bg); padding: 4px 10px; border-radius: 50px; align-self: flex-start; transition: color 0.3s, background 0.3s; }
			.post-title { font-size: clamp(17px, 2vw, 21px); font-weight: 400; color: var(--text); line-height: 1.35; transition: color 0.3s; }
			.post-card-featured .post-title { font-size: clamp(22px, 3vw, 30px); }
			.post-excerpt { font-size: 14px; color: var(--text-light); line-height: 1.7; transition: color 0.3s; }
			.post-meta { font-size: 12px; color: var(--text-muted); margin-top: auto; transition: color 0.3s; }
			.post-read-more { font-size: 13px; font-weight: 400; color: var(--teal-dark); display: inline-flex; align-items: center; gap: 5px; margin-top: auto; transition: gap 0.2s ease, color 0.3s; }
			.post-read-more:hover { gap: 10px; }

			/* ── HIDDEN CARDS (for filter) ── */
			.post-card-featured.hidden,
			.post-card.hidden {
				display: none;
			}

			/* ── ALL POSTS LIST ── */
			.all-posts-section { max-width: 960px; margin: 0 auto; padding: 48px 32px 96px; }
			.all-posts-heading {
				font-size: 11px; font-weight: 400; letter-spacing: 0.16em;
				text-transform: uppercase; color: var(--teal);
				margin-bottom: 24px; transition: color 0.3s;
			}
			.all-posts-list { display: flex; flex-direction: column; gap: 0; }
			.all-post-row {
				display: flex; align-items: center; gap: 16px;
				padding: 18px 0;
				border-bottom: 1px solid var(--divider);
				transition: border-color 0.3s;
				color: var(--text); text-decoration: none;
			}
			.all-post-row:first-child { border-top: 1px solid var(--divider); }
			.all-post-row:hover .all-post-title { color: var(--teal-dark); }
			.all-post-num {
				font-size: 11px; font-weight: 700; color: var(--text-muted);
				width: 28px; flex-shrink: 0; letter-spacing: 0.02em;
				transition: color 0.3s;
			}
			.all-post-title {
				font-size: 15px; font-weight: 400; color: var(--text);
				flex: 1; line-height: 1.4; transition: color 0.2s;
			}
			.all-post-meta {
				font-size: 12px; color: var(--text-muted);
				white-space: nowrap; flex-shrink: 0; transition: color 0.3s;
			}
			.all-post-tag {
				font-size: 9px; font-weight: 400; letter-spacing: 0.12em;
				text-transform: uppercase; color: var(--tag-color);
				background: var(--tag-bg); padding: 3px 8px; border-radius: 50px;
				flex-shrink: 0; transition: color 0.3s, background 0.3s;
			}

			/* ── FADE IN ── */
			.fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
			.fade-in.visible { opacity: 1; transform: translateY(0); }

			/* ── FOOTER ── */
			footer { background: #1f1f1f; color: #bcbcbc; padding: 32px; display: flex; flex-direction: column; align-items: center; gap: 12px; font-family: "Gilroy", sans-serif; }
			.footer-tagline { font-size: 13px; font-weight: 300; letter-spacing: 0.04em; color: #bcbcbc; }
			.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
			.footer-links a { font-size: 12px; font-weight: 300; color: #888; transition: color 0.2s; }
			.footer-links a:hover { color: #bcbcbc; }

			/* ── RESPONSIVE ── */
			@media (max-width: 680px) {
				.post-card-featured { grid-template-columns: 1fr; }
				.post-card-featured .post-img { min-height: 220px; }
				.post-card-featured .post-content { padding: 28px 24px 32px; }
				nav { padding: 16px 20px; }
				.blog-header { padding: 48px 20px 36px; }
				.blog-grid { padding: 40px 20px 24px; gap: 20px; }
				.all-posts-section { padding: 32px 20px 72px; }
				.all-post-meta { display: none; }
			}

			/* ── SMALL PHONES (≤440px): stream pills stack full-width ── */
			@media (max-width: 440px) {
				.stream-pills { flex-direction: column; gap: 8px; }
				.stream-pill { min-width: 0; width: 100%; flex-direction: row; align-items: center; gap: 10px; padding: 12px 16px; }
				.stream-pill-desc { display: none; }
				.blog-grid { grid-template-columns: 1fr; }
				.all-post-tag { display: none; }
			}

			/* ── TINY PHONES (≤380px) ── */
			@media (max-width: 380px) {
				.blog-header { padding: 36px 16px 28px; }
				.blog-grid { padding: 32px 16px 20px; }
				.all-posts-section { padding: 24px 16px 56px; }
			}