/* ============================================
   GlutenFreeVibes — Main Stylesheet
   Organized by CSS Cascade Layers.
   ============================================ */

/* ── LAYER: Reset ── */
@layer reset {

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

	html {
		-webkit-text-size-adjust: 100%;
		-moz-text-size-adjust: 100%;
		text-size-adjust: 100%;
		scroll-behavior: smooth;
	}

	body {
		min-height: 100vh;
		line-height: 1.6;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}

	img,
	picture,
	video,
	canvas,
	svg {
		display: block;
		max-width: 100%;
	}

	img {
		height: auto;
	}

	input,
	button,
	textarea,
	select {
		font: inherit;
		color: inherit;
	}

	button {
		cursor: pointer;
		background: none;
		border: none;
	}

	a {
		color: inherit;
		text-decoration: none;
	}

	ul,
	ol {
		list-style: none;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		overflow-wrap: break-word;
		line-height: 1.2;
	}

	p {
		overflow-wrap: break-word;
	}

	table {
		border-collapse: collapse;
		border-spacing: 0;
	}

	fieldset {
		border: none;
	}
}


/* ── LAYER: Base ── */
@layer base {

	/* --- Font Face Declarations --- */
	@font-face {
		font-family: 'Space Grotesk';
		src: url('../fonts/SpaceGrotesk/SpaceGrotesk-Bold.woff2') format('woff2');
		font-weight: 700;
		font-style: normal;
		font-display: swap;
	}

	@font-face {
		font-family: 'Satoshi';
		src: url('../fonts/Satoshi/Satoshi-Medium.woff2') format('woff2');
		font-weight: 500;
		font-style: normal;
		font-display: swap;
	}

	@font-face {
		font-family: 'Satoshi';
		src: url('../fonts/Satoshi/Satoshi-SemiBold.woff2') format('woff2');
		font-weight: 600;
		font-style: normal;
		font-display: swap;
	}

	@font-face {
		font-family: 'Satoshi';
		src: url('../fonts/Satoshi/Satoshi-Bold.woff2') format('woff2');
		font-weight: 700;
		font-style: normal;
		font-display: swap;
	}

	@font-face {
		font-family: 'Inter';
		src: url('../fonts/Inter/Inter-Regular.woff2') format('woff2');
		font-weight: 400;
		font-style: normal;
		font-display: swap;
	}

	@font-face {
		font-family: 'Inter';
		src: url('../fonts/Inter/Inter-Medium.woff2') format('woff2');
		font-weight: 500;
		font-style: normal;
		font-display: swap;
	}

	@font-face {
		font-family: 'Inter';
		src: url('../fonts/Inter/Inter-SemiBold.woff2') format('woff2');
		font-weight: 600;
		font-style: normal;
		font-display: swap;
	}

	@font-face {
		font-family: 'IBM Plex Mono';
		src: url('../fonts/IBMPlexMono/IBMPlexMono-Regular.woff2') format('woff2');
		font-weight: 400;
		font-style: normal;
		font-display: swap;
	}

	@font-face {
		font-family: 'IBM Plex Mono';
		src: url('../fonts/IBMPlexMono/IBMPlexMono-Medium.woff2') format('woff2');
		font-weight: 500;
		font-style: normal;
		font-display: swap;
	}

	/* --- Body & Base Element Styles --- */
	body {
		font-family: var(--font-body);
		font-size: var(--text-base);
		font-weight: 400;
		color: var(--midnight);
		background-color: var(--cream-soda);
	}

	h1 {
		font-family: var(--font-display);
		font-weight: 700;
		font-size: var(--text-5xl);
		letter-spacing: -0.02em;
	}

	h2 {
		font-family: var(--font-heading);
		font-weight: 600;
		font-size: var(--text-4xl);
		letter-spacing: -0.01em;
	}

	h3 {
		font-family: var(--font-heading);
		font-weight: 600;
		font-size: var(--text-3xl);
	}

	h4 {
		font-family: var(--font-heading);
		font-weight: 600;
		font-size: var(--text-2xl);
	}

	h5 {
		font-family: var(--font-heading);
		font-weight: 600;
		font-size: var(--text-xl);
	}

	h6 {
		font-family: var(--font-heading);
		font-weight: 600;
		font-size: var(--text-lg);
	}

	p {
		margin-bottom: var(--space-4);
		line-height: 1.75;
	}

	a:focus-visible {
		outline: 2px solid var(--lime-pop);
		outline-offset: 2px;
		border-radius: var(--radius-sm);
	}

	::selection {
		background-color: var(--lime-pop);
		color: var(--midnight);
	}
}


