/*
 * Gift of Kindness — Home page (v2 rebuild)
 * Loaded only on the front page (is_front_page()) — scoped away from the
 * shared header/footer and the Collection Process page entirely.
 *
 * Palette = the four official logo colors, used deliberately (not as a
 * rainbow): blue is the major structural color, red marks the primary
 * action, gold is a warm accent, green marks giving/sustainability,
 * charcoal (#171717) is the standard heading/body ink.
 */
:root {
	--gok-brand-red: #c3311b;
	--gok-brand-red-deep: #9a2615;
	--gok-brand-blue: #3388b3;
	--gok-brand-blue-deep: #256788;
	--gok-brand-gold: #e2a740;
	--gok-brand-gold-deep: #8a5f1c;
	--gok-brand-green: #81a16b;
	--gok-brand-green-deep: #5c7a49;
	--gok-ink-strong: #171717;

	--gok-red-soft: #f7e2dc;
	--gok-blue-soft: #e3f0f5;
	--gok-gold-soft: #fbeeda;
	--gok-green-soft: #eaf0e4;

	--gok-line-soft: #e7e3dc;
}

/* ==========================================================================
   Shared home-page primitives
   ========================================================================== */
.gok-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gok-brand-blue-deep);
	margin-bottom: 16px;
}

.gok-kicker.is-red { color: var(--gok-brand-red-deep); }
.gok-kicker.is-gold { color: var(--gok-brand-gold-deep); }
.gok-kicker.is-green { color: var(--gok-brand-green-deep); }

.gok-kicker-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
	flex-shrink: 0;
}

.gok-btn-v2 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 52px;
	padding: 0 30px;
	border-radius: 8px;
	border: 1px solid transparent;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.gok-btn-v2-red {
	background: var(--gok-brand-red);
	color: #ffffff;
}

.gok-btn-v2-red:hover,
.gok-btn-v2-red:focus-visible {
	background: var(--gok-brand-red-deep);
	transform: translateY(-1px);
}

.gok-btn-v2-line {
	border-color: #d8d2c6;
	color: var(--gok-ink-strong);
	background: transparent;
}

.gok-btn-v2-line:hover,
.gok-btn-v2-line:focus-visible {
	border-color: var(--gok-ink-strong);
	background: var(--gok-ink-strong);
	color: #ffffff;
}

.gok-btn-v2-on-blue {
	border-color: rgba(255, 255, 255, 0.4);
	color: #ffffff;
}

.gok-btn-v2-on-blue:hover,
.gok-btn-v2-on-blue:focus-visible {
	background: #ffffff;
	color: var(--gok-brand-blue-deep);
}

/* ==========================================================================
   1. Hero
   ========================================================================== */
.gok-hero-v2 {
	background: #ffffff;
	padding-top: clamp(52px, 8vw, 96px);
	padding-bottom: clamp(56px, 8vw, 104px);
	overflow: hidden;
}

.gok-hero-v2-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 60px;
	align-items: center;
}

.gok-hero-v2-content {
	max-width: 560px;
}

.gok-hero-v2-content h1 {
	color: var(--gok-ink-strong);
	margin-bottom: 0.4em;
}

.gok-hero-v2-lede {
	font-size: clamp(17px, 1.5vw, 19px);
	color: #4a4a4a;
	max-width: 520px;
}

.gok-hero-v2-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.gok-hero-v2-note {
	margin-top: 36px;
	padding-top: 18px;
	border-top: 1px solid var(--gok-line-soft);
	font-size: 13px;
	letter-spacing: 0.03em;
	color: #6b6b6b;
	max-width: 480px;
}

.gok-hero-v2-visual {
	position: relative;
}

.gok-hero-v2-colorblock {
	position: absolute;
	top: -24px;
	right: -24px;
	width: 82%;
	height: 88%;
	background: var(--gok-brand-blue);
	border-radius: 20px;
	z-index: 0;
}

.gok-hero-v2-frame {
	position: relative;
	z-index: 1;
	margin-left: 32px;
	border-radius: 18px;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	box-shadow: 0 24px 48px rgba(23, 23, 23, 0.16);
}

.gok-hero-v2-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gok-hero-v2-tag {
	position: relative;
	z-index: 2;
	margin-top: -28px;
	margin-left: 12px;
	max-width: 220px;
	background: var(--gok-brand-gold);
	color: var(--gok-ink-strong);
	padding: 14px 18px;
	border-radius: 12px;
	font-family: var(--gok-font-display);
	font-weight: 600;
	font-size: 15px;
	line-height: 1.3;
	box-shadow: 0 14px 30px rgba(23, 23, 23, 0.18);
}

@media (max-width: 960px) {
	.gok-hero-v2-grid {
		grid-template-columns: 1fr;
	}

	.gok-hero-v2-visual {
		max-width: 420px;
		margin-top: 24px;
	}

	.gok-hero-v2-colorblock {
		top: -16px;
		right: -16px;
	}

	.gok-hero-v2-frame {
		margin-left: 20px;
	}
}

@media (max-width: 480px) {
	.gok-hero-v2-frame {
		aspect-ratio: 4 / 3;
		margin-left: 12px;
	}

	.gok-hero-v2-colorblock {
		width: 90%;
		height: 92%;
	}

	.gok-hero-v2-tag {
		margin-top: -18px;
	}
}

/* ==========================================================================
   2. Intro / core idea
   ========================================================================== */
.gok-intro {
	background: #ffffff;
	border-top: 1px solid var(--gok-line-soft);
	border-bottom: 1px solid var(--gok-line-soft);
}

.gok-intro-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.6fr;
	gap: 48px;
	align-items: center;
}

.gok-intro-statement {
	font-family: var(--gok-font-display);
	font-size: clamp(1.7rem, 3.4vw, 2.5rem);
	font-weight: 600;
	line-height: 1.3;
	color: var(--gok-ink-strong);
	letter-spacing: -0.01em;
}

.gok-intro-statement em {
	font-style: normal;
	color: var(--gok-brand-blue-deep);
}

.gok-intro-support {
	margin-top: 20px;
	font-size: 17px;
	max-width: 540px;
	color: #4a4a4a;
}

.gok-intro-media {
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}

.gok-intro-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 860px) {
	.gok-intro-grid {
		grid-template-columns: 1fr;
	}

	.gok-intro-media {
		max-width: 220px;
	}
}

/* ==========================================================================
   3. Where Your Gift Goes — asymmetric editorial layout
   ========================================================================== */
.gok-goes {
	background: #fbf9f5;
}

.gok-goes-head {
	max-width: 640px;
	margin-bottom: 44px;
}

.gok-goes-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 28px;
}

.gok-goes-featured {
	position: relative;
	grid-column: 1;
	grid-row: 1 / 3;
	border-radius: 18px;
	overflow: hidden;
	min-height: 420px;
	color: #ffffff;
}

.gok-goes-featured img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gok-goes-featured::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(23, 23, 23, 0.82) 0%, rgba(23, 23, 23, 0.18) 55%, rgba(23, 23, 23, 0) 75%);
}

.gok-goes-featured-body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 100%;
	padding: 34px;
}

.gok-goes-featured .gok-kicker {
	color: var(--gok-brand-gold);
}

.gok-goes-featured-body h3 {
	color: #ffffff;
	font-size: clamp(1.4rem, 2.4vw, 1.8rem);
}

.gok-goes-featured-body p {
	color: rgba(255, 255, 255, 0.86);
	max-width: 420px;
}

.gok-goes-story {
	background: #ffffff;
	border: 1px solid var(--gok-line-soft);
	border-radius: 16px;
	padding: 28px 26px;
}

