<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*	BAREBONES RESPONSIVE GRID FRAMEWORK (Mobile First)
	Version 3.5
	January 2025
	www.dawgeatdawg.com
*/



/* --- FONTS ---*/

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&amp;display=swap');

body {
	font-family: "Lora", "Book Antiqua", "Palatino Linotype", Palatino, serif, apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

/* @end */



@media /* --- COLOR SCHEME ---*/ {
/*---

		.haloa_orange			{ fill: hsl(33, 80%, 60%); }		&lt;!-- #e0933e --&gt;
		.haloa_purple			{ fill: hsl(325, 60%, 40%); }		&lt;!-- #893f6c --&gt;
		.haloa_green			{ fill: hsl(70, 60%, 60%); }		&lt;!-- #bad256 --&gt;
		.haloa_greenDark	{ fill: hsl(90, 35%, 50%); }		&lt;!-- #719054 --&gt;
		.haloa_hotpink		{ fill: hsl(346, 73%, 57%); }		&lt;!-- #e14067 --&gt;
		.haloa_brown			{ fill: hsl(25, 30%, 35%); }		&lt;!-- #74553e --&gt;
---*/
} /* @end */



@media /* --- GLOBAL VARIABLES ---*/ {
:root {
	--contentMaxWidth:	1400px;

	--borderRadiusBig:		2.0rem;
	--borderRadiusSmall:	0.5rem;
	
	--colorMain:				325, 60%, 40%;			/* haloa_purple */
	--colorSecondary:		90, 35%, 50%;				/* haloa_greenDark */
	--colorTertiary:		70, 60%, 60%;				/* haloa_green */
	--colorHighlight:		33, 80%, 60%;				/* haloa_orange */
	--colorExtra:				346, 73%, 57%;			/* haloa_hotpink */
	--colorBG:					0, 0%, 100%;
	--colorLight:				0, 0%, 100%;
	--colorDark:				0, 0%, 0%;
}
} /* @end */



@media /* --- BASIC HTML ELEMENTS ---*/ {
	
html { font-size: 100%; }

body {
	color: hsl(var(--colorMain));
	font-size: 1.0rem;
	font-weight: normal;
	font-style: normal;
	line-height: 1.4em;
	letter-spacing: 0.04em;
	word-spacing: 0.08em;
}

p {
	margin: 0 0 1.3em;
}

h1, h2, h3, h4 {
	color: hsl(var(--colorSecondary));
	font-weight: bold;
	line-height: 1.2em;
	letter-spacing: 0.15em;
	text-align: center;
}

	h1 {
		margin: 0 0 1.0em;
		font-size: 2.4rem;
	}
	
	h2 {
		margin: 0 0 1.0em;
		font-size: 1.7rem;
		text-transform: uppercase;
	}
	
	h3 {
		margin: 0.0em 0 0.8em;
		font-size: 1.5rem;
	}

	h4 {
		margin: 0.0em 0 0.8em;
		font-size: 1.0rem;
	}

hr {
	clear: both;
	width: 100%;
	height: 0;
	margin: 0 auto 0.6em;
	background: transparent;
	border: none;
	border-top: 1px solid hsl(var(--colorSecondary));
}

a:link {
	color: currentColor;
	color: hsl(var(--colorMain));
	text-decoration: none;
}

	a:visited,
	a:focus {
		color: hsl(var(--colorMain));
		color: currentColor;
	}

		a:hover {
			color: hsl(var(--colorHighlight));
		}
		
			a:active { color: hsl(var(--colorSecondary)); }

img {
	display: block;
	width: 100%;
	height: auto;
	border-color: transparent;
	border: none;
	border-radius: var(--borderRadiusSmall);
}

/* 	svg { fill: currentColor; } */

input,
textarea,
select {
	margin: 0;
	padding: 0;
	border: none;
	font-size: 1.0rem;
}

} /* @end */



@media /* --- STICKY FOOTER + WRAPPERS + RESPONSIVE TYPE ---*/ {

html {
	height: 100%;
	background: hsl(var(--colorBG));
	background-image: linear-gradient(hsla(var(--colorBG), 0.75), hsla(var(--colorBG), 0.9) 35%, hsla(var(--colorBG), 0.75) 100%), url('/img/common/bg-Taro_Leaves-green.png');
/* 	background-attachment: fixed; */
	background-position: center center;
	background-repeat: repeat;
	background-size: 100%, 33%;
}

/*  RESPONSIVE FONT SIZE: calc( min_size + (max_size - min_size) * ((100vw - min_viewport) / (max_viewport - min_viewport))); */

	@media screen and (min-width: 320px) {
		html { font-size: calc(16px + (32 - 16) * ((100vw - 320px) / (1400 - 320))); }
	}
	@media screen and (min-width: 1400px) {
		html { font-size: 32px;
/* 			background: hsla(300, 80%, 50%, 0.2); */
			 }
	}

body {
	display: flex;
	flex-direction: column;
	min-height: 100%;
/* 	background-color: hsl(var(--colorBG)); */
}

header,
footer {
	position: relative;
	flex-shrink: 0;
	width: 100%;
/* 			background: hsla(100, 30%, 50%, 0.2); */
}

	footer {
		background: hsl(var(--colorBG2));
/* 		border-bottom: 0.5rem solid hsla(var(--colorSecondary), 0.2); */
	}

main {
	flex: 1 0 auto;
	width: 100%;
/* 			background: hsla(300, 30%, 50%, 0.2); */
}

header &gt; div,
nav#menuTop,
article,
footer &gt; div {
	display: block;
	position: relative;
	max-width: var(--contentMaxWidth);
	margin-left: auto;
	margin-right: auto;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
/* 			background: hsla(220, 100%, 50%, 0.1); */
}

} /* @end */



@media /* --- HEADER ---*/ {

header {
	display: flex;
	flex-flow: row wrap;
/* 	justify-content: center; */
	align-items: center;
	align-content: center;
	padding: 1.0rem 1.0rem 2.0rem;
	margin-bottom: 0.5rem;
	text-align: center;
				/* background: hsla(20, 50%, 50%, 0.2); */
}
	
	header::before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-image: url("/gallery/img/phot-2024_Farm_Pano.jpg");
		background-size: cover;
		background-position: 50% 0;
		background-repeat: no-repeat;
		opacity: 0.9;
		mask-image: linear-gradient(to bottom, rgba(0, 0%, 100%) 65%, transparent 100%);
			-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1.0) 65%, transparent 100%);
	}

	header #logo {
		display: block;
		position: relative;
		margin: 0.0rem 2.0rem;
		color: hsl(var(--colorMain));
		filter: drop-shadow(0 0 2px hsl(var(--colorTertiary))) drop-shadow(0 0 10px hsl(var(--colorTertiary)));
				/* background: hsla(90, 50%, 50%, 0.2); */
	}

		header #logo &gt; svg {
				/* overflow: visible; */
				/* width: 100%; */
				/* height: 1px; */
				/* max-height: 50vh; */
				/* margin: 0; */