/* ── LAYER: Components ── */
@layer components {

	/* ------- Skip Link ------- */
	.gfv-skip-link {
		position: absolute;
		top: -100%;
		left: var(--space-4);
		z-index: 10000;
		padding: var(--space-2) var(--space-4);
		background: var(--midnight);
		color: var(--lime-pop);
		font-family: var(--font-mono);
		font-size: var(--text-sm);
		text-transform: uppercase;
		letter-spacing: 0.12em;
		border-radius: var(--radius-md);
		transition: top var(--ease-default);
	}

	.gfv-skip-link:focus {
		top: var(--space-4);
	}

	/* ------- Container ------- */
	.gfv-container {
		width: 100%;
		max-width: var(--container-max);
		margin-inline: auto;
		padding-inline: var(--space-5);
	}

	.gfv-container--wide {
		max-width: var(--container-wide);
	}

	.gfv-container--narrow {
		max-width: var(--content-width);
	}

	/* ------- Site Header ------- */
	.gfv-site-header {
		position: sticky;
		top: 0;
		z-index: 1000;
		background-color: var(--cream-soda);
		border-bottom: 1px solid var(--midnight-10);
		transition: box-shadow var(--ease-default);
	}

	.gfv-site-header.is-scrolled {
		box-shadow: var(--shadow-md);
	}

	.gfv-header-inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: 72px;
		gap: var(--space-5);
	}

	.gfv-logo {
		display: flex;
		align-items: center;
		flex-shrink: 0;
	}

	.gfv-logo img,
	.gfv-logo svg {
		height: 40px;
		width: auto;
	}

	.gfv-primary-nav {
		display: none;
	}

	@media (min-width: 1024px) {
		.gfv-primary-nav {
			display: flex;
			align-items: center;
			gap: var(--space-5);
		}
	}

	.gfv-primary-nav a {
		font-family: var(--font-body);
		font-size: var(--text-sm);
		font-weight: 500;
		color: var(--midnight);
		position: relative;
		padding: var(--space-1) 0;
		transition: color var(--ease-default);
	}

	.gfv-primary-nav a::after {
		content: '';
		position: absolute;
		bottom: -2px;
		left: 0;
		width: 0;
		height: 2px;
		background-color: var(--lime-pop);
		transition: width var(--ease-default);
	}

	.gfv-primary-nav a:hover::after,
	.gfv-primary-nav a[aria-current="page"]::after {
		width: 100%;
	}

	.gfv-header-actions {
		display: flex;
		align-items: center;
		gap: var(--space-3);
	}

	.gfv-search-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		border-radius: var(--radius-full);
		transition: background-color var(--ease-default);
	}

	.gfv-search-toggle:hover {
		background-color: var(--midnight-10);
	}

	.gfv-search-toggle svg {
		width: 20px;
		height: 20px;
	}

	/* Hamburger */
	.gfv-hamburger {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 44px;
		height: 44px;
		gap: 5px;
		border-radius: var(--radius-md);
		transition: background-color var(--ease-default);
	}

	@media (min-width: 1024px) {
		.gfv-hamburger {
			display: none;
		}
	}

	.gfv-hamburger:hover {
		background-color: var(--midnight-10);
	}

	.gfv-hamburger span {
		display: block;
		width: 22px;
		height: 2px;
		background-color: var(--midnight);
		border-radius: 2px;
		transition: transform var(--ease-nav), opacity var(--ease-nav);
	}

	.gfv-hamburger[aria-expanded="true"] span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.gfv-hamburger[aria-expanded="true"] span:nth-child(2) {
		opacity: 0;
	}

	.gfv-hamburger[aria-expanded="true"] span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	/* ------- Mobile Navigation ------- */
	.gfv-mobile-nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		max-width: 360px;
		height: 100vh;
		height: 100dvh;
		background-color: var(--midnight);
		color: var(--white);
		z-index: 9999;
		padding: var(--space-8) var(--space-5);
		transform: translateX(-100%);
		transition: transform var(--ease-nav);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.gfv-mobile-nav.is-open {
		transform: translateX(0);
	}

	.gfv-mobile-nav__close {
		position: absolute;
		top: var(--space-4);
		right: var(--space-4);
		width: 44px;
		height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--white);
		border-radius: var(--radius-full);
		transition: background-color var(--ease-default);
	}

	.gfv-mobile-nav__close:hover {
		background-color: rgba(255, 255, 255, 0.1);
	}

	.gfv-mobile-nav__close svg {
		width: 24px;
		height: 24px;
	}

	.gfv-mobile-nav__logo {
		margin-bottom: var(--space-6);
	}

	.gfv-mobile-nav__logo img,
	.gfv-mobile-nav__logo svg {
		height: 40px;
		width: auto;
	}

	.gfv-mobile-nav a {
		display: block;
		font-family: var(--font-heading);
		font-weight: 600;
		font-size: var(--text-2xl);
		color: var(--white);
		padding: var(--space-3) 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		transition: color var(--ease-default);
	}

	.gfv-mobile-nav a:hover {
		color: var(--lime-pop);
	}

	.gfv-mobile-overlay {
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.5);
		z-index: 9998;
		opacity: 0;
		visibility: hidden;
		transition: opacity var(--ease-nav), visibility var(--ease-nav);
	}

	.gfv-mobile-overlay.is-visible {
		opacity: 1;
		visibility: visible;
	}

	/* ------- Dropdown Nav ------- */
	.gfv-dropdown {
		position: relative;
	}

	.gfv-dropdown__toggle {
		display: inline-flex;
		align-items: center;
		gap: var(--space-1);
	}

	.gfv-dropdown__toggle svg {
		width: 12px;
		height: 12px;
		transition: transform var(--ease-default);
	}

	.gfv-dropdown__toggle[aria-expanded="true"] svg {
		transform: rotate(180deg);
	}

	.gfv-dropdown__menu {
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
		min-width: 200px;
		padding: var(--space-2) 0;
		background: var(--white);
		border-radius: var(--radius-lg);
		box-shadow: var(--shadow-lg);
		opacity: 0;
		visibility: hidden;
		transition: opacity var(--ease-default), visibility var(--ease-default);
		z-index: 100;
	}

	.gfv-dropdown:hover .gfv-dropdown__menu,
	.gfv-dropdown__toggle[aria-expanded="true"]+.gfv-dropdown__menu {
		opacity: 1;
		visibility: visible;
	}

	.gfv-dropdown__menu a {
		display: block;
		padding: var(--space-2) var(--space-4);
		font-size: var(--text-sm);
		transition: background-color var(--ease-default);
	}

	.gfv-dropdown__menu a:hover {
		background-color: var(--sky-wash);
	}

	/* ------- Buttons ------- */
	.btn-primary {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: var(--space-2);
		padding: var(--space-3) var(--space-6);
		background-color: var(--lime-pop);
		color: var(--midnight);
		font-family: var(--font-mono);
		font-size: var(--text-sm);
		font-weight: 500;
		text-transform: uppercase;
		letter-spacing: 0.12em;
		border: none;
		border-radius: var(--radius-full);
		cursor: pointer;
		transition: transform var(--ease-default), background-color var(--ease-default), box-shadow var(--ease-default);
		text-decoration: none;
	}

	.btn-primary:hover {
		background-color: var(--lime-pop-dark);
		transform: scale(1.02);
		box-shadow: var(--shadow-md);
	}

	.btn-primary:focus-visible {
		outline: 2px solid var(--midnight);
		outline-offset: 2px;
	}

	.btn-secondary {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: var(--space-2);
		padding: var(--space-3) var(--space-6);
		background-color: transparent;
		color: var(--midnight);
		font-family: var(--font-mono);
		font-size: var(--text-sm);
		font-weight: 500;
		text-transform: uppercase;
		letter-spacing: 0.12em;
		border: 2px solid var(--midnight);
		border-radius: var(--radius-full);
		cursor: pointer;
		transition: background-color var(--ease-default), color var(--ease-default);
		text-decoration: none;
	}

	.btn-secondary:hover {
		background-color: var(--punch);
		border-color: var(--punch);
		color: var(--white);
	}

	.btn-secondary:focus-visible {
		outline: 2px solid var(--lime-pop);
		outline-offset: 2px;
	}

	.btn-ghost {
		display: inline-flex;
		align-items: center;
		gap: var(--space-1);
		padding: var(--space-2) 0;
		background: none;
		border: none;
		color: var(--midnight);
		font-family: var(--font-body);
		font-size: var(--text-sm);
		font-weight: 500;
		cursor: pointer;
		text-decoration: none;
		position: relative;
	}

	.btn-ghost::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 0;
		height: 1px;
		background-color: var(--midnight);
		transition: width var(--ease-default);
	}

	.btn-ghost:hover::after {
		width: 100%;
	}

	/* ------- Category Pill ------- */
	.gfv-pill {
		display: inline-block;
		padding: var(--space-1) var(--space-3);
		font-family: var(--font-mono);
		font-size: var(--text-xs);
		font-weight: 500;
		text-transform: uppercase;
		letter-spacing: 0.12em;
		border-radius: var(--radius-full);
		background-color: var(--tangerine);
		color: var(--midnight);
		text-decoration: none;
		transition: background-color var(--ease-default), transform var(--ease-default);
		white-space: nowrap;
	}

	.gfv-pill:hover {
		transform: translateY(-1px);
	}

	.gfv-pill--lime {
		background-color: var(--lime-pop);
	}

	.gfv-pill--punch {
		background-color: var(--punch);
		color: var(--white);
	}

	.gfv-pill--sky {
		background-color: var(--sky-wash);
	}

	.gfv-pill--midnight {
		background-color: var(--midnight);
		color: var(--white);
	}

	.gfv-pill--outline {
		background-color: transparent;
		border: 1px solid var(--midnight-30);
		color: var(--midnight);
	}

	.gfv-pill--outline.is-active,
	.gfv-pill--outline:hover {
		background-color: var(--lime-pop);
		border-color: var(--lime-pop);
		color: var(--midnight);
	}

	/* ------- Card Component ------- */
	.gfv-card {
		position: relative;
		display: flex;
		flex-direction: column;
		background-color: var(--white);
		border-radius: var(--radius-xl);
		overflow: hidden;
		transition: transform var(--ease-card), box-shadow var(--ease-card);
	}

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

	.gfv-card__image {
		position: relative;
		aspect-ratio: 4 / 3;
		overflow: hidden;
	}

	.gfv-card__image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform var(--ease-card);
	}

	.gfv-card:hover .gfv-card__image img {
		transform: scale(1.04);
	}

	.gfv-card__badge {
		position: absolute;
		top: var(--space-3);
		left: var(--space-3);
		z-index: 2;
	}

	.gfv-card__body {
		padding: var(--space-5);
		display: flex;
		flex-direction: column;
		gap: var(--space-2);
		flex: 1;
	}

	.gfv-card__title {
		font-family: var(--font-heading);
		font-weight: 600;
		font-size: var(--text-xl);
		line-height: 1.3;
		color: var(--midnight);
	}

	.gfv-card__title a {
		text-decoration: none;
		color: inherit;
	}

	.gfv-card__title a:hover {
		color: var(--midnight);
	}

	.gfv-card__meta {
		display: flex;
		align-items: center;
		gap: var(--space-3);
		font-family: var(--font-mono);
		font-size: var(--text-xs);
		text-transform: uppercase;
		letter-spacing: 0.12em;
		color: var(--midnight-60);
	}

	.gfv-card__meta-separator {
		width: 3px;
		height: 3px;
		border-radius: var(--radius-full);
		background-color: var(--midnight-30);
		flex-shrink: 0;
	}

	.gfv-card__excerpt {
		font-size: var(--text-sm);
		color: var(--midnight-60);
		line-height: 1.6;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	/* ------- Featured Card (Hero Card) ------- */
	.gfv-featured-card {
		display: grid;
		grid-template-columns: 1fr;
		background-color: var(--white);
		border-radius: var(--radius-2xl);
		overflow: hidden;
		transition: box-shadow var(--ease-card);
	}

	@media (min-width: 768px) {
		.gfv-featured-card {
			grid-template-columns: 1fr 1fr;
		}
	}

	.gfv-featured-card:hover {
		box-shadow: var(--shadow-lg);
	}

	.gfv-featured-card__image {
		aspect-ratio: 4 / 3;
		overflow: hidden;
	}

	@media (min-width: 768px) {
		.gfv-featured-card__image {
			aspect-ratio: auto;
			min-height: 400px;
		}
	}

	.gfv-featured-card__image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform var(--ease-card);
	}

	.gfv-featured-card:hover .gfv-featured-card__image img {
		transform: scale(1.03);
	}

	.gfv-featured-card__content {
		padding: var(--space-6) var(--space-5);
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: var(--space-4);
	}

	@media (min-width: 768px) {
		.gfv-featured-card__content {
			padding: var(--space-8) var(--space-6);
		}
	}

	.gfv-featured-card__title {
		font-family: var(--font-display);
		font-weight: 700;
		font-size: var(--text-3xl);
		line-height: 1.15;
	}

	@media (min-width: 768px) {
		.gfv-featured-card__title {
			font-size: var(--text-4xl);
		}
	}

	.gfv-featured-card__excerpt {
		font-size: var(--text-base);
		line-height: 1.7;
		color: var(--midnight-60);
	}

	/* ------- Hero Section ------- */
	.gfv-hero {
		position: relative;
		background-color: var(--cream-soda);
		padding: var(--space-10) 0 var(--space-12);
		overflow: hidden;
	}

	.gfv-hero__inner {
		display: grid;
		grid-template-columns: 1fr;
		gap: var(--space-8);
		align-items: center;
	}

	@media (min-width: 1024px) {
		.gfv-hero__inner {
			grid-template-columns: 1fr 1fr;
		}
	}

	.gfv-hero__content {
		position: relative;
		z-index: 2;
	}

	.gfv-hero__heading {
		font-family: var(--font-display);
		font-weight: 700;
		font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
		line-height: 1.05;
		color: var(--midnight);
		margin-bottom: var(--space-5);
		position: relative;
	}

	.gfv-hero__subheading {
		font-family: var(--font-body);
		font-size: var(--text-lg);
		font-weight: 400;
		color: var(--midnight-60);
		line-height: 1.7;
		margin-bottom: var(--space-6);
		max-width: 480px;
	}

	.gfv-hero__cta-group {
		display: flex;
		flex-wrap: wrap;
		gap: var(--space-3);
		margin-bottom: var(--space-6);
	}

	.gfv-hero__social-proof {
		display: flex;
		align-items: center;
		gap: var(--space-3);
		font-family: var(--font-mono);
		font-size: var(--text-xs);
		text-transform: uppercase;
		letter-spacing: 0.12em;
		color: var(--midnight-60);
	}

	.gfv-hero__avatar-stack {
		display: flex;
	}

	.gfv-hero__avatar-stack img {
		width: 32px;
		height: 32px;
		border-radius: var(--radius-full);
		border: 2px solid var(--cream-soda);
		object-fit: cover;
	}

	.gfv-hero__avatar-stack img+img {
		margin-left: -8px;
	}

	.gfv-hero__image {
		position: relative;
		z-index: 1;
	}

	.gfv-hero__image img {
		border-radius: var(--radius-2xl);
		width: 100%;
		height: auto;
	}

	/* ------- Category Strip ------- */
	.gfv-category-strip {
		padding: var(--space-5) 0;
		border-bottom: 1px solid var(--midnight-10);
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.gfv-category-strip::-webkit-scrollbar {
		display: none;
	}

	.gfv-category-strip__list {
		display: flex;
		gap: var(--space-2);
		min-width: max-content;
	}

	/* ------- Section Headers ------- */
	.gfv-section {
		padding: var(--space-10) 0;
	}

	.gfv-section--dark {
		background-color: var(--midnight);
		color: var(--white);
	}

	.gfv-section--sky {
		background-color: var(--sky-wash);
	}

	.gfv-section__header {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		gap: var(--space-4);
		margin-bottom: var(--space-6);
		flex-wrap: wrap;
	}

	.gfv-section__title {
		font-family: var(--font-display);
		font-weight: 700;
		font-size: var(--text-4xl);
		line-height: 1.1;
	}

	.gfv-section__subtitle {
		font-family: var(--font-body);
		font-size: var(--text-base);
		color: var(--midnight-60);
		max-width: 480px;
	}

	/* ------- Post Grid ------- */
	.gfv-post-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: var(--space-5);
	}

	@media (min-width: 640px) {
		.gfv-post-grid {
			grid-template-columns: repeat(2, 1fr);
		}
	}

	@media (min-width: 1024px) {
		.gfv-post-grid {
			grid-template-columns: repeat(3, 1fr);
		}
	}

	.gfv-post-grid--2col {
		grid-template-columns: 1fr;
	}

	@media (min-width: 640px) {
		.gfv-post-grid--2col {
			grid-template-columns: repeat(2, 1fr);
		}
	}

	/* ------- Trending Section ------- */
	.gfv-trending {
		display: grid;
		grid-template-columns: 1fr;
		gap: var(--space-5);
	}

	@media (min-width: 768px) {
		.gfv-trending {
			grid-template-columns: 1fr 1fr;
		}
	}

	.gfv-trending__list {
		display: flex;
		flex-direction: column;
		gap: var(--space-4);
	}

	.gfv-trending__item {
		display: flex;
		gap: var(--space-4);
		align-items: center;
		padding-bottom: var(--space-4);
		border-bottom: 1px solid var(--midnight-10);
	}

	.gfv-trending__item:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}

	.gfv-trending__thumb {
		width: 80px;
		height: 80px;
		border-radius: var(--radius-lg);
		overflow: hidden;
		flex-shrink: 0;
	}

	.gfv-trending__thumb img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.gfv-trending__title {
		font-family: var(--font-heading);
		font-weight: 600;
		font-size: var(--text-base);
		line-height: 1.3;
		margin-bottom: var(--space-1);
	}

	.gfv-trending__title a {
		text-decoration: none;
	}

	.gfv-trending__title a:hover {
		color: var(--midnight-60);
	}

	.gfv-trending__meta {
		font-family: var(--font-mono);
		font-size: var(--text-xs);
		text-transform: uppercase;
		letter-spacing: 0.12em;
		color: var(--midnight-60);
	}

	/* ------- Newsletter CTA ------- */
	.gfv-newsletter {
		padding: var(--space-10) 0;
		text-align: center;
	}

	.gfv-newsletter--dark {
		background-color: var(--midnight);
		color: var(--white);
	}

	.gfv-newsletter--lime {
		background-color: var(--lime-pop);
		color: var(--midnight);
	}

	.gfv-newsletter__heading {
		font-family: var(--font-display);
		font-weight: 700;
		font-size: var(--text-4xl);
		margin-bottom: var(--space-3);
	}

	.gfv-newsletter__text {
		font-size: var(--text-base);
		margin-bottom: var(--space-6);
		max-width: 520px;
		margin-inline: auto;
		opacity: 0.8;
	}

	.gfv-newsletter__form {
		display: flex;
		flex-wrap: wrap;
		gap: var(--space-3);
		max-width: 460px;
		margin-inline: auto;
		justify-content: center;
	}

	.gfv-newsletter__input {
		flex: 1;
		min-width: 220px;
		padding: var(--space-3) var(--space-5);
		font-family: var(--font-body);
		font-size: var(--text-base);
		border: 2px solid var(--midnight-30);
		border-radius: var(--radius-full);
		background: var(--white);
		color: var(--midnight);
		transition: border-color var(--ease-default);
	}

	.gfv-newsletter__input:focus {
		outline: none;
		border-color: var(--lime-pop);
	}

	.gfv-newsletter--dark .gfv-newsletter__input {
		border-color: rgba(255, 255, 255, 0.2);
		background: rgba(255, 255, 255, 0.08);
		color: var(--white);
	}

	.gfv-newsletter--dark .gfv-newsletter__input::placeholder {
		color: rgba(255, 255, 255, 0.5);
	}

	.gfv-newsletter__status {
		font-family: var(--font-mono);
		font-size: var(--text-xs);
		text-transform: uppercase;
		letter-spacing: 0.12em;
		margin-top: var(--space-3);
	}

	/* ------- Article Single ------- */
	.gfv-article-header {
		text-align: center;
		padding: var(--space-8) 0 var(--space-6);
		max-width: var(--content-width);
		margin-inline: auto;
	}

	.gfv-article-header__category {
		margin-bottom: var(--space-4);
	}

	.gfv-article-header__title {
		font-family: var(--font-display);
		font-weight: 700;
		font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
		margin-bottom: var(--space-5);
		line-height: 1.1;
	}

	.gfv-article-header__meta {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
		gap: var(--space-3);
		font-family: var(--font-mono);
		font-size: var(--text-xs);
		text-transform: uppercase;
		letter-spacing: 0.12em;
		color: var(--midnight-60);
	}

	.gfv-article-header__author {
		display: flex;
		align-items: center;
		gap: var(--space-2);
	}

	.gfv-article-header__author img {
		width: 32px;
		height: 32px;
		border-radius: var(--radius-full);
		object-fit: cover;
	}

	.gfv-article__featured-image {
		margin-bottom: var(--space-8);
		border-radius: var(--radius-2xl);
		overflow: hidden;
		max-height: 600px;
	}

	.gfv-article__featured-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.gfv-article__content {
		max-width: var(--content-width);
		margin-inline: auto;
		font-size: var(--text-lg);
		line-height: 1.75;
	}

	.gfv-article__content h2 {
		margin-top: var(--space-8);
		margin-bottom: var(--space-4);
	}

	.gfv-article__content h3 {
		margin-top: var(--space-6);
		margin-bottom: var(--space-3);
	}

	.gfv-article__content p {
		margin-bottom: var(--space-5);
	}

	.gfv-article__content a {
		color: var(--midnight);
		text-decoration: underline;
		text-decoration-color: var(--lime-pop);
		text-underline-offset: 3px;
		transition: text-decoration-color var(--ease-default);
	}

	.gfv-article__content a:hover {
		text-decoration-color: var(--punch);
	}

	.gfv-article__content ul,
	.gfv-article__content ol {
		padding-left: var(--space-5);
		margin-bottom: var(--space-5);
	}

	.gfv-article__content ul {
		list-style: disc;
	}

	.gfv-article__content ol {
		list-style: decimal;
	}

	.gfv-article__content li {
		margin-bottom: var(--space-2);
	}

	.gfv-article__content blockquote {
		margin: var(--space-6) 0;
		padding: var(--space-5) var(--space-6);
		border-left: 4px solid var(--lime-pop);
		background-color: var(--sky-wash);
		border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
		font-size: var(--text-xl);
		font-family: var(--font-heading);
		font-weight: 600;
		line-height: 1.5;
	}

	.gfv-article__content img {
		border-radius: var(--radius-lg);
		margin: var(--space-6) 0;
	}

	.gfv-article__content figure {
		margin: var(--space-6) 0;
	}

	.gfv-article__content figcaption {
		font-family: var(--font-mono);
		font-size: var(--text-xs);
		text-transform: uppercase;
		letter-spacing: 0.12em;
		color: var(--midnight-60);
		text-align: center;
		margin-top: var(--space-2);
	}

	/* ------- Recipe Meta Grid ------- */
	.gfv-recipe-meta {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-3);
		padding: var(--space-5);
		background-color: var(--sky-wash);
		border-radius: var(--radius-xl);
		margin-bottom: var(--space-6);
	}

	@media (min-width: 640px) {
		.gfv-recipe-meta {
			grid-template-columns: repeat(4, 1fr);
		}
	}

	.gfv-recipe-meta__item {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: var(--space-1);
		padding: var(--space-3);
	}

	.gfv-recipe-meta__icon {
		width: 28px;
		height: 28px;
		color: var(--punch);
	}

	.gfv-recipe-meta__label {
		font-family: var(--font-mono);
		font-size: var(--text-xs);
		text-transform: uppercase;
		letter-spacing: 0.12em;
		color: var(--midnight-60);
	}

	.gfv-recipe-meta__value {
		font-family: var(--font-heading);
		font-weight: 600;
		font-size: var(--text-base);
		color: var(--midnight);
	}

	/* ------- Author Bio ------- */
	.gfv-author-bio {
		display: flex;
		gap: var(--space-5);
		padding: var(--space-6);
		background-color: var(--sky-wash);
		border-radius: var(--radius-xl);
		margin: var(--space-8) 0;
	}

	.gfv-author-bio__avatar {
		flex-shrink: 0;
	}

	.gfv-author-bio__avatar img {
		width: 80px;
		height: 80px;
		border-radius: var(--radius-full);
		object-fit: cover;
	}

	.gfv-author-bio__name {
		font-family: var(--font-heading);
		font-weight: 600;
		font-size: var(--text-xl);
		margin-bottom: var(--space-1);
	}

	.gfv-author-bio__tagline {
		font-family: var(--font-mono);
		font-size: var(--text-xs);
		text-transform: uppercase;
		letter-spacing: 0.12em;
		color: var(--midnight-60);
		margin-bottom: var(--space-3);
	}

	.gfv-author-bio__description {
		font-size: var(--text-sm);
		color: var(--midnight-60);
		line-height: 1.6;
		margin-bottom: var(--space-3);
	}

	.gfv-author-bio__social {
		display: flex;
		gap: var(--space-3);
	}

	.gfv-author-bio__social a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 36px;
		height: 36px;
		border-radius: var(--radius-full);
		background-color: var(--midnight);
		color: var(--white);
		transition: background-color var(--ease-default);
	}

	.gfv-author-bio__social a:hover {
		background-color: var(--lime-pop);
		color: var(--midnight);
	}

	.gfv-author-bio__social svg {
		width: 16px;
		height: 16px;
	}

	/* ------- Social Share ------- */
	.gfv-social-share {
		display: flex;
		align-items: center;
		gap: var(--space-3);
		padding: var(--space-4) 0;
	}

	.gfv-social-share__label {
		font-family: var(--font-mono);
		font-size: var(--text-xs);
		text-transform: uppercase;
		letter-spacing: 0.12em;
		color: var(--midnight-60);
	}

	.gfv-social-share__link {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		border-radius: var(--radius-full);
		border: 1px solid var(--midnight-10);
		transition: background-color var(--ease-default), border-color var(--ease-default);
	}

	.gfv-social-share__link:hover {
		background-color: var(--punch);
		border-color: var(--punch);
		color: var(--white);
	}

	.gfv-social-share__link svg {
		width: 18px;
		height: 18px;
	}

	/* ------- Related Posts ------- */
	.gfv-related {
		padding: var(--space-10) 0;
		border-top: 1px solid var(--midnight-10);
	}

	.gfv-related__title {
		font-family: var(--font-display);
		font-weight: 700;
		font-size: var(--text-3xl);
		margin-bottom: var(--space-6);
	}

	/* ------- Archive Hero ------- */
	.gfv-archive-hero {
		background-color: var(--sky-wash);
		padding: var(--space-8) 0;
		text-align: center;
	}

	.gfv-archive-hero__title {
		font-family: var(--font-display);
		font-weight: 700;
		font-size: var(--text-5xl);
		margin-bottom: var(--space-3);
	}

	.gfv-archive-hero__description {
		font-size: var(--text-lg);
		color: var(--midnight-60);
		max-width: 520px;
		margin-inline: auto;
		margin-bottom: var(--space-3);
	}

	.gfv-archive-hero__count {
		font-family: var(--font-mono);
		font-size: var(--text-xs);
		text-transform: uppercase;
		letter-spacing: 0.12em;
		color: var(--midnight-60);
	}

	/* ------- Archive Layout (with Sidebar) ------- */
	.gfv-archive-layout {
		display: grid;
		grid-template-columns: 1fr;
		gap: var(--space-8);
		padding: var(--space-8) 0;
	}

	@media (min-width: 1024px) {
		.gfv-archive-layout.has-sidebar {
			grid-template-columns: 1fr var(--sidebar-width);
		}
	}

	/* ------- Sidebar ------- */
	.gfv-sidebar {
		display: flex;
		flex-direction: column;
		gap: var(--space-6);
	}

	@media (min-width: 1024px) {
		.gfv-sidebar {
			position: sticky;
			top: 88px;
			align-self: start;
		}
	}

	.gfv-sidebar__widget {
		padding: var(--space-5);
		background-color: var(--white);
		border-radius: var(--radius-xl);
	}

	.gfv-sidebar__widget-title {
		font-family: var(--font-heading);
		font-weight: 600;
		font-size: var(--text-lg);
		margin-bottom: var(--space-4);
		padding-bottom: var(--space-3);
		border-bottom: 2px solid var(--lime-pop);
	}

	/* ------- Breadcrumbs ------- */
	.gfv-breadcrumbs {
		padding: var(--space-4) 0;
	}

	.gfv-breadcrumbs ol {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		gap: var(--space-2);
		font-family: var(--font-mono);
		font-size: var(--text-xs);
		text-transform: uppercase;
		letter-spacing: 0.12em;
		color: var(--midnight-60);
	}

	.gfv-breadcrumbs li {
		display: flex;
		align-items: center;
		gap: var(--space-2);
	}

	.gfv-breadcrumbs li+li::before {
		content: '/';
		color: var(--midnight-30);
	}

	.gfv-breadcrumbs a {
		color: var(--midnight-60);
		text-decoration: none;
		transition: color var(--ease-default);
	}

	.gfv-breadcrumbs a:hover {
		color: var(--midnight);
	}

	.gfv-breadcrumbs [aria-current="page"] {
		color: var(--midnight);
	}

	/* ------- Pagination ------- */
	.gfv-pagination {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: var(--space-2);
		padding: var(--space-8) 0;
	}

	.gfv-pagination a,
	.gfv-pagination span {
		display: flex;
		align-items: center;
		justify-content: center;
		min-width: 44px;
		height: 44px;
		padding: 0 var(--space-3);
		font-family: var(--font-mono);
		font-size: var(--text-sm);
		border-radius: var(--radius-full);
		text-decoration: none;
		transition: background-color var(--ease-default), color var(--ease-default);
	}

	.gfv-pagination a {
		color: var(--midnight);
		border: 1px solid var(--midnight-10);
	}

	.gfv-pagination a:hover {
		background-color: var(--lime-pop);
		border-color: var(--lime-pop);
	}

	.gfv-pagination .current {
		background-color: var(--midnight);
		color: var(--white);
		border: 1px solid var(--midnight);
	}

	/* ------- Search Form Overlay ------- */
	.gfv-search-overlay {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: var(--white);
		border-bottom: 1px solid var(--midnight-10);
		padding: var(--space-6) 0;
		box-shadow: var(--shadow-md);
		z-index: 990;
	}

	.gfv-search-overlay[hidden] {
		display: none;
	}

	.gfv-search-overlay .gfv-search-form {
		margin: 0 auto;
		max-width: 640px;
	}

	.gfv-search-overlay .gfv-search-form__input {
		padding: var(--space-4) var(--space-6);
		padding-right: 64px;
		font-size: var(--text-lg);
		box-shadow: 0 4px 12px rgba(13, 27, 42, 0.05);
	}

	.gfv-search-overlay .gfv-search-form__submit {
		width: 48px;
		height: 48px;
		right: 6px;
	}

	/* ------- Search Form ------- */
	.gfv-search-form {
		position: relative;
		max-width: 480px;
	}

	.gfv-search-form__input {
		width: 100%;
		padding: var(--space-3) var(--space-5);
		padding-right: 52px;
		font-family: var(--font-body);
		font-size: var(--text-base);
		border: 2px solid var(--midnight-10);
		border-radius: var(--radius-full);
		background: var(--white);
		color: var(--midnight);
		transition: border-color var(--ease-default);
	}

	.gfv-search-form__input:focus {
		outline: none;
		border-color: var(--lime-pop);
	}

	.gfv-search-form__submit {
		position: absolute;
		right: var(--space-2);
		top: 50%;
		transform: translateY(-50%);
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: var(--lime-pop);
		border: none;
		border-radius: var(--radius-full);
		color: var(--midnight);
		cursor: pointer;
		transition: background-color var(--ease-default);
	}

	.gfv-search-form__submit:hover {
		background-color: var(--lime-pop-dark);
	}

	.gfv-search-form__submit svg {
		width: 18px;
		height: 18px;
	}

	/* ------- Search Results ------- */
	.gfv-search-result {
		display: flex;
		gap: var(--space-5);
		padding: var(--space-5) 0;
		border-bottom: 1px solid var(--midnight-10);
	}

	.gfv-search-result__thumb {
		width: 160px;
		height: 120px;
		border-radius: var(--radius-lg);
		overflow: hidden;
		flex-shrink: 0;
	}

	@media (max-width: 639px) {
		.gfv-search-result__thumb {
			width: 100px;
			height: 80px;
		}
	}

	.gfv-search-result__thumb img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.gfv-search-result__title {
		font-family: var(--font-heading);
		font-weight: 600;
		font-size: var(--text-xl);
		margin-bottom: var(--space-2);
	}

	.gfv-search-result__title a {
		text-decoration: none;
		transition: color var(--ease-default);
	}

	.gfv-search-result__title a:hover {
		color: var(--midnight-60);
	}

	.gfv-search-result__excerpt {
		font-size: var(--text-sm);
		color: var(--midnight-60);
		line-height: 1.6;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	/* ------- 404 Page ------- */
	.gfv-404 {
		text-align: center;
		padding: var(--space-16) 0;
	}

	.gfv-404__heading {
		font-family: var(--font-display);
		font-weight: 700;
		font-size: clamp(var(--text-5xl), 10vw, 8rem);
		line-height: 1;
		color: var(--lime-pop);
		margin-bottom: var(--space-4);
	}

	.gfv-404__subheading {
		font-family: var(--font-heading);
		font-weight: 600;
		font-size: var(--text-3xl);
		margin-bottom: var(--space-4);
	}

	.gfv-404__text {
		font-size: var(--text-lg);
		color: var(--midnight-60);
		margin-bottom: var(--space-8);
		max-width: 480px;
		margin-inline: auto;
	}

	.gfv-404__actions {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: var(--space-4);
	}

	/* ------- Comments ------- */
	.gfv-comments {
		max-width: var(--content-width);
		margin-inline: auto;
		padding: var(--space-8) 0;
	}

	.gfv-comments__title {
		font-family: var(--font-display);
		font-weight: 700;
		font-size: var(--text-3xl);
		margin-bottom: var(--space-6);
	}

	.gfv-comment {
		display: flex;
		gap: var(--space-4);
		padding: var(--space-5) 0;
		border-bottom: 1px solid var(--midnight-10);
	}

	.gfv-comment__avatar img {
		width: 48px;
		height: 48px;
		border-radius: var(--radius-full);
		object-fit: cover;
	}

	.gfv-comment__author {
		font-family: var(--font-heading);
		font-weight: 600;
		font-size: var(--text-base);
	}

	.gfv-comment__date {
		font-family: var(--font-mono);
		font-size: var(--text-xs);
		text-transform: uppercase;
		letter-spacing: 0.12em;
		color: var(--midnight-60);
		margin-bottom: var(--space-2);
	}

	.gfv-comment__body {
		font-size: var(--text-base);
		line-height: 1.7;
	}

	.gfv-comment__body p {
		margin-bottom: var(--space-3);
	}

	.gfv-comment__reply-link {
		font-family: var(--font-mono);
		font-size: var(--text-xs);
		text-transform: uppercase;
		letter-spacing: 0.12em;
		color: var(--midnight-60);
		text-decoration: none;
		transition: color var(--ease-default);
	}

	.gfv-comment__reply-link:hover {
		color: var(--midnight);
	}

	/* Comment children (threaded) */
	.gfv-comment .children {
		padding-left: var(--space-5);
	}

	/* Comment Form */
	.gfv-comment-form label {
		display: block;
		font-family: var(--font-heading);
		font-weight: 600;
		font-size: var(--text-sm);
		margin-bottom: var(--space-2);
	}

	.gfv-comment-form input[type="text"],
	.gfv-comment-form input[type="email"],
	.gfv-comment-form input[type="url"],
	.gfv-comment-form textarea {
		width: 100%;
		padding: var(--space-3) var(--space-4);
		font-family: var(--font-body);
		font-size: var(--text-base);
		border: 2px solid var(--midnight-10);
		border-radius: var(--radius-lg);
		background: var(--white);
		color: var(--midnight);
		transition: border-color var(--ease-default);
		margin-bottom: var(--space-4);
	}

	.gfv-comment-form input:focus,
	.gfv-comment-form textarea:focus {
		outline: none;
		border-color: var(--lime-pop);
	}

	.gfv-comment-form textarea {
		min-height: 150px;
		resize: vertical;
	}

	/* ------- Footer ------- */
	.gfv-site-footer {
		background-color: var(--midnight);
		color: var(--white);
		padding: var(--space-10) 0 var(--space-6);
	}

	.gfv-footer-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: var(--space-8);
		margin-bottom: var(--space-8);
	}

	@media (min-width: 640px) {
		.gfv-footer-grid {
			grid-template-columns: repeat(2, 1fr);
		}
	}

	@media (min-width: 1024px) {
		.gfv-footer-grid {
			grid-template-columns: 2fr 1fr 1fr 1fr;
		}
	}

	.gfv-footer__brand {
		max-width: 280px;
	}

	.gfv-footer__logo {
		margin-bottom: var(--space-4);
	}

	.gfv-footer__logo img,
	.gfv-footer__logo svg {
		height: 40px;
		width: auto;
	}

	.gfv-footer__tagline {
		font-size: var(--text-sm);
		color: rgba(255, 255, 255, 0.6);
		line-height: 1.6;
	}

	.gfv-footer__heading {
		font-family: var(--font-heading);
		font-weight: 600;
		font-size: var(--text-sm);
		text-transform: uppercase;
		letter-spacing: 0.12em;
		margin-bottom: var(--space-4);
		color: rgba(255, 255, 255, 0.4);
	}

	.gfv-footer__nav ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.gfv-footer__nav a {
		display: block;
		font-size: var(--text-sm);
		color: rgba(255, 255, 255, 0.7);
		padding: var(--space-1) 0;
		transition: color var(--ease-default);
		text-decoration: none;
	}

	.gfv-footer__nav a:hover {
		color: var(--lime-pop);
	}

	/* Newsletter Mini (Footer) */
	.gfv-newsletter-mini__text {
		font-size: var(--text-sm);
		color: rgba(255, 255, 255, 0.7);
		line-height: 1.5;
		margin-bottom: var(--space-4);
	}

	.gfv-newsletter-mini__form {
		display: flex;
		flex-direction: column;
		gap: var(--space-3);
	}

	.gfv-newsletter-mini__input {
		width: 100%;
		background-color: rgba(255, 255, 255, 0.05);
		border: 1px solid rgba(255, 255, 255, 0.1);
		color: var(--white);
		padding: var(--space-3) var(--space-4);
		border-radius: var(--radius-full);
		font-family: inherit;
		font-size: var(--text-sm);
		transition: border-color var(--ease-default);
	}


	.gfv-newsletter-mini__input:focus {
		outline: none;
		border-color: var(--lime-pop);
		background-color: rgba(255, 255, 255, 0.08);
	}

	.gfv-newsletter-mini__submit {
		background-color: var(--lime-pop);
		color: var(--midnight);
		font-family: var(--font-heading);
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.05em;
		padding: var(--space-3) var(--space-6);
		border-radius: var(--radius-full);
		border: none;
		cursor: pointer;
		font-size: var(--text-sm);
		transition: transform var(--ease-default), background-color var(--ease-default);
	}

	.gfv-newsletter-mini__submit:hover {
		transform: translateY(-2px);
		background-color: #d4ff33; /* slightly lighter lime */
	}

	.gfv-newsletter-mini__status {
		font-family: var(--font-mono);
		font-size: var(--text-xs);
		text-transform: uppercase;
		letter-spacing: 0.12em;
		margin-top: var(--space-3);
		color: var(--lime-pop);
	}

	.gfv-footer__social {
		display: flex;
		gap: var(--space-3);
		margin-top: var(--space-4);
	}

	.gfv-footer__social a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		border-radius: var(--radius-full);
		border: 1px solid rgba(255, 255, 255, 0.15);
		color: var(--white);
		transition: background-color var(--ease-default), border-color var(--ease-default);
	}

	.gfv-footer__social a:hover {
		background-color: var(--lime-pop);
		border-color: var(--lime-pop);
		color: var(--midnight);
	}

	.gfv-footer__social svg {
		width: 18px;
		height: 18px;
	}

	.gfv-footer__bottom {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		gap: var(--space-4);
		padding-top: var(--space-6);
		border-top: 1px solid rgba(255, 255, 255, 0.08);
		font-family: var(--font-mono);
		font-size: var(--text-xs);
		text-transform: uppercase;
		letter-spacing: 0.12em;
		color: rgba(255, 255, 255, 0.4);
	}

	/* ------- Inline CTA ------- */
	.gfv-inline-cta {
		padding: var(--space-6);
		background-color: var(--sky-wash);
		border-radius: var(--radius-xl);
		margin: var(--space-8) 0;
		text-align: center;
	}

	.gfv-inline-cta__heading {
		font-family: var(--font-heading);
		font-weight: 600;
		font-size: var(--text-2xl);
		margin-bottom: var(--space-3);
	}

	.gfv-inline-cta__text {
		font-size: var(--text-sm);
		color: var(--midnight-60);
		margin-bottom: var(--space-4);
	}

	/* ------- Tag Cloud (Sidebar Widget) ------- */
	.gfv-tag-cloud {
		display: flex;
		flex-wrap: wrap;
		gap: var(--space-2);
	}

	.gfv-tag-cloud a {
		display: inline-block;
		padding: var(--space-1) var(--space-3);
		font-family: var(--font-mono);
		font-size: var(--text-xs);
		text-transform: uppercase;
		letter-spacing: 0.08em;
		border: 1px solid var(--midnight-10);
		border-radius: var(--radius-full);
		color: var(--midnight-60);
		text-decoration: none;
		transition: all var(--ease-default);
	}

	.gfv-tag-cloud a:hover {
		background-color: var(--lime-pop);
		border-color: var(--lime-pop);
		color: var(--midnight);
	}
}


