/*
Theme Name: Green Heaven Farms
Theme URI: https://greenheavenfarms.com
Author: Al Abbas Group
Author URI: https://greenheavenfarms.com
Description: A bespoke, British-Victorian-inspired WordPress theme created for Green Heaven Farms — a premium gated farmhouse community by Al Abbas Group. Features an elegant Playfair Display / Cormorant Garamond / EB Garamond type system, ornamental fleuron dividers, hand-framed imagery, an animated one-page brochure layout, a working AJAX enquiry form, WhatsApp integration and a fully editable Customizer panel for contact details, map coordinates and the downloadable brochure.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: green-heaven-farms
Tags: custom-menu, custom-logo, featured-images, translation-ready, one-column, real-estate, luxury

Green Heaven Farms WordPress Theme, Copyright 2026
This theme is distributed under the terms of the GNU GPL.
*/

/* ==========================================================================
   1. CSS Custom Properties (Design Tokens)
   ========================================================================== */
:root {
	/* Palette — deep Victorian forest green + antique gold, lifted from the
	   Green Heaven Farms crest, warmed with parchment cream and a hint of
	   burgundy for accents. */
	--ghf-forest: #1b3324;
	--ghf-forest-dark: #0e1d14;
	--ghf-forest-mid: #24422e;
	--ghf-forest-light: #3c5c47;
	--ghf-gold: #b8924f;
	--ghf-gold-light: #ddc07f;
	--ghf-gold-dark: #8c6c34;
	--ghf-cream: #f7f2e6;
	--ghf-cream-dark: #efe6d1;
	--ghf-ivory: #fffcf5;
	--ghf-charcoal: #26221b;
	--ghf-burgundy: #6d2632;
	--ghf-white: #ffffff;

	--font-display: 'Playfair Display', 'Times New Roman', serif;
	--font-script: 'Cormorant Garamond', 'Playfair Display', serif;
	--font-body: 'EB Garamond', Georgia, 'Times New Roman', serif;

	--ghf-container: 1260px;
	--ghf-container-narrow: 820px;
	--ghf-radius: 2px;
	--ghf-shadow-soft: 0 10px 40px rgba(14, 29, 20, 0.12);
	--ghf-shadow-strong: 0 20px 60px rgba(14, 29, 20, 0.25);
	--ghf-transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   2. Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 18px;
	line-height: 1.75;
	color: var(--ghf-charcoal);
	background: var(--ghf-ivory);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	color: var(--ghf-forest);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 0.6em;
}

p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.ghf-skip-link {
	position: fixed;
	top: -60px; left: 10px;
	background: var(--ghf-forest);
	color: var(--ghf-ivory);
	padding: 12px 20px;
	z-index: 10000;
	transition: top 0.2s ease;
}
.ghf-skip-link:focus { top: 10px; width: auto; height: auto; clip: auto; }

.ghf-container {
	max-width: var(--ghf-container);
	margin: 0 auto;
	padding: 0 28px;
}
.ghf-container-narrow { max-width: var(--ghf-container-narrow); }

/* ==========================================================================
   3. Typography helpers
   ========================================================================== */
.ghf-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-family: var(--font-body);
	font-size: 0.82rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--ghf-gold-dark);
	font-weight: 600;
	margin-bottom: 18px;
}
.ghf-eyebrow-light { color: var(--ghf-gold-light); }
.ghf-eyebrow-line {
	display: inline-block;
	width: 36px;
	height: 1px;
	background: currentColor;
	opacity: 0.7;
}

.ghf-heading {
	font-size: clamp(1.9rem, 3.2vw, 2.85rem);
	color: var(--ghf-forest);
}
.ghf-heading-light { color: var(--ghf-ivory); }

.ghf-subheading {
	max-width: 720px;
	color: #55503f;
	font-size: 1.1rem;
}

.ghf-section-heading { margin-bottom: 56px; }
.ghf-align-center { text-align: center; margin-left: auto; margin-right: auto; }
.ghf-align-center .ghf-subheading { margin-left: auto; margin-right: auto; }
.ghf-align-left { text-align: left; }

.ghf-fleuron {
	width: 200px;
	height: 24px;
	margin-top: 22px;
	color: var(--ghf-gold);
}
.ghf-align-center .ghf-fleuron { margin-left: auto; margin-right: auto; }
.ghf-fleuron svg { width: 100%; height: 100%; }

/* ==========================================================================
   4. Buttons
   ========================================================================== */
.ghf-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 34px;
	font-family: var(--font-body);
	font-size: 0.92rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 600;
	border: 1px solid transparent;
	border-radius: var(--ghf-radius);
	cursor: pointer;
	transition: all var(--ghf-transition);
	white-space: nowrap;
}

