/**
 * Base CSS used by the builder's layout, including rows
 * and columns. Any module specific global CSS should be
 * included in fl-builder-layout-modules.css.
 */

/* Grid
------------------------------------------------------ */

.fl-builder-content *,
.fl-builder-content *:before,
.fl-builder-content *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.fl-row:before,
.fl-row:after,
.fl-row-content:before,
.fl-row-content:after,
.fl-col-group:before,
.fl-col-group:after,
.fl-col:before,
.fl-col:after,
.fl-module:not([data-accepts]):before,
.fl-module:not([data-accepts]):after,
.fl-module-content:before,
.fl-module-content:after {
	display: table;
	content: " ";
}
.fl-row:after,
.fl-row-content:after,
.fl-col-group:after,
.fl-col:after,
.fl-module:not([data-accepts]):after,
.fl-module-content:after {
	clear: both;
}
.fl-clear {
	clear: both;
}

/* Rows
------------------------------------------------------ */

.fl-row,
.fl-row-content {
	margin-left: auto;
	margin-right: auto;
	min-width: 0;
}
.fl-row-content-wrap {
	position: relative;
}

/* Photo Bg */
.fl-builder-mobile .fl-row-bg-photo .fl-row-content-wrap {
	background-attachment: scroll;
}

/* Video and Embed Code Bg */
.fl-row-bg-video,
.fl-row-bg-video .fl-row-content,
.fl-row-bg-embed,
.fl-row-bg-embed .fl-row-content {
	position: relative;
}

.fl-row-bg-video .fl-bg-video,
.fl-row-bg-embed .fl-bg-embed-code {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
}

.fl-row-bg-video .fl-bg-video video,
.fl-row-bg-embed .fl-bg-embed-code video {
	bottom: 0;
	left: 0px;
	max-width: none;
	position: absolute;
	right: 0;
	top: 0px;
}
.fl-row-bg-video .fl-bg-video video {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
}
.fl-row-bg-video .fl-bg-video iframe,
.fl-row-bg-embed .fl-bg-embed-code iframe {
	pointer-events: none;
	width: 100vw;
  	height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  	max-width: none;
  	min-height: 100vh;
  	min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  	position: absolute;
  	top: 50%;
  	left: 50%;
	-ms-transform: translate(-50%, -50%); /* IE 9 */
	-webkit-transform: translate(-50%, -50%); /* Chrome, Safari, Opera */
  	transform: translate(-50%, -50%);
}
.fl-bg-video-fallback {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0px;
	left: 0px;
	position: absolute;
	right: 0px;
	top: 0px;
}

/* Slideshow Bg */
.fl-row-bg-slideshow,
.fl-row-bg-slideshow .fl-row-content {
	position: relative;
}
.fl-row .fl-bg-slideshow {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}
.fl-builder-edit .fl-row .fl-bg-slideshow * {
	bottom: 0;
	height: auto !important;
	left: 0;
	position: absolute !important;
	right: 0;
	top: 0;
}

/* Row Bg Overlay */
.fl-row-bg-overlay .fl-row-content-wrap:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-row-bg-overlay .fl-row-content {
	position: relative;
	z-index: 1;
}

/* Full Height Rows */
.fl-row-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	min-height: 100vh;
}
.fl-row-overlap-top .fl-row-content-wrap {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 100%;
}
.fl-row-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	min-height: 0;
}

.fl-row-default-height .fl-row-content,
.fl-row-full-height .fl-row-content,
.fl-row-custom-height .fl-row-content {
  -webkit-box-flex: 1 1 auto;
  	 -moz-box-flex: 1 1 auto;
  	  -webkit-flex: 1 1 auto;
  		  -ms-flex: 1 1 auto;
  			  flex: 1 1 auto;
}
.fl-row-default-height .fl-row-full-width.fl-row-content,
.fl-row-full-height .fl-row-full-width.fl-row-content,
.fl-row-custom-height .fl-row-full-width.fl-row-content {
	max-width: 100%;
	width: 100%;
}

/* Full height align center */
.fl-row-default-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-center .fl-row-content-wrap {
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
	justify-content: center;
	align-items: center;
}

/* Full height align bottom */
.fl-row-default-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-bottom .fl-row-content-wrap {
	-webkit-align-items: flex-end;
	-webkit-justify-content: flex-end;
	-webkit-box-align: end;
	-webkit-box-pack: end;
	-ms-flex-align: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	align-items: flex-end;
}

/* Column Groups
------------------------------------------------------ */
.fl-col-group-equal-height {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.fl-col-group-equal-height.fl-col-group-has-child-loading {
	flex-wrap: nowrap;
}
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content {
	display: flex;
	flex: 1 1 auto;
}
.fl-col-group-equal-height .fl-col-content {
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	width: 100%;
}
.fl-col-group-equal-height:before,
.fl-col-group-equal-height .fl-col:before,
.fl-col-group-equal-height .fl-col-content:before,
.fl-col-group-equal-height:after,
.fl-col-group-equal-height .fl-col:after,
.fl-col-group-equal-height .fl-col-content:after{
	content: none;
}

/* Equal height align top */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content {
	justify-content: flex-start;
}

/* Equal height align center */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content {
	justify-content: center;
}

/* Equal height align bottom */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {
	justify-content: flex-end;
}

.fl-col-group-equal-height.fl-col-group-align-center .fl-col-group {
	width: 100%;
}

/* Columns
------------------------------------------------------ */

.fl-col {
	float: left;
	min-height: 1px;
}

/* Column Bg Overlay */
.fl-col-bg-overlay .fl-col-content {
	position: relative;
}
.fl-col-bg-overlay .fl-col-content:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-col-bg-overlay .fl-module {
	position: relative;
	z-index: 2;
}

/* Templates
------------------------------------------------------ */

.single:not(.woocommerce).single-fl-builder-template .fl-content {
	width: 100%;
}

/* Shapes & Patterns
------------------------------------------------------- */
.fl-builder-layer {
	position: absolute;
	top:0;
	left:0;
	right: 0;
	bottom: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}
.fl-builder-shape-layer {
	z-index: 0;
}
.fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 2;
}
.fl-row-has-layers .fl-row-content {
	z-index: 1;
}
.fl-row-bg-overlay .fl-row-content {
	z-index: 2;
}

