/* ==========================================================================
   Glow Fusion Esthetic: client-approved Dark Sage Luxury homepage system
   Header, footer and Elementor section classes. One stylesheet, no framework.
   ========================================================================== */

:root {
	/* Approved palette, sampled from the client mockup */
	--gfe-sage: #62674F;          /* hero ground */
	--gfe-sage-lt: #737860;       /* hero light */
	--gfe-sage-btn: #7F8467;      /* filled button */
	--gfe-sage-dk: #535844;       /* footer */
	--gfe-sage-deep: #4C513E;
	--gfe-olive-gray: #8D9078;    /* small labels on cream */
	--gfe-cream-1: #C3C1A9;       /* band top */
	--gfe-cream-2: #D3D1BE;
	--gfe-cream-3: #E4E1D4;
	--gfe-card: #ECE9DF;
	--gfe-paper: #F4F0EB;         /* cream text */
	--gfe-ink: #3B3F31;           /* headings on cream */
	--gfe-ink-soft: #5E6252;      /* body on cream */
	--gfe-gold: #C29E5F;          /* champagne accent */
	--gfe-gold-lt: #D2B27A;
	--gfe-star: #BA9950;

	--gfe-serif: "Cormorant Garamond", "Cormorant", Garamond, "Times New Roman", serif;
	--gfe-sans: "Jost", "Montserrat", "Helvetica Neue", Arial, sans-serif;

	--gfe-wrap: 1216px;
	--gfe-gutter: clamp(20px, 5vw, 64px);
	--gfe-header-h: 112px;
	--gfe-ease: cubic-bezier(.22, .61, .36, 1);
	--gfe-ease-out: cubic-bezier(.16, 1, .3, 1);
	--gfe-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10'%3E%3Cpath d='M0 5h14.5M10.5 1l4 4-4 4' fill='none' stroke='%23000' stroke-width='1.2'/%3E%3C/svg%3E");
	--gfe-grain: 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='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");

	--theme-font-family: var(--gfe-sans);
	--theme-text-color: var(--gfe-ink-soft);
	--theme-headings-color: var(--gfe-ink);
	--theme-link-initial-color: var(--gfe-sage-dk);
	--theme-link-hover-color: var(--gfe-gold);
}
@media (max-width: 1100px) { :root { --gfe-header-h: 88px; } }
@media (max-width: 600px) { :root { --gfe-header-h: 76px; } }

html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
	background: var(--gfe-sage-dk);
	color: var(--gfe-ink-soft);
	font-family: var(--gfe-sans);
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--gfe-gold-lt); color: var(--gfe-ink); }
:focus-visible { outline: 2px solid var(--gfe-gold); outline-offset: 3px; }
#main-container > main { padding-top: var(--gfe-header-h); background: var(--gfe-cream-3); }
body.gfe-overlay-header #main-container > main { padding-top: 0; background: transparent; }
.gfe-skip { position: absolute; left: -9999px; top: 8px; z-index: 1000; background: var(--gfe-paper); color: var(--gfe-ink); padding: 12px 18px; }
.gfe-skip:focus { left: 12px; }

/* ==========================================================================
   Buttons (square, per approved design)
   ========================================================================== */
.gfe-button,
.gfe-sec .gfe-btn .elementor-button {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 46px;
	padding: 0 34px;
	border-radius: 0;
	background: var(--gfe-sage-btn);
	color: var(--gfe-paper);
	border: 1px solid var(--gfe-sage-btn);
	font-family: var(--gfe-sans);
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: .16em;
	text-transform: uppercase;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: color .45s var(--gfe-ease), border-color .45s var(--gfe-ease), background-color .45s var(--gfe-ease), transform .45s var(--gfe-ease);
}
.gfe-button::before,
.gfe-sec .gfe-btn .elementor-button::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(244, 240, 235, .14);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .55s var(--gfe-ease-out);
}
.gfe-button:hover::before,
.gfe-button:focus-visible::before,
.gfe-sec .gfe-btn .elementor-button:hover::before,
.gfe-sec .gfe-btn .elementor-button:focus-visible::before { transform: scaleX(1); }
.gfe-button:hover,
.gfe-sec .gfe-btn .elementor-button:hover { color: #fff; border-color: var(--gfe-gold-lt); }
.gfe-button:active,
.gfe-sec .gfe-btn .elementor-button:active { transform: translateY(1px); }

/* Outline on sage */
.gfe-button--outline,
.gfe-sec .gfe-btn-outline .elementor-button {
	background: transparent;
	color: var(--gfe-paper);
	border-color: rgba(244, 240, 235, .72);
}
/* Outline on cream */
.gfe-sec .gfe-btn-dark .elementor-button {
	background: transparent;
	color: var(--gfe-ink);
	border-color: rgba(59, 63, 49, .55);
	min-height: 40px;
	padding: 0 30px;
	font-size: 11.5px;
}
.gfe-sec .gfe-btn-dark .elementor-button::before { background: rgba(59, 63, 49, .08); }
.gfe-sec .gfe-btn-dark .elementor-button:hover { color: var(--gfe-ink); border-color: var(--gfe-ink); }
.gfe-sec .gfe-btn-sm .elementor-button { min-height: 40px; padding: 0 28px; font-size: 11.5px; }
.gfe-sec .gfe-btn .elementor-button-content-wrapper { display: inline-flex; align-items: center; gap: 10px; }

/* ==========================================================================
   Section base
   ========================================================================== */
.e-con.gfe-sec {
	--container-max-width: var(--gfe-wrap);
	--content-width: min(100%, var(--gfe-wrap));
	--padding-left: var(--gfe-gutter);
	--padding-right: var(--gfe-gutter);
	--gap: 0px;
	--row-gap: 0px;
	--column-gap: 0px;
	position: relative;
	isolation: isolate;
	overflow: hidden;
}
.e-con.gfe-sec > .e-con-inner { width: 100%; position: relative; z-index: 1; }
.e-con.gfe-sec::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image: var(--gfe-grain);
	opacity: .05;
}
.e-con.gfe-stack { display: flex; flex-direction: column; gap: 0; padding: 0; }
.gfe-sec .elementor-heading-title { margin: 0; font-weight: 400; }
.gfe-sec .elementor-widget-text-editor p { margin: 0 0 .9em; }
.gfe-sec .elementor-widget-text-editor p:last-child { margin-bottom: 0; }

/* Shared type */
.gfe-sec .gfe-eyebrow .elementor-heading-title {
	font-family: var(--gfe-sans);
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: .3em;
	text-transform: uppercase;
	line-height: 1.5;
	color: var(--gfe-gold);
}
.gfe-sec .gfe-eyebrow--muted .elementor-heading-title { color: var(--gfe-olive-gray); font-size: 11.5px; letter-spacing: .32em; }
.gfe-sec .gfe-eyebrow--light .elementor-heading-title { color: var(--gfe-paper); letter-spacing: .2em; font-size: 12px; }
.gfe-sec .gfe-title .elementor-heading-title {
	font-family: var(--gfe-serif);
	font-weight: 400;
	line-height: 1.12;
	letter-spacing: -.005em;
	text-wrap: balance;
}
.gfe-sec .gfe-title .elementor-heading-title em { font-style: italic; }