.ghf-btn-gold {
	background: linear-gradient(180deg, var(--ghf-gold-light), var(--ghf-gold) 60%, var(--ghf-gold-dark));
	color: var(--ghf-forest-dark);
	box-shadow: 0 8px 24px rgba(140, 108, 52, 0.35), inset 0 0 0 1px rgba(255,255,255,0.35);
}
.ghf-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(140, 108, 52, 0.45); }

.ghf-btn-outline-light {
	border-color: rgba(247, 242, 230, 0.6);
	color: var(--ghf-ivory);
	background: rgba(255,255,255,0.04);
}
.ghf-btn-outline-light:hover { background: rgba(255,255,255,0.14); border-color: var(--ghf-ivory); }

.ghf-btn-outline-gold {
	border-color: var(--ghf-gold);
	color: var(--ghf-gold-dark);
	background: transparent;
}
.ghf-btn-outline-gold:hover { background: var(--ghf-gold); color: var(--ghf-forest-dark); }

.ghf-btn-ghost {
	color: var(--ghf-forest);
	border-color: var(--ghf-forest);
	background: transparent;
	padding: 15px 26px;
}
.ghf-btn-ghost:hover { background: var(--ghf-forest); color: var(--ghf-ivory); }

.ghf-btn-text-light {
	color: var(--ghf-ivory);
	text-decoration: underline;
	text-underline-offset: 6px;
	text-decoration-color: rgba(247,242,230,0.5);
	padding: 15px 6px;
}
.ghf-btn-text-light:hover { text-decoration-color: var(--ghf-gold-light); color: var(--ghf-gold-light); }

.ghf-btn-whatsapp {
	background: #1f7a4d;
	color: #fff;
	width: 100%;
	margin: 22px 0;
	box-shadow: 0 10px 24px rgba(31,122,77,0.3);
}
.ghf-btn-whatsapp:hover { background: #185f3c; transform: translateY(-2px); }
.ghf-btn-whatsapp svg { width: 20px; height: 20px; }

.ghf-btn-block { width: 100%; }
.ghf-btn-small { padding: 11px 22px; font-size: 0.78rem; }

/* ==========================================================================
   5. Ornamental frames
   ========================================================================== */
.ghf-ornate-frame {
	position: relative;
	padding: 12px;
	background: var(--ghf-ivory);
	box-shadow: var(--ghf-shadow-soft);
	border: 1px solid var(--ghf-gold);
}
.ghf-ornate-frame::before {
	content: "";
	position: absolute;
	inset: 5px;
	border: 1px solid var(--ghf-forest);
	pointer-events: none;
	z-index: 2;
}
.ghf-ornate-frame img {
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ghf-ornate-frame-portrait { max-width: 380px; margin: 0 auto; }

.ghf-media-caption {
	text-align: center;
	font-family: var(--font-script);
	font-style: italic;
	color: var(--ghf-gold-dark);
	margin-top: 16px;
	font-size: 1.1rem;
}

/* ==========================================================================
   6. Preloader
   ========================================================================== */
#ghf-preloader {
	position: fixed;
	inset: 0;
	z-index: 100000;
	background: var(--ghf-forest-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.6s ease, visibility 0.6s ease;
}
#ghf-preloader.ghf-loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.ghf-preloader-mark img {
	width: 96px;
	animation: ghf-pulse 1.6s ease-in-out infinite;
	filter: drop-shadow(0 0 18px rgba(184,146,79,0.45));
}
@keyframes ghf-pulse {
	0%, 100% { transform: scale(1); opacity: 0.85; }
	50% { transform: scale(1.08); opacity: 1; }
}

/* ==========================================================================
   7. Top bar
   ========================================================================== */
.ghf-topbar {
	background: var(--ghf-forest-dark);
	color: var(--ghf-cream-dark);
	font-size: 0.82rem;
	letter-spacing: 0.03em;
	position: relative;
	z-index: 500;
}
.ghf-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 9px 28px;
	gap: 20px;
	flex-wrap: wrap;
}
.ghf-topbar-info { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.ghf-topbar-info a, .ghf-topbar-address { display: inline-flex; align-items: center; gap: 7px; color: var(--ghf-cream-dark); }
.ghf-topbar-info a:hover { color: var(--ghf-gold-light); }
.ghf-topbar-icon { color: var(--ghf-gold); }
.ghf-topbar-social { display: flex; align-items: center; gap: 14px; }
.ghf-social-icon { width: 16px; height: 16px; color: var(--ghf-cream-dark); transition: color var(--ghf-transition); }
.ghf-social-icon:hover { color: var(--ghf-gold-light); }
.ghf-social-icon svg { width: 100%; height: 100%; }
.ghf-topbar-whatsapp { display: inline-flex; align-items: center; gap: 6px; color: var(--ghf-cream-dark); }
.ghf-topbar-whatsapp svg { width: 15px; height: 15px; color: #4fce8f; }
.ghf-topbar-whatsapp:hover { color: var(--ghf-gold-light); }

/* ==========================================================================
   8. Header / Navigation
   ========================================================================== */
.ghf-header {
	position: sticky;
	top: 0;
	z-index: 900;
	background: var(--ghf-forest);
	border-bottom: 3px solid var(--ghf-gold);
	box-shadow: 0 6px 24px rgba(0,0,0,0.18);
	transition: padding var(--ghf-transition);
}
.ghf-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 28px;
}
.ghf-branding img,
.custom-logo { max-height: 68px; width: auto; transition: max-height var(--ghf-transition); }
.ghf-logo-link { display: inline-block; }

.ghf-primary-nav { flex: 1; display: flex; justify-content: center; }
.ghf-menu { display: flex; align-items: center; gap: 34px; }
.ghf-menu > li > a {
	color: var(--ghf-cream);
	font-family: var(--font-body);
	font-size: 0.92rem;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	font-weight: 600;
	position: relative;
	padding: 6px 0;
}
.ghf-menu > li > a::after {
	content: "";
	position: absolute;
	left: 0; bottom: -2px;
	width: 0; height: 1px;
	background: var(--ghf-gold);
	transition: width var(--ghf-transition);
}
.ghf-menu > li > a:hover { color: var(--ghf-gold-light); }
.ghf-menu > li > a:hover::after { width: 100%; }

.ghf-header-cta { display: flex; align-items: center; gap: 12px; }
.ghf-header-cta .ghf-btn { padding: 12px 22px; font-size: 0.78rem; }
.ghf-header-cta .ghf-btn-ghost { color: var(--ghf-cream); border-color: rgba(247,242,230,0.5); }
.ghf-header-cta .ghf-btn-ghost:hover { background: var(--ghf-cream); color: var(--ghf-forest); }

.ghf-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	width: 42px;
	height: 42px;
	background: transparent;
	border: 1px solid rgba(247,242,230,0.4);
	border-radius: 2px;
}
.ghf-menu-toggle span {
	display: block;
	width: 20px;
	height: 1px;
	background: var(--ghf-cream);
	margin: 0 auto;
	transition: all var(--ghf-transition);
}
.ghf-menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ghf-menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.ghf-menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.ghf-header.is-scrolled .ghf-header-inner { padding-top: 8px; padding-bottom: 8px; }
.ghf-header.is-scrolled .ghf-branding img,
.ghf-header.is-scrolled .custom-logo { max-height: 50px; }

