/*!
 * Green Quality — Main Design System Stylesheet
 * Mobile-first, lightweight, no framework dependency.
 * Loaded via inc/enqueue.php with the WordPress-required style.css as a
 * dependency, so cache-busting and load order stay correct automatically.
 */

/* =========================================================================
   1. DESIGN TOKENS
   ========================================================================= */
:root {
	--gq-primary: #409923;
	--gq-primary-rgb: 64, 153, 35;
	--gq-dark-green: #164A12;
	--gq-secondary: #5FAF3C;
	--gq-light-green: #A8D66D;
	--gq-beige: #F5F1E8;
	--gq-white: #FFFFFF;
	--gq-dark-text: #263238;
	--gq-secondary-text: #667085;
	--gq-gold: #C99B3F;

	--gq-font-heading: 'Montserrat', 'Segoe UI', Arial, sans-serif;
	--gq-font-body: 'Inter', 'Segoe UI', Arial, sans-serif;

	--gq-radius-sm: 10px;
	--gq-radius-md: 18px;
	--gq-radius-lg: 28px;
	--gq-radius-pill: 999px;

	--gq-shadow-sm: 0 4px 16px rgba(22, 74, 18, 0.08);
	--gq-shadow-md: 0 12px 32px rgba(22, 74, 18, 0.12);
	--gq-shadow-lg: 0 24px 60px rgba(22, 74, 18, 0.18);

	--gq-container: 1200px;
	--gq-header-h: 84px;
	--gq-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================================================
   2. BASE / RESET EXTRAS
   ========================================================================= */
html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--gq-header-h);
}

@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 {
	font-family: var(--gq-font-body);
	color: var(--gq-dark-text);
	background: var(--gq-white);
	line-height: 1.65;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--gq-font-heading);
	font-weight: 700;
	line-height: 1.2;
	color: var(--gq-dark-green);
	margin: 0 0 0.5em;
}

p {
	margin: 0 0 1em;
	color: var(--gq-secondary-text);
}

a {
	text-decoration: none;
	transition: color var(--gq-transition);
}

ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

button {
	font-family: inherit;
	cursor: pointer;
}

svg.gq-icon {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}

.gq-container {
	width: 100%;
	max-width: var(--gq-container);
	margin-inline: auto;
	padding-inline: 20px;
}

.gq-section {
	padding-block: 64px;
	position: relative;
}

.gq-page-section {
	padding-block: 56px;
}

.gq-page-section--narrow .gq-single-post,
.gq-page-section--narrow > article {
	max-width: 820px;
	margin-inline: auto;
}

@media (min-width: 768px) {
	.gq-section { padding-block: 96px; }
	.gq-page-section { padding-block: 80px; }
}

@media (min-width: 1024px) {
	.gq-section { padding-block: 120px; }
}

/* Scroll-reveal base state; JS toggles .is-visible */
.gq-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
	transition-delay: var(--gq-delay, 0s);
}
.gq-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}
.no-js .gq-reveal {
	opacity: 1;
	transform: none;
}

/* =========================================================================
   3. TYPOGRAPHY HELPERS
   ========================================================================= */
.gq-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--gq-font-heading);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gq-light-green);
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.25);
	padding: 8px 18px;
	border-radius: var(--gq-radius-pill);
	margin-bottom: 18px;
}
.gq-eyebrow--dark {
	color: var(--gq-primary);
	background: rgba(var(--gq-primary-rgb), 0.08);
	border-color: rgba(var(--gq-primary-rgb), 0.18);
}
.gq-eyebrow--gold {
	color: var(--gq-gold);
	background: rgba(201, 155, 63, 0.12);
	border-color: rgba(201, 155, 63, 0.3);
}
.gq-icon-eyebrow { width: 16px; height: 16px; }

.gq-section__head {
	max-width: 680px;
	margin-bottom: 48px;
}
.gq-section__head--center {
	max-width: 720px;
	margin-inline: auto;
	text-align: center;
}
.gq-section__title {
	font-size: clamp(1.75rem, 1.4rem + 1.6vw, 2.75rem);
	letter-spacing: -0.01em;
}
.gq-section__title--light {
	color: var(--gq-white);
}
.gq-section__text {
	font-size: 1.05rem;
	max-width: 640px;
}
.gq-section__text--light {
	color: rgba(255, 255, 255, 0.82);
}
.gq-section__head--center .gq-section__text {
	margin-inline: auto;
}
.gq-section__cta {
	margin-top: 40px;
	text-align: center;
}