/* ── LAYER: Utilities ── */
@layer utilities {

	.sr-only,
	.visually-hidden {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border-width: 0;
	}

	.container {
		width: 100%;
		max-width: var(--container-max);
		margin-inline: auto;
		padding-inline: var(--space-5);
	}

	.text-center {
		text-align: center;
	}

	.text-left {
		text-align: left;
	}

	.text-right {
		text-align: right;
	}

	.flex {
		display: flex;
	}

	.flex-col {
		flex-direction: column;
	}

	.items-center {
		align-items: center;
	}

	.justify-between {
		justify-content: space-between;
	}

	.gap-4 {
		gap: var(--space-4);
	}

	.gap-6 {
		gap: var(--space-6);
	}

	.mt-8 {
		margin-top: var(--space-8);
	}

	.mb-4 {
		margin-bottom: var(--space-4);
	}

	.mb-6 {
		margin-bottom: var(--space-6);
	}

	.mb-8 {
		margin-bottom: var(--space-8);
	}

	.w-full {
		width: 100%;
	}
}


/* ── LAYER: Overrides ── */
@layer overrides {

	/* WordPress admin bar offset */
	.admin-bar .gfv-site-header {
		top: 32px;
	}

	@media (max-width: 782px) {
		.admin-bar .gfv-site-header {
			top: 46px;
		}
	}

	/* WordPress alignment classes */
	.alignwide {
		max-width: var(--container-max);
		margin-inline: auto;
	}

	.alignfull {
		width: 100vw;
		max-width: 100vw;
		margin-left: calc(-50vw + 50%);
	}

	.aligncenter {
		margin-inline: auto;
		text-align: center;
	}

	.alignleft {
		float: left;
		margin-right: var(--space-5);
		margin-bottom: var(--space-4);
	}

	.alignright {
		float: right;
		margin-left: var(--space-5);
		margin-bottom: var(--space-4);
	}

	/* WordPress block color classes */
	.has-midnight-color {
		color: var(--midnight);
	}

	.has-lime-pop-color {
		color: var(--lime-pop);
	}

	.has-punch-color {
		color: var(--punch);
	}

	.has-sky-wash-color {
		color: var(--sky-wash);
	}

	.has-cream-soda-color {
		color: var(--cream-soda);
	}

	.has-tangerine-color {
		color: var(--tangerine);
	}

	.has-graphite-color {
		color: var(--graphite);
	}

	.has-midnight-background-color {
		background-color: var(--midnight);
	}

	.has-lime-pop-background-color {
		background-color: var(--lime-pop);
	}

	.has-punch-background-color {
		background-color: var(--punch);
	}

	.has-sky-wash-background-color {
		background-color: var(--sky-wash);
	}

	.has-cream-soda-background-color {
		background-color: var(--cream-soda);
	}

	.has-tangerine-background-color {
		background-color: var(--tangerine);
	}

	.has-graphite-background-color {
		background-color: var(--graphite);
	}

	/* WordPress gallery */
	.wp-block-gallery {
		gap: var(--space-3);
	}

	.wp-block-gallery .wp-block-image {
		border-radius: var(--radius-lg);
		overflow: hidden;
	}

	/* WordPress embed responsiveness */
	.wp-block-embed__wrapper {
		position: relative;
		padding-bottom: 56.25%;
		height: 0;
		overflow: hidden;
	}

	.wp-block-embed__wrapper iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

	/* Reduced motion */
	@media (prefers-reduced-motion: reduce) {

		*,
		*::before,
		*::after {
			animation-duration: 0.01ms !important;
			transition-duration: 0.01ms !important;
			scroll-behavior: auto !important;
		}
	}
}