.gok-goes-story.is-blue { border-top: 3px solid var(--gok-brand-blue); }
.gok-goes-story.is-green { border-top: 3px solid var(--gok-brand-green); }

.gok-goes-story h3 {
	color: var(--gok-ink-strong);
	font-size: 1.2rem;
}

@media (max-width: 900px) {
	.gok-goes-grid {
		grid-template-columns: 1fr;
	}

	.gok-goes-featured {
		grid-row: auto;
		min-height: 320px;
	}
}

/* ==========================================================================
   4. What Can You Gift — image + grouped categories
   ========================================================================== */
.gok-categories {
	background: #ffffff;
}

.gok-categories-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 56px;
	align-items: start;
}

.gok-categories-media {
	position: sticky;
	top: 24px;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 3 / 4;
}

.gok-categories-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gok-category-groups {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px 40px;
}

.gok-category-group-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.gok-category-group.is-red .gok-category-group-label { color: var(--gok-brand-red-deep); }
.gok-category-group.is-blue .gok-category-group-label { color: var(--gok-brand-blue-deep); }
.gok-category-group.is-gold .gok-category-group-label { color: var(--gok-brand-gold-deep); }
.gok-category-group.is-green .gok-category-group-label { color: var(--gok-brand-green-deep); }

.gok-category-group-label::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: currentColor;
}

.gok-category-group ul {
	display: grid;
	gap: 6px;
}

.gok-category-group li {
	font-size: 15.5px;
	color: var(--gok-ink-strong);
	padding-left: 16px;
	position: relative;
}

.gok-category-group li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 6px;
	height: 1px;
	background: #b9b3a6;
}

@media (max-width: 900px) {
	.gok-categories-grid {
		grid-template-columns: 1fr;
	}

	.gok-categories-media {
		position: static;
		aspect-ratio: 16 / 9;
		max-width: 480px;
	}
}

@media (max-width: 560px) {
	.gok-category-groups {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   5. Community story — photo-led, overlapping composition
   ========================================================================== */
.gok-story {
	background: #fbf9f5;
}

.gok-story-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: center;
	gap: 0;
}

.gok-story-media {
	border-radius: 18px;
	overflow: hidden;
	aspect-ratio: 5 / 4;
	box-shadow: 0 24px 48px rgba(23, 23, 23, 0.14);
}

.gok-story-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gok-story-content {
	position: relative;
	background: var(--gok-ink-strong);
	color: #ffffff;
	border-radius: 18px;
	padding: 40px 38px;
	margin-left: -56px;
	z-index: 1;
}

.gok-story-content .gok-kicker {
	color: var(--gok-brand-gold);
}

.gok-story-content h2 {
	color: #ffffff;
}

.gok-story-content p {
	color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 900px) {
	.gok-story-grid {
		grid-template-columns: 1fr;
	}

	.gok-story-content {
		margin-left: 0;
		margin-top: -40px;
		width: calc(100% - 24px);
	}
}

@media (max-width: 480px) {
	.gok-story-content {
		margin-top: 16px;
		width: 100%;
		padding: 30px 26px;
	}
}

/* ==========================================================================
   6. Collection Process teaser
   ========================================================================== */
.gok-process-teaser-v2 {
	background: #ffffff;
}

.gok-process-teaser-v2-inner {
	max-width: 880px;
	margin-inline: auto;
	text-align: center;
}

.gok-process-teaser-v2 h2 {
	color: var(--gok-ink-strong);
}

.gok-process-teaser-v2 p {
	max-width: 560px;
	margin: 14px auto 0;
	font-size: 17px;
	color: #4a4a4a;
}

.gok-process-rail {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin: 40px 0;
}

.gok-process-rail-step {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid var(--gok-line-soft);
	background: #fbf9f5;
	font-family: var(--gok-font-display);
	font-weight: 600;
	font-size: 14px;
	color: var(--gok-ink-strong);
	flex-shrink: 0;
}

.gok-process-rail-step:nth-child(4n+1) { border-color: var(--gok-brand-red); color: var(--gok-brand-red-deep); }
.gok-process-rail-step:nth-child(4n+3) { border-color: var(--gok-brand-blue); color: var(--gok-brand-blue-deep); }
.gok-process-rail-step:nth-child(4n+5) { border-color: var(--gok-brand-gold); color: var(--gok-brand-gold-deep); }

.gok-process-rail-line {
	width: 44px;
	height: 1px;
	background: var(--gok-line-soft);
	flex-shrink: 1;
}

@media (max-width: 560px) {
	.gok-process-rail-line {
		width: 20px;
	}

	.gok-process-rail-step {
		width: 38px;
		height: 38px;
		font-size: 12.5px;
	}
}

/* ==========================================================================
   7. Gift an Item / donation form
   ========================================================================== */
.gok-donate-v2 {
	background: #fbf9f5;
}

.gok-donate-v2-grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 40px;
	align-items: start;
}

.gok-donate-v2-info {
	background: var(--gok-blue-soft);
	border-left: 4px solid var(--gok-brand-blue);
	border-radius: 0 16px 16px 0;
	padding: 36px 32px;
	position: sticky;
	top: 24px;
}

.gok-donate-v2-info h2 {
	color: var(--gok-ink-strong);
	font-size: clamp(1.5rem, 2.4vw, 1.9rem);
}

.gok-donate-v2-fee {
	margin-top: 26px;
	padding: 18px 20px;
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid rgba(51, 136, 179, 0.22);
}

.gok-donate-v2-fee strong {
	display: block;
	color: var(--gok-brand-blue-deep);
	margin-bottom: 6px;
	font-size: 16px;
}

.gok-donate-v2-fee p {
	font-size: 14px;
	margin: 0;
}

.gok-donate-v2-form {
	background: #ffffff;
	border: 1px solid var(--gok-line-soft);
	border-radius: 16px;
	padding: 38px;
}

.gok-donate-v2-form h3 {
	color: var(--gok-ink-strong);
}

@media (max-width: 860px) {
	.gok-donate-v2-grid {
		grid-template-columns: 1fr;
	}

	.gok-donate-v2-info {
		position: static;
	}

	.gok-donate-v2-form {
		padding: 26px;
	}
}

/* ==========================================================================
   8. Why Gift of Kindness — typography + photography
   ========================================================================== */
.gok-why-v2 {
	background: #ffffff;
}

.gok-why-v2-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 56px;
	align-items: center;
}

.gok-why-v2-statement {
	font-family: var(--gok-font-display);
	font-size: clamp(1.7rem, 3vw, 2.3rem);
	font-weight: 600;
	line-height: 1.32;
	color: var(--gok-ink-strong);
}

.gok-why-v2-body p {
	margin-top: 18px;
	font-size: 16.5px;
	color: #4a4a4a;
}

.gok-why-v2-media {
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 4 / 5;
}

.gok-why-v2-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 900px) {
	.gok-why-v2-grid {
		grid-template-columns: 1fr;
	}

	.gok-why-v2-media {
		order: -1;
		max-width: 320px;
	}
}

/* ==========================================================================
   9. Transparency — light, clean, restrained accents
   ========================================================================== */
.gok-transparency-v2 {
	background: #fbf9f5;
}

.gok-transparency-v2-head {
	max-width: 640px;
	margin-bottom: 40px;
}

.gok-transparency-v2-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.gok-transparency-v2-item {
	background: #ffffff;
	border-radius: 14px;
	padding: 28px 26px;
	border-top: 3px solid var(--gok-line-soft);
}

.gok-transparency-v2-item.is-green { border-top-color: var(--gok-brand-green); }
.gok-transparency-v2-item.is-blue { border-top-color: var(--gok-brand-blue); }
.gok-transparency-v2-item.is-gold { border-top-color: var(--gok-brand-gold); }