.gq-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	color: var(--gq-primary);
	font-family: var(--gq-font-heading);
	font-size: 0.95rem;
}
.gq-link-arrow svg { width: 18px; height: 18px; transition: transform var(--gq-transition); }
.gq-link-arrow:hover svg { transform: translateX(4px); }
.gq-link-arrow--lg { font-size: 1.05rem; }

.gq-check-list { margin: 24px 0; display: grid; gap: 12px; }
.gq-check-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--gq-dark-text);
	font-weight: 500;
}
.gq-check-list svg { width: 20px; height: 20px; color: var(--gq-primary); flex-shrink: 0; }

/* =========================================================================
   4. BUTTONS
   ========================================================================= */
.gq-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--gq-font-heading);
	font-weight: 700;
	font-size: 0.95rem;
	padding: 15px 30px;
	border-radius: var(--gq-radius-pill);
	border: 2px solid transparent;
	transition: transform var(--gq-transition), box-shadow var(--gq-transition), background var(--gq-transition), color var(--gq-transition), border-color var(--gq-transition);
	white-space: nowrap;
}
.gq-btn svg { width: 18px; height: 18px; }
.gq-btn:hover { transform: translateY(-2px); }

.gq-btn--primary {
	background: var(--gq-primary);
	color: var(--gq-white);
	box-shadow: var(--gq-shadow-sm);
}
.gq-btn--primary:hover {
	background: var(--gq-dark-green);
	color: var(--gq-white);
	box-shadow: var(--gq-shadow-md);
}

.gq-btn--outline-light {
	border-color: rgba(255, 255, 255, 0.55);
	color: var(--gq-white);
}
.gq-btn--outline-light:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--gq-white);
	color: var(--gq-white);
}

.gq-btn--outline-dark {
	border-color: rgba(var(--gq-primary-rgb), 0.4);
	color: var(--gq-primary);
}
.gq-btn--outline-dark:hover {
	background: var(--gq-primary);
	border-color: var(--gq-primary);
	color: var(--gq-white);
}

.gq-btn--gold {
	background: var(--gq-gold);
	color: var(--gq-white);
}
.gq-btn--gold:hover {
	background: #b3872f;
	color: var(--gq-white);
}

.gq-btn--sm { padding: 10px 22px; font-size: 0.85rem; }
.gq-btn--lg { padding: 18px 36px; font-size: 1rem; }

/* =========================================================================
   5. HEADER / NAVIGATION
   ========================================================================= */
.gq-site-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid rgba(38, 45, 50, 0.06);
	transition: box-shadow var(--gq-transition), background var(--gq-transition);
}
.gq-site-header.is-scrolled {
	box-shadow: 0 8px 30px rgba(22, 74, 18, 0.08);
}

.gq-site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: var(--gq-header-h);
}

.gq-site-header__logo-text {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--gq-font-heading);
	font-weight: 800;
	font-size: 1.25rem;
	color: var(--gq-dark-green);
}
.gq-logo-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gq-primary), var(--gq-secondary));
	color: var(--gq-white);
}
.gq-logo-mark svg { width: 20px; height: 20px; }
.gq-site-header__logo img { max-height: 48px; width: auto; display: block; }

.gq-primary-nav__list {
	display: none;
	align-items: center;
	gap: 6px;
}
.gq-primary-nav__list li a {
	display: inline-block;
	padding: 10px 16px;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--gq-dark-text);
	border-radius: var(--gq-radius-pill);
	transition: color var(--gq-transition), background var(--gq-transition);
}
.gq-primary-nav__list li a:hover,
.gq-primary-nav__list li.current-menu-item > a {
	color: var(--gq-primary);
	background: rgba(var(--gq-primary-rgb), 0.08);
}
.gq-primary-nav__list .sub-menu {
	display: none;
}

.gq-site-header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}
.gq-site-header__actions .gq-btn { display: none; }