/* ==========================================================================
   9. Hero
   ========================================================================== */
.ghf-hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-attachment: scroll;
	overflow: hidden;
}
.ghf-hero-overlay {
	position: absolute; inset: 0;
	background:
		linear-gradient(180deg, rgba(14,29,20,0.55) 0%, rgba(14,29,20,0.45) 40%, rgba(14,29,20,0.85) 100%);
}
.ghf-hero-frame {
	position: absolute;
	inset: 22px;
	border: 1px solid rgba(221,192,127,0.55);
	pointer-events: none;
	z-index: 2;
}
.ghf-hero-frame::before,
.ghf-hero-frame::after { content: ""; position: absolute; width: 34px; height: 34px; border: 2px solid var(--ghf-gold-light); }
.ghf-hero-frame::before { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.ghf-hero-frame::after { bottom: -2px; right: -2px; border-left: none; border-top: none; }

.ghf-hero-inner { position: relative; z-index: 3; width: 100%; padding-top: 60px; padding-bottom: 60px; }
.ghf-hero-content { max-width: 880px; margin: 0 auto; text-align: center; }

.ghf-hero-title {
	color: var(--ghf-ivory);
	font-size: clamp(2.6rem, 7vw, 5.4rem);
	text-transform: uppercase;
	letter-spacing: 0.03em;
	text-shadow: 0 6px 30px rgba(0,0,0,0.35);
	margin-bottom: 0.15em;
}
.ghf-hero-script {
	font-family: var(--font-script);
	font-style: italic;
	font-weight: 600;
	color: var(--ghf-gold-light);
	font-size: clamp(1.5rem, 3vw, 2.4rem);
	margin-bottom: 0.5em;
}
.ghf-hero-tagline {
	color: var(--ghf-gold);
	text-transform: uppercase;
	letter-spacing: 0.22em;
	font-weight: 700;
	font-size: 1rem;
	margin-bottom: 0.5em;
}
.ghf-hero-motto {
	color: var(--ghf-cream);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-size: 0.85rem;
	margin-bottom: 2.2em;
}
.ghf-hero-motto span { color: var(--ghf-gold); margin: 0 10px; }

.ghf-hero-actions { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; margin-bottom: 3.2em; }

.ghf-hero-stats {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 34px;
	flex-wrap: wrap;
	padding-top: 2.2em;
	border-top: 1px solid rgba(221,192,127,0.3);
	max-width: 760px;
	margin: 0 auto;
}
.ghf-hero-stat { text-align: center; }
.ghf-hero-stat-num, .ghf-hero-stat-unit {
	font-family: var(--font-display);
	color: var(--ghf-ivory);
	font-size: 2.1rem;
	font-weight: 800;
}
.ghf-hero-stat-unit { font-size: 1.1rem; margin-left: 3px; color: var(--ghf-gold-light); }
.ghf-hero-stat-text { font-size: 1.5rem; }
.ghf-hero-stat-label {
	display: block;
	color: var(--ghf-cream);
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-top: 4px;
	max-width: 160px;
}
.ghf-hero-stat-divider { width: 1px; height: 40px; background: rgba(221,192,127,0.35); }

.ghf-scroll-down {
	position: absolute;
	bottom: 34px; left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	width: 26px; height: 46px;
	border: 1px solid var(--ghf-gold-light);
	border-radius: 20px;
	display: flex;
	justify-content: center;
	padding-top: 8px;
}
.ghf-scroll-down span {
	width: 4px; height: 4px;
	border-radius: 50%;
	background: var(--ghf-gold-light);
	animation: ghf-scroll-dot 1.8s ease-in-out infinite;
}
@keyframes ghf-scroll-dot {
	0% { transform: translateY(0); opacity: 1; }
	70% { transform: translateY(16px); opacity: 0; }
	100% { transform: translateY(16px); opacity: 0; }
}

/* ==========================================================================
   10. Sections — general
   ========================================================================== */
.ghf-section { padding: 110px 0; position: relative; }
.ghf-section-alt { background: var(--ghf-cream); }

@media (max-width: 767px) {
	.ghf-section { padding: 72px 0; }
}

/* ==========================================================================
   11. About
   ========================================================================== */
.ghf-about { padding: 110px 0; }
.ghf-about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: center; }
.ghf-about-text p { color: #4a4536; font-size: 1.08rem; }

.ghf-stat-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 42px;
	padding-top: 32px;
	border-top: 1px solid var(--ghf-cream-dark);
}
.ghf-stat-item { text-align: center; padding: 0 6px; border-left: 1px solid var(--ghf-cream-dark); }
.ghf-stat-item:first-child { border-left: none; }
.ghf-stat-num, .ghf-stat-num-text {
	display: block;
	font-family: var(--font-display);
	font-size: 2.1rem;
	font-weight: 800;
	color: var(--ghf-forest);
}
.ghf-stat-num-text { color: var(--ghf-gold-dark); font-size: 1.7rem; }
.ghf-stat-label {
	display: block;
	font-size: 0.72rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #7a7460;
	margin-top: 6px;
}