.gok-transparency-v2-item h3 {
	color: var(--gok-ink-strong);
	font-size: 1.1rem;
}

@media (max-width: 860px) {
	.gok-transparency-v2-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   10. Final CTA
   ========================================================================== */
.gok-final-cta {
	background: #fbf9f5;
}

.gok-final-cta-box {
	background: var(--gok-brand-blue-deep);
	color: #ffffff;
	border-radius: 20px;
	padding: clamp(48px, 8vw, 80px) clamp(28px, 6vw, 64px);
	text-align: center;
}

.gok-final-cta-box .gok-kicker {
	color: var(--gok-brand-gold);
	justify-content: center;
}

.gok-final-cta-box h2 {
	color: #ffffff;
	max-width: 720px;
	margin-inline: auto;
}

.gok-final-cta-box p {
	max-width: 600px;
	margin: 16px auto 30px;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.82);
}

/* ==========================================================================
   11. Premium visual refinement (v3)
   Works with both the static fallback HTML and saved Elementor content.
   ========================================================================== */

body.home #gok-content {
	overflow: hidden;
	background: #ffffff;
}

body.home #gok-content h1,
body.home #gok-content h2,
body.home #gok-content h3 {
	font-family: var(--gok-font-display) !important;
	font-weight: 400;
	letter-spacing: -0.025em;
}

body.home #gok-content p,
body.home #gok-content li,
body.home #gok-content a,
body.home #gok-content span {
	font-family: var(--gok-font-body);
}

.elementor-section.gok-hero-v2 > .elementor-container,
.elementor-section.gok-intro > .elementor-container,
.elementor-section.gok-goes > .elementor-container,
.elementor-section.gok-categories > .elementor-container,
.elementor-section.gok-story > .elementor-container,
.elementor-section.gok-process-teaser-v2 > .elementor-container,
.elementor-section.gok-donate-v2 > .elementor-container,
.elementor-section.gok-why-v2 > .elementor-container,
.elementor-section.gok-transparency-v2 > .elementor-container,
.elementor-section.gok-final-cta > .elementor-container {
	width: min(calc(100% - 48px), 1200px);
	max-width: 1200px;
	margin-inline: auto;
}

.gok-kicker {
	margin-bottom: 20px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.16em;
	color: #256788;
}

.gok-kicker-dot {
	width: 8px;
	height: 8px;
	box-shadow: 0 0 0 4px rgba(51, 136, 179, 0.1);
}

.gok-btn-v2 {
	min-height: 54px;
	padding-inline: 28px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 800;
	box-shadow: none;
}

.gok-btn-v2-red {
	background: #171717;
}

.gok-btn-v2-red:hover,
.gok-btn-v2-red:focus-visible {
	background: #c3311b;
	box-shadow: 0 10px 24px rgba(195, 49, 27, 0.2);
}

.gok-btn-v2-line {
	border-color: #c9c9c2;
	background: rgba(255, 255, 255, 0.72);
}

.gok-hero-v2 .elementor-button,
.gok-process-teaser-v2 .elementor-button,
.gok-final-cta .elementor-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 28px !important;
	border-radius: 999px !important;
	font-family: var(--gok-font-body);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.gok-hero-v2-actions > .elementor-container > .elementor-column:first-child .elementor-button,
.gok-process-teaser-v2 .elementor-button {
	border-color: #171717 !important;
	background: #171717 !important;
	color: #ffffff !important;
}

.gok-hero-v2-actions > .elementor-container > .elementor-column:first-child .elementor-button:hover,
.gok-process-teaser-v2 .elementor-button:hover {
	border-color: #c3311b !important;
	background: #c3311b !important;
	transform: translateY(-1px);
}

.gok-hero-v2-actions > .elementor-container > .elementor-column:last-child .elementor-button {
	border-color: #c9c9c2 !important;
	background: rgba(255, 255, 255, 0.72) !important;
	color: #171717 !important;
}

.gok-hero-v2-actions > .elementor-container > .elementor-column:last-child .elementor-button:hover {
	border-color: #171717 !important;
	background: #171717 !important;
	color: #ffffff !important;
}