.gq-nav-toggle {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	background: var(--gq-beige);
	border: none;
	border-radius: 12px;
	padding: 0;
	align-items: center;
}
.gq-nav-toggle__bar {
	width: 20px;
	height: 2px;
	background: var(--gq-dark-green);
	border-radius: 2px;
	transition: transform var(--gq-transition), opacity var(--gq-transition);
}
.gq-nav-toggle[aria-expanded="true"] .gq-nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gq-nav-toggle[aria-expanded="true"] .gq-nav-toggle__bar:nth-child(2) { opacity: 0; }
.gq-nav-toggle[aria-expanded="true"] .gq-nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1023px) {
	.gq-primary-nav {
		position: fixed;
		inset: var(--gq-header-h) 0 0 0;
		background: var(--gq-white);
		padding: 24px;
		transform: translateY(-12px);
		opacity: 0;
		visibility: hidden;
		transition: opacity var(--gq-transition), transform var(--gq-transition), visibility var(--gq-transition);
		overflow-y: auto;
	}
	.gq-primary-nav.is-open {
		opacity: 1;
		transform: translateY(0);
		visibility: visible;
	}
	.gq-primary-nav__list {
		display: flex;
		flex-direction: column;
		gap: 4px;
	}
	.gq-primary-nav__list li a {
		display: block;
		padding: 14px 16px;
		font-size: 1.05rem;
		border-bottom: 1px solid rgba(38, 45, 50, 0.06);
	}
}

@media (min-width: 1024px) {
	.gq-primary-nav__list { display: flex; }
	.gq-site-header__actions .gq-btn { display: inline-flex; }
	.gq-nav-toggle { display: none; }
}

/* =========================================================================
   6. HERO
   ========================================================================= */
.gq-hero {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	color: var(--gq-white);
}
.gq-hero__media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.06);
	animation: gq-hero-zoom 18s ease-in-out infinite alternate;
}
@keyframes gq-hero-zoom {
	from { transform: scale(1.06); }
	to { transform: scale(1); }
}
.gq-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(100deg, rgba(22, 74, 18, 0.92) 0%, rgba(22, 74, 18, 0.72) 38%, rgba(22, 74, 18, 0.32) 68%, rgba(22, 74, 18, 0.15) 100%);
}
.gq-hero__floaters { position: absolute; inset: 0; pointer-events: none; }
.gq-floater {
	position: absolute;
	color: rgba(255, 255, 255, 0.18);
	animation: gq-float 8s ease-in-out infinite;
}
.gq-floater svg { width: 64px; height: 64px; }
.gq-floater--1 { top: 18%; right: 12%; animation-delay: 0s; }
.gq-floater--2 { top: 55%; right: 22%; animation-delay: 1.2s; }
.gq-floater--3 { top: 75%; right: 8%; animation-delay: 2.4s; }
@keyframes gq-float {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-22px) rotate(8deg); }
}

.gq-hero__inner { position: relative; z-index: 2; padding-block: 60px; }
.gq-hero__content { max-width: 680px; }
.gq-hero__title {
	color: var(--gq-white);
	font-size: clamp(2.1rem, 1.5rem + 3vw, 3.75rem);
	letter-spacing: -0.02em;
	margin-bottom: 22px;
}
.gq-hero__subtitle {
	color: rgba(255, 255, 255, 0.92);
	font-size: 1.15rem;
	font-weight: 500;
	margin-bottom: 14px;
}
.gq-hero__desc {
	color: rgba(255, 255, 255, 0.72);
	font-size: 1rem;
	margin-bottom: 34px;
}
.gq-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.gq-hero__scroll {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	width: 26px;
	height: 42px;
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 14px;
	z-index: 2;
}
.gq-hero__scroll span {
	position: absolute;
	top: 6px;
	left: 50%;
	width: 4px;
	height: 8px;
	background: var(--gq-white);
	border-radius: 2px;
	transform: translateX(-50%);
	animation: gq-scroll-dot 1.8s ease-in-out infinite;
}
@keyframes gq-scroll-dot {
	0% { opacity: 1; top: 6px; }
	100% { opacity: 0; top: 20px; }
}

/* =========================================================================
   7. INTRODUCTION
   ========================================================================= */