.fl-builder-layer > * {
	display: block;
	position: absolute;
	top:0;
	left:0;
	width: 100%;
}
.fl-builder-layer + .fl-row-content {
	position: relative;
}
.fl-builder-layer .fl-shape {
	fill: #aaa;
	stroke: none;
	stroke-width: 0;
	width:100%;
}
/**
Fix ipad parallax issue on safari
https://core.trac.wordpress.org/ticket/48802
https://core.trac.wordpress.org/ticket/49285
https://github.com/WordPress/gutenberg/issues/17718
*/
@supports (-webkit-touch-callout: inherit) {
  .fl-row.fl-row-bg-parallax .fl-row-content-wrap,
  .fl-row.fl-row-bg-fixed .fl-row-content-wrap {
    background-position: center !important;
    background-attachment: scroll !important;
  }
}

@supports (-webkit-touch-callout: none) {
	.fl-row.fl-row-bg-fixed .fl-row-content-wrap {
		background-position: center !important;
		background-attachment: scroll !important;
	}
}
/**
 * Base CSS used by all (or many) modules. This file should
 * not contain any generic layout CSS that doesn't apply to
 * modules. That belongs in fl-builder-layout.css.
 */

/* Utilities
------------------------------------------------------ */

.fl-clearfix:before,
.fl-clearfix:after {
	display: table;
	content: " ";
}
.fl-clearfix:after {
	clear: both;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

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

.fl-builder-content .fl-button:is(a, button),
.fl-builder-content a.fl-button:visited {
	border-radius: 4px;
	display: inline-block;
	font-size: 16px;
	font-weight: normal;
	line-height: 18px;
	padding: 12px 24px;
	text-decoration: none;
	text-shadow: none;
}
.fl-builder-content .fl-button:hover {
	text-decoration: none;
}
.fl-builder-content .fl-button:active {
	position: relative;
	top: 1px;
}
.fl-builder-content .fl-button-width-full .fl-button {
	width: 100%;
	display: block;
	text-align: center;
}
.fl-builder-content .fl-button-width-custom .fl-button {
	display: inline-block;
	text-align: center;
	max-width: 100%;
}
.fl-builder-content .fl-button-left {
	text-align: left;
}
.fl-builder-content .fl-button-center {
	text-align: center;
}
.fl-builder-content .fl-button-right {
	text-align: right;
}
.fl-builder-content .fl-button i {
	font-size: 1.3em;
	height: auto;
	margin-right:8px;
	vertical-align: middle;
	width: auto;
}
.fl-builder-content .fl-button i.fl-button-icon-after {
	margin-left: 8px;
	margin-right: 0;
}
.fl-builder-content .fl-button-has-icon .fl-button-text {
	vertical-align: middle;
}

/* Icons
------------------------------------------------------ */

.fl-icon-wrap {
	display: inline-block;
}
.fl-icon {
	display: table-cell;
	vertical-align: middle;
}
.fl-icon a {
	text-decoration: none;
}
.fl-icon i {
	float: right;
	height: auto;
	width: auto;
}
.fl-icon i:before {
	border: none !important;
	height: auto;
	width: auto;
}
.fl-icon-text {
	display: table-cell;
	text-align: left;
	padding-left: 15px;
	vertical-align: middle;
}
.fl-icon-text-empty {
	display: none;
}
.fl-icon-text *:last-child {
	margin: 0 !important;
	padding: 0 !important;
}
.fl-icon-text a {
	text-decoration: none;
}
.fl-icon-text span {
	display: block;
}
.fl-icon-text span.mce-edit-focus {
	min-width: 1px;
}

/* Photos
------------------------------------------------------ */

.fl-module img {
	max-width: 100%;
}
.fl-photo {
	line-height: 0;
	position: relative;
}
.fl-photo-align-left {
	text-align: left;
}
.fl-photo-align-center {
	text-align: center;
}
.fl-photo-align-right {
	text-align: right;
}
.fl-photo-content {
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
}
.fl-photo-img-svg {
	width: 100%;
}
.fl-photo-content img {
	display: inline;
	height: auto;
	max-width: 100%;
}
.fl-photo-crop-circle img {
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
.fl-photo-caption {
	font-size: 13px;
	line-height: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.fl-photo-caption-below {
	padding-bottom: 20px;
	padding-top: 10px;
}
.fl-photo-caption-hover {
	background: rgba(0,0,0,0.7);
	bottom: 0;
	color: #fff;
	left: 0;
	opacity: 0;
	filter: alpha(opacity = 0);
	padding: 10px 15px;
	position: absolute;
	right: 0;
	-webkit-transition:opacity 0.3s ease-in;
	-moz-transition:opacity 0.3s ease-in;
	transition:opacity 0.3s ease-in;
}
.fl-photo-content:hover .fl-photo-caption-hover {
	opacity: 100;
	filter: alpha(opacity = 100);
}

/* Pagination
------------------------------------------------------ */

.fl-builder-pagination,
.fl-builder-pagination-load-more {
	padding: 40px 0;
}
.fl-builder-pagination ul.page-numbers {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
.fl-builder-pagination li {
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0;
}
.fl-builder-pagination li a.page-numbers,
.fl-builder-pagination li span.page-numbers {
	border: 1px solid #e6e6e6;
	display: inline-block;
	padding: 5px 10px;
	margin: 0 0 5px;
}
.fl-builder-pagination li a.page-numbers:hover,
.fl-builder-pagination li span.current {
	background: #f5f5f5;
	text-decoration: none;
}

/* Slideshows
------------------------------------------------------ */

.fl-slideshow,
.fl-slideshow * {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;

}
.fl-slideshow .fl-slideshow-image img {
	max-width: none !important;
}
.fl-slideshow-social {
	line-height: 0 !important;
}
.fl-slideshow-social * {
	margin: 0 !important;
}

/* Sliders
------------------------------------------------------ */

.fl-builder-content .bx-wrapper .bx-viewport {
	background: transparent;
	border: none;
	box-shadow: none;
	left: 0;
}

/* Lightbox
------------------------------------------------------ */

.mfp-wrap button.mfp-arrow,
.mfp-wrap button.mfp-arrow:active,
.mfp-wrap button.mfp-arrow:hover,
.mfp-wrap button.mfp-arrow:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 50%;
	box-shadow: none !important;
}
.mfp-wrap .mfp-close,
.mfp-wrap .mfp-close:active,
.mfp-wrap .mfp-close:hover,
.mfp-wrap .mfp-close:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 0;
	box-shadow: none !important;
}
.admin-bar .mfp-wrap .mfp-close,
.admin-bar .mfp-wrap .mfp-close:active,
.admin-bar .mfp-wrap .mfp-close:hover,
.admin-bar .mfp-wrap .mfp-close:focus {
	top: 32px!important;
}
img.mfp-img {
	padding: 0;
}
.mfp-counter {
	display: none;
}

.mfp-wrap .mfp-preloader.fa {
	font-size: 30px;
}

/* Form Fields
------------------------------------------------------ */

.fl-form-field {
	margin-bottom: 15px;
}
.fl-form-field input.fl-form-error {
	border-color: #DD6420;
}
.fl-form-error-message {
	clear: both;
	color: #DD6420;
	display: none;
	padding-top: 8px;
	font-size: 12px;
	font-weight: lighter;
}
.fl-form-button-disabled {
	opacity: 0.5;
}

/* Animations
------------------------------------------------------ */

.fl-animation {
	opacity: 0;
}
body.fl-no-js .fl-animation {
	opacity: 1;
}
.fl-builder-preview .fl-animation,
.fl-builder-edit .fl-animation,
.fl-animated {
	opacity: 1;
}
.fl-animated {
	animation-fill-mode: both;
}

/* Button Icon Animation */
.fl-button.fl-button-icon-animation i {
	width: 0 !important;
	opacity: 0;
	transition: all 0.2s ease-out;
}
.fl-button.fl-button-icon-animation:hover i {
	opacity: 1 !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-after {
	margin-left: 0px !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-after {
	margin-left: 10px !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-before {
	margin-right: 0 !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-before {
	margin-right: 20px !important;
  margin-left: -10px;
}
@media (max-width: 1200px) { /**
 * Styles needed for the large breakpoint.
 */
 }@media (max-width: 992px) { /* Columns
------------------------------------------------------ */

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-medium-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
 }@media (max-width: 768px) { /* Rows
------------------------------------------------------ */

.fl-row-content-wrap {
	background-attachment: scroll !important;
}
.fl-row-bg-parallax .fl-row-content-wrap {
	background-attachment: scroll !important;
	background-position: center center !important;
}

/* Column Groups
------------------------------------------------------ */

/* Equal Heights */
.fl-col-group.fl-col-group-equal-height {
	display: block;
}
.fl-col-group.fl-col-group-equal-height.fl-col-group-custom-width {
	display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-responsive-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
.fl-col-group.fl-col-group-responsive-reversed .fl-col:not(.fl-col-small-custom-width) {
	flex-basis: 100%;
	width: 100% !important;
}
.fl-col-group.fl-col-group-medium-reversed:not(.fl-col-group-responsive-reversed) {
	display: unset;
	display: unset;
	-webkit-flex-wrap: unset;
	flex-wrap: unset;
	flex-direction: unset;
}

/* Columns
------------------------------------------------------ */

.fl-col {
	clear: both;
	float: none;
	margin-left: auto;
	margin-right: auto;
	width: auto !important;
}
.fl-col-small:not(.fl-col-small-full-width) {
	max-width: 400px;
}
.fl-block-col-resize {
	display:none;
}
/* Rows
------------------------------------------------------ */

.fl-row[data-node] .fl-row-content-wrap {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
.fl-row[data-node] .fl-bg-video,
.fl-row[data-node] .fl-bg-slideshow {
	left: 0;
	right: 0;
}

/* Columns
------------------------------------------------------ */

.fl-col[data-node] .fl-col-content {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
 }@media (min-width: 1201px) {
	html .fl-visible-large:not(.fl-visible-desktop),
	html .fl-visible-medium:not(.fl-visible-desktop),
	html .fl-visible-mobile:not(.fl-visible-desktop) {
		display: none;
	}
}

@media (min-width: 993px) and (max-width: 1200px) {
	html .fl-visible-desktop:not(.fl-visible-large),
	html .fl-visible-medium:not(.fl-visible-large),
	html .fl-visible-mobile:not(.fl-visible-large) {
		display: none;
	}
}

@media (min-width: 769px) and (max-width: 992px) {
	html .fl-visible-desktop:not(.fl-visible-medium),
	html .fl-visible-large:not(.fl-visible-medium),
	html .fl-visible-mobile:not(.fl-visible-medium) {
		display: none;
	}
}

@media (max-width: 768px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
}
.fl-row-fixed-width {
	max-width: 1100px;
}
.fl-builder-content > .fl-module-box {
	margin: 0;
}
.fl-row-content-wrap {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}
:root {
	--fl-global-text-color: #5F5E5A;
}
.fl-builder-content:not(.fl-builder-empty) {
	color: #5F5E5A;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }









.fl-node-gq7kaptxdvb9 {
	width: 100%;
}
 .fl-node-soia1ub9gqcd.fl-module-html {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-1fdj64sl8aik.fl-module-html {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-sh9a0cb8g6rj.fl-module-html {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-wo1i4z2jfa7e.fl-module-html {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-yg1j4hufz850.fl-module-html {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-olejmwp6bzfk.fl-module-html {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-0fzvptmiwky8.fl-module-html {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-8c6zslay3t5f.fl-module-html {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-2651qg4fmsa3.fl-module-html {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}

/* Start Global CSS */
/* 🌙 Global “muse-float” animation — smooth, seamless, reusable */
.muse-float {
  position: relative;
  animation: museFloatSeamless 6s linear infinite;
  will-change: transform;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
}

/* Sine-like vertical drift */
@keyframes museFloatSeamless {
  0%     { transform: translateY( 0px); }
  12.5%  { transform: translateY(-8.5px); }
  25%    { transform: translateY(-12px); }
  37.5%  { transform: translateY(-8.5px); }
  50%    { transform: translateY( 0px); }
  62.5%  { transform: translateY( 8.5px); }
  75%    { transform: translateY( 12px); }
  87.5%  { transform: translateY( 8.5px); }
  100%   { transform: translateY( 0px); }
}

/* Accessibility: honor reduced motion preference */
@media (prefers-reduced-motion: reduce){
  .muse-float { animation: none !important; }
}

/*Speed Adjustments*/
.muse-float.fast   { animation-duration: 4s; }
.muse-float.slow   { animation-duration: 8s; }
.muse-float.dreamy { animation-duration: 10s; }

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
/*
 * GUIDERLY HOMEPAGE — BEAVER BUILDER MODULE CSS
 * Paste into: BB Page Settings → Custom CSS (or Appearance → Customize → Additional CSS for this page)
 * Version 1.0 — June 2026
 * Governs all nine .gh-page modules
 * Scoped under .gh-page to avoid BB class collisions
 */

/* ============================================================
   0. FORCE ROOT FONT SIZE (prevents BB rem collapse)
   ============================================================ */
html { font-size: 16px !important; }

/* ============================================================
   1. GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ============================================================
   2. VARIABLES
   ============================================================ */
.gh-page {
  --ink:          #1C2B3A;
  --terra:        #9C6B4E;
  --terra-dark:   #836C52;
  --terra-darker: #6B4A35;
  --terra-light:  #F2EBE5;
  --terra-border: #C49A82;
  --warm-white:   #FAF8F4;
  --parchment:    #EDE9E3;
  --parchment-dk: #E0D9D0;
  --slate:        #6B7A87;
  --olive:        #8FA03A;
  --olive-dark:   #6B7A2A;
  --dark-navy:    #1C2B3A;
  --muse-bg:      #1E3245;
  --muse-surface: #243C54;
  --ff-serif:     'Playfair Display', Georgia, serif;
  --ff-sans:      'Open Sans', system-ui, sans-serif;
  --r-sm:         6px;
  --r-md:         10px;
  --r-lg:         16px;
  --r-xl:         24px;
  --shadow-card:  0 8px 32px rgba(28,43,58,0.10);
  --shadow-btn:   0 4px 14px rgba(28,43,58,0.22);
  --shadow-brown: 0 2px 8px rgba(131,108,82,0.25);
  --max-w:        1120px;
  --section-pad:  5rem 1.5rem;
}

/* ============================================================
   3. RESET WITHIN SCOPE
   ============================================================ */
.gh-page *,
.gh-page *::before,
.gh-page *::after {
  box-sizing: border-box;
}

.gh-page {
  font-family: var(--ff-sans);
  color: var(--ink);
  background-color: var(--warm-white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.gh-page p {
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 1rem;
}

.gh-page h1,
.gh-page h2,
.gh-page h3,
.gh-page h4 {
  font-family: var(--ff-serif);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 1rem;
}

.gh-page em {
  font-style: italic;
  color: var(--terra);
}

.gh-page a {
  color: var(--terra-dark);
  text-decoration: none;
  transition: color 0.15s ease;
}

.gh-page a:hover {
  color: var(--terra-darker);
}

/* ============================================================
   4. SHARED LAYOUT UTILITIES
   ============================================================ */
.gh-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad);
}

.gh-section-inner--narrow {
  max-width: 760px;
}

.gh-section-inner--centered {
  text-align: center;
}

.gh-section-eyebrow {
  font-family: var(--ff-sans) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--terra) !important;
  margin: 0 0 0.75rem !important;
}

.gh-eyebrow-light {
  color: rgba(255,255,255,0.6) !important;
}

.gh-section-heading {
  font-family: var(--ff-serif) !important;
  font-size: 2.25rem !important;
  font-weight: 400 !important;
  color: var(--ink) !important;
  line-height: 1.18 !important;
  margin: 0 0 1.25rem !important;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.gh-btn {
  display: inline-block;
  font-family: var(--ff-sans) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  border: none !important;
  border-radius: var(--r-sm) !important;
  padding: 0.8rem 1.6rem !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: background 0.15s ease, transform 0.1s ease !important;
  line-height: 1.3 !important;
}

.gh-btn-primary {
  background-color: var(--olive) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(143,160,58,0.35) !important;
}

.gh-btn-primary:hover {
  background-color: var(--olive-dark) !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
}

.gh-btn-secondary {
  background-color: var(--terra-dark) !important;
  color: #fff !important;
  box-shadow: var(--shadow-brown) !important;
}

.gh-btn-secondary:hover {
  background-color: var(--terra-darker) !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
}

.gh-btn-card {
  background-color: var(--ink) !important;
  color: #fff !important;
  font-size: 13px !important;
  padding: 0.6rem 1.2rem !important;
}

.gh-btn-card:hover {
  background-color: #2d4660 !important;
  color: #fff !important;
}

.gh-btn-cta {
  background-color: var(--olive) !important;
  color: #fff !important;
  font-size: 17px !important;
  padding: 1rem 2.25rem !important;
  box-shadow: 0 6px 20px rgba(143,160,58,0.4) !important;
}

.gh-btn-cta:hover {
  background-color: var(--olive-dark) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
}

.gh-btn-full {
  width: 100% !important;
  text-align: center !important;
}

/* ============================================================
   6. MODULE 1: HERO
   ============================================================ */
.gh-hero {
  background-color: var(--warm-white);
  padding: 0;
}

/* NAV */
.gh-nav {
  border-bottom: 1px solid var(--parchment);
  background: var(--warm-white);
}

.gh-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* LOGO GROUP: icon + wordmark + tagline */
.gh-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none !important;
  flex-shrink: 0;
}

.gh-nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.gh-nav-wordmark {
  font-family: var(--ff-serif) !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  color: var(--ink) !important;
  letter-spacing: 0.03em !important;
  line-height: 1 !important;
}

.gh-nav-tagline {
  font-family: var(--ff-serif) !important;
  font-style: italic !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  color: var(--terra) !important;
  letter-spacing: 0.01em !important;
  line-height: 1 !important;
  /* small separator between wordmark and tagline */
  padding-left: 0.5rem !important;
  border-left: 1px solid var(--terra-border) !important;
  margin-left: 0.1rem !important;
}

/* RIGHT NAV LINKS */
.gh-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}

.gh-nav-link {
  font-family: var(--ff-sans) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  color: var(--slate) !important;
  text-decoration: none !important;
  transition: color 0.15s ease !important;
  white-space: nowrap !important;
}

.gh-nav-link:hover {
  color: var(--ink) !important;
}

.gh-nav-arrow {
  font-size: 12px !important;
  opacity: 0.6 !important;
}

/* SIGN IN LINK — applies in nav and standalone hero position */
.gh-nav-signin {
  font-family: var(--ff-sans) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--slate) !important;
  text-decoration: none !important;
  border-bottom: 2px solid transparent !important;
  padding-bottom: 2px !important;
  transition: color 0.15s ease, border-color 0.15s ease !important;
  white-space: nowrap !important;
}

.gh-nav-signin:hover {
  color: var(--ink) !important;
  border-bottom-color: var(--ink) !important;
}

.gh-nav-signin:active {
  color: var(--terra-dark) !important;
  border-bottom-color: var(--terra-dark) !important;
}

/* HERO BODY */
.gh-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 1.5rem 4.5rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
}

.gh-hero-headline {
  font-family: var(--ff-serif) !important;
  font-size: 3.25rem !important;
  font-weight: 400 !important;
  color: var(--ink) !important;
  line-height: 1.1 !important;
  margin: 0 0 1.5rem !important;
}

.gh-hero-body {
  font-size: 17px !important;
  line-height: 1.75 !important;
  color: var(--slate) !important;
  margin: 0 0 0.9rem !important;
}

.gh-hero-bridge {
  font-size: 17px !important;
  line-height: 1.75 !important;
  color: var(--ink) !important;
  font-weight: 500 !important;
  margin: 1.5rem 0 2rem !important;
  padding-left: 1rem !important;
  border-left: 3px solid var(--terra-border) !important;
}

.gh-hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.gh-signin-standalone {
  font-size: 18px !important;
  font-weight: 700 !important;
}

.gh-hero-proof {
  font-size: 13px !important;
  color: var(--slate) !important;
  margin: 0 !important;
}

/* PROMPT CARD */
.gh-hero-card-wrap {
  position: sticky;
  top: 2rem;
}

.gh-prompt-card {
  background: #fff;
  border: 1px solid var(--parchment);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

/* DATE line at top of card */
.gh-prompt-date {
  display: block;
  font-family: var(--ff-sans) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--slate) !important;
  margin-bottom: 0.4rem !important;
}

.gh-prompt-label {
  display: block;
  font-family: var(--ff-sans) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--terra) !important;
  margin-bottom: 0.75rem !important;
}

.gh-prompt-text {
  font-family: var(--ff-serif) !important;
  font-size: 1.15rem !important;
  font-style: italic !important;
  color: var(--ink) !important;
  line-height: 1.55 !important;
  margin: 0 0 1.25rem !important;
  padding: 0 !important;
  border: none !important;
}

/* VIDEO inside prompt card — 16:9 responsive */
.gh-prompt-video {
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: #000;
}

.gh-prompt-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.gh-prompt-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  display: block !important;
}

.gh-prompt-note {
  font-size: 13px !important;
  color: var(--slate) !important;
  line-height: 1.6 !important;
  margin: 0 0 1.25rem !important;
}

/* ============================================================
   7. MODULE 2: FOUNDER
   ============================================================ */
.gh-founder {
  background-color: var(--parchment);
}

.gh-founder-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad);
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
}

.gh-founder-photo {
  width: 100%;
  border-radius: var(--r-lg);
  display: block;
  box-shadow: 0 12px 40px rgba(28,43,58,0.15);
}

.gh-founder-eyebrow {
  font-family: var(--ff-sans) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--terra) !important;
  margin: 0 0 0.5rem !important;
}

.gh-founder-headline {
  font-family: var(--ff-serif) !important;
  font-size: 2.25rem !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  margin: 0 0 1.25rem !important;
}

.gh-founder-forster {
  font-size: 15px !important;
  color: var(--slate) !important;
  margin: 0 0 1.5rem !important;
  padding: 0.75rem 1rem !important;
  border-left: 3px solid var(--terra-border) !important;
  background: rgba(255,255,255,0.5) !important;
  border-radius: 0 var(--r-sm) var(--r-sm) 0 !important;
}

.gh-founder-attr {
  font-style: normal;
  font-size: 13px;
  color: var(--slate);
}

.gh-founder-copy p {
  font-size: 16px !important;
  line-height: 1.8 !important;
  color: var(--ink) !important;
  margin: 0 0 1rem !important;
}

.gh-founder-sig {
  font-family: var(--ff-serif) !important;
  font-style: italic !important;
  font-size: 15px !important;
  color: var(--terra-dark) !important;
  margin-top: 1.5rem !important;
}

/* ============================================================
   8. MODULE 3: JOURNALIZATION
   ============================================================ */
.gh-journalization {
  background-color: var(--warm-white);
}

.gh-journalization-def {
  font-size: 18px !important;
  line-height: 1.75 !important;
  color: var(--ink) !important;
  max-width: 680px;
  margin: 0 0 1rem !important;
}

.gh-journalization-contrast {
  font-family: var(--ff-serif) !important;
  font-style: italic !important;
  font-size: 1.15rem !important;
  color: var(--slate) !important;
  margin: 0 0 3rem !important;
}

/* FIVE COMPONENTS */
.gh-j-components {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--parchment-dk);
  margin-bottom: 3rem;
}

.gh-j-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--parchment-dk);
  align-items: start;
}

.gh-j-number {
  font-family: var(--ff-serif) !important;
  font-size: 1.5rem !important;
  font-weight: 400 !important;
  color: var(--terra-border) !important;
  line-height: 1 !important;
  padding-top: 0.25rem !important;
}

.gh-j-title {
  font-family: var(--ff-sans) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  margin: 0 0 0.4rem !important;
  line-height: 1.3 !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.gh-j-coming {
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--terra) !important;
  background: var(--terra-light) !important;
  border-radius: 4px !important;
  padding: 2px 6px !important;
}

.gh-j-body {
  font-size: 15px !important;
  color: var(--slate) !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

/* COMPOUNDS CALLOUT */
.gh-j-compounds {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 2.5rem 2.75rem;
}

.gh-j-compounds-eyebrow {
  font-family: var(--ff-serif) !important;
  font-style: italic !important;
  font-size: 1.2rem !important;
  color: var(--terra-border) !important;
  margin: 0 0 0.75rem !important;
  font-weight: 400 !important;
}

.gh-j-compounds-body {
  font-size: 16px !important;
  color: rgba(255,255,255,0.82) !important;
  line-height: 1.75 !important;
  margin: 0 !important;
}

/* ============================================================
   9. MODULE 4: MUSE DEMO
   ============================================================ */
.gh-muse-demo {
  background: var(--muse-bg);
  color: #fff;
}

.gh-muse-demo .gh-section-inner {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.gh-muse-demo-heading {
  font-family: var(--ff-serif) !important;
  font-size: 2.25rem !important;
  font-weight: 400 !important;
  color: #fff !important;
  line-height: 1.2 !important;
  margin: 0 0 0.75rem !important;
}

.gh-muse-demo-sub {
  font-size: 15px !important;
  color: rgba(255,255,255,0.6) !important;
  margin: 0 0 3rem !important;
}

/* DIALOGUE */
.gh-dialogue {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 720px;
}

.gh-dialogue-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.gh-dialogue-label {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.45) !important;
  margin: 0 !important;
}

.gh-dialogue-bubble {
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  font-size: 15px;
  line-height: 1.7;
}

.gh-bubble-prompt {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1rem;
}

.gh-bubble-writer {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.88);
  margin-left: 0;
}

.gh-bubble-muse {
  background: var(--muse-surface);
  border: 1px solid rgba(196,154,130,0.3);
  color: #fff;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.05rem;
  border-left: 3px solid var(--terra-border);
}

.gh-muse-demo-footer {
  font-size: 13px !important;
  color: rgba(255,255,255,0.45) !important;
  margin: 2.5rem 0 0 !important;
}

/* ============================================================
   10. MODULE 5: VIDEO
   ============================================================ */
.gh-video-section {
  background-color: var(--warm-white);
}

.gh-video-sub {
  font-size: 16px !important;
  color: var(--slate) !important;
  margin: 0 0 2.5rem !important;
}

.gh-video-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(28,43,58,0.14);
  background: #000;
}

/* 16:9 responsive wrapper */
.gh-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.gh-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  display: block !important;
}

/* ============================================================
   11. MODULE 6: WHO IT'S FOR
   ============================================================ */
.gh-for-section {
  background-color: var(--parchment);
}

.gh-for-intro {
  font-size: 17px !important;
  line-height: 1.75 !important;
  max-width: 660px;
  margin: 0 0 0.5rem !important;
}

.gh-for-question {
  font-family: var(--ff-serif) !important;
  font-style: italic !important;
  font-size: 1.15rem !important;
  color: var(--terra) !important;
  margin: 0 0 2.5rem !important;
}

/* FILTER GRID */
.gh-for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.gh-for-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 8px rgba(28,43,58,0.06);
  border: 1px solid var(--parchment-dk);
}

.gh-for-card--yes {
  border-left: 3px solid var(--olive);
}

.gh-for-card--no {
  border-left: 3px solid var(--parchment-dk);
  opacity: 0.75;
}

.gh-for-card-tag {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  margin: 0 0 0.6rem !important;
}

.gh-for-tag--yes {
  color: var(--olive-dark) !important;
}

.gh-for-tag--no {
  color: var(--slate) !important;
}

.gh-for-card p {
  font-size: 14px !important;
  line-height: 1.65 !important;
  color: var(--ink) !important;
  margin: 0 !important;
}

.gh-for-recognized {
  font-family: var(--ff-serif) !important;
  font-style: italic !important;
  font-size: 1.15rem !important;
  color: var(--ink) !important;
  max-width: 600px;
  line-height: 1.6 !important;
}

/* ============================================================
   12. MODULE 7: TESTIMONIALS + NOT FOR EVERYONE SLIDESHOW
   ============================================================ */
.gh-testimonials-section {
  background-color: var(--parchment);
}

.gh-testimonials-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.gh-testimonials-heading {
  font-family: var(--ff-serif) !important;
  font-size: 2rem !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  margin: 0 0 0.75rem !important;
  color: var(--ink) !important;
}

.gh-testimonials-subhead {
  font-size: 16px !important;
  color: var(--slate) !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

/* SLIDESHOW CONTAINER */
.gh-slideshow {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  min-height: 220px;
}

/* INDIVIDUAL SLIDES */
.gh-slide {
  display: none;
  animation: ghSlideFade 0.45s ease;
}

.gh-slide--active {
  display: block;
}

@keyframes ghSlideFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gh-slide-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.gh-slide-quote {
  font-family: var(--ff-serif) !important;
  font-style: italic !important;
  font-size: 1.15rem !important;
  line-height: 1.65 !important;
  color: var(--ink) !important;
  margin: 0 0 1.5rem !important;
  position: relative;
}

.gh-slide-quote::before {
  content: '\201C';
  color: var(--terra-border);
  font-size: 2rem;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.15em;
}

.gh-slide-quote::after {
  content: '\201D';
  color: var(--terra-border);
  font-size: 2rem;
  line-height: 0;
  vertical-align: -0.4em;
  margin-left: 0.15em;
}

.gh-slide-author {
  font-size: 13px !important;
  color: var(--terra) !important;
  font-weight: 600 !important;
  margin: 0 !important;
  letter-spacing: 0.02em !important;
}

/* DOTS */
.gh-slide-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.gh-slide-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--parchment-dk);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gh-slide-dot--active {
  background: var(--terra);
  transform: scale(1.25);
}

.gh-slide-dot:hover {
  background: var(--terra-border);
}

/* PREV / NEXT */
.gh-slide-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.gh-slide-prev,
.gh-slide-next {
  background: none;
  border: 1px solid var(--parchment-dk);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 16px;
  color: var(--slate);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.gh-slide-prev:hover,
.gh-slide-next:hover {
  border-color: var(--terra-border);
  color: var(--terra-dark);
}

@media (max-width: 680px) {
  .gh-slide-card {
    padding: 1.75rem 1.5rem;
  }

  .gh-testimonials-heading {
    font-size: 1.6rem !important;
  }
}

/* ============================================================
   13. MODULE 8: MEMBERSHIP / PRICING
   ============================================================ */
.gh-pricing-section {
  background-color: var(--parchment);
}

.gh-pricing-sub {
  font-size: 16px !important;
  color: var(--slate) !important;
  max-width: 600px;
  margin: 0 0 3rem !important;
}

.gh-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
  margin-bottom: 2rem;
}

.gh-pricing-card {
  background: #fff;
  border-radius: var(--r-xl);
  border: 1px solid var(--parchment-dk);
  box-shadow: var(--shadow-card);
  position: relative;
  display: flex;
  flex-direction: column;
}

.gh-pricing-card--featured {
  border-color: var(--olive);
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(143,160,58,0.18);
}

.gh-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--olive);
  color: #fff;
  font-family: var(--ff-sans) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 3px 12px !important;
  border-radius: 20px !important;
  white-space: nowrap !important;
}

.gh-pricing-card-inner {
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gh-pricing-tier {
  font-family: var(--ff-sans) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--terra) !important;
  margin: 0 0 0.5rem !important;
}

.gh-pricing-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 0.75rem;
}