/* 						background: hsla(150, 50%, 50%, 0.2); */
			}
			
				header #logo:hover {
					color: hsl(var(--colorHighlight));
					transform: scale(1.05);
					filter: drop-shadow(0 0 5px hsl(var(--colorLight))) drop-shadow(0 0 10px hsl(var(--colorLight)));
				}
				
				
	header h4 {
		display: block;
		margin: 1.0rem auto 2.0rem;
		font-size: 1.1rem;
		font-weight: bold;
		font-style: italic;
		letter-spacing: 0.05em;
		text-align: center;
		color: hsl(var(--colorMain));
		color: hsl(var(--colorLight));
		text-shadow: 0 0 5px hsl(var(--colorMain)), 0 0 15px hsl(var(--colorMain));
	}
				
				
} /* @end */



@media /* --- CONTENT ---*/ {
	
main {
	padding: 0;
/* 			background: hsla(100, 50%, 50%, 0.1); */
}


	article {
		overflow: hidden;
		margin-bottom: 2.0rem;
		padding: 1.0rem 1.0rem 0.0rem;
		text-align: left;
/* 				background: hsla(300, 100%, 50%, 0.1); */
	}
	
		article.full {
			max-width: none;
			padding: 1.0rem 0 0.0rem;
		}

	article &gt; :last-child {
		margin-bottom: 0.0rem;
/* 				background: hsla(300, 100%, 50%, 0.1); */
	}
	
	article h2 {
		padding: 0.5rem;
		background: hsla(var(--colorTertiary), 0.3);
		border-radius: var(--borderRadiusBig);
	}
	
	/* article img { margin-bottom: 0.5rem; } */

	article ul {
		text-align: left;
		list-style: outside none;
				/* background: hsla(300, 100%, 50%, 0.1); */
	}
	
		article ul li {
			margin-bottom: 0.5rem;
		}
		
			article ul li::before {
				/* content: "▪";
				color: hsl(var(--colorSecondary));
				display: inline-block;
				width: 1.2em;
				margin-left: -1.2em; */
			}
			
			
		article.centerV {
			display: flex;
			align-items: center;
			min-height: 100vh;
	}
	
			article.centerV &gt; section {
				margin: 0 auto;
			}
	
} /* @end */