.gq-intro { background: var(--gq-white); }
.gq-intro__inner {
	display: grid;
	gap: 48px;
	align-items: center;
}
.gq-intro__media {
	position: relative;
	border-radius: var(--gq-radius-lg);
	overflow: hidden;
	box-shadow: var(--gq-shadow-md);
}
.gq-intro__media img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; }
.gq-intro__media-badge {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(6px);
	border-radius: var(--gq-radius-md);
	padding: 14px 18px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-family: var(--gq-font-heading);
	color: var(--gq-dark-green);
	font-size: 0.9rem;
}
.gq-intro__media-badge svg { color: var(--gq-primary); }

@media (min-width: 900px) {
	.gq-intro__inner { grid-template-columns: 0.85fr 1fr; }
}

/* =========================================================================
   8. SOLUTIONS CARDS
   ========================================================================= */
.gq-solutions { background: var(--gq-beige); }
.gq-solutions__grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.gq-solution-card {
	display: block;
	background: var(--gq-white);
	border-radius: var(--gq-radius-lg);
	padding: 34px 28px;
	box-shadow: var(--gq-shadow-sm);
	transition: transform var(--gq-transition), box-shadow var(--gq-transition);
	position: relative;
	overflow: hidden;
}
.gq-solution-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(64, 153, 35, 0.06), transparent 55%);
	opacity: 0;
	transition: opacity var(--gq-transition);
}
.gq-solution-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--gq-shadow-lg);
}
.gq-solution-card:hover::after { opacity: 1; }
.gq-solution-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 18px;
	background: linear-gradient(135deg, var(--gq-primary), var(--gq-secondary));
	color: var(--gq-white);
	margin-bottom: 22px;
	transition: transform var(--gq-transition);
}
.gq-solution-card:hover .gq-solution-card__icon { transform: rotate(-8deg) scale(1.05); }
.gq-solution-card__title { font-size: 1.2rem; margin-bottom: 10px; }
.gq-solution-card__text { font-size: 0.95rem; margin-bottom: 20px; }
.gq-solution-card__more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--gq-font-heading);
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--gq-primary);
	position: relative;
	z-index: 1;
}
.gq-solution-card__more svg { width: 16px; height: 16px; transition: transform var(--gq-transition); }
.gq-solution-card:hover .gq-solution-card__more svg { transform: translateX(4px); }

/* =========================================================================
   9. FEED IMPORTANCE (dark section + counters)
   ========================================================================= */
.gq-feed-importance {
	background: linear-gradient(135deg, var(--gq-dark-green) 0%, #1f5c19 100%);
	overflow: hidden;
}
.gq-feed-importance__inner {
	display: grid;
	gap: 48px;
}
.gq-benefit-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-top: 32px;
}
.gq-benefit-item {
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--gq-radius-md);
	padding: 16px;
	color: var(--gq-white);
	font-weight: 600;
	font-size: 0.92rem;
}
.gq-benefit-item__icon {
	display: inline-flex;
	width: 38px;
	height: 38px;
	align-items: center;
	justify-content: center;
	background: rgba(var(--gq-primary-rgb), 0.35);
	border-radius: 10px;
	color: var(--gq-light-green);
	flex-shrink: 0;
}

.gq-feed-importance__counters {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.gq-counter {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--gq-radius-lg);
	padding: 28px 20px;
	text-align: center;
}
.gq-counter__number,
.gq-counter__suffix {
	font-family: var(--gq-font-heading);
	font-size: clamp(1.8rem, 1.4rem + 1.5vw, 2.6rem);
	font-weight: 800;
	color: var(--gq-light-green);
}
.gq-counter__label {
	display: block;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.85rem;
	font-weight: 600;
}

@media (min-width: 992px) {
	.gq-feed-importance__inner { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
}

/* =========================================================================
   10. SPORT HORSES (premium distinct section)
   ========================================================================= */
.gq-sport-horses {
	position: relative;
	color: var(--gq-white);
	overflow: hidden;
}
.gq-sport-horses__bg {
	position: absolute;
	inset: 0;
	background-image: url('../images/feed-hay-bale-1.jpg');
	background-size: cover;
	background-position: center;
}
.gq-sport-horses__bg::after { content: none; }
.gq-sport-horses::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(15, 25, 15, 0.94) 10%, rgba(22, 74, 18, 0.82) 55%, rgba(64, 153, 35, 0.55) 100%);
	z-index: 0;
}
.gq-sport-horses__inner { position: relative; z-index: 1; }
.gq-sport-horses__content { max-width: 680px; }