/* ==========================================================================
   12. Location
   ========================================================================== */
.ghf-location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

.ghf-numbered-list { position: relative; margin-bottom: 34px; }
.ghf-numbered-list li { display: flex; gap: 20px; position: relative; padding-bottom: 28px; }
.ghf-numbered-list li::before {
	content: "";
	position: absolute;
	left: 19px; top: 42px; bottom: 0;
	width: 1px;
	background: var(--ghf-cream-dark);
}
.ghf-numbered-list li:last-child::before { display: none; }
.ghf-num-badge {
	flex-shrink: 0;
	width: 40px; height: 40px;
	border: 1px solid var(--ghf-gold);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-family: var(--font-display);
	color: var(--ghf-gold-dark);
	font-weight: 700;
	background: var(--ghf-ivory);
	position: relative;
	z-index: 1;
}
.ghf-numbered-list h4 { margin-bottom: 4px; font-size: 1.12rem; color: var(--ghf-forest); }
.ghf-numbered-list p { color: #5c5748; font-size: 0.98rem; margin: 0; }

.ghf-location-media .ghf-ornate-frame { margin-bottom: 24px; }
.ghf-map-embed { border: 1px solid var(--ghf-gold); padding: 8px; background: var(--ghf-ivory); box-shadow: var(--ghf-shadow-soft); }
.ghf-map-embed iframe { width: 100%; height: 320px; border: 0; filter: sepia(8%) saturate(92%); display: block; }
.ghf-map-embed-contact { margin-top: 26px; }
.ghf-map-embed-contact iframe { height: 240px; }

/* ==========================================================================
   13. Master plan
   ========================================================================== */
.ghf-masterplan-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.ghf-masterplan-list { display: flex; flex-direction: column; gap: 22px; }
.ghf-zone-card {
	display: flex;
	gap: 18px;
	padding: 20px 22px;
	background: var(--ghf-ivory);
	border-left: 3px solid var(--ghf-gold);
	box-shadow: var(--ghf-shadow-soft);
	transition: transform var(--ghf-transition);
}
.ghf-zone-card:hover { transform: translateX(6px); }
.ghf-zone-icon { color: var(--ghf-gold); font-size: 1rem; flex-shrink: 0; margin-top: 3px; }
.ghf-zone-card h4 { font-size: 1.08rem; margin-bottom: 4px; }
.ghf-zone-card p { margin: 0; color: #5c5748; font-size: 0.96rem; }

/* ==========================================================================
   14. Amenities
   ========================================================================== */
.ghf-amenities-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
	margin-bottom: 56px;
}
.ghf-amenity-card {
	background: var(--ghf-ivory);
	border: 1px solid var(--ghf-cream-dark);
	padding: 40px 24px;
	text-align: center;
	transition: all var(--ghf-transition);
	position: relative;
}
.ghf-amenity-card:hover { border-color: var(--ghf-gold); transform: translateY(-6px); box-shadow: var(--ghf-shadow-soft); }
.ghf-amenity-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 74px; height: 74px;
	border-radius: 50%;
	border: 1px solid var(--ghf-gold);
	color: var(--ghf-gold-dark);
	margin-bottom: 20px;
	position: relative;
}
.ghf-amenity-icon::before {
	content: "";
	position: absolute;
	inset: 7px;
	border: 1px solid var(--ghf-cream-dark);
	border-radius: 50%;
}
.ghf-amenity-icon svg { width: 32px; height: 32px; position: relative; z-index: 1; }
.ghf-amenity-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.ghf-amenity-card p { font-size: 0.92rem; color: #6b6553; margin: 0; }

.ghf-amenities-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.ghf-amenities-photos img { aspect-ratio: 16/10; object-fit: cover; }

/* ==========================================================================
   15. Development approach (bg image section)
   ========================================================================== */
.ghf-development {
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
}
.ghf-development-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,29,20,0.9), rgba(27,51,36,0.86)); }
.ghf-development .ghf-container { position: relative; z-index: 1; }
.ghf-development .ghf-eyebrow { color: var(--ghf-gold-light); }
.ghf-development .ghf-heading, .ghf-development .ghf-subheading { color: var(--ghf-ivory); }
.ghf-development .ghf-subheading { color: rgba(247,242,230,0.78); max-width: 780px; }