@media /* --- FOOTER ---*/ {

footer {
	padding-top: 3.6rem;
	padding-bottom: 1.0rem;
	background: hsla(var(--colorTertiary), 0.3);
	mask-image: linear-gradient(to top, rgba(0, 0, 0, 1.0) 90%, transparent 100%);
		-webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1.0) 90%, transparent 100%);
}

footer &gt; div {
	color: hsl(var(--colorMain)) !important;
	fill: currentColor;
	font-size: 1.0rem;
	line-height: 1.8em;
	text-align: center;
}

footer #Contact { margin-bottom: 0.0rem; }
	
	footer #Contact p { margin-bottom: 0.2rem; }

	footer #Contact &gt; .iconCircleSmall {
		margin-bottom: 1.5rem;
		text-align: center;
/* 				background: hsla(100, 50%, 50%, 0.1); */
	}

		footer #Contact &gt; .iconCircleSmall svg { margin-bottom: 1.0em; }
	
	
	footer .copyright {
		display: inline-block;
		margin-top: 1.0em;
		font-size: 0.6rem;
	}
	
	
} /* @end */



@media /* --- ICONS ---*/ {
	
main svg {
	/* display: inline-block;
	width: 1.5rem;
	height: 1.5rem;
	margin-right: 0.5rem;
	vertical-align: middle;
	color: currentColor;
	fill: currentColor; */
}

.iconCircle {
	line-height: 1.4rem;
}
	
	.iconCircle p {
		margin-bottom: 0;
	}
	
.iconCircleSmall:link svg,
.iconCircleSmall:visited svg,
.iconCircleSmall svg,
.iconCircleBig:link svg,
.iconCircleBig:visited svg,
.iconCircleBig svg,
.iconCircle svg {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	margin: 0 0.0rem 0.0rem;
	background: hsl(var(--colorMain));
	border: none;
	border-radius: 50%;
	color: hsl(var(--colorLight));
	fill: currentColor;
}

	.iconCircle svg {
		display: inline-block;
	}

	.iconCircleSmall:link svg,
	.iconCircleSmall:visited svg,
	.iconCircleSmall svg {
		width: 1.8rem;
		height: 1.8rem;
		margin: 0.0rem auto 0.3rem;
		padding: 0.2rem;
		line-height: 1.2em;
	}
	
	.iconCircleBig:link svg,
	.iconCircleBig:visited svg,
	.iconCircleBig svg{
		width: 5.0rem;
		height: 5.0rem;
		margin: 0.0rem auto 0.0rem;
		padding: 0.9rem;
	}

		.iconCircle svg {
			width: 2.8rem;
			height: 2.8rem;
			margin: 0.0em 0.7em 0.0em 0.0em;
			padding: 0.3rem;
			vertical-align: middle;
		}
		
		
		.iconCircleSmall:hover,
		.iconCircleBig:hover,
		.iconCircle:hover {
			color: hsl(var(--colorHighlight));
			transform: scale(1.05);
		}

			.iconCircleSmall:active,
			.iconCircleBig:active,
			.iconCircle:active {
				color: hsl(var(--colorSecondary)) !important;
				transform: scale(0.99);
			}

		.iconCircleSmall:hover svg,
		.iconCircleBig:hover svg,
		.iconCircle:hover svg {
			background-color: hsl(var(--colorHighlight)) !important;
			/* color: hsl(var(--colorLight)) !important; */
		}

			.iconCircleSmall:active svg,
			.iconCircleBig:active svg,
			.iconCircle:active svg {
				background-color: hsl(var(--colorSecondary)) !important;
				/* color: hsl(var(--colorHighlight)) !important; */
			}
			
			
} /* @end */