.gq-pill-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 28px 0 34px;
}
.gq-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: var(--gq-radius-pill);
	padding: 10px 18px;
	font-weight: 600;
	font-size: 0.88rem;
	backdrop-filter: blur(4px);
}
.gq-pill svg { width: 18px; height: 18px; color: var(--gq-gold); }

/* =========================================================================
   11. AGRICULTURE
   ========================================================================= */
.gq-agriculture { background: var(--gq-white); }
.gq-agriculture__inner {
	display: grid;
	gap: 48px;
	align-items: center;
}
.gq-agriculture__gallery {
	position: relative;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 16px;
}
.gq-agriculture__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--gq-radius-lg);
	box-shadow: var(--gq-shadow-md);
}
.gq-agriculture__img--1 { aspect-ratio: 3/4; }
.gq-agriculture__img--2 { aspect-ratio: 3/4; margin-top: 32px; }

@media (min-width: 900px) {
	.gq-agriculture__inner { grid-template-columns: 1fr 0.9fr; }
}

/* =========================================================================
   12. GROWTH JOURNEY TIMELINE
   ========================================================================= */
.gq-journey { background: var(--gq-beige); }
.gq-timeline {
	position: relative;
	display: grid;
	gap: 28px;
}
.gq-timeline__line { display: none; }
.gq-timeline__step {
	background: var(--gq-white);
	border-radius: var(--gq-radius-lg);
	padding: 30px 26px;
	box-shadow: var(--gq-shadow-sm);
	position: relative;
	transition: transform var(--gq-transition), box-shadow var(--gq-transition);
}
.gq-timeline__step:hover {
	transform: translateY(-6px);
	box-shadow: var(--gq-shadow-md);
}
.gq-timeline__number {
	position: absolute;
	top: 22px;
	right: 26px;
	font-family: var(--gq-font-heading);
	font-weight: 800;
	font-size: 1.6rem;
	color: rgba(var(--gq-primary-rgb), 0.14);
}
.gq-timeline__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--gq-primary), var(--gq-secondary));
	color: var(--gq-white);
	margin-bottom: 18px;
}
.gq-timeline__title { font-size: 1.05rem; margin-bottom: 8px; }
.gq-timeline__text { font-size: 0.9rem; margin: 0; }

@media (min-width: 700px) {
	.gq-timeline { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
	.gq-timeline { grid-template-columns: repeat(5, 1fr); }
	.gq-timeline__line {
		display: block;
		position: absolute;
		top: 44px;
		left: 4%;
		right: 4%;
		height: 2px;
		background: repeating-linear-gradient(90deg, rgba(var(--gq-primary-rgb), 0.3) 0 10px, transparent 10px 20px);
		z-index: 0;
	}
}

/* =========================================================================
   13. WHY CHOOSE US
   ========================================================================= */
.gq-why-us { background: var(--gq-white); }
.gq-why-us__grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.gq-why-us__item {
	display: flex;
	gap: 16px;
	padding: 24px;
	border-radius: var(--gq-radius-lg);
	background: var(--gq-beige);
	transition: transform var(--gq-transition), box-shadow var(--gq-transition);
}
.gq-why-us__item:hover {
	transform: translateY(-4px);
	box-shadow: var(--gq-shadow-sm);
}
.gq-why-us__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: var(--gq-white);
	color: var(--gq-primary);
	box-shadow: var(--gq-shadow-sm);
}
.gq-why-us__title { font-size: 1.02rem; margin-bottom: 6px; }
.gq-why-us__text { font-size: 0.88rem; margin: 0; }

/* =========================================================================
   14. KNOWLEDGE HUB / POST CARDS
   ========================================================================= */