.ghf-steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 20px; }
.ghf-step-item { border-top: 2px solid var(--ghf-gold); padding-top: 22px; }
.ghf-step-num { font-family: var(--font-display); font-size: 2.2rem; color: var(--ghf-gold-light); font-weight: 800; display: block; margin-bottom: 10px; }
.ghf-step-item h4 { color: var(--ghf-ivory); font-size: 1.08rem; margin-bottom: 8px; }
.ghf-step-item p { color: rgba(247,242,230,0.72); font-size: 0.94rem; margin: 0; }

@media (max-width: 767px) {
	.ghf-development { background-attachment: scroll; }
}

/* ==========================================================================
   16. Grand entrance feature
   ========================================================================== */
.ghf-entrance {
	position: relative;
	min-height: 72vh;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
.ghf-entrance-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,29,20,0.82) 0%, rgba(14,29,20,0.4) 60%, rgba(14,29,20,0.15) 100%); }
.ghf-entrance .ghf-container { position: relative; z-index: 1; }
.ghf-entrance-content { max-width: 560px; }
.ghf-entrance-content p { color: rgba(247,242,230,0.86); font-size: 1.08rem; }

@media (max-width: 767px) {
	.ghf-entrance { background-attachment: scroll; }
	.ghf-entrance-overlay { background: linear-gradient(180deg, rgba(14,29,20,0.55), rgba(14,29,20,0.88)); }
}

/* ==========================================================================
   17. Gallery + Lightbox
   ========================================================================== */
.ghf-gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 220px;
	gap: 14px;
}
.ghf-gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.ghf-gallery-item:nth-child(6) { grid-column: span 2; }

.ghf-gallery-item { position: relative; display: block; overflow: hidden; }
.ghf-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.ghf-gallery-item:hover img { transform: scale(1.08); }
.ghf-gallery-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(14,29,20,0) 40%, rgba(14,29,20,0.85) 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding: 18px;
	opacity: 0;
	transition: opacity var(--ghf-transition);
	text-align: center;
}
.ghf-gallery-item:hover .ghf-gallery-overlay { opacity: 1; }
.ghf-gallery-plus {
	position: absolute; top: 50%; left: 50%;
	transform: translate(-50%,-50%);
	width: 44px; height: 44px;
	border: 1px solid var(--ghf-gold-light);
	border-radius: 50%;
	color: var(--ghf-gold-light);
	display: flex; align-items: center; justify-content: center;
	font-size: 1.4rem;
}
.ghf-gallery-caption { color: var(--ghf-cream); font-size: 0.85rem; letter-spacing: 0.04em; }