@media /* --- CLASSES | Various ---*/ {
	
aside {
	min-width: 16.5em;
	max-width: 16.5em;
	margin-bottom: 1.5rem;
/* 	border-top: 1.5rem solid transparent; */
	text-align: left;
/* 			background: hsla(250, 100%, 50%, 0.1); */
}

		aside h3 { text-align: left; }


.note {
	margin-top: 1.0rem;
	color: hsl(var(--colorMain));
	font-size: 0.6rem;
	text-align: center;
}


/*--- #Buttons ---*/

.buttonBox {
	clear: both;
	display: block;
/* 	align-items: stretch; */
}

	.buttonBox a:link { border-bottom: none; }

	input#submit,
	.buttonIcon,
	.button {
		display: inline-block;
		margin: 1.0em auto 0.6em;
		padding: 0.5em;
		background: hsl(var(--colorMain));
		border: 2px solid transparent;
		border-radius: var(--borderRadiusSmall);
		color: hsl(var(--colorLight));
		font-weight: bold;
		letter-spacing: 0.1em;
		line-height: 1.26rem;
		text-align: center;
		text-decoration: none !important;
		cursor: pointer;
	}
	
		input#submit:hover,
		.buttonIcon:hover,
		.button:hover {
			background-color: hsl(var(--colorHighlight));
			color: hsl(var(--colorLight));
			transform: scale(1.04);
		}

			input#submit:active,
			.buttonIcon:active,
			.button:active {
				background-color: hsl(var(--colorSecondary));
				color: hsl(var(--colorLight));
/* 				box-shadow: inset 0 0 20px hsl(var(--colorHighlight)); */
				transform: scale(0.99);
			}

		.buttonIcon {
			padding: 0.3rem 2.0rem 0.3rem 0.8rem;
/* 			text-align: left; */
		}

			.buttonIcon svg {
				display: inline-block;
				float: left;
				width: 1.3rem;
				height: 1.3rem;
				margin-top: -0.1em;
				margin-right: 0.5rem;
				vertical-align: middle;
				color: currentColor;
				fill: currentColor;
			}

/*--- #Quotes ---*/

blockquote {
	display: block;
	margin-bottom: 1.5rem;
	padding: 0.8rem 1.0rem;
	background: hsla(var(--colorSecondary), 0.2);
	border-radius: var(--borderRadiusSmall);
	font-style: italic;
	text-align: left;
/* 			background: hsla(250, 50%, 50%, 0.1); */
}

	blockquote q::before,
	blockquote q::after {
		content: "\201C";
		margin-left: -0.2em;
		padding-right: 0.2em;
		font-size: 1.8em;
		vertical-align: -0.2em;
		color: hsl(var(--colorSecondary));
	}
	
		blockquote q::after {
			content: "\201D";
			padding-left: 0.15em;
		}
	
	blockquote cite {
		float: right;
		margin-top: 0.6rem;
		margin-right: 0.8rem;
		color: hsl(var(--colorMain));
		font-size: 0.6rem;
		font-style: italic;
		font-style: normal;
		line-height: 1.4em;
		text-align: right;
	}
	
		blockquote cite::before { content: "\2014\2002" }
		
} /* @end */



@media /* --- CLASSES | Section Specific ---*/ {

#Intro {
	text-align: center;
}



#Ordering {
			/* background: hsla(220, 50%, 50%, 0.2); */
}
	
	#Ordering div {
		display: flex;
		flex-flow: column nowrap;
		justify-content: flex-start;
		align-items: flex-start;
		align-content: center;
		width: fit-content;
		margin: 0 auto;
					/* background: hsla(120, 50%, 50%, 0.2); */
	}
	
		#Ordering div a {
			flex: 0 1 auto;
			display: flex;
			flex-flow: row nowrap;
			justify-content: flex-start;
			align-items: center;
			align-content: flex-start;
			margin-bottom: 1.0rem;
			font-weight: bold;
					/* background: hsla(20, 50%, 50%, 0.2); */
		}
		
			#Ordering div a:last-child { margin-bottom: 0.1rem }
		
			#Ordering div a svg {
				flex: 0 0 auto;
			}
			
			#Ordering div a p {
				flex: 1 1 auto;
			}