.gq-knowledge-hub { background: var(--gq-beige); }
.gq-post-grid {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.gq-post-card {
	display: flex;
	flex-direction: column;
	background: var(--gq-white);
	border-radius: var(--gq-radius-lg);
	overflow: hidden;
	box-shadow: var(--gq-shadow-sm);
	transition: transform var(--gq-transition), box-shadow var(--gq-transition);
}
.gq-post-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--gq-shadow-md);
}
.gq-post-card__media {
	display: block;
	aspect-ratio: 16/10;
	overflow: hidden;
}
.gq-post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}
.gq-post-card:hover .gq-post-card__media img { transform: scale(1.08); }
.gq-post-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.gq-post-card__meta {
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--gq-primary);
	margin-bottom: 10px;
}
.gq-post-card__title { font-size: 1.1rem; margin-bottom: 10px; }
.gq-post-card__title a { color: inherit; }
.gq-post-card__title a:hover { color: var(--gq-primary); }
.gq-post-card__excerpt { font-size: 0.9rem; margin-bottom: 16px; flex: 1; }
.gq-post-card__excerpt p { margin: 0; }
.gq-knowledge-hub__note {
	text-align: center;
	font-size: 0.85rem;
	margin-top: 20px;
	font-style: italic;
}

/* =========================================================================
   15. CTA
   ========================================================================= */
.gq-cta {
	position: relative;
	color: var(--gq-white);
	text-align: center;
	overflow: hidden;
}
.gq-cta__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}
.gq-cta__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(22, 74, 18, 0.94), rgba(64, 153, 35, 0.85));
}
.gq-cta__inner { position: relative; z-index: 1; max-width: 720px; margin-inline: auto; }
.gq-cta__title { color: var(--gq-white); font-size: clamp(1.8rem, 1.5rem + 1.5vw, 2.6rem); margin-bottom: 16px; }
.gq-cta__text { color: rgba(255, 255, 255, 0.85); margin-bottom: 30px; font-size: 1.05rem; }

/* =========================================================================
   16. FOOTER
   ========================================================================= */
.gq-site-footer {
	background: var(--gq-dark-green);
	color: rgba(255, 255, 255, 0.78);
	padding-top: 72px;
}
.gq-site-footer__grid {
	display: grid;
	gap: 40px;
	grid-template-columns: 1fr;
	padding-bottom: 48px;
}
.gq-footer-col--brand .gq-site-header__logo-text { color: var(--gq-white); }
.gq-site-footer__desc { margin: 18px 0; font-size: 0.92rem; color: rgba(255, 255, 255, 0.68); max-width: 340px; }
.gq-footer-col__title {
	color: var(--gq-white);
	font-size: 1rem;
	margin-bottom: 18px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.gq-footer-links, .gq-footer-contact { display: grid; gap: 12px; }
.gq-footer-links a { color: rgba(255, 255, 255, 0.72); font-size: 0.92rem; }
.gq-footer-links a:hover { color: var(--gq-light-green); }
.gq-footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; }
.gq-footer-contact svg { width: 18px; height: 18px; color: var(--gq-light-green); margin-top: 2px; flex-shrink: 0; }
.gq-footer-contact a { color: rgba(255, 255, 255, 0.78); }
.gq-footer-contact a:hover { color: var(--gq-light-green); }
.gq-footer-col__text { font-size: 0.9rem; margin-bottom: 18px; }

.gq-social-links { display: flex; gap: 10px; margin-top: 8px; }
.gq-social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: var(--gq-white);
	transition: background var(--gq-transition), transform var(--gq-transition);
}
.gq-social-links a:hover { background: var(--gq-primary); transform: translateY(-3px); }
.gq-icon-social { width: 17px; height: 17px; }

.gq-site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-block: 20px;
}
.gq-site-footer__bottom-inner {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 0.82rem;
	text-align: center;
}
.gq-credit { margin: 0; opacity: 0.6; }
.gq-copyright { margin: 0; }

@media (min-width: 700px) {
	.gq-site-footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.gq-site-footer__grid { grid-template-columns: 1.3fr 0.8fr 0.9fr 0.9fr; }
	.gq-site-footer__bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

.gq-back-to-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--gq-primary);
	color: var(--gq-white);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--gq-shadow-md);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity var(--gq-transition), transform var(--gq-transition), visibility var(--gq-transition);
	z-index: 998;
}
.gq-back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.gq-icon-up { transform: rotate(-90deg); width: 20px; height: 20px; }

/* =========================================================================
   17. BREADCRUMBS / PAGINATION
   ========================================================================= */
.gq-breadcrumbs { margin-bottom: 24px; }
.gq-breadcrumbs__list { display: flex; flex-wrap: wrap; gap: 8px; font-size: 0.85rem; color: var(--gq-secondary-text); }
.gq-breadcrumbs__list li:not(:last-child)::after { content: '/'; margin-left: 8px; color: var(--gq-secondary-text); }
.gq-breadcrumbs__list a { color: var(--gq-primary); font-weight: 600; }