.ghf-lightbox {
	position: fixed; inset: 0;
	background: rgba(9,17,12,0.94);
	z-index: 10001;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 40px;
}
.ghf-lightbox.is-open { display: flex; }
.ghf-lightbox figure { max-width: 1100px; max-height: 84vh; margin: 0; text-align: center; }
.ghf-lightbox img { max-height: 74vh; width: auto; margin: 0 auto; border: 1px solid var(--ghf-gold); }
.ghf-lightbox figcaption { color: var(--ghf-cream); font-family: var(--font-script); font-style: italic; font-size: 1.2rem; margin-top: 18px; }
.ghf-lightbox-close, .ghf-lightbox-prev, .ghf-lightbox-next {
	position: absolute;
	background: transparent;
	border: 1px solid rgba(221,192,127,0.5);
	color: var(--ghf-gold-light);
	border-radius: 50%;
	width: 46px; height: 46px;
	display: flex; align-items: center; justify-content: center;
	font-size: 1.4rem;
	transition: all var(--ghf-transition);
}
.ghf-lightbox-close:hover, .ghf-lightbox-prev:hover, .ghf-lightbox-next:hover { background: var(--ghf-gold); color: var(--ghf-forest-dark); }
.ghf-lightbox-close { top: 26px; right: 26px; }
.ghf-lightbox-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.ghf-lightbox-next { right: 26px; top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   18. Leadership
   ========================================================================== */
.ghf-leadership-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 70px; align-items: center; }
.ghf-leadership-name { font-size: 1.7rem; margin-bottom: 2px; }
.ghf-leadership-title { color: var(--ghf-gold-dark); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.82rem; font-weight: 700; margin-bottom: 20px; }
.ghf-leadership-text p { color: #4a4536; }
.ghf-leadership-quote {
	margin: 26px 0 0;
	padding: 22px 28px;
	border-left: 3px solid var(--ghf-gold);
	background: var(--ghf-cream);
	font-family: var(--font-script);
	font-style: italic;
	font-size: 1.3rem;
	color: var(--ghf-forest);
	line-height: 1.5;
}

/* ==========================================================================
   19. CTA banner
   ========================================================================== */
.ghf-cta {
	position: relative;
	padding: 130px 0;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	text-align: center;
}
.ghf-cta-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,29,20,0.72), rgba(14,29,20,0.86)); }
.ghf-cta .ghf-container { position: relative; z-index: 1; }
.ghf-cta-content { max-width: 700px; margin: 0 auto; }
.ghf-cta-title { color: var(--ghf-ivory); font-size: clamp(2rem, 4.4vw, 3.4rem); margin-bottom: 40px; }
.ghf-cta-title em { color: var(--ghf-gold-light); font-family: var(--font-script); font-style: italic; }
.ghf-cta-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 767px) {
	.ghf-cta { background-attachment: scroll; padding: 90px 0; }
}

/* ==========================================================================
   20. Contact
   ========================================================================== */
.ghf-contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: start; }
.ghf-contact-card { display: flex; gap: 16px; margin-bottom: 22px; }
.ghf-contact-icon {
	flex-shrink: 0;
	width: 44px; height: 44px;
	border: 1px solid var(--ghf-gold);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	color: var(--ghf-gold-dark);
}
.ghf-contact-card h4 { font-size: 1rem; margin-bottom: 3px; }
.ghf-contact-card p, .ghf-contact-card a { margin: 0; color: #55503f; }
.ghf-contact-card a:hover { color: var(--ghf-gold-dark); }

.ghf-contact-form-wrap {
	background: var(--ghf-cream);
	border: 1px solid var(--ghf-gold);
	padding: 46px;
	position: relative;
}
.ghf-contact-form-wrap::before { content: ""; position: absolute; inset: 8px; border: 1px solid var(--ghf-cream-dark); pointer-events: none; }
.ghf-form-row { margin-bottom: 20px; position: relative; z-index: 1; }
.ghf-form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ghf-form-row label {
	display: block;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ghf-forest);
	margin-bottom: 8px;
	font-weight: 600;
}
.ghf-form-row input,
.ghf-form-row select,
.ghf-form-row textarea {
	width: 100%;
	padding: 13px 16px;
	background: var(--ghf-ivory);
	border: 1px solid var(--ghf-cream-dark);
	border-radius: 1px;
	color: var(--ghf-charcoal);
	transition: border-color var(--ghf-transition), box-shadow var(--ghf-transition);
}
.ghf-form-row input:focus,
.ghf-form-row select:focus,
.ghf-form-row textarea:focus {
	outline: none;
	border-color: var(--ghf-gold);
	box-shadow: 0 0 0 3px rgba(184,146,79,0.18);
}
.ghf-form-honeypot { position: absolute; left: -9999px; top: -9999px; }
.ghf-form-response { margin-top: 16px; font-size: 0.92rem; min-height: 1.4em; }
.ghf-form-response.is-success { color: #276b3f; }
.ghf-form-response.is-error { color: #a13232; }

/* ==========================================================================
   21. Footer
   ========================================================================== */
.ghf-footer { background: var(--ghf-forest-dark); color: var(--ghf-cream-dark); padding-top: 90px; position: relative; }
.ghf-footer-crest { display: flex; justify-content: center; width: 140px; margin: 0 auto 50px; color: var(--ghf-gold); }
.ghf-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
	gap: 50px;
	padding-bottom: 60px;
	border-bottom: 1px solid rgba(247,242,230,0.1);
}
.ghf-footer-logo { max-width: 190px; margin-bottom: 20px; }
.ghf-footer-about p { color: rgba(247,242,230,0.68); font-size: 0.95rem; }
.ghf-footer-tagline { font-family: var(--font-script); font-style: italic; color: var(--ghf-gold-light); font-size: 1.15rem; }
.ghf-footer-social { display: flex; gap: 14px; margin-top: 20px; }
.ghf-footer-social .ghf-social-icon {
	width: 36px; height: 36px;
	border: 1px solid rgba(247,242,230,0.25);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	padding: 9px;
}
.ghf-footer-social .ghf-social-icon:hover { border-color: var(--ghf-gold); }

.ghf-footer-widget-title, .ghf-footer h4 {
	color: var(--ghf-ivory);
	font-size: 1rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 22px;
	position: relative;
	padding-bottom: 14px;
}
.ghf-footer-widget-title::after {
	content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 1px; background: var(--ghf-gold);
}
.ghf-footer-menu li { margin-bottom: 12px; }
.ghf-footer-menu a { color: rgba(247,242,230,0.72); font-size: 0.95rem; transition: color var(--ghf-transition), padding var(--ghf-transition); }
.ghf-footer-menu a:hover { color: var(--ghf-gold-light); padding-left: 4px; }

.ghf-footer-contact-list li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 0.93rem; color: rgba(247,242,230,0.72); }
.ghf-footer-contact-list a { color: rgba(247,242,230,0.72); }
.ghf-footer-contact-list a:hover { color: var(--ghf-gold-light); }
.ghf-footer-icon { color: var(--ghf-gold); flex-shrink: 0; }