/* Hero */
.gok-hero-v2 {
	position: relative;
	padding: clamp(74px, 8vw, 118px) 0 clamp(84px, 9vw, 126px);
	background:
		linear-gradient(90deg, #f6f7f3 0%, #f6f7f3 58%, #ffffff 58%, #ffffff 100%);
}

.gok-hero-v2::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 34%;
	height: 5px;
	background: linear-gradient(90deg, #c3311b 0 32%, #e2a740 32% 58%, #3388b3 58% 80%, #81a16b 80%);
}

.gok-hero-v2-grid,
.elementor-section.gok-hero-v2 > .elementor-container {
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
	gap: clamp(54px, 7vw, 92px);
	align-items: center;
}

.elementor-section.gok-hero-v2 > .elementor-container {
	display: grid;
}

.elementor-section.gok-hero-v2 > .elementor-container > .elementor-column {
	width: 100% !important;
}

.elementor-section.gok-hero-v2 > .elementor-container > .elementor-column:first-child {
	padding-right: clamp(10px, 2vw, 28px);
}

.gok-hero-v2-content {
	max-width: 650px;
}

.gok-hero-v2-content h1,
.gok-hero-v2-content .elementor-heading-title {
	font-size: clamp(3.25rem, 5.7vw, 5.25rem) !important;
	line-height: 0.99 !important;
	max-width: 690px;
	margin-bottom: 28px;
}

.gok-hero-v2-lede,
.gok-hero-v2-lede p {
	font-size: clamp(16px, 1.35vw, 18px) !important;
	line-height: 1.75;
	color: #53534e;
	max-width: 570px;
}

.gok-hero-v2-actions {
	margin-top: 36px;
	gap: 12px;
}

.elementor-section.gok-hero-v2-actions > .elementor-container {
	display: flex;
	gap: 12px;
}

.elementor-section.gok-hero-v2-actions .elementor-column {
	width: auto !important;
}

.elementor-section.gok-hero-v2-actions .elementor-widget-button,
.elementor-section.gok-hero-v2-actions .elementor-widget-container {
	margin: 0;
}

.gok-hero-v2-note,
.gok-hero-v2-note .elementor-widget-container {
	margin-top: 38px;
	padding-top: 20px;
	border-top: 1px solid #d9d9d3;
	font-size: 11px !important;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #77776f;
}

.gok-hero-v2-visual {
	max-width: 500px;
	margin-left: auto;
}

.gok-hero-v2-colorblock {
	top: -28px;
	right: -30px;
	width: 78%;
	height: calc(100% - 22px);
	border-radius: 30px 30px 8px 30px;
	background: #3388b3;
}

.gok-hero-v2-frame {
	margin-left: 0;
	aspect-ratio: 0.92;
	border: 8px solid #ffffff;
	border-radius: 28px 28px 8px 28px;
	box-shadow: 0 30px 70px rgba(25, 37, 31, 0.18);
}

.gok-hero-v2-tag {
	position: absolute;
	left: -24px;
	bottom: -25px;
	margin: 0;
	max-width: none;
	padding: 15px 20px;
	border-radius: 999px;
	background: #171717;
	color: #ffffff;
	font-family: var(--gok-font-body);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.04em;
	box-shadow: 0 14px 30px rgba(17, 17, 17, 0.2);
}

/* Intro */
.gok-intro {
	padding: clamp(80px, 9vw, 124px) 0;
	border: 0;
	background: #ffffff;
}

.gok-intro-grid,
.elementor-section.gok-intro > .elementor-container {
	grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
	gap: clamp(56px, 9vw, 118px);
	align-items: center;
}

.elementor-section.gok-intro > .elementor-container {
	display: grid;
}

.elementor-section.gok-intro > .elementor-container > .elementor-column {
	width: 100% !important;
}

.gok-intro-statement,
.gok-intro-statement .elementor-heading-title {
	font-size: clamp(2.25rem, 4.3vw, 4rem) !important;
	line-height: 1.08 !important;
	max-width: 760px;
}

.gok-intro-statement em {
	font-style: italic;
	color: #256788;
}

.gok-intro-support,
.gok-intro-support p {
	font-size: 17px !important;
	line-height: 1.75;
	max-width: 650px;
}

.gok-intro-media {
	aspect-ratio: 1;
	border-radius: 50% 50% 10px 50%;
	box-shadow: 16px 18px 0 #f1d99f;
}

/* Where gifts go */
.gok-goes {
	background: #f4f5f1;
}

section.gok-goes:not(.elementor-section) {
	padding: clamp(86px, 9vw, 124px) 0;
}

.elementor-section.gok-goes {
	padding: clamp(86px, 9vw, 124px) 0 22px;
}

.elementor-section.gok-goes + .elementor-section.gok-goes {
	padding: 0 0 clamp(86px, 9vw, 124px);
}

.gok-goes-head,
.gok-goes-head .elementor-heading-title {
	max-width: 760px;
}

.gok-goes h2,
.gok-goes h2.elementor-heading-title {
	font-size: clamp(2.45rem, 4vw, 3.8rem) !important;
	line-height: 1.06 !important;
}

.gok-goes-grid,
.elementor-section.gok-goes + .elementor-section.gok-goes > .elementor-container {
	gap: 26px;
}

.elementor-section.gok-goes + .elementor-section.gok-goes > .elementor-container {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(300px, 1fr);
}

.elementor-section.gok-goes + .elementor-section.gok-goes > .elementor-container > .elementor-column {
	width: 100% !important;
}

.gok-goes-featured {
	min-height: 500px;
	border-radius: 26px;
	box-shadow: 0 22px 50px rgba(24, 34, 29, 0.12);
}

.gok-goes-featured::after {
	background: linear-gradient(0deg, rgba(12, 17, 15, 0.92) 0%, rgba(12, 17, 15, 0.24) 64%, transparent 84%);
}

.gok-goes-featured-body {
	padding: clamp(30px, 4vw, 46px);
}

.gok-goes-featured-body h3 {
	font-size: clamp(1.8rem, 2.8vw, 2.45rem) !important;
	line-height: 1.08;
	max-width: 480px;
}

.gok-goes-story {
	min-height: 225px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 34px 32px;
	border: 1px solid #dfdfda;
	border-radius: 22px;
	box-shadow: 0 10px 30px rgba(24, 34, 29, 0.045);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gok-goes-story:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 42px rgba(24, 34, 29, 0.09);
}

.gok-goes-story.is-blue { border-top: 5px solid #3388b3; }
.gok-goes-story.is-green { border-top: 5px solid #81a16b; }

.gok-goes-story h3,
.gok-goes-story h3.elementor-heading-title {
	font-size: 1.5rem !important;
}

/* Categories */
.gok-categories {
	padding: clamp(86px, 9vw, 124px) 0;
	background: #ffffff;
}

.gok-categories-grid,
.elementor-section.gok-categories > .elementor-container {
	gap: clamp(48px, 7vw, 88px);
	align-items: center;
}

.elementor-section.gok-categories > .elementor-container {
	display: grid;
	grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
}

.elementor-section.gok-categories > .elementor-container > .elementor-column {
	width: 100% !important;
}

.gok-categories-media {
	position: relative;
	top: auto;
	aspect-ratio: 0.88;
	border-radius: 28px 28px 8px 28px;
	box-shadow: -18px 18px 0 #e3f0f5;
}

.gok-categories h2,
.gok-categories h2.elementor-heading-title {
	font-size: clamp(2.4rem, 4vw, 3.65rem) !important;
	line-height: 1.07 !important;
}

.gok-category-groups {
	margin-top: 34px;
	gap: 16px;
}

.gok-category-group {
	padding: 22px 20px;
	border: 1px solid #e5e5df;
	border-radius: 16px;
	background: #fafaf8;
}

.gok-category-group-label {
	font-size: 11px;
	letter-spacing: 0.1em;
}

.gok-category-group li {
	font-size: 14px;
}

/* Community story */
.gok-story {
	padding: clamp(86px, 9vw, 124px) 0;
	background: #101b17;
}

.gok-story-grid,
.elementor-section.gok-story > .elementor-container {
	align-items: center;
}

.elementor-section.gok-story > .elementor-container {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
}

.elementor-section.gok-story > .elementor-container > .elementor-column {
	width: 100% !important;
}

.gok-story-media {
	aspect-ratio: 1.2;
	border-radius: 28px 8px 28px 28px;
	box-shadow: 0 26px 60px rgba(0, 0, 0, 0.26);
}

.gok-story-content {
	margin-left: -74px;
	padding: clamp(38px, 5vw, 58px);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 8px 28px 28px 28px;
	background: #1a2c25;
	box-shadow: 0 28px 64px rgba(0, 0, 0, 0.22);
}

.gok-story-content h2,
.gok-story-content h2.elementor-heading-title {
	font-size: clamp(2.2rem, 3.8vw, 3.4rem) !important;
	line-height: 1.08 !important;
}

/* Process teaser */
.gok-process-teaser-v2 {
	padding: clamp(84px, 9vw, 120px) 0;
	background: #ffffff;
}

.gok-process-teaser-v2-inner,
.elementor-column.gok-process-teaser-v2-inner {
	max-width: 920px;
	margin-inline: auto;
}

.gok-process-teaser-v2 h2,
.gok-process-teaser-v2 h2.elementor-heading-title {
	font-size: clamp(2.4rem, 4.2vw, 3.8rem) !important;
}

.gok-process-rail {
	margin: 48px 0;
}

.gok-process-rail-step {
	width: 54px;
	height: 54px;
	border: 0;
	background: #f2f3ef;
	font-family: var(--gok-font-body);
	font-size: 12px;
	font-weight: 800;
}

.gok-process-rail-line {
	width: clamp(28px, 5vw, 72px);
	height: 2px;
	background: #e2e2dc;
}

/* Donation */
.gok-donate-v2 {
	padding: clamp(86px, 9vw, 124px) 0;
	background: #f4f5f1;
}

.gok-donate-v2-grid,
.elementor-section.gok-donate-v2 > .elementor-container {
	gap: 28px;
}

.elementor-section.gok-donate-v2 > .elementor-container {
	display: grid;
	grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
	align-items: start;
}

.elementor-section.gok-donate-v2 > .elementor-container > .elementor-column {
	width: 100% !important;
}

.gok-donate-v2-info {
	padding: clamp(34px, 4vw, 50px);
	border: 0;
	border-radius: 24px 8px 24px 24px;
	background: #256788;
	color: #ffffff;
	top: 112px;
}

.gok-donate-v2-info h2,
.gok-donate-v2-info h2.elementor-heading-title {
	font-size: clamp(2rem, 3vw, 2.8rem) !important;
	color: #ffffff !important;
}

.gok-donate-v2-info p {
	color: rgba(255, 255, 255, 0.82) !important;
}

.gok-donate-v2-fee {
	margin-top: 32px;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
}

.gok-donate-v2-fee strong {
	color: #ffffff;
}

.gok-donate-v2-form {
	padding: clamp(34px, 4vw, 50px);
	border: 1px solid #dfdfda;
	border-radius: 8px 24px 24px 24px;
	box-shadow: 0 18px 50px rgba(24, 34, 29, 0.07);
}

.gok-donate-v2-form h3,
.gok-donate-v2-form h3.elementor-heading-title {
	font-size: 2rem !important;
}

/* Why + transparency */
.gok-why-v2 {
	padding: clamp(86px, 9vw, 124px) 0;
	background: #ffffff;
}

.gok-why-v2-grid,
.elementor-section.gok-why-v2 > .elementor-container {
	gap: clamp(50px, 8vw, 100px);
}

.elementor-section.gok-why-v2 > .elementor-container {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	align-items: center;
}

.elementor-section.gok-why-v2 > .elementor-container > .elementor-column {
	width: 100% !important;
}

.gok-why-v2-statement,
.gok-why-v2-statement .elementor-heading-title {
	font-size: clamp(2.3rem, 4vw, 3.7rem) !important;
	line-height: 1.08 !important;
}

.gok-why-v2-media {
	aspect-ratio: 0.9;
	border-radius: 28px 28px 28px 8px;
	box-shadow: 18px 18px 0 #f3dfdc;
}

.gok-transparency-v2 {
	background: #f4f5f1;
}

section.gok-transparency-v2:not(.elementor-section) {
	padding: clamp(86px, 9vw, 124px) 0;
}

.elementor-section.gok-transparency-v2 {
	padding: clamp(86px, 9vw, 124px) 0 20px;
}

.elementor-section.gok-transparency-v2 + .elementor-section.gok-transparency-v2 {
	padding: 0 0 clamp(86px, 9vw, 124px);
}

.gok-transparency-v2 h2,
.gok-transparency-v2 h2.elementor-heading-title {
	font-size: clamp(2.4rem, 4vw, 3.7rem) !important;
}

.gok-transparency-v2-grid,
.elementor-section.gok-transparency-v2 + .elementor-section.gok-transparency-v2 > .elementor-container {
	gap: 18px;
}

.elementor-section.gok-transparency-v2 + .elementor-section.gok-transparency-v2 > .elementor-container {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.elementor-section.gok-transparency-v2 + .elementor-section.gok-transparency-v2 > .elementor-container > .elementor-column {
	width: 100% !important;
}

.gok-transparency-v2-item {
	min-height: 230px;
	padding: 34px 30px;
	border: 1px solid #deded8;
	border-radius: 18px;
	background: #ffffff;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gok-transparency-v2-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 44px rgba(24, 34, 29, 0.08);
}

.gok-transparency-v2-item.is-green { border-top: 5px solid #81a16b; }
.gok-transparency-v2-item.is-blue { border-top: 5px solid #3388b3; }
.gok-transparency-v2-item.is-gold { border-top: 5px solid #e2a740; }

.gok-transparency-v2-item h3,
.gok-transparency-v2-item h3.elementor-heading-title {
	font-size: 1.55rem !important;
}

/* Final CTA */
.gok-final-cta {
	padding: clamp(72px, 8vw, 108px) 0;
	background: #ffffff;
}

.gok-final-cta-box {
	position: relative;
	overflow: hidden;
	padding: clamp(60px, 8vw, 96px) clamp(28px, 8vw, 92px);
	border-radius: 32px 8px 32px 32px;
	background: #171717;
}

.gok-final-cta-box::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, #c3311b 0 25%, #e2a740 25% 50%, #3388b3 50% 75%, #81a16b 75%);
}

.gok-final-cta-box h2,
.gok-final-cta-box h2.elementor-heading-title {
	font-size: clamp(2.5rem, 4.5vw, 4.1rem) !important;
	line-height: 1.05 !important;
}

.gok-final-cta-box .elementor-button,
.gok-final-cta-box .gok-btn-v2-on-blue {
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.5);
}

@media (max-width: 960px) {
	.gok-hero-v2 {
		background: #f6f7f3;
	}

	.gok-hero-v2-grid,
	.elementor-section.gok-hero-v2 > .elementor-container,
	.gok-intro-grid,
	.elementor-section.gok-intro > .elementor-container,
	.gok-categories-grid,
	.elementor-section.gok-categories > .elementor-container,
	.gok-why-v2-grid,
	.elementor-section.gok-why-v2 > .elementor-container {
		display: grid;
		grid-template-columns: 1fr;
	}

	.elementor-section.gok-hero-v2 > .elementor-container > .elementor-column,
	.elementor-section.gok-intro > .elementor-container > .elementor-column,
	.elementor-section.gok-categories > .elementor-container > .elementor-column,
	.elementor-section.gok-why-v2 > .elementor-container > .elementor-column {
		width: 100% !important;
	}

	.gok-hero-v2-visual {
		width: min(100%, 560px);
		margin: 28px auto 0;
	}

	.gok-story-content {
		margin-left: 0;
		margin-top: -42px;
		width: calc(100% - 28px);
	}

	.elementor-section.gok-goes + .elementor-section.gok-goes > .elementor-container,
	.elementor-section.gok-story > .elementor-container,
	.elementor-section.gok-donate-v2 > .elementor-container {
		grid-template-columns: 1fr;
	}

	.elementor-section.gok-goes + .elementor-section.gok-goes > .elementor-container > .elementor-column,
	.elementor-section.gok-story > .elementor-container > .elementor-column,
	.elementor-section.gok-donate-v2 > .elementor-container > .elementor-column {
		width: 100% !important;
	}

	.gok-categories-media,
	.gok-why-v2-media {
		width: min(100%, 580px);
		max-width: none;
	}
}

@media (max-width: 767px) {
	.elementor-section.gok-hero-v2 > .elementor-container,
	.elementor-section.gok-intro > .elementor-container,
	.elementor-section.gok-goes > .elementor-container,
	.elementor-section.gok-categories > .elementor-container,
	.elementor-section.gok-story > .elementor-container,
	.elementor-section.gok-process-teaser-v2 > .elementor-container,
	.elementor-section.gok-donate-v2 > .elementor-container,
	.elementor-section.gok-why-v2 > .elementor-container,
	.elementor-section.gok-transparency-v2 > .elementor-container,
	.elementor-section.gok-final-cta > .elementor-container {
		width: min(calc(100% - 36px), 1200px);
	}

	.gok-hero-v2-content h1,
	.gok-hero-v2-content .elementor-heading-title {
		font-size: clamp(2.85rem, 13vw, 4.25rem) !important;
	}

	.elementor-section.gok-hero-v2-actions > .elementor-container {
		display: grid;
		grid-template-columns: 1fr;
	}

	.elementor-section.gok-hero-v2-actions .elementor-column {
		width: 100% !important;
	}

	.gok-btn-v2,
	.elementor-section.gok-hero-v2-actions .elementor-button {
		width: 100%;
	}

	.gok-hero-v2-colorblock {
		right: -12px;
		top: -14px;
	}

	.gok-hero-v2-frame {
		border-width: 5px;
		border-radius: 22px 22px 7px 22px;
	}

	.gok-hero-v2-tag {
		left: 14px;
		bottom: -20px;
	}

	.gok-intro-media {
		width: min(78vw, 340px);
	}

	.gok-goes-featured {
		min-height: 420px;
	}

	.gok-category-groups {
		grid-template-columns: 1fr;
	}

	.elementor-section.gok-transparency-v2 + .elementor-section.gok-transparency-v2 > .elementor-container {
		grid-template-columns: 1fr;
	}

	.gok-story-content {
		margin-top: 18px;
		width: 100%;
	}

	.gok-process-rail-step {
		width: 40px;
		height: 40px;
	}

	.gok-process-rail-line {
		width: 14px;
	}

	.gok-donate-v2-info,
	.gok-donate-v2-form {
		padding: 30px 24px;
	}

	.gok-final-cta-box {
		border-radius: 24px 7px 24px 24px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gok-goes-story,
	.gok-transparency-v2-item,
	.gok-btn-v2 {
		transition: none;
	}
}

/* ==========================================================================
   12. Native Elementor widget layout (v1.3)
   Every visual component below is an individual Elementor widget/column.
   ========================================================================== */

body.home #gok-content .elementor-widget-heading.gok-kicker {
	margin-bottom: 20px;
}

.elementor-widget-text-editor.gok-section-intro-copy p {
	max-width: 640px;
	color: #5a5a54;
	font-size: 16px;
	line-height: 1.75;
}

.elementor-column.gok-categories-content > .elementor-widget-wrap {
	display: flex;
	flex-direction: column;
}

/* Hero image composition built from an editable Image and Heading widget. */
.elementor-column.gok-hero-v2-media-column {
	position: relative;
	isolation: isolate;
	max-width: 500px;
	margin-left: auto;
}

.elementor-column.gok-hero-v2-media-column::before {
	content: "";
	position: absolute;
	top: -28px;
	right: -30px;
	z-index: -1;
	width: 78%;
	height: calc(100% - 22px);
	border-radius: 30px 30px 8px 30px;
	background: #3388b3;
}

.elementor-column.gok-hero-v2-media-column > .elementor-widget-wrap {
	position: relative;
	min-height: 100%;
}

.elementor-widget-image.gok-hero-v2-image {
	position: relative;
	z-index: 1;
	width: 100%;
	margin: 0;
	overflow: hidden;
	border: 8px solid #ffffff;
	border-radius: 28px 28px 8px 28px;
	background: #e9e9e5;
	box-shadow: 0 30px 70px rgba(25, 37, 31, 0.18);
}

.elementor-widget-image.gok-hero-v2-image .elementor-widget-container {
	height: 100%;
}

.elementor-widget-image.gok-hero-v2-image img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 0.92;
	object-fit: cover;
}

.elementor-widget-heading.gok-hero-v2-tag {
	position: absolute;
	right: auto;
	bottom: -25px;
	left: -24px;
	z-index: 3;
	width: auto;
	max-width: calc(100% - 20px);
	margin: 0;
	padding: 0;
	background: transparent;
	box-shadow: none;
}

.elementor-widget-heading.gok-hero-v2-tag .elementor-heading-title {
	display: block;
	margin: 0;
	padding: 15px 20px;
	border-radius: 999px;
	background: #171717;
	color: #ffffff !important;
	box-shadow: 0 14px 30px rgba(17, 17, 17, 0.2);
	font-family: var(--gok-font-body) !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	line-height: 1.3 !important;
	letter-spacing: 0.04em;
}

/* Keep native Elementor Image widgets cropped inside their designed frames. */
.elementor-widget-image.gok-intro-media,
.elementor-widget-image.gok-categories-media,
.elementor-widget-image.gok-story-media,
.elementor-widget-image.gok-why-v2-media {
	width: 100%;
}

.elementor-widget-image.gok-intro-media .elementor-widget-container,
.elementor-widget-image.gok-categories-media .elementor-widget-container,
.elementor-widget-image.gok-story-media .elementor-widget-container,
.elementor-widget-image.gok-why-v2-media .elementor-widget-container,
.elementor-widget-image.gok-intro-media a,
.elementor-widget-image.gok-categories-media a,
.elementor-widget-image.gok-story-media a,
.elementor-widget-image.gok-why-v2-media a {
	display: block;
	width: 100%;
	height: 100%;
}

.elementor-widget-image.gok-intro-media img,
.elementor-widget-image.gok-categories-media img,
.elementor-widget-image.gok-story-media img,
.elementor-widget-image.gok-why-v2-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Featured impact story: native image and text widgets layered as a card. */
.elementor-column.gok-goes-featured-card {
	position: relative;
	overflow: hidden;
	min-height: 500px;
	border-radius: 26px;
	background: #17201c;
	color: #ffffff;
	box-shadow: 0 22px 50px rgba(24, 34, 29, 0.12);
}

.elementor-column.gok-goes-featured-card > .elementor-widget-wrap {
	position: relative;
	display: flex;
	min-height: 500px;
	padding: clamp(30px, 4vw, 46px);
	flex-direction: column;
	align-content: stretch;
	justify-content: flex-end;
}

.elementor-column.gok-goes-featured-card > .elementor-widget-wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(0deg, rgba(12, 17, 15, 0.94) 0%, rgba(12, 17, 15, 0.32) 60%, rgba(12, 17, 15, 0.02) 86%);
	pointer-events: none;
}

.elementor-widget-image.gok-goes-featured-image {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	margin: 0;
}

.elementor-widget-image.gok-goes-featured-image .elementor-widget-container,
.elementor-widget-image.gok-goes-featured-image img {
	display: block;
	width: 100%;
	height: 100%;
}

.elementor-widget-image.gok-goes-featured-image img {
	object-fit: cover;
}

.elementor-column.gok-goes-featured-card .gok-goes-featured-kicker,
.elementor-column.gok-goes-featured-card .gok-goes-featured-title,
.elementor-column.gok-goes-featured-card .gok-goes-featured-copy {
	position: relative;
	z-index: 2;
	width: 100%;
}

.elementor-column.gok-goes-featured-card .gok-goes-featured-kicker {
	color: #f0bd5e;
}

.elementor-widget-heading.gok-goes-featured-title .elementor-heading-title {
	max-width: 500px;
	color: #ffffff !important;
	font-size: clamp(1.8rem, 2.8vw, 2.45rem) !important;
	line-height: 1.08 !important;
}

.elementor-widget-text-editor.gok-goes-featured-copy p {
	max-width: 480px;
	color: rgba(255, 255, 255, 0.84) !important;
}

.elementor-column.gok-goes-story > .elementor-widget-wrap {
	display: flex;
	height: 100%;
	flex-direction: column;
	justify-content: center;
}

.elementor-column.gok-goes-side-cards > .elementor-widget-wrap {
	display: flex;
	height: 100%;
	flex-direction: column;
}

.elementor-column.gok-goes-side-cards > .elementor-widget-wrap > .elementor-inner-section {
	flex: 1 1 0;
}

/* Editable category cards and native Icon List widgets. */
.elementor-section.gok-category-row > .elementor-container {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.elementor-section.gok-category-row > .elementor-container > .elementor-column {
	width: 100% !important;
}

.elementor-column.gok-category-group {
	min-height: 100%;
}

.elementor-column.gok-category-group > .elementor-widget-wrap {
	display: flex;
	height: 100%;
	flex-direction: column;
}

.elementor-widget-heading.gok-category-group-label {
	display: block;
	margin-bottom: 13px;
}

.elementor-widget-heading.gok-category-group-label .elementor-heading-title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: inherit !important;
	font-family: var(--gok-font-body) !important;
	font-size: 11px !important;
	font-weight: 800 !important;
	line-height: 1.35 !important;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.elementor-widget-heading.gok-category-group-label .elementor-heading-title::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: currentColor;
	flex: 0 0 auto;
}

.elementor-column.gok-category-group.is-red { color: #9a2615; }
.elementor-column.gok-category-group.is-blue { color: #256788; }
.elementor-column.gok-category-group.is-gold { color: #8a5f1c; }
.elementor-column.gok-category-group.is-green { color: #5c7a49; }

.elementor-widget-icon-list.gok-category-list {
	color: #373733;
}

.elementor-widget-icon-list.gok-category-list .elementor-icon-list-items {
	display: grid;
	gap: 7px;
}

.elementor-widget-icon-list.gok-category-list .elementor-icon-list-item {
	display: flex;
	align-items: center;
	font-family: var(--gok-font-body);
	font-size: 14px;
}

.elementor-widget-icon-list.gok-category-list .elementor-icon-list-icon {
	display: inline-flex;
	width: 18px;
	color: currentColor;
}

.elementor-widget-icon-list.gok-category-list .elementor-icon-list-icon i {
	font-size: 10px;
}

/* Five editable number widgets connected by a quiet process rail. */
.elementor-section.gok-process-rail-native {
	width: 100%;
	margin: 48px 0;
}

.elementor-section.gok-process-rail-native > .elementor-container {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	align-items: center;
}

.elementor-section.gok-process-rail-native > .elementor-container::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 10%;
	left: 10%;
	height: 2px;
	background: #e2e2dc;
	transform: translateY(-50%);
}

.elementor-section.gok-process-rail-native > .elementor-container > .elementor-column {
	position: relative;
	z-index: 1;
	width: 100% !important;
}

.elementor-column.gok-process-rail-item > .elementor-widget-wrap {
	display: flex;
	justify-content: center;
}

.elementor-widget-heading.gok-process-rail-step {
	width: auto;
	height: auto;
	margin: 0;
	border: 0;
	background: transparent;
}

.elementor-widget-heading.gok-process-rail-step .elementor-heading-title {
	display: grid;
	width: 54px;
	height: 54px;
	margin: 0;
	place-items: center;
	border: 1px solid #deded8;
	border-radius: 50%;
	background: #ffffff;
	color: #171717;
	box-shadow: 0 8px 22px rgba(24, 34, 29, 0.07);
	font-family: var(--gok-font-body) !important;
	font-size: 12px !important;
	font-weight: 800 !important;
}

.elementor-column.gok-process-rail-item:nth-child(1) .elementor-heading-title { border-color: #c3311b; color: #9a2615; }
.elementor-column.gok-process-rail-item:nth-child(2) .elementor-heading-title { border-color: #e2a740; color: #8a5f1c; }
.elementor-column.gok-process-rail-item:nth-child(3) .elementor-heading-title { border-color: #3388b3; color: #256788; }
.elementor-column.gok-process-rail-item:nth-child(4) .elementor-heading-title { border-color: #81a16b; color: #5c7a49; }
.elementor-column.gok-process-rail-item:nth-child(5) .elementor-heading-title { border-color: #171717; color: #171717; }

.elementor-column.gok-donate-v2-fee > .elementor-widget-wrap {
	display: flex;
	flex-direction: column;
}

	.elementor-widget-heading.gok-donate-fee-title .elementor-heading-title {
	margin: 0 0 7px;
	color: #ffffff !important;
	font-family: var(--gok-font-body) !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	line-height: 1.35 !important;
}

.elementor-widget-text-editor.gok-donate-fee-copy p {
	font-size: 13px !important;
	line-height: 1.65;
}

@media (max-width: 960px) {
	.elementor-column.gok-hero-v2-media-column {
		width: min(100%, 560px) !important;
		margin: 32px auto 0;
	}

	.elementor-column.gok-goes-featured-card,
	.elementor-column.gok-goes-featured-card > .elementor-widget-wrap {
		min-height: 430px;
	}
}

/* Supplied hero photograph — preserve its full 4:3 composition. */
.gok-hero-v2-frame,
.elementor-widget-image.gok-hero-v2-image img {
	aspect-ratio: 4 / 3;
	object-position: center center;
}

.elementor-column.gok-hero-v2-media-column::before {
	width: 84%;
	height: calc(100% - 10px);
}

@media (max-width: 767px) {
	.elementor-column.gok-hero-v2-media-column::before {
		top: -14px;
		right: -12px;
	}

	.elementor-widget-image.gok-hero-v2-image {
		border-width: 5px;
		border-radius: 22px 22px 7px 22px;
	}

	.elementor-widget-image.gok-hero-v2-image img {
		aspect-ratio: 4 / 3;
	}

	.elementor-widget-heading.gok-hero-v2-tag {
		bottom: -20px;
		left: 14px;
	}

	.elementor-column.gok-goes-featured-card,
	.elementor-column.gok-goes-featured-card > .elementor-widget-wrap {
		min-height: 410px;
	}

	.elementor-section.gok-category-row > .elementor-container {
		grid-template-columns: 1fr;
	}

	.elementor-section.gok-process-rail-native {
		margin-block: 38px;
	}

	.elementor-widget-heading.gok-process-rail-step .elementor-heading-title {
		width: 42px;
		height: 42px;
		font-size: 11px !important;
	}

	.elementor-section.gok-process-rail-native > .elementor-container::before {
		right: 9%;
		left: 9%;
	}
}

/* ==========================================================================
   14. Community donation gallery + WhatsApp-only contact (v1.6)
   ========================================================================== */
.elementor-section.gok-donated-gallery > .elementor-container,
.elementor-section.gok-whatsapp-cta > .elementor-container {
	width: min(calc(100% - 48px), 1200px);
	max-width: 1200px;
	margin-inline: auto;
}

.gok-donated-gallery {
	padding: clamp(86px, 9vw, 124px) 0;
	background: #f7f4ed;
}

.gok-donated-gallery-inner,
.elementor-column.gok-donated-gallery-inner > .elementor-widget-wrap {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}

.gok-donated-gallery-head,
.gok-donated-gallery-title,
.gok-donated-gallery-title .elementor-heading-title,
.gok-donated-gallery-copy,
.gok-donated-gallery-copy p {
	max-width: 760px;
}

.gok-donated-gallery-title,
.gok-donated-gallery-title .elementor-heading-title {
	margin: 0;
	font-size: clamp(2.45rem, 4.3vw, 4rem) !important;
	line-height: 1.05 !important;
}

.gok-donated-gallery-copy,
.gok-donated-gallery-copy p {
	margin: 18px 0 0;
	color: #5b5b55;
	font-size: 17px !important;
	line-height: 1.75;
}

.gok-donated-grid,
.elementor-section.gok-donated-grid {
	width: 100%;
	margin: 50px 0 38px;
}

.gok-donated-grid,
.elementor-section.gok-donated-grid > .elementor-container {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.elementor-section.gok-donated-grid > .elementor-container > .elementor-column {
	width: 100% !important;
}

.gok-donated-card,
.elementor-column.gok-donated-card {
	position: relative;
	overflow: hidden;
	min-width: 0;
	border: 1px solid #e1ded5;
	border-radius: 24px 8px 24px 24px;
	background: #ffffff;
	box-shadow: 0 16px 42px rgba(24, 34, 29, 0.075);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gok-donated-card:hover,
.elementor-column.gok-donated-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 54px rgba(24, 34, 29, 0.12);
}

.elementor-column.gok-donated-card > .elementor-widget-wrap {
	display: flex;
	height: 100%;
	padding: 0;
	align-content: stretch;
	flex-direction: column;
}

.gok-donated-card > img,
.elementor-column.gok-donated-card .elementor-widget-image,
.elementor-column.gok-donated-card .elementor-widget-image .elementor-widget-container,
.elementor-column.gok-donated-card .elementor-widget-image a,
.elementor-column.gok-donated-card .elementor-widget-image img {
	display: block;
	width: 100%;
}

.gok-donated-card > img,
.elementor-column.gok-donated-card .elementor-widget-image img {
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: center;
}

.gok-donated-card-body {
	padding: 22px 24px 25px;
}

.gok-donated-card h3,
.gok-donated-card-title,
.gok-donated-card-title .elementor-heading-title,
.elementor-column.gok-donated-card > .elementor-widget-wrap > .elementor-widget-heading .elementor-heading-title {
	margin: 0;
	color: #171717 !important;
	font-size: clamp(1.45rem, 2.2vw, 1.9rem) !important;
	line-height: 1.1 !important;
}

.elementor-column.gok-donated-card > .elementor-widget-wrap > .elementor-widget-heading {
	padding: 22px 24px 0;
}

.gok-donated-card p,
.gok-donated-card-copy,
.gok-donated-card-copy p,
.elementor-column.gok-donated-card > .elementor-widget-wrap > .elementor-widget-text-editor p {
	margin: 10px 0 0;
	color: #66665f;
	font-size: 14px !important;
	line-height: 1.7;
}

.elementor-column.gok-donated-card > .elementor-widget-wrap > .elementor-widget-text-editor {
	padding: 0 24px 25px;
}

.gok-btn-v2-whatsapp,
.gok-donated-gallery .elementor-button,
.gok-whatsapp-cta .elementor-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 28px !important;
	border: 1px solid #1d7046 !important;
	border-radius: 999px !important;
	background: #1d7046 !important;
	color: #ffffff !important;
	font-family: var(--gok-font-body);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	box-shadow: 0 12px 26px rgba(29, 112, 70, 0.18);
	transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.gok-btn-v2-whatsapp:hover,
.gok-btn-v2-whatsapp:focus-visible,
.gok-donated-gallery .elementor-button:hover,
.gok-whatsapp-cta .elementor-button:hover {
	border-color: #145737 !important;
	background: #145737 !important;
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 16px 32px rgba(29, 112, 70, 0.24);
}

.gok-whatsapp-cta {
	padding: clamp(86px, 9vw, 124px) 0;
	background: #eef1ec;
}

.gok-whatsapp-cta-grid,
.elementor-section.gok-whatsapp-cta > .elementor-container {
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
	gap: 24px;
	align-items: stretch;
}

.elementor-section.gok-whatsapp-cta > .elementor-container > .elementor-column {
	width: 100% !important;
}

.gok-whatsapp-primary,
.elementor-column.gok-whatsapp-primary {
	padding: clamp(38px, 5vw, 64px);
	border-radius: 30px 8px 30px 30px;
	background: #14271f;
	color: #ffffff;
	box-shadow: 0 24px 58px rgba(20, 39, 31, 0.16);
}

.elementor-column.gok-whatsapp-primary > .elementor-widget-wrap {
	display: flex;
	height: 100%;
	align-content: flex-start;
	flex-direction: column;
	justify-content: center;
}

.gok-whatsapp-primary .gok-kicker,
.gok-whatsapp-primary .gok-kicker .elementor-heading-title {
	color: #f0bd5e !important;
}

.gok-whatsapp-primary h2,
.gok-whatsapp-primary h2.elementor-heading-title,
.gok-whatsapp-primary .elementor-heading-title {
	max-width: 620px;
	margin: 0;
	color: #ffffff !important;
	font-size: clamp(2.35rem, 4vw, 3.7rem) !important;
	line-height: 1.05 !important;
}

.gok-whatsapp-lede,
.gok-whatsapp-lede p,
.gok-whatsapp-primary > p {
	max-width: 580px;
	margin: 20px 0 30px;
	color: rgba(255, 255, 255, 0.78) !important;
	font-size: 17px !important;
	line-height: 1.75;
}

.gok-whatsapp-primary .elementor-widget-button {
	margin-top: 9px;
}

.gok-whatsapp-card,
.elementor-column.gok-whatsapp-card {
	padding: clamp(34px, 4vw, 52px);
	border: 1px solid #dedfd8;
	border-radius: 8px 30px 30px 30px;
	background: #ffffff;
	box-shadow: 0 18px 48px rgba(24, 34, 29, 0.075);
}

.elementor-column.gok-whatsapp-card > .elementor-widget-wrap {
	display: flex;
	height: 100%;
	align-content: flex-start;
	flex-direction: column;
	justify-content: center;
}

.gok-whatsapp-card h3,
.gok-whatsapp-card-title,
.gok-whatsapp-card-title .elementor-heading-title {
	margin: 0 0 22px;
	font-size: clamp(1.75rem, 2.8vw, 2.4rem) !important;
	line-height: 1.12 !important;
}

.gok-whatsapp-list,
.gok-whatsapp-list .elementor-icon-list-items {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gok-whatsapp-list li,
.gok-whatsapp-list .elementor-icon-list-item {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 42px;
	padding: 9px 12px;
	border: 1px solid #e7e8e2;
	border-radius: 10px;
	background: #fafbf8;
	color: #303630;
	font-size: 14px;
	font-weight: 700;
}

.gok-whatsapp-list li::before {
	content: "✓";
	display: grid;
	width: 22px;
	height: 22px;
	place-items: center;
	border-radius: 50%;
	background: #dff0e6;
	color: #1d7046;
	font-size: 12px;
	font-weight: 900;
	flex: 0 0 auto;
}

.gok-whatsapp-list .elementor-icon-list-icon {
	display: grid;
	width: 22px;
	height: 22px;
	place-items: center;
	border-radius: 50%;
	background: #dff0e6;
	color: #1d7046;
	flex: 0 0 auto;
}

.gok-whatsapp-list .elementor-icon-list-icon i {
	font-size: 10px;
}

.gok-whatsapp-reply,
.gok-whatsapp-reply p {
	margin: 20px 0 0;
	color: #6b6c66;
	font-size: 14px !important;
	line-height: 1.7;
}

.gok-whatsapp-fee,
.elementor-column.gok-whatsapp-fee {
	margin-top: 24px;
	padding: 20px 21px;
	border: 1px solid #e4d7ba;
	border-radius: 14px;
	background: #fff9ea;
}

.elementor-column.gok-whatsapp-fee > .elementor-widget-wrap {
	display: flex;
	flex-direction: column;
}

.gok-whatsapp-fee strong,
.gok-whatsapp-fee-title .elementor-heading-title {
	display: block;
	margin: 0 0 6px;
	color: #614613 !important;
	font-family: var(--gok-font-body) !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	line-height: 1.4 !important;
}

.gok-whatsapp-fee p,
.gok-whatsapp-fee-copy p {
	margin: 0;
	color: #77643f;
	font-size: 12.5px !important;
	line-height: 1.65;
}

@media (max-width: 900px) {
	.gok-whatsapp-cta-grid,
	.elementor-section.gok-whatsapp-cta > .elementor-container {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.elementor-section.gok-donated-gallery > .elementor-container,
	.elementor-section.gok-whatsapp-cta > .elementor-container {
		width: min(calc(100% - 36px), 1200px);
	}

	.gok-donated-grid,
	.elementor-section.gok-donated-grid > .elementor-container {
		grid-template-columns: 1fr;
	}

	.gok-donated-card > img,
	.elementor-column.gok-donated-card .elementor-widget-image img {
		aspect-ratio: 1 / 0.78;
	}

	.gok-whatsapp-primary,
	.elementor-column.gok-whatsapp-primary,
	.gok-whatsapp-card,
	.elementor-column.gok-whatsapp-card {
		padding: 32px 24px;
	}
}

@media (max-width: 560px) {
	.gok-donated-gallery .gok-btn-v2-whatsapp,
	.gok-donated-gallery .elementor-widget-button,
	.gok-donated-gallery .elementor-button,
	.gok-whatsapp-cta .gok-btn-v2-whatsapp,
	.gok-whatsapp-cta .elementor-widget-button,
	.gok-whatsapp-cta .elementor-button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gok-donated-card,
	.elementor-column.gok-donated-card,
	.gok-btn-v2-whatsapp {
		transition: none;
	}
}