.gh-pricing-amount {
  font-family: var(--ff-serif) !important;
  font-size: 2.25rem !important;
  font-weight: 400 !important;
  color: var(--ink) !important;
  line-height: 1 !important;
}

.gh-pricing-period {
  font-size: 13px !important;
  color: var(--slate) !important;
  font-weight: 400 !important;
}

.gh-pricing-desc {
  font-size: 13px !important;
  color: var(--slate) !important;
  line-height: 1.6 !important;
  margin: 0 0 1rem !important;
  flex-grow: 1;
}

.gh-pricing-features {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 1.25rem !important;
}

.gh-pricing-features li {
  font-size: 13px !important;
  color: var(--ink) !important;
  padding: 0.3rem 0 0.3rem 1.25rem !important;
  position: relative !important;
  line-height: 1.4 !important;
}

.gh-pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--olive);
  font-weight: 700;
  font-size: 12px;
}

.gh-pricing-cap {
  font-size: 11px !important;
  color: var(--slate) !important;
  text-align: center !important;
  margin: 0.5rem 0 0 !important;
}

.gh-pricing-free-note {
  font-size: 14px !important;
  color: var(--slate) !important;
  text-align: center !important;
  margin: 0 !important;
}

.gh-pricing-free-link {
  color: var(--terra-dark) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

.gh-pricing-free-link:hover {
  color: var(--terra-darker) !important;
}

/* ============================================================
   14. MODULE 9: CLOSING CTA
   ============================================================ */
.gh-cta-section {
  background: var(--footer-bg, #6B4A35);
}

.gh-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  text-align: center;
}

.gh-cta-heading {
  font-family: var(--ff-serif) !important;
  font-size: 2.75rem !important;
  font-weight: 400 !important;
  color: #fff !important;
  line-height: 1.15 !important;
  margin: 0 0 0.75rem !important;
}

.gh-cta-heading em {
  color: var(--terra-border) !important;
  font-style: italic !important;
}

.gh-cta-sub {
  font-family: var(--ff-serif) !important;
  font-style: italic !important;
  font-size: 1.2rem !important;
  color: rgba(255,255,255,0.75) !important;
  margin: 0 0 1.5rem !important;
}

.gh-cta-body {
  font-size: 16px !important;
  color: rgba(255,255,255,0.72) !important;
  line-height: 1.8 !important;
  margin: 0 0 1.75rem !important;
}

.gh-cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0.75rem;
  margin-bottom: 2.5rem;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.gh-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.gh-cta-free-link {
  font-size: 14px !important;
  color: rgba(255,255,255,0.65) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

.gh-cta-free-link:hover {
  color: rgba(255,255,255,0.9) !important;
}

.gh-cta-guarantee {
  font-size: 12px !important;
  color: rgba(255,255,255,0.4) !important;
  margin: 0 0 2rem !important;
}

.gh-cta-notforall {
  font-size: 13px !important;
  color: rgba(255,255,255,0.5) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

.gh-cta-notforall span {
  display: block;
  margin-top: 0.25rem;
}

/* ============================================================
   15. RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .gh-pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .gh-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .gh-hero-card-wrap {
    position: static;
  }

  .gh-founder-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gh-founder-photo {
    max-width: 280px;
  }

  .gh-section-heading {
    font-size: 1.875rem !important;
  }

  /* Nav: hide tagline on medium screens */
  .gh-nav-tagline {
    display: none !important;
  }

  .gh-nav-links {
    gap: 1.25rem !important;
  }
}

@media (max-width: 640px) {
  /* Nav: hide regular links on mobile, keep Sign in */
  .gh-nav-link {
    display: none !important;
  }
}

@media (max-width: 680px) {
  .gh-hero-headline {
    font-size: 2.25rem !important;
  }

  .gh-for-grid {
    grid-template-columns: 1fr;
  }

  .gh-pricing-grid {
    grid-template-columns: 1fr;
  }

  .gh-cta-heading {
    font-size: 2rem !important;
  }

  .gh-dialogue {
    max-width: 100%;
  }

  .gh-j-compounds {
    padding: 1.75rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .gh-page {
    --section-pad: 3.5rem 1rem;
  }

  .gh-hero-inner {
    padding: 2.5rem 1rem 3rem;
  }

  .gh-hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .gh-nav-inner {
    padding: 0.875rem 1rem;
  }
}
/* End Layout CSS */