.ghf-footer-bottom { padding: 26px 0; }
.ghf-footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; color: rgba(247,242,230,0.55); }
.ghf-footer-credit { letter-spacing: 0.15em; text-transform: uppercase; color: var(--ghf-gold-dark) !important; }

/* ==========================================================================
   22. Floating buttons
   ========================================================================== */
.ghf-whatsapp-float {
	position: fixed;
	right: 26px; bottom: 26px;
	width: 58px; height: 58px;
	background: #25d366;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	color: #fff;
	box-shadow: 0 10px 30px rgba(0,0,0,0.35);
	z-index: 800;
	animation: ghf-wa-pulse 2.6s ease-in-out infinite;
}
.ghf-whatsapp-float svg { width: 30px; height: 30px; }
@keyframes ghf-wa-pulse {
	0%, 100% { box-shadow: 0 10px 30px rgba(0,0,0,0.35), 0 0 0 0 rgba(37,211,102,0.5); }
	50% { box-shadow: 0 10px 30px rgba(0,0,0,0.35), 0 0 0 10px rgba(37,211,102,0); }
}

.ghf-back-to-top {
	position: fixed;
	right: 26px; bottom: 96px;
	width: 46px; height: 46px;
	background: var(--ghf-forest);
	border: 1px solid var(--ghf-gold);
	border-radius: 50%;
	color: var(--ghf-gold-light);
	display: flex; align-items: center; justify-content: center;
	z-index: 800;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all var(--ghf-transition);
}
.ghf-back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.ghf-back-to-top svg { width: 20px; height: 20px; }

/* ==========================================================================
   23. Scroll reveal
   ========================================================================== */
[data-ghf-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.8s ease, transform 0.8s ease;
	transition-delay: var(--ghf-delay, 0ms);
}
[data-ghf-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   24. Generic page templates (blog, 404, etc.)
   ========================================================================== */
.ghf-page-header {
	position: relative;
	padding: 90px 0;
	text-align: center;
	background: var(--ghf-cream);
	background-size: cover;
	background-position: center;
}
.ghf-page-header-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,29,20,0.75), rgba(14,29,20,0.65)); }
.ghf-page-header .ghf-container { position: relative; z-index: 1; }