/* ── Graphic Language: Brand Elements ── */
@layer components {

	/* Sparkle accent */
	.gfv-sparkle {
		display: inline-block;
		width: 20px;
		height: 20px;
		position: relative;
	}

	.gfv-sparkle::before {
		content: '✦';
		color: var(--lime-pop);
		font-size: 1.2em;
	}

	.gfv-sparkle--lg {
		width: 32px;
		height: 32px;
	}

	.gfv-sparkle--lg::before {
		font-size: 2em;
	}

	/* Rounded sticker badge */
	.gfv-badge {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 64px;
		min-height: 64px;
		padding: var(--space-2);
		background-color: var(--midnight);
		color: var(--lime-pop);
		font-family: var(--font-mono);
		font-size: var(--text-xs);
		font-weight: 500;
		text-transform: uppercase;
		letter-spacing: 0.12em;
		border-radius: var(--radius-full);
		text-align: center;
		line-height: 1.2;
	}

	/* ═══════════════════════════════════════
	   PAGE TEMPLATES — Premium Design System
	   ═══════════════════════════════════════ */

	/* ------- Page Hero (Shared across pages) ------- */
	.gfv-page-hero {
		position: relative;
		overflow: hidden;
		background-color: var(--midnight);
		color: var(--white);
		padding: var(--space-16) 0 var(--space-12);
		text-align: center;
	}

	.gfv-page-hero__inner {
		position: relative;
		z-index: 2;
		max-width: 720px;
		margin: 0 auto;
	}

	.gfv-page-hero__label {
		display: inline-block;
		font-family: var(--font-mono);
		font-size: var(--text-xs);
		font-weight: 500;
		text-transform: uppercase;
		letter-spacing: 0.2em;
		color: var(--lime-pop);
		padding: var(--space-2) var(--space-4);
		border: 1px solid rgba(183, 255, 60, 0.3);
		border-radius: var(--radius-full);
		margin-bottom: var(--space-6);
	}

	.gfv-page-hero__title {
		font-family: var(--font-display);
		font-weight: 700;
		font-size: clamp(2.5rem, 6vw, 4.5rem);
		line-height: 1.1;
		margin-bottom: var(--space-6);
		color: var(--white);
	}

	.gfv-page-hero__accent {
		color: var(--lime-pop);
		display: block;
	}

	.gfv-page-hero__text {
		font-size: var(--text-lg);
		line-height: 1.7;
		color: rgba(255, 255, 255, 0.75);
		max-width: 560px;
		margin: 0 auto;
	}

	/* ------- About: Mission Section ------- */
	.gfv-about-mission {
		padding: var(--space-16) 0;
	}

	.gfv-about-mission__grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: var(--space-10);
		align-items: center;
	}

	@media (min-width: 768px) {
		.gfv-about-mission__grid {
			grid-template-columns: 1fr 1fr;
		}
	}

	.gfv-about-mission__content h2 {
		font-family: var(--font-display);
		font-weight: 700;
		font-size: var(--text-4xl);
		line-height: 1.1;
		margin-bottom: var(--space-6);
	}

	.gfv-about-mission__content p {
		font-size: var(--text-lg);
		line-height: 1.8;
		color: var(--midnight-60);
	}

	.gfv-about-mission__image {
		position: relative;
		border-radius: var(--radius-2xl);
		overflow: hidden;
	}

	.gfv-about-mission__image img {
		width: 100%;
		aspect-ratio: 4/3;
		object-fit: cover;
		border-radius: var(--radius-2xl);
		transition: transform 0.5s ease;
	}

	.gfv-about-mission__image:hover img {
		transform: scale(1.03);
	}

	.gfv-about-mission__image::after {
		content: '';
		position: absolute;
		inset: 0;
		border-radius: var(--radius-2xl);
		border: 3px solid var(--midnight);
		pointer-events: none;
	}
	/* ------- About: Values Section (Premium Dark Redesign) ------- */
	.gfv-about-values {
		padding: var(--space-16) 0;
		background-color: var(--midnight);
		color: var(--white);
	}

	.gfv-about-values__layout {
		display: grid;
		grid-template-columns: 1fr;
		gap: var(--space-10);
	}

	@media (min-width: 1024px) {
		.gfv-about-values__layout {
			grid-template-columns: 1.2fr 2fr;
			gap: var(--space-16);
		}
		.gfv-about-values__sticky {
			position: sticky;
			top: 120px;
			align-self: start;
		}
	}

	.gfv-about-values__tag {
		display: inline-block;
		font-family: var(--font-mono);
		font-size: var(--text-xs);
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 0.2em;
		color: var(--lime-pop);
		margin-bottom: var(--space-4);
	}

	.gfv-about-values__title {
		font-family: var(--font-display);
		font-weight: 700;
		font-size: clamp(2.25rem, 5vw, 3.75rem);
		line-height: 1.1;
		margin-bottom: var(--space-6);
		color: var(--white);
	}

	.gfv-about-values__accent {
		display: block;
		color: var(--lime-pop);
	}

	.gfv-about-values__description {
		font-size: var(--text-lg);
		line-height: 1.75;
		color: rgba(255, 255, 255, 0.7);
		margin-bottom: var(--space-8);
	}

	.gfv-about-values__badge-wrap {
		margin-top: var(--space-8);
	}

	.gfv-about-values .gfv-badge {
		background-color: var(--lime-pop);
		color: var(--midnight);
		border: 1px solid var(--lime-pop);
		font-weight: 700;
		font-size: 10px;
		width: 72px;
		height: 72px;
		min-width: 72px;
		min-height: 72px;
		box-shadow: 0 4px 20px rgba(183, 255, 60, 0.25);
		transform: rotate(-10deg);
		transition: transform var(--ease-card);
	}

	.gfv-about-values .gfv-badge:hover {
		transform: rotate(5deg) scale(1.05);
	}

	.gfv-about-values__cards {
		display: grid;
		grid-template-columns: 1fr;
		gap: var(--space-6);
	}

	@media (min-width: 640px) {
		.gfv-about-values__cards {
			grid-template-columns: 1fr 1fr;
		}
	}

	.gfv-value-card {
		position: relative;
		background: rgba(255, 255, 255, 0.03);
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: var(--radius-2xl);
		padding: var(--space-8);
		transition: transform var(--ease-card), border-color var(--ease-card), background var(--ease-card), box-shadow var(--ease-card);
		display: flex;
		flex-direction: column;
		overflow: hidden;
	}

	.gfv-value-card__header {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		margin-bottom: var(--space-6);
	}

	.gfv-value-card__number {
		font-family: var(--font-mono);
		font-size: var(--text-base);
		font-weight: 700;
		color: var(--lime-pop);
		opacity: 0.8;
	}

	.gfv-value-card__icon-wrap {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 56px;
		height: 56px;
		border-radius: var(--radius-full);
		background-color: rgba(183, 255, 60, 0.1);
		border: 1px solid rgba(183, 255, 60, 0.2);
		color: var(--lime-pop);
		transition: transform var(--ease-card), background-color var(--ease-card), color var(--ease-card), border-color var(--ease-card);
	}

	.gfv-value-card__icon-wrap svg {
		width: 28px;
		height: 28px;
	}

	.gfv-value-card h3 {
		font-family: var(--font-display);
		font-weight: 700;
		font-size: var(--text-2xl);
		color: var(--white);
		margin-bottom: var(--space-3);
	}

	.gfv-value-card p {
		font-size: var(--text-base);
		line-height: 1.6;
		color: rgba(255, 255, 255, 0.65);
		margin: 0;
	}

	.gfv-value-card:hover {
		transform: translateY(-8px);
		background: rgba(255, 255, 255, 0.06);
		border-color: rgba(183, 255, 60, 0.4);
		box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(183, 255, 60, 0.03);
	}

	.gfv-value-card:hover .gfv-value-card__icon-wrap {
		transform: scale(1.05);
		background-color: var(--lime-pop);
		color: var(--midnight);
		border-color: var(--lime-pop);
	}

	/* ------- About: CTA Section ------- */
	.gfv-about-cta {
		padding: var(--space-16) 0;
	}

	.gfv-about-cta__inner {
		text-align: center;
		background: var(--midnight);
		color: var(--white);
		border-radius: var(--radius-2xl);
		padding: var(--space-12) var(--space-8);
		position: relative;
		overflow: hidden;
	}

	.gfv-about-cta__inner::before {
		content: '';
		position: absolute;
		width: 300px;
		height: 300px;
		background-color: var(--lime-pop);
		border-radius: 50% 40% 60% 30% / 40% 50% 35% 55%;
		opacity: 0.08;
		top: -100px;
		right: -80px;
		pointer-events: none;
	}

	.gfv-about-cta__inner h2 {
		font-family: var(--font-display);
		font-weight: 700;
		font-size: var(--text-4xl);
		margin-bottom: var(--space-4);
		position: relative;
		z-index: 1;
		color: var(--white);
	}

	.gfv-about-cta__inner p {
		font-size: var(--text-lg);
		color: rgba(255, 255, 255, 0.7);
		max-width: 480px;
		margin: 0 auto var(--space-8);
		position: relative;
		z-index: 1;
	}

	.gfv-about-cta__actions {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: var(--space-4);
		position: relative;
		z-index: 1;
	}

	.gfv-about-cta__actions .btn-secondary {
		border-color: rgba(255, 255, 255, 0.3);
		color: var(--white);
	}

	.gfv-about-cta__actions .btn-secondary:hover {
		background-color: var(--white);
		border-color: var(--white);
		color: var(--midnight);
	}

	/* ------- Contact: Section ------- */
	/* ------- Contact: Section (Split Panel Redesign) ------- */
	.gfv-contact-section {
		padding: var(--space-16) 0;
	}

	.gfv-contact-wrapper {
		display: grid;
		grid-template-columns: 1fr;
		border-radius: var(--radius-2xl);
		overflow: hidden;
		box-shadow: 0 4px 20px rgba(13, 27, 42, 0.04), 0 24px 64px rgba(13, 27, 42, 0.08);
		border: 1px solid rgba(13, 27, 42, 0.08);
	}

	@media (min-width: 1024px) {
		.gfv-contact-wrapper {
			grid-template-columns: 1fr 1.6fr;
		}
	}

	/* --- Left Panel: Dark Editorial Brand Info --- */
	.gfv-contact-info-panel {
		background-color: var(--midnight);
		color: var(--white);
		padding: var(--space-8) var(--space-6);
		display: flex;
		flex-direction: column;
	}

	@media (min-width: 640px) {
		.gfv-contact-info-panel {
			padding: var(--space-12) var(--space-10);
		}
	}

	.gfv-contact-panel-tag {
		display: inline-block;
		font-family: var(--font-mono);
		font-size: var(--text-xs);
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 0.2em;
		color: var(--lime-pop);
		margin-bottom: var(--space-4);
	}

	.gfv-contact-panel-title {
		font-family: var(--font-display);
		font-weight: 700;
		font-size: clamp(2rem, 4vw, 3rem);
		line-height: 1.15;
		margin-bottom: var(--space-6);
		color: var(--white);
	}

	.gfv-contact-panel-accent {
		display: block;
		color: var(--lime-pop);
	}

	.gfv-contact-panel-description {
		font-size: var(--text-base);
		line-height: 1.7;
		color: rgba(255, 255, 255, 0.7);
		margin-bottom: var(--space-10);
	}

	.gfv-contact-details-list {
		display: flex;
		flex-direction: column;
		gap: var(--space-8);
		margin-top: auto;
	}

	.gfv-contact-detail-item {
		display: flex;
		gap: var(--space-4);
		align-items: flex-start;
	}

	.gfv-contact-detail-icon {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		min-width: 44px;
		border-radius: var(--radius-full);
		background-color: rgba(183, 255, 60, 0.1);
		border: 1px solid rgba(183, 255, 60, 0.25);
		color: var(--lime-pop);
	}

	.gfv-contact-detail-item h4 {
		font-family: var(--font-display);
		font-size: var(--text-base);
		font-weight: 700;
		color: var(--white);
		margin-bottom: var(--space-1);
	}

	.gfv-contact-detail-link {
		font-family: var(--font-mono);
		font-size: var(--text-sm);
		color: var(--white);
		text-decoration: none;
		border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
		transition: color var(--ease-default), border-color var(--ease-default);
	}

	.gfv-contact-detail-link:hover {
		color: var(--lime-pop);
		border-color: var(--lime-pop);
	}

	.gfv-contact-detail-text {
		font-size: var(--text-sm);
		color: rgba(255, 255, 255, 0.6);
		margin: 0;
	}

	/* --- Right Panel: Crisp Editorial Form --- */
	.gfv-contact-form-panel {
		background-color: var(--white);
		padding: var(--space-8) var(--space-6);
	}

	@media (min-width: 640px) {
		.gfv-contact-form-panel {
			padding: var(--space-12) var(--space-10);
		}
	}

	.gfv-contact-form-title {
		font-family: var(--font-display);
		font-weight: 700;
		font-size: var(--text-3xl);
		color: var(--midnight);
		margin-bottom: var(--space-8);
	}

	.gfv-contact-form {
		display: flex;
		flex-direction: column;
		gap: var(--space-6);
	}

	.gfv-contact-form__row {
		display: grid;
		grid-template-columns: 1fr;
		gap: var(--space-6);
	}

	@media (min-width: 640px) {
		.gfv-contact-form__row {
			grid-template-columns: 1fr 1fr;
		}
	}

	.gfv-contact-form__field {
		display: flex;
		flex-direction: column;
		gap: var(--space-2);
	}

	.gfv-contact-form__field label {
		font-family: var(--font-heading);
		font-weight: 600;
		font-size: var(--text-xs);
		text-transform: uppercase;
		letter-spacing: 0.05em;
		color: var(--midnight-60);
	}

	.gfv-contact-form__field label span {
		color: var(--punch);
	}

	.gfv-contact-form__field input,
	.gfv-contact-form__field textarea {
		width: 100%;
		padding: var(--space-4) var(--space-5);
		border: 1px solid rgba(17, 24, 39, 0.12);
		border-radius: var(--radius-lg);
		background-color: var(--white);
		font-family: var(--font-body);
		font-size: var(--text-base);
		color: var(--midnight);
		transition: border-color var(--ease-default), box-shadow var(--ease-default);
	}

	.gfv-contact-form__field input::placeholder,
	.gfv-contact-form__field textarea::placeholder {
		color: rgba(17, 24, 39, 0.4);
	}

	.gfv-contact-form__field input:focus,
	.gfv-contact-form__field textarea:focus {
		outline: none;
		border-color: var(--midnight);
		box-shadow: 0 4px 20px rgba(17, 24, 39, 0.05);
	}

	.gfv-contact-form__field textarea {
		resize: vertical;
		min-height: 140px;
	}

	.gfv-contact-submit-btn {
		background-color: var(--midnight);
		color: var(--white);
		font-family: var(--font-heading);
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.1em;
		padding: var(--space-4) var(--space-8);
		border-radius: var(--radius-full);
		border: none;
		cursor: pointer;
		font-size: var(--text-sm);
		align-self: flex-start;
		transition: transform var(--ease-default), background-color var(--ease-default), box-shadow var(--ease-default);
	}

	.gfv-contact-submit-btn:hover {
		transform: translateY(-2px);
		background-color: var(--lime-pop);
		color: var(--midnight);
		box-shadow: 0 8px 24px rgba(183, 255, 60, 0.25);
	}

	.gfv-contact-status {
		margin-top: var(--space-4);
		padding: var(--space-3) var(--space-5);
		border-radius: var(--radius-md);
		font-size: var(--text-sm);
		font-family: var(--font-body);
		line-height: 1.5;
	}

	.gfv-contact-status--info {
		background-color: var(--sky-wash);
		color: var(--midnight);
		border: 1px solid rgba(17, 24, 39, 0.08);
	}

	.gfv-contact-status--success {
		background-color: rgba(183, 255, 60, 0.15);
		color: #3e6300;
		border: 1px solid rgba(183, 255, 60, 0.3);
	}

	.gfv-contact-status--error {
		background-color: rgba(255, 92, 138, 0.1);
		color: var(--punch);
		border: 1px solid rgba(255, 92, 138, 0.2);
	}

	/* ------- Legal Pages (Privacy / Terms) ------- */
	.gfv-legal-content {
		padding: var(--space-12) 0 var(--space-16);
	}

	.gfv-legal-content__inner {
		max-width: 780px;
		margin: 0 auto;
	}

	.gfv-legal-content__inner h2 {
		font-family: var(--font-display);
		font-weight: 700;
		font-size: var(--text-3xl);
		margin-top: var(--space-10);
		margin-bottom: var(--space-4);
		padding-bottom: var(--space-3);
		border-bottom: 2px solid var(--midnight-10);
	}

	.gfv-legal-content__inner h3 {
		font-family: var(--font-heading);
		font-weight: 600;
		font-size: var(--text-xl);
		margin-top: var(--space-8);
		margin-bottom: var(--space-3);
	}

	.gfv-legal-content__inner p {
		font-size: var(--text-base);
		line-height: 1.8;
		color: var(--midnight-60);
	}

	.gfv-legal-content__inner ul,
	.gfv-legal-content__inner ol {
		list-style: disc;
		padding-left: var(--space-6);
		margin-bottom: var(--space-4);
	}

	.gfv-legal-content__inner li {
		font-size: var(--text-base);
		line-height: 1.8;
		color: var(--midnight-60);
		margin-bottom: var(--space-2);
	}

	.gfv-legal-content__inner a {
		color: var(--punch);
		text-decoration: underline;
		text-decoration-color: transparent;
		text-underline-offset: 3px;
		transition: text-decoration-color var(--ease-default);
	}

	.gfv-legal-content__inner a:hover {
		text-decoration-color: var(--punch);
	}

	.gfv-legal-content__meta {
		font-family: var(--font-mono);
		font-size: var(--text-xs);
		text-transform: uppercase;
		letter-spacing: 0.12em;
		color: var(--midnight-60);
		padding: var(--space-4);
		background: var(--sky-wash);
		border-radius: var(--radius-lg);
		margin-bottom: var(--space-8);
	}

	/* Wavy divider */
	.gfv-divider-wave {
		width: 100%;
		height: 24px;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 24'%3E%3Cpath d='M0 12 Q150 0 300 12 Q450 24 600 12 Q750 0 900 12 Q1050 24 1200 12' fill='none' stroke='%23B7FF3C' stroke-width='2'/%3E%3C/svg%3E");
		background-repeat: repeat-x;
		background-size: 1200px 24px;
	}

	/* Abstract blob */
	.gfv-blob {
		position: absolute;
		border-radius: 50% 40% 60% 30% / 40% 50% 35% 55%;
		opacity: 0.12;
		z-index: 0;
		pointer-events: none;
	}

	.gfv-blob--lime {
		background-color: var(--lime-pop);
	}

	.gfv-blob--punch {
		background-color: var(--punch);
	}

	/* Dotted grid */
	.gfv-dotgrid {
		background-image: radial-gradient(circle, var(--midnight-10) 1px, transparent 1px);
		background-size: 24px 24px;
	}

	/* Grain texture overlay */
	.gfv-grain::after {
		content: '';
		position: absolute;
		inset: 0;
		pointer-events: none;
		opacity: 0.06;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
		z-index: 1;
	}

	/* ==========================================================================
	   Premium Single Blog Article Hero & Layout Grid
	   ========================================================================== */

	/* Full-Bleed Article Hero */
	.gfv-single-hero {
		position: relative;
		display: flex;
		align-items: center;
		min-height: 480px;
		padding: var(--space-16) 0 var(--space-12);
		background-color: var(--midnight);
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		color: var(--white);
		text-align: center;
		overflow: hidden;
		margin-bottom: var(--space-8);
	}

	.gfv-single-hero__overlay {
		position: absolute;
		inset: 0;
		background: linear-gradient(
			180deg,
			rgba(17, 24, 39, 0.65) 0%,
			rgba(17, 24, 39, 0.85) 100%
		);
		z-index: 1;
	}

	.gfv-single-hero .gfv-container {
		position: relative;
		z-index: 2;
	}

	.gfv-single-hero__inner {
		max-width: 900px;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	/* Hero Category Badges */
	.gfv-single-hero__category {
		margin-bottom: var(--space-4);
		display: flex;
		gap: var(--space-2);
		flex-wrap: wrap;
		justify-content: center;
	}

	.gfv-single-hero__category .gfv-pill {
		background-color: transparent !important;
		border: 1px solid var(--lime-pop) !important;
		color: var(--lime-pop) !important;
		font-weight: 600;
		font-size: var(--text-xs);
		letter-spacing: 0.15em;
		padding: var(--space-1) var(--space-4);
		border-radius: var(--radius-sm);
		text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	}

	.gfv-single-hero__category .gfv-pill:hover {
		background-color: var(--lime-pop) !important;
		color: var(--midnight) !important;
		transform: translateY(-1px);
	}

	/* Hero Article Title */
	.gfv-single-hero__title {
		font-family: var(--font-display);
		font-size: clamp(var(--text-3xl), 5.5vw, var(--text-5xl));
		font-weight: 700;
		line-height: 1.15;
		color: var(--white);
		margin-bottom: var(--space-6);
		letter-spacing: -0.02em;
		text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	}

	/* Hero Metadata */
	.gfv-single-hero__meta {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
		gap: var(--space-3);
		font-family: var(--font-mono);
		font-size: var(--text-xs);
		text-transform: uppercase;
		letter-spacing: 0.1em;
		color: rgba(255, 255, 255, 0.85);
	}

	.gfv-single-hero__author {
		display: inline-flex;
		align-items: center;
		gap: var(--space-2);
	}

	.gfv-single-hero__avatar {
		width: 32px;
		height: 32px;
		border-radius: var(--radius-full);
		border: 2px solid var(--white);
		box-shadow: var(--shadow-sm);
		object-fit: cover;
	}

	.gfv-single-hero__author-name {
		font-weight: 600;
		color: var(--white);
	}

	.gfv-single-hero__meta-sep {
		color: var(--lime-pop);
		font-weight: bold;
	}

	/* Two-column Layout Grid */
	.gfv-single-layout {
		display: grid;
		grid-template-columns: 1fr;
		gap: var(--space-8);
		margin-top: var(--space-6);
		margin-bottom: var(--space-12);
	}

	@media (min-width: 1024px) {
		.gfv-single-layout {
			grid-template-columns: var(--content-width) var(--sidebar-width);
			gap: var(--space-10);
			justify-content: center;
		}
	}

	/* Sticky Sidebar Container */
	.gfv-single-sidebar {
		position: relative;
	}

	.gfv-sticky-sidebar {
		position: static;
	}

	@media (min-width: 1024px) {
		.gfv-sticky-sidebar {
			position: sticky;
			top: 100px; /* leaves clean room below site navigation bar */
			max-height: calc(100vh - 140px);
			overflow-y: auto;
			padding-right: var(--space-2);
		}
		
		/* Custom scrollbar styling for sidebar */
		.gfv-sticky-sidebar::-webkit-scrollbar {
			width: 4px;
		}
		.gfv-sticky-sidebar::-webkit-scrollbar-track {
			background: transparent;
		}
		.gfv-sticky-sidebar::-webkit-scrollbar-thumb {
			background: var(--midnight-10);
			border-radius: var(--radius-full);
		}
		.gfv-sticky-sidebar::-webkit-scrollbar-thumb:hover {
			background: var(--midnight-30);
		}
	}

	/* Dynamic Table of Contents */
	.gfv-toc-container {
		margin-bottom: var(--space-6);
		background-color: transparent;
	}

	.gfv-toc-title {
		font-family: var(--font-heading);
		font-size: var(--text-sm);
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.12em;
		color: var(--midnight-60);
		margin-bottom: var(--space-4);
	}

	.gfv-toc {
		list-style: none !important;
		padding: 0 !important;
		margin: 0 !important;
		border-left: 2px solid var(--midnight-10);
		display: flex;
		flex-direction: column;
		gap: var(--space-2);
	}

	.gfv-toc__item {
		margin: 0 !important;
		padding: 0 !important;
		list-style-type: none !important;
	}

	.gfv-toc__link {
		display: block;
		padding: var(--space-1) 0 var(--space-1) var(--space-4);
		margin-left: -2px; /* Overlap border-left */
		border-left: 2px solid transparent;
		font-family: var(--font-body);
		font-size: var(--text-sm);
		color: var(--midnight-60);
		line-height: 1.4;
		transition: color var(--ease-default), border-color var(--ease-default), padding-left var(--ease-default);
	}

	.gfv-toc__link--h2 {
		font-weight: 600;
		color: var(--midnight);
	}

	.gfv-toc__link--h3 {
		padding-left: var(--space-6);
		font-size: 0.85rem;
		color: var(--midnight-60);
	}

	.gfv-toc__link:hover,
	.gfv-toc__link.is-active {
		color: var(--punch);
		border-color: var(--punch);
	}
	
	.gfv-toc__link--h3:hover,
	.gfv-toc__link--h3.is-active {
		padding-left: calc(var(--space-6) + 2px);
	}

	/* Sidebar Metadata Details block */
	.gfv-sidebar-meta {
		border-top: 1px solid var(--midnight-10);
		padding-top: var(--space-5);
		margin-top: var(--space-5);
		display: flex;
		flex-direction: column;
		gap: var(--space-3);
	}

	.gfv-sidebar-meta__item {
		display: flex;
		align-items: center;
		gap: var(--space-3);
		font-family: var(--font-body);
		font-size: var(--text-sm);
		color: var(--midnight-60);
		line-height: 1.5;
	}

	.gfv-sidebar-meta__item svg {
		color: var(--midnight-30);
		flex-shrink: 0;
		transition: color var(--ease-default);
	}

	.gfv-sidebar-meta__item:hover svg {
		color: var(--punch);
	}

	.gfv-sidebar-meta__categories {
		display: flex;
		flex-wrap: wrap;
		gap: var(--space-1);
	}

	.gfv-sidebar-meta__categories a {
		font-weight: 500;
		color: var(--midnight-60);
		transition: color var(--ease-default);
	}

	.gfv-sidebar-meta__categories a:hover {
		color: var(--punch);
	}

	/* Scroll top offset for H2/H3 elements so they align beautifully under the sticky site header */
	.gfv-article__content h2,
	.gfv-article__content h3 {
		scroll-margin-top: 110px;
	}

	/* Featured Image at beginning of article */
	.gfv-single-featured-image {
		margin-bottom: var(--space-6);
		border-radius: var(--radius-xl);
		overflow: hidden;
		box-shadow: var(--shadow-md);
		border: 1px solid var(--midnight-10);
	}

	.gfv-single-featured-image__img {
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 9;
		object-fit: cover;
		display: block;
		transition: transform var(--ease-card);
	}

	.gfv-single-featured-image:hover .gfv-single-featured-image__img {
		transform: scale(1.02);
	}
}