.gq-pagination { display: flex; justify-content: center; gap: 10px; margin-top: 40px; flex-wrap: wrap; }
.gq-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border-radius: var(--gq-radius-pill);
	background: var(--gq-beige);
	color: var(--gq-dark-text);
	font-weight: 600;
	font-size: 0.9rem;
}
.gq-pagination .page-numbers.current,
.gq-pagination .page-numbers:hover {
	background: var(--gq-primary);
	color: var(--gq-white);
}

/* =========================================================================
   18. ARCHIVE / SINGLE / PAGE
   ========================================================================= */
.gq-archive-header { margin-bottom: 44px; }
.gq-archive-header__title { font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.4rem); }
.gq-archive-header__desc { color: var(--gq-secondary-text); margin-top: 10px; }

.gq-page__title, .gq-single-post__title { font-size: clamp(1.8rem, 1.4rem + 1.6vw, 2.6rem); }
.gq-page__thumbnail, .gq-single-post__thumbnail {
	margin: 28px 0;
	border-radius: var(--gq-radius-lg);
	overflow: hidden;
	box-shadow: var(--gq-shadow-sm);
}
.gq-page__thumbnail img, .gq-single-post__thumbnail img { width: 100%; height: auto; display: block; }
.gq-single-post__meta { display: flex; gap: 10px; color: var(--gq-secondary-text); font-size: 0.9rem; margin-bottom: 8px; }

.gq-page__content, .gq-single-post__content { font-size: 1.02rem; }
.gq-page__content h2, .gq-single-post__content h2 { margin-top: 1.6em; }
.gq-page__content p, .gq-single-post__content p { color: var(--gq-dark-text); }
.gq-page__content img, .gq-single-post__content img { border-radius: var(--gq-radius-md); }
.gq-page-links { margin-top: 24px; font-weight: 600; }

.gq-single-post__tags { margin-top: 24px; font-size: 0.85rem; color: var(--gq-secondary-text); }
.gq-single-post__tags a { color: var(--gq-primary); font-weight: 600; margin-right: 6px; }

.gq-post-nav {
	display: grid;
	gap: 16px;
	margin-top: 48px;
	padding-top: 28px;
	border-top: 1px solid rgba(38, 45, 50, 0.08);
}
.gq-post-nav a { font-weight: 700; color: var(--gq-primary); }
@media (min-width: 700px) {
	.gq-post-nav { grid-template-columns: 1fr 1fr; }
	.gq-post-nav__next { text-align: right; }
}

.gq-no-results { text-align: center; max-width: 480px; margin-inline: auto; padding: 40px 0; }
.gq-no-results__icon {
	display: inline-flex;
	width: 64px;
	height: 64px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--gq-beige);
	color: var(--gq-primary);
	margin-bottom: 20px;
}
.gq-no-results__icon svg { width: 30px; height: 30px; }
.gq-no-results .gq-btn { margin-top: 20px; }

/* 404 */
.gq-404 { text-align: center; padding-block: 100px; }
.gq-404__inner { max-width: 520px; margin-inline: auto; }
.gq-404__icon {
	display: inline-flex;
	width: 72px;
	height: 72px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--gq-beige);
	color: var(--gq-primary);
	margin-bottom: 18px;
}
.gq-404__code {
	font-family: var(--gq-font-heading);
	font-weight: 800;
	font-size: 4rem;
	color: rgba(var(--gq-primary-rgb), 0.15);
	margin: 0;
	line-height: 1;
}
.gq-404__actions { margin: 26px 0; }
.gq-404__search { max-width: 380px; margin-inline: auto; }

/* Search form */
.search-form { display: flex; gap: 10px; }
.search-form label { flex: 1; }
.search-field {
	width: 100%;
	padding: 12px 16px;
	border-radius: var(--gq-radius-pill);
	border: 1px solid rgba(38, 45, 50, 0.15);
	font-family: var(--gq-font-body);
}
.search-submit {
	padding: 12px 22px;
	border-radius: var(--gq-radius-pill);
	background: var(--gq-primary);
	color: var(--gq-white);
	border: none;
	font-weight: 700;
}