.ghf-page-content { padding: 80px 0; font-size: 1.08rem; color: #4a4536; }
.ghf-page-content h2, .ghf-page-content h3 { color: var(--ghf-forest); margin-top: 1.2em; }
.ghf-page-thumb { margin-top: 40px; }

.ghf-blog-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; padding: 80px 0; }
.ghf-post-card { margin-bottom: 50px; padding-bottom: 50px; border-bottom: 1px solid var(--ghf-cream-dark); }
.ghf-post-card-thumb { display: block; margin-bottom: 22px; overflow: hidden; }
.ghf-post-card-thumb img { transition: transform 0.5s ease; }
.ghf-post-card-thumb:hover img { transform: scale(1.04); }
.ghf-post-card-meta { color: var(--ghf-gold-dark); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.ghf-post-card-title { font-size: 1.5rem; margin-bottom: 12px; }
.ghf-post-card-title a:hover { color: var(--ghf-gold-dark); }
.ghf-post-card-excerpt { color: #5c5748; margin-bottom: 20px; }
.ghf-post-meta { color: var(--ghf-gold-dark); letter-spacing: 0.05em; }

.ghf-widget { margin-bottom: 40px; }
.ghf-widget-title, .ghf-footer-widget-title { font-size: 1.05rem; }

.ghf-404 { text-align: center; padding: 120px 0; }
.ghf-404-title { font-size: 6rem; color: var(--ghf-gold); margin-bottom: 0; line-height: 1; }
.ghf-404 .ghf-fleuron { margin: 0 auto 30px; }
.ghf-404 .ghf-btn { margin-top: 30px; }

.ghf-comments { margin-top: 60px; padding-top: 50px; border-top: 1px solid var(--ghf-cream-dark); }
.ghf-comment-list li { margin-bottom: 26px; }

/* ==========================================================================
   25. Responsive
   ========================================================================== */
@media (max-width: 1199px) {
	.ghf-about-grid, .ghf-location-grid, .ghf-masterplan-grid, .ghf-leadership-grid, .ghf-contact-grid { gap: 44px; }
	.ghf-footer-grid { grid-template-columns: 1fr 1fr; }
	.ghf-amenities-grid { grid-template-columns: repeat(2, 1fr); }
	.ghf-gallery-grid { grid-template-columns: repeat(3, 1fr); }
	.ghf-gallery-item:nth-child(1) { grid-column: span 2; }
}

@media (max-width: 991px) {
	.ghf-topbar-address { display: none; }
	.ghf-primary-nav { display: none; }
	.ghf-menu-toggle { display: flex; }
	.ghf-header-cta .ghf-btn-ghost { display: none; }

	.ghf-about-grid,
	.ghf-location-grid,
	.ghf-masterplan-grid,
	.ghf-leadership-grid,
	.ghf-contact-grid { grid-template-columns: 1fr; }

	.ghf-about-media, .ghf-location-media, .ghf-masterplan-media, .ghf-leadership-portrait { order: -1; }
	.ghf-leadership-portrait .ghf-ornate-frame { max-width: 300px; }

	.ghf-steps-row { grid-template-columns: repeat(2, 1fr); }
	.ghf-blog-layout { grid-template-columns: 1fr; }

	/* Mobile slide-in nav */
	.ghf-primary-nav {
		display: block;
		position: fixed;
		top: 0; right: -100%;
		width: min(340px, 86vw);
		height: 100vh;
		background: var(--ghf-forest-dark);
		border-left: 3px solid var(--ghf-gold);
		padding: 110px 36px 40px;
		transition: right var(--ghf-transition);
		z-index: 950;
		overflow-y: auto;
	}
	.ghf-primary-nav.is-open { right: 0; }
	.ghf-menu { flex-direction: column; align-items: flex-start; gap: 26px; }
}

@media (max-width: 767px) {
	body { font-size: 16.5px; }
	.ghf-container { padding: 0 20px; }
	.ghf-topbar-inner { justify-content: center; text-align: center; }
	.ghf-topbar-info { justify-content: center; gap: 16px; }
	.ghf-hero-stats { gap: 20px; }
	.ghf-hero-stat-divider { display: none; }
	.ghf-stat-row { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
	.ghf-stat-item:nth-child(3) { border-left: none; }
	.ghf-amenities-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
	.ghf-amenity-card { padding: 28px 16px; }
	.ghf-amenities-photos { grid-template-columns: 1fr; }
	.ghf-steps-row { grid-template-columns: 1fr; gap: 26px; }
	.ghf-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
	.ghf-gallery-item:nth-child(1), .ghf-gallery-item:nth-child(6) { grid-column: span 2; }
	.ghf-footer-grid { grid-template-columns: 1fr; text-align: left; }
	.ghf-footer-crest { margin-bottom: 34px; }
	.ghf-form-row-split { grid-template-columns: 1fr; }
	.ghf-contact-form-wrap { padding: 30px 24px; }
	.ghf-footer-bottom-inner { flex-direction: column; text-align: center; }
	.ghf-whatsapp-float { width: 50px; height: 50px; right: 16px; bottom: 16px; }
	.ghf-whatsapp-float svg { width: 26px; height: 26px; }
	.ghf-back-to-top { right: 16px; bottom: 78px; width: 40px; height: 40px; }
}

@media (max-width: 480px) {
	.ghf-hero-actions { flex-direction: column; width: 100%; }
	.ghf-hero-actions .ghf-btn { width: 100%; }
	.ghf-404-title { font-size: 4rem; }
}

/* ==========================================================================
   26. Print
   ========================================================================== */
@media print {
	.ghf-topbar, .ghf-header, .ghf-whatsapp-float, .ghf-back-to-top, #ghf-preloader, .ghf-cta, .ghf-lightbox { display: none !important; }
}