#Prices .priceBlock {
	overflow: hidden;
	display: flex;
	flex-flow: column wrap;
	justify-content: space-evenly;		/* flex-start | flex-end | center | space-between | space-around | space-evenly */
	align-items: center;				/* flex-start | flex-end | center | baseline | stretch; */
	align-content: center;				/* flex-start | flex-end | center | space-between | space-around | stretch; */
	padding: 1.0rem;
	margin-bottom: 1.5rem;
	background: hsl(0, 0%, 100%);
	border: 1px solid hsl(var(--colorTertiary));
	border-radius: var(--borderRadiusBig);
	box-shadow: 0px 0px 4px hsl(var(--colorTertiary)), 0px 0px 12px hsl(var(--colorTertiary));
	text-align: center;
}

	#Prices h3 {
		flex: 0 1 auto;
		margin: 0.0rem auto 0.8rem;
		letter-spacing: 0.07em;
		color: hsl(var(--colorMain));
	}

	#Prices h4 {
		flex: 0 1 auto;
		margin: 0.0rem auto 0.8rem;
		font-size: 0.85rem;
		font-style: italic;
		color: hsl(var(--colorSecondary));
	}

		#Prices h3 + h4 { margin-top: -0.4rem; }

	#Prices .priceImage {
		flex: 0 1 auto;
		margin-bottom: 0.5rem;
		background: hsla(var(--colorHighlight), 0);
		border: 1px solid transparent;
		border-radius: var(--borderRadiusSmall);
		/* box-shadow: 0px 0px 4px hsl(var(--colorTertiary)), 0px 0px 12px hsl(var(--colorTertiary)); */
	}
	
		#Prices .priceImage.tall {
			max-width: 60%;
		}
		
			#Prices .priceImage:hover {
				background: hsla(var(--colorHighlight), 1);
				box-shadow: 0px 0px 12px hsl(var(--colorHighlight)), 0px 0px 12px hsl(var(--colorHighlight));
				transform: scale(1.04);
			}
		
				#Prices .priceImage:hover img { opacity: 0.7; }
	
	
	#Prices .priceDesc {
		flex: 0 1 auto;
		margin: 0 auto 1.0rem;
		text-align: left;
	}
	
		#Prices .priceDesc &gt; h5 {
			margin: 0 auto 0.4em;
			color: hsl(var(--colorSecondary));
			text-align: center;
			text-decoration: underline;
			/* text-transform: uppercase; */
		}
		
		#Prices .priceDesc p:last-child { margin-bottom: 0; }
		
		#Prices .priceDesc ul { column-count: 2; }
	
			#Prices .priceDesc ul li { margin: 0; }
		
				#Prices .priceDesc ul li::before {
					content: '▪';
					color: hsl(var(--colorTertiary));
					margin: 0 0.4em 0 0;
				}
			
	#Prices .priceCost {
		flex: 0 1 auto;
		font-size: 3.5em;
		font-weight: bold;
		color: hsl(var(--colorSecondary));
	}

		#Prices .priceCost::before {
			content: "$";
			margin-right: 0.2em;
			vertical-align: super;
			font-size: 0.5em;
			font-weight: normal;
		}
		
			#Prices .priceCost &gt; span {
				/* margin-left: 0.1em; */
				font-size: 0.4em;
				font-weight: normal;
			}
		
		
		
} /* @end */



@media /* --- MODULES ---*/ {

	
}	} /* @end */



@media /* --- DEBUGGERY ---*/ {
	
#debugScroll {
	z-index: 500;
	display: block;
	display: none;
	position: fixed;
	bottom: 0;
	right: 0.7rem;
	padding: 0.0rem 0.3rem;
	background: hsla(var(--colorHighlight), 0.2);
	border-radius: 50%;
	color: white;
	font-size: 0.4rem;
	font-weight: bold;
}

} /* @end */
</pre></body></html>