/* Gold rule (drawn after headings) */
.gfe-rule::after {
	content: "";
	display: block;
	width: 50px;
	height: 1.5px;
	margin-top: 26px;
	background: var(--gfe-gold);
	transform-origin: left;
	transition: transform 1.1s var(--gfe-ease-out) .25s;
}
.gfe-rule--center::after { margin-left: auto; margin-right: auto; transform-origin: center; width: 64px; margin-top: 20px; }

/* ==========================================================================
   1. HERO
   ========================================================================== */
.e-con.gfe-hero {
	--padding-top: calc(var(--gfe-header-h) + clamp(28px, 4.6vw, 70px));
	--padding-bottom: clamp(34px, 3.2vw, 48px);
	min-height: clamp(620px, 49vw, 760px);
	background-color: var(--gfe-sage);
	background-image:
		radial-gradient(60% 70% at 30% 18%, rgba(129, 134, 107, .55) 0%, rgba(129, 134, 107, 0) 65%),
		linear-gradient(180deg, #6A6F56 0%, #62674F 55%, #5A5F48 100%);
	justify-content: center;
}
.e-con.gfe-hero::before {
	content: "";
	position: absolute;
	z-index: 0;
	left: -10%;
	top: -30%;
	width: 70%;
	height: 120%;
	background: radial-gradient(closest-side, rgba(150, 155, 125, .28), rgba(150, 155, 125, 0));
	pointer-events: none;
	animation: gfeDrift 22s ease-in-out infinite alternate;
}
@keyframes gfeDrift { from { transform: translate3d(0, 0, 0) scale(1); } to { transform: translate3d(12%, 8%, 0) scale(1.12); } }
.e-con.gfe-hero__media {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 57%;
	padding: 0;
	z-index: 0;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.55) 14%, #000 30%);
	mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.55) 14%, #000 30%);
}
.gfe-hero__media .elementor-widget-image,
.gfe-hero__media .elementor-widget-image .elementor-widget-container { height: 100%; width: 100%; }
.gfe-hero__media img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: 50% 20%;
	will-change: transform;
	animation: gfeHeroImg 2.4s var(--gfe-ease-out) both;
}
@keyframes gfeHeroImg { from { opacity: 0; transform: scale(1.08); } to { opacity: 1; transform: scale(1); } }
.e-con.gfe-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(98, 103, 79, .55) 0%, rgba(98, 103, 79, 0) 22%, rgba(98, 103, 79, 0) 80%, rgba(90, 95, 72, .45) 100%);
	pointer-events: none;
}
.e-con.gfe-hero__copy { position: relative; z-index: 2; padding: 0; width: min(100%, 780px); gap: 0; }
.gfe-hero-title { max-width: 650px; }
.gfe-hero .gfe-eyebrow { margin-bottom: 22px; }
.gfe-sec .gfe-hero-title .elementor-heading-title {
	font-family: var(--gfe-serif);
	font-size: clamp(44px, 5.1vw, 74px);
	line-height: 1.04;
	font-weight: 400;
	color: var(--gfe-paper);
	letter-spacing: -.012em;
}
.gfe-sec .gfe-hero-title .elementor-heading-title em { font-style: italic; display: inline-block; padding-bottom: .06em; }
.gfe-hero-title.gfe-rule::after { margin-top: 30px; }
.gfe-sec .gfe-hero-text.elementor-widget-text-editor {
	margin-top: 26px;
	font-size: 16.5px;
	line-height: 1.8;
	color: rgba(244, 240, 235, .92);
	max-width: 34em;
}
.e-con.gfe-actions { display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 16px 18px; padding: 0; margin-top: 34px; }
.e-con.gfe-actions > .elementor-widget { width: auto; flex: 0 0 auto; }
.gfe-hero .gfe-btn .elementor-button { min-width: 214px; }

/* Trust badges */
.gfe-badges { display: flex; flex-wrap: wrap; gap: 18px clamp(22px, 3.4vw, 52px); margin: clamp(40px, 4vw, 58px) 0 0; padding: 0; list-style: none; }
.gfe-badges li { display: flex; align-items: center; gap: 12px; color: rgba(244, 240, 235, .9); font-size: 14px; line-height: 1.35; }
.gfe-badges svg { flex: none; width: 34px; height: 34px; color: var(--gfe-gold); }

/* Hero entrance choreography (CSS only, runs once on load) */
.gfe-hero__copy > .elementor-element { animation: gfeRise 1.1s var(--gfe-ease-out) both; }
.gfe-hero__copy > .elementor-element:nth-child(1) { animation-delay: .15s; }
.gfe-hero__copy > .elementor-element:nth-child(2) { animation-delay: .3s; }
.gfe-hero__copy > .elementor-element:nth-child(3) { animation-delay: .55s; }
.gfe-hero__copy > .elementor-element:nth-child(4) { animation-delay: .7s; }
.gfe-hero__copy > .elementor-element:nth-child(5) { animation-delay: .85s; }
.gfe-hero-title.gfe-rule::after { animation: gfeLine 1.2s var(--gfe-ease-out) .9s both; }
@keyframes gfeRise { from { opacity: 0; transform: translate3d(0, 26px, 0); } to { opacity: 1; transform: none; } }
@keyframes gfeLine { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ==========================================================================
   2. SIGNATURE TREATMENTS
   ========================================================================== */
.e-con.gfe-treat {
	--padding-top: clamp(52px, 4.4vw, 64px);
	--padding-bottom: clamp(52px, 4vw, 60px);
	background-color: var(--gfe-cream-2);
	background-image:
		radial-gradient(55% 80% at 42% 22%, rgba(238, 235, 225, .9) 0%, rgba(238, 235, 225, 0) 70%),
		radial-gradient(40% 90% at 100% 55%, rgba(150, 156, 124, .55) 0%, rgba(150, 156, 124, 0) 70%),
		linear-gradient(180deg, #C4C2AA 0%, #D2D0BD 42%, #DCD9CA 100%);
	border-top: 1px solid rgba(255, 255, 255, .18);
}
.e-con.gfe-treat > .e-con-inner { display: flex; flex-direction: column; align-items: center; }
.gfe-treat .gfe-eyebrow { margin-bottom: 12px; text-align: center; }
.gfe-sec .gfe-treat-title .elementor-heading-title { font-size: clamp(32px, 3.2vw, 46px); color: var(--gfe-ink); text-align: center; }
.e-con.gfe-cards {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(18px, 2.2vw, 31px);
	width: 100%;
	margin-top: clamp(26px, 2.6vw, 36px);
	padding: 0;
}
.e-con.gfe-card {
	--padding-top: 0; --padding-bottom: 0; --padding-left: 0; --padding-right: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	background: rgba(239, 236, 227, .92);
	border-radius: 9px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset, 0 14px 30px -22px rgba(64, 68, 50, .55);
	transition: transform .6s var(--gfe-ease-out), box-shadow .6s var(--gfe-ease-out), background-color .6s;
}
.e-con.gfe-card:hover,
.e-con.gfe-card:focus-visible {
	transform: translateY(-6px);
	background: #F2EFE7;
	box-shadow: 0 1px 0 rgba(255, 255, 255, .6) inset, 0 26px 44px -26px rgba(64, 68, 50, .6);
}
.gfe-card .gfe-card__img { overflow: hidden; }
.gfe-card .gfe-card__img img { display: block; width: 100%; height: auto; aspect-ratio: 2 / 1; object-fit: cover; transition: transform 1.2s var(--gfe-ease-out); }
.e-con.gfe-card:hover .gfe-card__img img { transform: scale(1.06); }
.gfe-sec .gfe-card .gfe-card__title { padding: 22px 26px 0; }
.gfe-sec .gfe-card .gfe-card__title .elementor-heading-title { font-family: var(--gfe-serif); font-size: clamp(22px, 1.8vw, 26px); line-height: 1.12; color: var(--gfe-ink); }
.gfe-sec .gfe-card .gfe-card__text.elementor-widget-text-editor { padding: 12px 26px 0; font-size: 14px; line-height: 1.6; color: var(--gfe-ink-soft); }
.gfe-sec .gfe-card .gfe-card__more { padding: 14px 26px 26px; margin-top: auto; }
.gfe-sec .gfe-card .gfe-card__more .elementor-heading-title {
	font-family: var(--gfe-sans);
	font-size: 11.5px;
	font-weight: 500;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--gfe-ink);
}
.gfe-sec .gfe-card .gfe-card__more .elementor-heading-title::after,
.gfe-arrow::after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 9px;
	margin-left: 10px;
	vertical-align: 0;
	background: currentColor;
	-webkit-mask: var(--gfe-arrow) no-repeat center / contain;
	mask: var(--gfe-arrow) no-repeat center / contain;
	transition: transform .45s var(--gfe-ease);
}
.e-con.gfe-card:hover .gfe-card__more .elementor-heading-title::after { transform: translateX(5px); }