/* =========================================================================
   19. CONTACT FORM
   ========================================================================= */
.gq-contact-page__grid {
	display: grid;
	gap: 40px;
}
.gq-contact-info-card {
	display: flex;
	gap: 16px;
	padding: 20px;
	border-radius: var(--gq-radius-md);
	background: var(--gq-beige);
	margin-bottom: 16px;
}
.gq-contact-info-card__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--gq-white);
	color: var(--gq-primary);
}
.gq-contact-info-card h3 { font-size: 0.95rem; margin-bottom: 4px; }
.gq-contact-info-card p { margin: 0; font-size: 0.92rem; }

.gq-contact-form-wrap { background: var(--gq-beige); padding: 32px; border-radius: var(--gq-radius-lg); }
.gq-form-row--two { display: grid; gap: 16px; }
.gq-form-field { margin-bottom: 18px; }
.gq-form-field label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 8px; color: var(--gq-dark-text); }
.gq-form-field input,
.gq-form-field textarea {
	width: 100%;
	padding: 13px 16px;
	border-radius: var(--gq-radius-sm);
	border: 1px solid rgba(38, 45, 50, 0.15);
	font-family: var(--gq-font-body);
	font-size: 0.95rem;
	background: var(--gq-white);
	transition: border-color var(--gq-transition), box-shadow var(--gq-transition);
}
.gq-form-field input:focus,
.gq-form-field textarea:focus {
	outline: none;
	border-color: var(--gq-primary);
	box-shadow: 0 0 0 3px rgba(var(--gq-primary-rgb), 0.15);
}
.gq-hp-field { position: absolute; left: -9999px; top: -9999px; }

.gq-form-notice { padding: 14px 18px; border-radius: var(--gq-radius-sm); margin-bottom: 20px; font-weight: 600; font-size: 0.92rem; }
.gq-form-notice--success { background: rgba(var(--gq-primary-rgb), 0.12); color: var(--gq-dark-green); }
.gq-form-notice--error { background: rgba(196, 60, 60, 0.1); color: #a83232; }

@media (min-width: 700px) {
	.gq-form-row--two { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 992px) {
	.gq-contact-page__grid { grid-template-columns: 0.8fr 1.2fr; }
}

/* =========================================================================
   20. COMMENTS
   ========================================================================= */
.gq-comments-wrap { margin-top: 56px; }
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment-list .children { list-style: none; margin-left: 24px; padding: 0; }
.comment-body {
	background: var(--gq-beige);
	border-radius: var(--gq-radius-md);
	padding: 20px;
	margin-bottom: 16px;
}
.comment-reply-link {
	color: var(--gq-primary);
	font-weight: 700;
	font-size: 0.85rem;
}
.comment-form input,
.comment-form textarea {
	width: 100%;
	padding: 12px 16px;
	border-radius: var(--gq-radius-sm);
	border: 1px solid rgba(38, 45, 50, 0.15);
	margin-bottom: 14px;
}
.comment-form .form-submit input {
	width: auto;
	background: var(--gq-primary);
	color: var(--gq-white);
	border: none;
	font-weight: 700;
	border-radius: var(--gq-radius-pill);
	padding: 12px 26px;
}

/* =========================================================================
   21. ELEMENTOR-BUILT PAGE COMPATIBILITY
   ========================================================================= */
.gq-elementor-page .gq-site-content,
.gq-elementor-canvas .gq-site-content {
	padding: 0;
}
.gq-elementor-canvas .gq-site-header,
.gq-elementor-canvas .gq-site-footer {
	display: none;
}

/* Elementor widgets should inherit brand typography by default. */
.elementor-widget-heading .elementor-heading-title {
	font-family: var(--gq-font-heading);
}
.elementor-button {
	font-family: var(--gq-font-heading) !important;
}

/* =========================================================================
   22. ACCESSIBILITY / MISC
   ========================================================================= */
:focus-visible {
	outline: 3px solid var(--gq-secondary);
	outline-offset: 2px;
}

::selection {
	background: var(--gq-light-green);
	color: var(--gq-dark-green);
}

.alignwide { max-width: var(--gq-container); }
.alignfull { max-width: none; width: 100vw; margin-left: calc(50% - 50vw); }