/* ==========================================================================
   3. MEET KATHERINNE
   ========================================================================== */
.e-con.gfe-about {
	--padding-top: clamp(40px, 3.4vw, 50px);
	--padding-bottom: clamp(40px, 3.4vw, 50px);
	min-height: clamp(300px, 22vw, 330px);
	background-color: #6A6F56;
	background-image:
		radial-gradient(50% 90% at 45% 0%, rgba(130, 135, 108, .5), rgba(130, 135, 108, 0) 70%),
		linear-gradient(180deg, #737860 0%, #676C53 60%, #61664F 100%);
	justify-content: center;
}
.e-con.gfe-about__media {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 36%;
	padding: 0;
	z-index: 0;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, #000 62%, transparent 100%);
	mask-image: linear-gradient(90deg, #000 62%, transparent 100%);
}
.gfe-about__media .elementor-widget-image,
.gfe-about__media .elementor-widget-image .elementor-widget-container { height: 100%; }
.gfe-about__media img { display: block; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: 30% 20%; transition: transform 1.6s var(--gfe-ease-out); }
.gfe-about.is-in .gfe-about__media img { transform: scale(1.02); }
.e-con.gfe-about__copy { position: relative; z-index: 2; padding: 0; margin-left: 33%; width: min(100%, 520px); gap: 0; }
.gfe-about .gfe-eyebrow { margin-bottom: 10px; }
.gfe-about .gfe-eyebrow .elementor-heading-title { font-size: 11.5px; }
.gfe-sec .gfe-about-title .elementor-heading-title { font-size: clamp(32px, 2.7vw, 39px); line-height: 1.1; color: var(--gfe-paper); }
.gfe-about-title.gfe-rule::after { margin-top: 18px; width: 36px; }
.gfe-sec .gfe-about-text.elementor-widget-text-editor { margin-top: 18px; font-size: 15px; line-height: 1.75; color: rgba(244, 240, 235, .88); max-width: 31em; }
.gfe-about .e-con.gfe-actions { margin-top: 20px; }
.gfe-leaf { position: absolute; z-index: 1; right: max(var(--gfe-gutter), calc((100% - var(--gfe-wrap)) / 2)); bottom: -6px; width: clamp(150px, 13vw, 190px); color: var(--gfe-gold); pointer-events: none; }
.gfe-leaf .elementor-widget-container, .gfe-leaf svg { display: block; width: 100%; height: auto; }
.gfe-leaf path { stroke-dasharray: 1; stroke-dashoffset: 0; }

/* ==========================================================================
   4. REVIEWS
   ========================================================================== */
.e-con.gfe-reviews {
	--padding-top: clamp(34px, 2.8vw, 42px);
	--padding-bottom: clamp(38px, 3vw, 46px);
	background-color: #DDDACB;
	background-image:
		radial-gradient(60% 90% at 50% 45%, #ECE9DD 0%, rgba(236, 233, 221, 0) 75%),
		linear-gradient(90deg, #C8C7B2 0%, #E0DDD0 30%, #E3E0D3 70%, #C9C8B3 100%);
}
.e-con.gfe-reviews > .e-con-inner { display: flex; flex-direction: column; align-items: center; }
.gfe-reviews .gfe-eyebrow { margin-bottom: 10px; text-align: center; }
.gfe-sec .gfe-reviews-title .elementor-heading-title { font-size: clamp(28px, 2.3vw, 33px); color: var(--gfe-ink); text-align: center; }
.gfe-reviews-title.gfe-rule::after { margin-top: 16px; width: 54px; }
.e-con.gfe-carousel { position: relative; width: 100%; max-width: 1060px; padding: 0 64px; margin-top: 30px; display: flex; flex-direction: row; align-items: center; gap: 0; }
.e-con.gfe-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc(100% / 3);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding: 0;
	gap: 0;
	width: 100%;
}
.e-con.gfe-track::-webkit-scrollbar { display: none; }
.e-con.gfe-review { scroll-snap-align: start; padding: 4px 34px; gap: 0; align-items: center; text-align: center; border-left: 1px solid rgba(94, 98, 82, .28); }
.e-con.gfe-review:first-child { border-left-color: transparent; }
.gfe-stars { color: var(--gfe-star); font-size: 15px; letter-spacing: .22em; line-height: 1; margin-bottom: 14px; }
.gfe-sec .gfe-review__text.elementor-widget-text-editor { font-family: var(--gfe-serif); font-style: italic; font-size: clamp(17px, 1.45vw, 19.5px); line-height: 1.5; color: #4A4E3F; max-width: 20em; margin: 0 auto; }
.gfe-sec .gfe-review__name .elementor-heading-title { margin-top: 14px; font-family: var(--gfe-sans); font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gfe-ink); }
.gfe-review--placeholder .gfe-review__text { opacity: .78; }
.gfe-car-btn {
	position: absolute;
	top: 50%;
	z-index: 2;
	width: 44px;
	height: 44px;
	margin-top: -22px;
	border-radius: 50%;
	border: 1px solid rgba(94, 98, 82, .55);
	background: transparent;
	color: var(--gfe-ink);
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: background-color .4s var(--gfe-ease), border-color .4s var(--gfe-ease), transform .4s var(--gfe-ease);
}
.gfe-car-btn:hover { background: rgba(59, 63, 49, .07); border-color: var(--gfe-ink); }
.gfe-car-btn svg { width: 16px; height: 10px; }
.gfe-car-prev { left: 0; }
.gfe-car-prev svg { transform: rotate(180deg); }
.gfe-car-next { right: 0; }
.gfe-car-btn[disabled] { opacity: .35; cursor: default; }
.gfe-car-nav .elementor-widget-container { position: static; }
.gfe-reviews .e-con.gfe-actions { margin-top: 26px; justify-content: center; }
.gfe-g { font-family: var(--gfe-sans); font-weight: 600; color: var(--gfe-gold); letter-spacing: 0; margin-left: 4px; }

/* ==========================================================================
   5. FIND US
   ========================================================================== */
.e-con.gfe-findus {
	--padding-top: clamp(32px, 2.6vw, 40px);
	--padding-bottom: clamp(32px, 2.6vw, 40px);
	background-color: #62674F;
	background-image:
		radial-gradient(45% 110% at 62% 50%, rgba(130, 135, 106, .55), rgba(130, 135, 106, 0) 72%),
		linear-gradient(90deg, #5A6049 0%, #676C53 45%, #6F745A 70%, #62674F 100%);
	border-top: 1px solid rgba(255, 255, 255, .06);
}
.e-con.gfe-findus > .e-con-inner { display: grid; grid-template-columns: 1.42fr 1fr 1fr 1fr 1fr; gap: 0; align-items: start; }
.e-con.gfe-col { padding: 0 clamp(14px, 1.5vw, 22px); gap: 0; }
.e-con.gfe-col:first-child { padding-left: 0; }
.e-con.gfe-col:last-child { padding-right: 0; align-items: center; }
.e-con.gfe-col--div { border-left: 1px solid rgba(244, 240, 235, .16); }
.gfe-findus .gfe-eyebrow--light { margin: 6px 0 10px; }
.gfe-sec .gfe-findus-title .elementor-heading-title { font-size: clamp(26px, 2.25vw, 32px); line-height: 1.2; color: var(--gfe-paper); }
.gfe-findus-title.gfe-rule::after { margin-top: 16px; width: 36px; }
.gfe-findus .e-con.gfe-actions { margin-top: 22px; }
.gfe-sec .gfe-step-title .elementor-heading-title { display: flex; align-items: baseline; gap: 10px; font-family: var(--gfe-sans); font-size: 11.5px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gfe-gold); line-height: 1.2; }
.gfe-sec .gfe-step-title .elementor-heading-title .gfe-num { font-family: var(--gfe-serif); font-size: 30px; letter-spacing: 0; font-weight: 400; line-height: 1; }
.gfe-step-img { margin-top: 10px; overflow: hidden; border-radius: 2px; }
.gfe-step-img img { display: block; width: 100%; height: auto; aspect-ratio: 1.7 / 1; object-fit: cover; transition: transform 1.2s var(--gfe-ease-out); }
.gfe-step-img:hover img { transform: scale(1.05); }
.gfe-sec .gfe-step-text.elementor-widget-text-editor { margin-top: 12px; font-size: 14px; line-height: 1.6; color: rgba(244, 240, 235, .86); }
.gfe-contact-list { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 14px; }
.gfe-contact-list li { display: flex; gap: 14px; align-items: flex-start; color: rgba(244, 240, 235, .92); font-size: 14.5px; line-height: 1.55; }
.gfe-contact-list a { color: inherit; text-decoration: none; }
.gfe-contact-list a:hover { color: var(--gfe-gold-lt); }
.gfe-contact-list svg { flex: none; width: 20px; height: 22px; color: var(--gfe-gold); margin-top: 1px; }
.gfe-contact-note { margin: 14px 0 0; font-size: 14px; line-height: 1.55; color: rgba(244, 240, 235, .72); }
.gfe-map { position: relative; display: block; width: 100%; aspect-ratio: 1.55 / 1; border-radius: 3px; overflow: hidden; background: #DDE0D3; box-shadow: 0 10px 24px -16px rgba(30, 32, 24, .7); }
.gfe-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; pointer-events: none; filter: saturate(.55) contrast(.95); transform: scale(1.02); transition: transform 1s var(--gfe-ease-out); }
.gfe-map:hover iframe { transform: scale(1.06); }
.gfe-findus .gfe-col:last-child .e-con.gfe-actions { margin-top: 14px; justify-content: center; }

/* ==========================================================================
   Scroll reveal (visible without JS; honours reduced motion)
   ========================================================================== */
.gfe-js .gfe-reveal { opacity: 0; transform: translate3d(0, 28px, 0); transition: opacity 1s var(--gfe-ease-out), transform 1.1s var(--gfe-ease-out); }
.gfe-js .gfe-reveal.is-in { opacity: 1; transform: none; }
.gfe-js .gfe-cards > .gfe-card { opacity: 0; transform: translate3d(0, 34px, 0); transition: opacity .9s var(--gfe-ease-out), transform 1s var(--gfe-ease-out), box-shadow .6s var(--gfe-ease-out), background-color .6s; }
.gfe-js .gfe-cards.is-in > .gfe-card { opacity: 1; transform: none; }
.gfe-js .gfe-cards.is-in > .gfe-card:hover { transform: translateY(-6px); }
.gfe-js .gfe-cards > .gfe-card:nth-child(2) { transition-delay: .12s, .12s, 0s, 0s; }
.gfe-js .gfe-cards > .gfe-card:nth-child(3) { transition-delay: .24s, .24s, 0s, 0s; }
.gfe-js .gfe-cards > .gfe-card:nth-child(4) { transition-delay: .36s, .36s, 0s, 0s; }
.gfe-js .gfe-sec:not(.gfe-hero) .gfe-rule::after { transform: scaleX(0); }
.gfe-js .gfe-sec.is-in .gfe-rule::after { transform: scaleX(1); }
.gfe-js .gfe-leaf path { stroke-dashoffset: 1; transition: stroke-dashoffset 2.6s var(--gfe-ease) .3s; }
.gfe-js .gfe-about.is-in .gfe-leaf path { stroke-dashoffset: 0; }
.elementor-editor-active .gfe-reveal, .elementor-editor-active .gfe-cards > .gfe-card { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; transition-delay: 0s !important; }
	.gfe-js .gfe-reveal, .gfe-js .gfe-cards > .gfe-card { opacity: 1; transform: none; }
}

/* ==========================================================================
   Inner page hero (interim pages share the hero look)
   ========================================================================== */
.e-con.gfe-pagehero { --padding-top: calc(var(--gfe-header-h) + clamp(56px, 8vw, 120px)); --padding-bottom: clamp(64px, 8vw, 110px); background: linear-gradient(180deg, #6A6F56 0%, #62674F 60%, #5A5F48 100%); }
.e-con.gfe-pagehero > .e-con-inner { gap: 22px; align-items: flex-start; }
.gfe-pagehero .gfe-display .elementor-heading-title { font-family: var(--gfe-serif); font-size: clamp(40px, 4.6vw, 66px); line-height: 1.06; color: var(--gfe-paper); }
.gfe-pagehero .elementor-widget-text-editor { font-size: 17px; line-height: 1.75; color: rgba(244, 240, 235, .88); max-width: 40em; }
.gfe-pagehero .gfe-btn-ghost .elementor-button { background: transparent; border-color: rgba(244, 240, 235, .72); }

/* ==========================================================================
   HEADER
   ========================================================================== */
#header { position: fixed; top: var(--wp-admin--admin-bar--height, 0px); left: 0; right: 0; z-index: 100; }
.gfe-header { position: relative; z-index: 2; height: var(--gfe-header-h); color: var(--gfe-paper); background: rgba(98, 103, 79, 0); transition: background-color .5s var(--gfe-ease), box-shadow .5s var(--gfe-ease), height .5s var(--gfe-ease); }
body:not(.gfe-overlay-header) .gfe-header,
.gfe-header.is-scrolled { background: rgba(88, 93, 70, .94); -webkit-backdrop-filter: blur(14px) saturate(1.1); backdrop-filter: blur(14px) saturate(1.1); box-shadow: 0 1px 0 rgba(244, 240, 235, .08), 0 12px 30px -24px rgba(20, 22, 16, .8); }
.gfe-header.is-scrolled { height: calc(var(--gfe-header-h) - 18px); }
.gfe-header__inner { max-width: calc(var(--gfe-wrap) + 2 * var(--gfe-gutter)); height: 100%; margin: 0 auto; padding: 0 var(--gfe-gutter); display: flex; align-items: center; gap: 28px; }
.gfe-logo { display: block; flex: none; line-height: 0; }
.gfe-logo img { display: block; width: clamp(128px, 12.4vw, 178px); height: auto; transition: width .5s var(--gfe-ease); }
.gfe-header.is-scrolled .gfe-logo img { width: clamp(118px, 10.4vw, 150px); }
.gfe-nav { margin-left: auto; }
.gfe-menu { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 44px); list-style: none; margin: 0; padding: 0; }
.gfe-menu li { position: relative; margin: 0; }
.gfe-menu a { position: relative; display: inline-flex; align-items: center; gap: 7px; padding: 12px 0; font-family: var(--gfe-sans); font-size: 13px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(244, 240, 235, .92); text-decoration: none; transition: color .3s var(--gfe-ease); }
.gfe-menu > li > a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 1.5px; background: var(--gfe-gold); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--gfe-ease-out); }
.gfe-menu > li > a:hover, .gfe-menu > li.current-menu-item > a, .gfe-menu > li.current-menu-ancestor > a { color: #fff; }
.gfe-menu > li > a:hover::after, .gfe-menu > li.current-menu-item > a::after, .gfe-menu > li.current-menu-ancestor > a::after { transform: scaleX(1); }
.gfe-caret { width: 6px; height: 6px; border-right: 1.2px solid currentColor; border-bottom: 1.2px solid currentColor; transform: rotate(45deg) translateY(-3px); margin-left: 3px; }
.gfe-menu .sub-menu { position: absolute; top: 100%; left: -26px; min-width: 290px; margin: 0; padding: 14px 0; list-style: none; background: rgba(83, 88, 68, .98); border-top: 1.5px solid var(--gfe-gold); box-shadow: 0 30px 50px -24px rgba(20, 22, 16, .7); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .35s var(--gfe-ease), transform .35s var(--gfe-ease), visibility .35s; }
.gfe-menu li:hover > .sub-menu, .gfe-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.gfe-menu .sub-menu a { display: block; padding: 10px 26px; font-family: var(--gfe-serif); font-size: 19px; letter-spacing: 0; text-transform: none; color: rgba(244, 240, 235, .9); }
.gfe-menu .sub-menu a:hover, .gfe-menu .sub-menu .current-menu-item > a { color: var(--gfe-gold-lt); padding-left: 32px; }
.gfe-menu .sub-menu a { transition: color .3s, padding .4s var(--gfe-ease); }
.gfe-header__actions { display: flex; align-items: center; gap: 12px; flex: none; margin-left: clamp(16px, 2.4vw, 42px); }
.gfe-header .gfe-button { min-height: 44px; padding: 0 26px; font-size: 12px; letter-spacing: .15em; }
.gfe-burger { display: none; position: relative; width: 44px; height: 44px; padding: 0; background: none; border: 1px solid rgba(244, 240, 235, .45); border-radius: 0; color: var(--gfe-paper); cursor: pointer; }
.gfe-burger span { position: absolute; left: 12px; right: 12px; height: 1.2px; background: currentColor; transition: transform .35s var(--gfe-ease), top .35s var(--gfe-ease); }
.gfe-burger span:nth-child(1) { top: 17px; }
.gfe-burger span:nth-child(2) { top: 25px; }
.gfe-burger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.gfe-burger[aria-expanded="true"] span:nth-child(2) { top: 21px; transform: rotate(-45deg); }
.gfe-drawer { position: fixed; inset: 0; z-index: 1; display: flex; flex-direction: column; padding: calc(var(--gfe-header-h) + var(--wp-admin--admin-bar--height, 0px) + 10px) var(--gfe-gutter) 30px; overflow-y: auto; background: radial-gradient(80% 50% at 80% 0%, rgba(138, 143, 114, .45), rgba(138, 143, 114, 0) 70%), linear-gradient(180deg, #62674F 0%, #535844 100%); color: var(--gfe-paper); opacity: 0; visibility: hidden; transition: opacity .45s var(--gfe-ease), visibility .45s; }
.gfe-drawer.is-open { opacity: 1; visibility: visible; }
body.gfe-drawer-open { overflow: hidden; }
body.gfe-drawer-open .gfe-header { background: transparent; box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }
.gfe-drawer .gfe-menu { flex-direction: column; align-items: stretch; gap: 0; }
.gfe-drawer .gfe-menu > li { border-bottom: 1px solid rgba(244, 240, 235, .14); display: flex; flex-wrap: wrap; align-items: center; opacity: 0; transform: translateY(12px); transition: opacity .5s var(--gfe-ease-out), transform .5s var(--gfe-ease-out); }
.gfe-drawer.is-open .gfe-menu > li { opacity: 1; transform: none; }
.gfe-drawer.is-open .gfe-menu > li:nth-child(2) { transition-delay: .05s; }
.gfe-drawer.is-open .gfe-menu > li:nth-child(3) { transition-delay: .1s; }
.gfe-drawer.is-open .gfe-menu > li:nth-child(4) { transition-delay: .15s; }
.gfe-drawer.is-open .gfe-menu > li:nth-child(5) { transition-delay: .2s; }
.gfe-drawer.is-open .gfe-menu > li:nth-child(6) { transition-delay: .25s; }
.gfe-drawer .gfe-menu > li > a { flex: 1; padding: 15px 0; font-family: var(--gfe-serif); font-size: 30px; letter-spacing: 0; text-transform: none; color: var(--gfe-paper); }
.gfe-drawer .gfe-menu > li > a::after, .gfe-drawer .gfe-caret { display: none; }
.gfe-drawer .gfe-menu .sub-menu { position: static; flex-basis: 100%; display: none; min-width: 0; padding: 0 0 14px; background: none; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
.gfe-drawer .gfe-menu li.is-open > .sub-menu { display: block; }
.gfe-drawer .gfe-menu .sub-menu a { padding: 9px 0 9px 2px; font-family: var(--gfe-sans); font-size: 16px; color: rgba(244, 240, 235, .82); }
.gfe-subtoggle { width: 44px; height: 44px; background: none; border: 0; color: var(--gfe-paper); cursor: pointer; position: relative; }
.gfe-subtoggle::before, .gfe-subtoggle::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 1.2px; background: currentColor; transform: translate(-50%, -50%); transition: transform .3s var(--gfe-ease); }
.gfe-subtoggle::after { transform: translate(-50%, -50%) rotate(90deg); }
li.is-open > .gfe-subtoggle::after { transform: translate(-50%, -50%) rotate(0deg); }
.gfe-drawer__foot { margin-top: auto; padding-top: 32px; display: grid; gap: 16px; font-size: 15px; color: rgba(244, 240, 235, .78); }
.gfe-drawer__foot a { color: var(--gfe-paper); text-decoration: none; }
.gfe-drawer__foot .gfe-button { width: 100%; }
@media (max-width: 1100px) { .gfe-nav { display: none; } .gfe-burger { display: inline-flex; } .gfe-header__actions { margin-left: auto; } }
@media (max-width: 560px) { .gfe-header .gfe-header__actions .gfe-button { display: none; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.gfe-footer { position: relative; isolation: isolate; padding: clamp(40px, 3.4vw, 50px) var(--gfe-gutter) 22px; background: linear-gradient(180deg, #555A45 0%, #515642 100%); color: rgba(244, 240, 235, .86); font-size: 14.5px; line-height: 1.7; border-top: 1px solid rgba(244, 240, 235, .08); }
.gfe-footer::after { content: ""; position: absolute; inset: 0; z-index: -1; background-image: var(--gfe-grain); opacity: .05; pointer-events: none; }
.gfe-footer__inner { max-width: var(--gfe-wrap); margin: 0 auto; }
.gfe-footer__top { display: grid; grid-template-columns: 1.55fr 1fr 1.15fr 1.55fr .5fr; gap: 32px; padding-bottom: clamp(30px, 2.8vw, 42px); border-bottom: 1px solid rgba(244, 240, 235, .14); align-items: start; }
.gfe-footer .gfe-logo img { width: clamp(150px, 12.4vw, 178px); }
.gfe-footer__title { margin: 2px 0 12px; font-family: var(--gfe-sans); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gfe-paper); }
.gfe-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.gfe-footer a { color: rgba(244, 240, 235, .86); text-decoration: none; transition: color .3s var(--gfe-ease); }
.gfe-footer a:hover { color: var(--gfe-gold-lt); }
.gfe-footer__svc a { color: rgba(244, 240, 235, .62); }
.gfe-footer .gfe-contact-list { margin-top: 0; gap: 10px; }
.gfe-footer .gfe-contact-list li { font-size: 14.5px; }
.gfe-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 30px; padding-top: 18px; font-size: 13px; color: rgba(244, 240, 235, .6); }
.gfe-footer a.gfe-button, .gfe-drawer__foot a.gfe-button { color: var(--gfe-paper); }

/* ==========================================================================
   RESPONSIVE: intentional tablet and phone compositions
   ========================================================================== */
@media (max-width: 1100px) {
	.e-con.gfe-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.e-con.gfe-findus > .e-con-inner { grid-template-columns: 1fr 1fr 1fr; row-gap: 34px; }
	.e-con.gfe-col--intro { grid-column: 1 / -1; padding-right: 0; }
	.e-con.gfe-col--div:nth-child(2) { border-left: 0; padding-left: 0; }
	.e-con.gfe-col--map { grid-column: 1 / -1; padding-left: 0; align-items: flex-start !important; }
	.gfe-col--map .gfe-map { max-width: 420px; }
	.gfe-findus .gfe-col--map .e-con.gfe-actions { justify-content: flex-start !important; }
	.gfe-footer__top { grid-template-columns: 1fr 1fr 1fr; }
	.gfe-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
	.e-con.gfe-hero { --padding-top: 0px; --padding-bottom: 46px; min-height: 0; justify-content: flex-start; background-image: linear-gradient(180deg, #62674F 0%, #5C614A 100%); }
	.e-con.gfe-hero > .e-con-inner { display: flex; flex-direction: column; }
	.e-con.gfe-hero__media { position: relative; width: calc(100% + 2 * var(--gfe-gutter)); margin: 0 calc(var(--gfe-gutter) * -1); height: auto; aspect-ratio: 1 / .92; -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent 100%); mask-image: linear-gradient(180deg, #000 60%, transparent 100%); }
	.gfe-hero__media img { object-position: 60% 15%; }
	.e-con.gfe-hero__copy { margin-top: -54px; width: 100%; }
	.gfe-hero .gfe-eyebrow { margin-bottom: 16px; }
	.gfe-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 16px; }
	.e-con.gfe-about { --padding-top: 0px; --padding-bottom: 50px; background-image: linear-gradient(180deg, #6D7258 0%, #62674F 100%); }
	.e-con.gfe-about > .e-con-inner { display: flex; flex-direction: column; }
	.e-con.gfe-about__media { position: relative; width: calc(100% + 2 * var(--gfe-gutter)); margin: 0 calc(var(--gfe-gutter) * -1); aspect-ratio: 1 / .78; -webkit-mask-image: linear-gradient(180deg, #000 58%, transparent 100%); mask-image: linear-gradient(180deg, #000 58%, transparent 100%); }
	.gfe-about__media img { object-position: 20% 20%; }
	.e-con.gfe-about__copy { margin: -40px 0 0; width: 100%; }
	.gfe-leaf { width: 120px; opacity: .55; bottom: -10px; }
	.e-con.gfe-carousel { padding: 0 52px; }
	.e-con.gfe-track { grid-auto-columns: 100%; }
	.e-con.gfe-review { border-left: 0; }
}
@media (max-width: 767px) {
	body { font-size: 15.5px; }
	.e-con.gfe-findus > .e-con-inner { grid-template-columns: 1fr 1fr; }
	.e-con.gfe-col--addr { grid-column: 1 / -1; border-left: 0; padding-left: 0; }
	.e-con.gfe-col--div:nth-child(3) { padding-right: 0; }
	.gfe-footer__top { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
	.gfe-footer__contact { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
	.e-con.gfe-cards { grid-template-columns: minmax(0, 1fr); gap: 18px; }
	.gfe-card .gfe-card__img img { aspect-ratio: 2.1 / 1; }
	.gfe-hero .e-con.gfe-actions { flex-direction: column; align-items: stretch; }
	.gfe-hero .e-con.gfe-actions > .elementor-widget, .gfe-hero .gfe-btn .elementor-button-wrapper, .gfe-hero .gfe-btn .elementor-button { width: 100%; display: flex; }
	.gfe-badges li { font-size: 13.5px; }
	.gfe-badges svg { width: 30px; height: 30px; }
	.e-con.gfe-carousel { padding: 0 46px; }
	.gfe-car-btn { width: 38px; height: 38px; margin-top: -19px; }
	.e-con.gfe-review { padding: 4px 6px; }
	.gfe-footer__social { grid-column: 1 / -1; }
}
@media (max-width: 420px) {
	.e-con.gfe-findus > .e-con-inner { grid-template-columns: 1fr; }
	.e-con.gfe-col--div { border-left: 0; padding-left: 0; padding-right: 0; }
}

/* Carousel nav overlay + Google mark */
.gfe-car-nav { position: absolute; inset: 0; z-index: 2; pointer-events: none; width: 100% !important; }
.gfe-car-nav .gfe-car-btn { pointer-events: auto; }
.e-con.gfe-track { flex: 1 1 auto; }
.gfe-sec .gfe-btn-g .elementor-button-text::after { content: 'G'; margin-left: 12px; color: var(--gfe-gold); font-weight: 600; letter-spacing: 0; font-size: 13px; }
.gfe-badges-w, .gfe-map-w { width: 100%; }

/* Full-bleed media anchors to the section, not the content wrapper */
.e-con.gfe-hero > .e-con-inner, .e-con.gfe-about > .e-con-inner { position: static; }
.gfe-badges-w { width: auto; }
@media (max-width: 900px) { .e-con.gfe-hero > .e-con-inner, .e-con.gfe-about > .e-con-inner { position: relative; } }

.e-con.gfe-col > .elementor-element, .e-con.gfe-stack > .elementor-element, .e-con.gfe-card > .elementor-element { flex-shrink: 0; }
@media (max-width: 600px) { .gfe-sec .gfe-hero .gfe-eyebrow .elementor-heading-title, .gfe-hero .gfe-eyebrow .elementor-heading-title { font-size: 11px; letter-spacing: .22em; } .gfe-step-img img { aspect-ratio: 1.75 / 1; } }

@media (min-width: 601px) and (max-width: 900px) { .e-con.gfe-hero__media { aspect-ratio: 16 / 11; } .e-con.gfe-about__media { aspect-ratio: 16 / 9.5; } .gfe-col--map .gfe-map { max-width: 360px; } }

/* QA fixes: focus ring, live map, heading wrap, touch targets */
.gfe-header a:focus-visible, .gfe-header button:focus-visible, .gfe-drawer a:focus-visible, .gfe-drawer button:focus-visible, .gfe-footer a:focus-visible, .gfe-sec a:focus-visible, .gfe-sec button:focus-visible, .gfe-sec iframe:focus-visible { outline: 2px solid #F4F0EB !important; outline-offset: 2px !important; box-shadow: 0 0 0 5px rgba(46, 49, 38, .85) !important; }
.gfe-map iframe { pointer-events: auto; transform: none; }
.gfe-map:hover iframe { transform: none; }
.gfe-nap { font-style: normal; margin: 0; }
.gfe-nap__name { font-weight: 500; color: var(--gfe-paper); }
.gfe-sec .gfe-hero-title .elementor-heading-title { text-wrap: balance; }
@media (max-width: 400px) { .gfe-sec .gfe-hero-title .elementor-heading-title { font-size: 38px; } }
@media (max-width: 767px) { .gfe-footer ul a { display: inline-block; padding: 4px 0; } .gfe-footer .gfe-contact-list li { min-height: 28px; align-items: center; } }

/* Phone/tablet: flex layout for the arrival strip so photos size from their width (fixes clipped step photos) */
@media (max-width: 767px) {
	.e-con.gfe-findus > .e-con-inner { display: flex; flex-direction: row; flex-wrap: wrap; row-gap: 34px; column-gap: 0; }
	.e-con.gfe-findus > .e-con-inner > .e-con.gfe-col { width: 50%; flex: 0 0 50%; }
	.e-con.gfe-findus > .e-con-inner > .e-con.gfe-col--intro, .e-con.gfe-findus > .e-con-inner > .e-con.gfe-col--addr, .e-con.gfe-findus > .e-con-inner > .e-con.gfe-col--map { width: 100%; flex-basis: 100%; }
}
@media (max-width: 420px) {
	.e-con.gfe-findus > .e-con-inner > .e-con.gfe-col { width: 100%; flex-basis: 100%; }
}

/* QA: explicit width so flex-column intrinsic sizing doesn't collapse arrival photos on mobile */
.e-con .gfe-step-img { width: 100%; }

/* ==========================================================================
   QA: WCAG AA contrast corrections (client-approved). Same colour family;
   only failing text colours and the sage glows directly behind text change.
   ========================================================================== */
:root {
	--gfe-champagne: #F2E7CD;     /* lighter champagne for small text on sage */
	--gfe-olive-gray: #4C503F;    /* deeper olive for small labels on cream */
	--gfe-sage-btn: #666B52;      /* slightly darker filled button */
}
/* Fully opaque cream text on sage */
.gfe-menu a,
.gfe-sec .gfe-hero-text.elementor-widget-text-editor,
.gfe-badges li,
.gfe-sec .gfe-about-text.elementor-widget-text-editor,
.gfe-sec .gfe-step-text.elementor-widget-text-editor,
.gfe-contact-list li,
.gfe-contact-note,
.gfe-footer__svc a,
.gfe-footer__bottom { color: var(--gfe-paper); }
.gfe-review--placeholder .gfe-review__text { opacity: 1; }
/* Lighter champagne for small labels on sage (gold rules/icons keep the original accent) */
.gfe-sec .gfe-eyebrow:not(.gfe-eyebrow--muted):not(.gfe-eyebrow--light) .elementor-heading-title,
.gfe-sec .gfe-step-title .elementor-heading-title,
.gfe-menu .sub-menu a:hover,
.gfe-menu .sub-menu .current-menu-item > a { color: var(--gfe-champagne); }
.gfe-drawer .gfe-menu .sub-menu a { color: var(--gfe-paper); }
.gfe-drawer .gfe-menu .sub-menu a:hover, .gfe-drawer .gfe-menu .sub-menu .current-menu-item > a { color: var(--gfe-champagne); }
/* Sage glows behind text toned down just enough for AA */
.e-con.gfe-hero::before { background: radial-gradient(closest-side, rgba(150, 155, 125, .07), rgba(150, 155, 125, 0)); }
.e-con.gfe-findus {
	background-image:
		radial-gradient(45% 110% at 62% 50%, rgba(130, 135, 106, .1), rgba(130, 135, 106, 0) 72%),
		linear-gradient(90deg, #5A6049 0%, #5F644C 45%, #61664E 70%, #5E634C 100%);
}
@media (min-width: 901px) {
	.e-con.gfe-hero {
		background-image:
			radial-gradient(60% 70% at 30% 18%, rgba(129, 134, 107, .1) 0%, rgba(129, 134, 107, 0) 65%),
			linear-gradient(180deg, #63684F 0%, #60654D 55%, #5A5F48 100%);
	}
	.e-con.gfe-about {
		background-color: #62674F;
		background-image:
			radial-gradient(50% 90% at 45% 0%, rgba(130, 135, 108, .1), rgba(130, 135, 108, 0) 70%),
			linear-gradient(180deg, #62674F 0%, #5F644C 60%, #5B604A 100%);
	}
}
@media (max-width: 900px) {
	/* photo fade now completes where the overlapping headline copy begins */
	.e-con.gfe-hero__media { -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent calc(100% - 54px)); mask-image: linear-gradient(180deg, #000 55%, transparent calc(100% - 54px)); }
	.e-con.gfe-about { background-image: linear-gradient(180deg, #62674F 0%, #5E634C 100%); }
	.e-con.gfe-about__media { -webkit-mask-image: linear-gradient(180deg, #000 52%, transparent calc(100% - 40px)); mask-image: linear-gradient(180deg, #000 52%, transparent calc(100% - 40px)); }
}

/* QA: 2x2 hero badge grid through 1279px so badges stay on sage, not over the photo (approved) */
@media (min-width: 901px) and (max-width: 1279px) { .gfe-badges { display: grid; grid-template-columns: repeat(2, max-content); gap: 18px clamp(22px, 3.4vw, 52px); } }

/* QA: soft sage halo directly behind the last hero badge text where it meets the photo's faded edge (AA legibility, desktop only) */
@media (min-width: 1280px) {
	.gfe-badges li:last-child span { position: relative; isolation: isolate; }
	.gfe-badges li:last-child span::before { content: ""; position: absolute; inset: -14px -30px; z-index: -1; background: radial-gradient(closest-side, rgba(90, 95, 72, .88) 72%, rgba(90, 95, 72, 0) 100%); pointer-events: none; }
}

/* ==========================================================================
   PROFESSIONAL SKINCARE (home-care retail teaser, links to /professional-skincare/)
   ========================================================================== */
.e-con.gfe-skin {
	--padding-top: clamp(56px, 5vw, 76px);
	--padding-bottom: clamp(56px, 5vw, 76px);
	background-color: #EBE8DE;
	background-image:
		radial-gradient(40% 70% at 74% 55%, rgba(150, 156, 124, .3) 0%, rgba(150, 156, 124, 0) 70%),
		radial-gradient(50% 80% at 24% 32%, rgba(248, 246, 240, .85) 0%, rgba(248, 246, 240, 0) 70%),
		linear-gradient(180deg, #E4E1D4 0%, #EEEBE2 50%, #E4E1D4 100%);
	border-bottom: 1px solid rgba(59, 63, 49, .07);
}
.e-con.gfe-skin > .e-con-inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center; gap: clamp(40px, 6vw, 96px); }
.e-con.gfe-skin__copy { max-width: 600px; }
.gfe-skin .gfe-eyebrow { margin-bottom: 14px; }
.gfe-sec .gfe-skin-title .elementor-heading-title { font-size: clamp(32px, 3.2vw, 46px); color: var(--gfe-ink); }
.gfe-skin-title.gfe-rule::after { margin-top: 22px; }
.gfe-sec .gfe-skin-text.elementor-widget-text-editor { margin-top: 22px; font-size: 15.5px; line-height: 1.75; color: #565A4B; max-width: 30em; }
.gfe-skin .e-con.gfe-actions { margin-top: 30px; padding: 0; }
.e-con.gfe-skin__media { position: relative; justify-self: center; width: 100%; max-width: 430px; padding: 0; }
.gfe-skin-visual-w { width: 100%; }
.gfe-skin-visual { position: relative; margin: 0; }
.gfe-still { display: block; width: 100%; height: auto; overflow: visible; }
.gfe-skin-chip { position: absolute; left: -18px; bottom: 30px; display: flex; align-items: center; gap: 10px; padding: 12px 18px 12px 14px; background: rgba(244, 240, 235, .97); color: var(--gfe-ink); font-family: var(--gfe-sans); font-size: 11.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; line-height: 1.3; white-space: nowrap; box-shadow: 0 18px 36px -24px rgba(46, 49, 38, .75); }
.gfe-skin-chip svg { flex: none; width: 24px; height: 24px; color: #8C6F3D; }
.gfe-still__line, .gfe-still__leaf path { stroke-dasharray: 1; stroke-dashoffset: 0; }
.gfe-still__obj { transform-box: fill-box; }
/* motion: vessels rise in sequence, hairlines draw (reveal only; static without JS / with reduced motion) */
.gfe-js .gfe-skin .gfe-still__obj { opacity: 0; transform: translate3d(0, 26px, 0); transition: opacity .9s var(--gfe-ease-out), transform 1.2s var(--gfe-ease-out); }
.gfe-js .gfe-skin .gfe-still__obj--2 { transition-delay: .14s; }
.gfe-js .gfe-skin .gfe-still__obj--3 { transition-delay: .28s; }
.gfe-js .gfe-skin.is-in .gfe-still__obj { opacity: 1; transform: none; }
.gfe-js .gfe-skin .gfe-still__line, .gfe-js .gfe-skin .gfe-still__leaf path { stroke-dashoffset: 1; transition: stroke-dashoffset 2.6s var(--gfe-ease) .3s; }
.gfe-js .gfe-skin.is-in .gfe-still__line, .gfe-js .gfe-skin.is-in .gfe-still__leaf path { stroke-dashoffset: 0; }
.gfe-js .gfe-skin .gfe-skin-chip { opacity: 0; transform: translate3d(-14px, 0, 0); transition: opacity .9s var(--gfe-ease-out) .5s, transform 1s var(--gfe-ease-out) .5s; }
.gfe-js .gfe-skin.is-in .gfe-skin-chip { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.gfe-js .gfe-skin .gfe-still__obj { opacity: 1; transform: none; }
	.gfe-js .gfe-skin .gfe-skin-chip { opacity: 1; }
	.gfe-js .gfe-skin .gfe-still__line, .gfe-js .gfe-skin .gfe-still__leaf path { stroke-dashoffset: 0; }
}
@media (max-width: 900px) {
	.e-con.gfe-skin > .e-con-inner { grid-template-columns: minmax(0, 1fr); gap: 40px; }
	.e-con.gfe-skin__media { order: -1; max-width: 360px; }
	.gfe-skin-chip { left: -10px; bottom: 22px; }
}
@media (max-width: 600px) {
	.e-con.gfe-skin__media { max-width: 300px; }
	.gfe-skin-chip { left: 50%; bottom: 14px; transform: translateX(-50%); padding: 10px 14px 10px 12px; font-size: 11px; letter-spacing: .12em; }
	.gfe-js .gfe-skin .gfe-skin-chip { transform: translate3d(-50%, 10px, 0); }
	.gfe-js .gfe-skin.is-in .gfe-skin-chip { transform: translateX(-50%); }
	.gfe-skin .gfe-btn-skin .elementor-button { white-space: normal; text-align: center; line-height: 1.4; padding: 14px 24px; }
}
.gfe-sec .gfe-skin-title .elementor-heading-title { text-wrap: pretty; }
@media (min-width: 901px) and (max-width: 1100px) { .e-con.gfe-skin > .e-con-inner { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); } }

/* ==========================================================================
   MEET KATHERINNE - authentic portrait: per-breakpoint framing + feathered
   blend into the sage band. Presentation only; the source file is untouched.
   ========================================================================== */
@media (min-width: 901px) {
	.gfe-about__media img { object-position: 30% 32%; }
	.e-con.gfe-about__media {
		-webkit-mask-image: linear-gradient(90deg, #000 70%, transparent 100%);
		mask-image: linear-gradient(90deg, #000 70%, transparent 100%);
	}
}
@media (min-width: 601px) and (max-width: 900px) {
	.gfe-about__media img { object-position: 50% 54%; }
	.e-con.gfe-about__media {
		-webkit-mask-image: linear-gradient(180deg, #000 62%, transparent calc(100% - 40px));
		mask-image: linear-gradient(180deg, #000 62%, transparent calc(100% - 40px));
	}
}
@media (max-width: 600px) {
	.gfe-about__media img { object-position: 50% 44%; }
	.e-con.gfe-about__media {
		-webkit-mask-image: linear-gradient(180deg, #000 70%, transparent calc(100% - 40px));
		mask-image: linear-gradient(180deg, #000 70%, transparent calc(100% - 40px));
	}
}

/* ==========================================================================
   FIND US - rebalanced for a single arrival photograph (road photo removed).
   Four columns: intro | 01 At the Entrance | 02 Address & Call | map.
   ========================================================================== */
@media (min-width: 1101px) {
	.e-con.gfe-findus > .e-con-inner { grid-template-columns: 1.45fr 1.12fr .96fr 1.18fr; }
}
@media (min-width: 768px) and (max-width: 1100px) {
	.e-con.gfe-findus > .e-con-inner { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.e-con.gfe-col--map {
		grid-column: auto;
		padding-left: clamp(14px, 1.5vw, 22px);
		padding-right: 0;
		border-left: 1px solid rgba(244, 240, 235, .16);
	}
	.gfe-col--map .gfe-map { max-width: none; }
}
@media (max-width: 767px) {
	.e-con.gfe-findus > .e-con-inner > .e-con.gfe-col,
	.e-con.gfe-findus > .e-con-inner > .e-con.gfe-col--div {
		width: 100%;
		flex-basis: 100%;
	}
	.gfe-col--map .gfe-map { max-width: none; }
}
