/* The Girivan Club — front page */

@font-face {
	font-family: 'Branley';
	src: url('../fonts/BRANLEY.OTF') format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Grift';
	src: url('../fonts/GRIFT-THIN.TTF') format('truetype');
	font-weight: 100;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Grift';
	src: url('../fonts/GRIFT-THINITALIC.TTF') format('truetype');
	font-weight: 100;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Grift';
	src: url('../fonts/GRIFT-LIGHT.TTF') format('truetype');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Grift';
	src: url('../fonts/GRIFT-LIGHTITALIC.TTF') format('truetype');
	font-weight: 300;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Grift';
	src: url('../fonts/GRIFT-REGULAR.TTF') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Grift';
	src: url('../fonts/GRIFT-ITALIC.TTF') format('truetype');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Grift';
	src: url('../fonts/GRIFT-MEDIUM.TTF') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Grift';
	src: url('../fonts/GRIFT-MEDIUMITALIC.TTF') format('truetype');
	font-weight: 500;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Grift';
	src: url('../fonts/GRIFT-SEMIBOLD.TTF') format('truetype');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Grift';
	src: url('../fonts/GRIFT-SEMIBOLDITALIC.TTF') format('truetype');
	font-weight: 600;
	font-style: italic;
	font-display: swap;
}

:root {
	--dark: #153332;
	--gold: #ffc53f;
	--amber: #e1963a;
	--cream: #fce5c0;
	--pale-yellow: #f0e6a0;
	--offwhite: #f8f9f9;
	--border: #dadada;
	--text: #333333;
	--text-light: #444444;
	--gray-fill: #d9d9d9;
	--font-display: 'Branley', serif;
	--font-body: 'Grift', sans-serif;
	--container: 1180px;
	--gutter: 24px;
}

@media (min-width: 640px) {
	:root {
		--gutter: 36px;
	}
}

@media (min-width: 1024px) {
	:root {
		--gutter: 56px;
	}
}

@media (min-width: 1280px) {
	:root {
		--gutter: 80px;
	}
}

@media (min-width: 1440px) {
	:root {
		--gutter: 150px;
	}
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

#how-we-work,
#contact {
	scroll-margin-top: 100px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
}

body.front-page-thegirivanclub {
	margin: 0;
	font-family: var(--font-body);
	color: var(--text);
	background: var(--offwhite);
	overflow-x: hidden;
}

.tgc-container {
	max-width: calc(var(--container) + 2 * var(--gutter));
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.tgc-hero>.tgc-container {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

img {
	max-width: 100%;
	display: block;
}

.tgc-eyebrow {
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: var(--amber);
	margin: 0 0 16px;
}

.tgc-eyebrow--gold {
	color: var(--gold);
}

.tgc-heading {
	font-family: var(--font-display);
	color: var(--dark);
	font-size: clamp(28px, 2.917vw, 42px);
	line-height: 1.286;
	letter-spacing: 0.84px;
	margin: 0 0 20px;
}

.tgc-heading--light {
	color: #fff;
}

.tgc-lede {
	font-size: 16px;
	line-height: 1.875;
	color: var(--text);
	margin: 0 0 24px;
}.tgc-lede:last-child {
	margin: 0 0 0px;
}

.tgc-lede--on-dark {
	color: rgba(255, 255, 255, 0.8);
}

.tgc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 30px;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 15px;
	line-height: 32px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 2px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: opacity .2s ease, background-color .2s ease, color .2s ease;
	white-space: nowrap;
}

.tgc-btn--gold {
	background: var(--gold);
	color: #000;
}

.tgc-btn--gold:hover {
	opacity: .85;
}

.tgc-btn--outline-cream {
	border-color: var(--cream);
	color: var(--cream);
	background: transparent;
}

.tgc-btn--outline-cream:hover {
	background: rgba(252, 229, 192, 0.12);
}

.tgc-btn--outline-dark {
	border-color: var(--dark);
	color: var(--dark);
	background: transparent;
}

.tgc-btn--outline-dark:hover {
	background: rgba(21, 51, 50, 0.08);
}

.tgc-btn--sm {
	font-size: 14px;
	letter-spacing: 1.4px;
	padding: 5px 25px;
	line-height: 28px;
}

.tgc-btn--lg {
	font-size: 16px;
	letter-spacing: 1.6px;
}

.tgc-btn[disabled] {
	cursor: not-allowed;
	opacity: .7;
}

.tgc-btn-row {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

/* ===== Top bar ===== */
.tgc-topbar {
	position: absolute;
	inset-inline: 0;
	top: 0;
	z-index: 50;
	max-width: calc(var(--container) + 30px);
	margin-inline: auto;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 30px 15px 0;
	transition: background-color .25s ease, padding .25s ease, box-shadow .25s ease;
}

.tgc-topbar__logo {
	flex-shrink: 0;
	min-width: 0;
}

.tgc-topbar__logo img {
	width: clamp(64px, 25vw, 153px);
	height: auto;
}

.tgc-topbar .tgc-btn--sm {
	flex-shrink: 0;
}

.tgc-topbar--stuck {
	position: fixed;
	top: 0;
	padding: 20px 15px;
}

.tgc-topbar--stuck .tgc-topbar__logo img {
	width: clamp(80px, 11vw, 140px);
}

.tgc-topbar--stuck::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	background: var(--dark);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	z-index: -1;
}

/* ===== Hero ===== */
.tgc-hero {
	position: relative;
	color: #fff;
	padding-top: clamp(160px, 16.875vw, 243px);
	padding-bottom: 80px;
	overflow: hidden;
}

.tgc-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 0;
	overflow: hidden;
}

.tgc-hero__bg-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tgc-hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 9.688%, rgba(0, 0, 0, 0.4) 72.396%);
}

.tgc-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 825px;
}

.tgc-hero__text {
	max-width: 675px;
}

.tgc-hero__tag {
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: var(--pale-yellow);
	margin: 0 0 20px;
}

.tgc-hero__title {
	font-family: var(--font-display);
	font-size: clamp(30px, 3.611vw, 52px);
	line-height: 1.231;
	letter-spacing: 1.04px;
	margin: 0 0 24px;
}

.tgc-hero__desc {
	font-size: 18px;
	line-height: 1.778;
	letter-spacing: 0.36px;
	color: rgba(255, 255, 255, 0.8);
	margin: 0 0 36px;
	max-width: 638px;
}

.tgc-stats {
	position: relative;
	z-index: 1;
	margin-top: clamp(48px, 6.181vw, 89px);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.tgc-stats__item {
	text-align: center;
	border-left: 1px solid rgba(255, 255, 255, 0.25);
	padding-left: 24px;
}

.tgc-stats__item:first-child {
	border-left: none;
	padding-left: 0;
}

.tgc-stats__num {
	font-family: var(--font-display);
	font-size: clamp(26px, 2.778vw, 40px);
	line-height: 1.65;
	color: var(--cream);
	letter-spacing: 0.8px;
	margin: 0 0 6px;
}

.tgc-stats__label {
	font-size: clamp(13px, 1.25vw, 15px);
	letter-spacing: 0.36px;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

.tgc-bignum {
	font-family: var(--font-display);
	font-weight: 400;
	color: #fff;
	font-size: clamp(56px, 7.778vw, 112px);
	line-height: 1;
	letter-spacing: 0.84px;
	margin: 0 0 4px;
}

/* ===== Section spacing ===== */
.tgc-section {
	position: relative;
	z-index: 0;
	padding-block: 90px;
}

@media (max-width: 780px) {
	.tgc-section {
		padding-block: 60px;
	}
}

@media (max-width: 480px) {
	.tgc-section {
		padding-block: 48px;
	}
}

.p_top-0 {
	padding-top: 0 !important;
}.p_bottom-0 {
	padding-bottom: 0 !important;
}

#trust {
	padding-bottom: 70px;
}

@media (max-width: 780px) {
	#trust {
		padding-bottom: 46px;
	}
}

@media (max-width: 480px) {
	#trust {
		padding-bottom: 37px;
	}
}

.tgc-section--dark {
	background: var(--dark);
	color: #fff;
}

.tgc-section--offwhite {
	background: var(--offwhite);
}

.tgc-section-head {
	position: relative;
	z-index: 3;
	max-width: 720px;
	margin: 0 auto 50px;
	text-align: center;
}

@media (max-width: 780px) {
	.tgc-section-head {
		margin-bottom: 30px;
	}
}

.tgc-section-head--left {
	margin-inline: 0;
	text-align: left;
}

/* ===== How We Work / steps ===== */
.tgc-step {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(30px, 5vw, 50px);
	align-items: center;
	margin-bottom: 50px;
}

@media (max-width: 780px) {
	.tgc-step {
		margin-bottom: 36px;
	}
}

@media (max-width: 480px) {
	.tgc-step {
		margin-bottom: 28px;
	}
}

.tgc-step:nth-child(even) .tgc-step__media {
	order: 2;
}

.tgc-step__media img {
	border-radius: 2px;
	width: 100%;
	height: clamp(240px, 27.361vw, 394px);
	object-fit: cover;
}

.tgc-step__eyebrow {
	font-size: 16px;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: var(--amber);
	margin: 0 0 14px;
}

.tgc-step__title {
	font-family: var(--font-display);
	color: var(--dark);
	font-size: clamp(24px, 2.5vw, 36px);
	line-height: 1.5;
	margin: 0 0 18px;
	letter-spacing: 0.72px;
}

.tgc-step__desc {
	font-size: 16px;
	line-height: 1.875;
	color: var(--text);
	margin: 0;
}

.tgc-cta-banner-wrap {
	position: relative;
	margin-inline: auto;
}

.tgc-cta-banner {
	background: var(--dark);
	border-radius: 4px;
	margin-top: 90px;
	padding: 40px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	color: #fff;
	position: relative;
	z-index: 1;
}

@media (max-width: 480px) {
	.tgc-cta-banner {
		padding: 24px;
		margin-top: 28px;
	}
}

.tgc-cta-banner__title {
	font-family: var(--font-display);
	font-size: clamp(24px, 2.5vw, 36px);
	line-height: 1.5;
	margin: 0 0 10px;
	letter-spacing: 0.72px;
}

.tgc-cta-banner__text {
	margin: 0;
	opacity: .88;
	font-size: 16px;
	line-height: 1.875;
	max-width: 480px;
}

/* ===== Trust cards ===== */
.tgc-card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.tgc-trust-card {
	background: var(--offwhite);
	border: 1px solid var(--border);
	padding: 32px 28px;
}

.tgc-trust-card__icon {
	width: 42px;
	height: auto;
	margin-bottom: 20px;
}

.tgc-trust-card__title {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 19px;
	line-height: 1.579;
	color: #333;
	margin: 0 0 12px;
	letter-spacing: 0.38px;
}

.tgc-trust-card__text {
	font-size: 16px;
	line-height: 1.75;
	color: var(--text-light);
	margin: 0;
}

/* ===== Capability banner + feature cards ===== */
.tgc-banner-photo {
	width: 100%;
	height: clamp(220px, 35.208vw, 507px);
	object-fit: cover;
	border-radius: 2px;
	margin-bottom: 70px;
}

.tgc-feature-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.tgc-feature-card {
	background: var(--offwhite);
	border: 1px solid var(--border);
	padding: 28px 24px;
}

.tgc-feature-card__icon {
	width: 42px;
	margin-bottom: 18px;
}

.tgc-feature-card__title {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 19px;
	line-height: 1.579;
	letter-spacing: 0.38px;
	color: #333;
	margin: 0 0 10px;
}

.tgc-feature-card__text {
	font-size: 16px;
	line-height: 1.75;
	color: var(--text-light);
	margin: 0;
}

/* ===== Split (image + copy) ===== */
.tgc-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(30px, 5.556vw, 80px);
	align-items: center;
}

.tgc-split__media img {
	width: 100%;
	height: clamp(240px, 35.208vw, 507px);
	object-fit: cover;
	border-radius: 2px;
}

/* Bleed-edge treatment removed: From Land to Income now always uses the simple .tgc-split grid (left/right, contained). */

.tgc-split--reverse .tgc-split__media {
	order: 2;
}

.tgc-split__media--video {
	position: relative;
	width: auto;
	max-width: 100%;
	height: clamp(240px, 35.208vw, 507px);
	aspect-ratio: 9 / 16;
	margin-inline: auto;
	border-radius: 2px;
	overflow: hidden;
	background: #000;
}

.tgc-split__media--video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* ===== Two-column feature (fixed income / appreciating) ===== */
.tgc-twocol {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.tgc-twocol__item img {
	width: 100%;
	height: clamp(200px, 20.833vw, 300px);
	object-fit: cover;
	margin-bottom: 28px;
	border-radius: 2px;
}

.tgc-twocol__title {
	font-family: var(--font-display);
	font-size: clamp(20px, 1.806vw, 26px);
	line-height: 1.231;
	letter-spacing: 0.52px;
	color: var(--dark);
	margin: 0 0 14px;
}

.tgc-twocol__text {
	font-size: 16px;
	line-height: 1.875;
	color: var(--text);
	margin: 0;
}

/* ===== Your choice comparison ===== */
.tgc-choice-box {
	max-width: var(--container);
	background: var(--dark);
	color: #fff;
	border-radius: 8px;
	padding-block: 90px;
	padding-inline: 70px;
}

@media (max-width: 1024px) {
	.tgc-choice-box {
		padding-block: 64px;
		padding-inline: 48px;
	}
}

@media (max-width: 780px) {
	.tgc-choice-box {
		padding-block: 48px;
		padding-inline: 28px;
	}
}

@media (max-width: 480px) {
	.tgc-choice-box {
		padding-block: 36px;
		padding-inline: 20px;
	}
}

.tgc-choice {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(30px, 4.167vw, 40px);
	align-items: center;
}

.tgc-choice__cards {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.tgc-choice-card {
	background: #fff;
	padding: 34px 25px;
	position: relative;
}

.tgc-choice-card--primary {
	border: 3px solid var(--gold);
	box-shadow: 0 4px 54px rgba(13,37,36,0.5);
	z-index: 1;
	margin-bottom: 20px;
}

.tgc-choice-card--muted {
	background: var(--gray-fill);
	box-shadow: 0 20px 40px rgba(13, 37, 36, 0.35);
	margin-top: -1px;
}

.tgc-choice-card__badge {
	position: absolute;
	top: 0;
	right: 0;
	background: var(--gold);
	color: #000;
	font-size: 13px;
	letter-spacing: 0.26px;
	text-transform: uppercase;
	padding: 5px 14px;
}

.tgc-choice-card__title {
	font-family: var(--font-display);
	font-size: clamp(20px, 1.806vw, 26px);
	line-height: 1.231;
	letter-spacing: 0.52px;
	color: var(--dark);
	margin: 0 0 14px;
}

.tgc-choice-card__text {
	font-size: 16px;
	line-height: 1.875;
	color: var(--text);
	margin: 0;
}

.tgc-choice__media img {
	width: 100%;
	height: clamp(260px, 31.528vw, 454px);
	object-fit: cover;
	border-radius: 2px;
}

/* ===== Gallery grid (kind of place) ===== */
.tgc-gallery-section {
	position: relative;
}

.tgc-gallery-section__watermark {
	position: absolute;
	inset: 0;
	opacity: .1;
	object-fit: cover;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.tgc-gallery-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
.tgc-gallery-header .tgc-section-head { margin-bottom: 0; }

.tgc-btn-row--stack {
	flex-direction: column;
	align-items: stretch;
	gap: 12px;
}
.tgc-btn-row--stack .tgc-btn { width: 100%; }

.tgc-gallery-slider {
	width: 100%;
	overflow: hidden;
	position: relative;
}
.tgc-gallery-slider::before,
.tgc-gallery-slider::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: clamp(20px, 6vw, 90px);
	z-index: 2;
	pointer-events: none;
}
.tgc-gallery-slider::before {
	left: 0;
	background: linear-gradient(90deg, var(--offwhite), transparent);
}
.tgc-gallery-slider::after {
	right: 0;
	background: linear-gradient(270deg, var(--offwhite), transparent);
}

.tgc-gallery-slider__track {
	display: flex;
	width: max-content;
	gap: 20px;
	animation: tgc-gallery-slide 40s linear infinite;
}
.tgc-gallery-slider:hover .tgc-gallery-slider__track {
	animation-play-state: paused;
}
.tgc-gallery-slider__track img {
	flex-shrink: 0;
	width: clamp(260px, 30vw, 470px);
	height: clamp(200px, 24vw, 340px);
	object-fit: cover;
	border-radius: 2px;
}

@keyframes tgc-gallery-slide {
	from { transform: translateX(0); }
	to { transform: translateX(-25%); }
}

@media (prefers-reduced-motion: reduce) {
	.tgc-gallery-slider__track { animation: none; }
}

/* ===== Fully handled ===== */
.tgc-handled {
	display: flex;
	align-items: center;
	gap: 60px;
}
.tgc-handled .tgc-handled__media {
	flex: 1 1 50%;
	min-width: 0;
}
.tgc-handled .tgc-handled__body {
	flex: 1 1 50%;
	min-width: 0;
}

.tgc-handled__media {
	position: relative;
}

.tgc-handled__media img {
	width: 100%;
	height: clamp(240px, 45vw, 648px);
	object-fit: cover;
}

.tgc-handled__body {
	/* padding-block: clamp(30px, 4.167vw, 60px); */
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.tgc-handled__subtitle {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(20px, 1.806vw, 26px);
	line-height: 1.615;
	letter-spacing: 0.52px;
	margin: 0 0 28px;
}

/* Bleed-edge treatment removed: Fully Handled now always uses the simple .tgc-handled flex row (left/right, contained). */

.tgc-tag-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 28px;
}

.tgc-tag {
	border: 1px solid var(--cream);
	color: var(--cream);
	font-size: 15px;
	line-height: 28px;
	letter-spacing: 0.3px;
	padding: 5px 20px;
	white-space: nowrap;
}

/* ===== Testimonials ===== */
.tgc-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.tgc-testimonial {
	background: #fff;
	box-shadow: 0 24px 44px rgba(74, 79, 170, 0.14);
	padding: 36px 32px;
}

.tgc-testimonial img.tgc-quote-icon {
	width: 120px;
	height: auto;
	margin-bottom: 24px;
}

.tgc-testimonial__text {
	font-style: italic;
	font-size: 16px;
	line-height: 1.875;
	color: var(--text);
	margin: 0 0 24px;
}

.tgc-testimonial__name {
	font-weight: 600;
	color: var(--dark);
	font-size: 16px;
	margin: 0;
}

.tgc-testimonial__loc {
	color: var(--text-light);
	font-size: 14px;
	margin: 4px 0 0;
}

.tgc-video-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 40px;
}

.tgc-video-thumb {
	position: relative;
	height: clamp(220px, 30.972vw, 446px);
	border-radius: 2px;
	overflow: hidden;
	cursor: pointer;
}

.tgc-video-thumb__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .3s ease;
}

.tgc-video-thumb:hover .tgc-video-thumb__img {
	transform: scale(1.04);
}

.tgc-video-thumb__frame {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.tgc-video-thumb__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 56px;
	height: auto;
	pointer-events: none;
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
	transition: opacity .2s ease;
}

.tgc-video-thumb--playing .tgc-video-thumb__play {
	opacity: 0;
}

/* ===== Instagram feed ===== */
.tgc-insta-section .tgc-heading {
	max-width: 490px;
	margin-left: auto;
	margin-right: auto;
}

.tgc-insta-feed {
	min-height: 120px;
	margin-top: 8px;
}

.tgc-insta-follow {
	display: block;
	width: fit-content;
	margin: 15px auto 0;
	color: var(--dark);
	font-weight: 500;
	text-decoration: none;
	border-bottom: 1px solid var(--gold);
	transition: color 0.2s ease;
}

.tgc-insta-follow:hover,
.tgc-insta-follow:focus-visible {
	color: var(--amber);
}

/* ===== FAQ ===== */
.tgc-faq {
	max-width: 780px;
	margin: 0 auto;
}

.tgc-faq-item {
	border-bottom: 1px solid var(--border);
	padding: 28px 0;
}

.tgc-faq-item:first-child {
	padding-top: 0;
}

.tgc-faq-item__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	cursor: pointer;
	list-style: none;
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(18px, 1.528vw, 22px);
	line-height: 1.909;
	letter-spacing: 0.44px;
	color: var(--dark);
}

.tgc-faq-item__q::-webkit-details-marker {
	display: none;
}

.tgc-faq-item__icon {
	width: 17px;
	height: 17px;
	flex-shrink: 0;
	transition: transform .2s ease;
}

.tgc-faq-item[open] .tgc-faq-item__icon {
	transform: rotate(45deg);
}

.tgc-faq-item__a {
	margin: 18px 0 0;
	font-size: 16px;
	line-height: 1.85;
	color: var(--text);
}

/* ===== Contact / Speak with us ===== */
.tgc-contact {
	position: relative;
	overflow: hidden;
}

.tgc-contact__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.tgc-contact__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(21, 51, 50, 0.9);
}

.tgc-contact__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(30px, 5vw, 60px);
}

.tgc-contact__text {
	color: #fff;
}

.tgc-contact__desc {
	opacity: .8;
	font-size: 16px;
	line-height: 1.85;
	max-width: 500px;
	margin: 0 0 36px;
}

.tgc-form-field {
	margin-bottom: 30px;
}

.tgc-form-field label {
	display: block;
	font-size: 14px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 12px;
}

.tgc-form-field input,
.tgc-form-field select {
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	font-family: var(--font-body);
	font-size: 15px;
	padding-bottom: 10px;
	outline: none;
	box-shadow: none;
}
.tgc-form-field input:focus,
.tgc-form-field select:focus {
	outline: none;
	box-shadow: none;
}
.tgc-contact__form .tgc-btn:focus,
.tgc-contact__form .tgc-btn:focus-visible {
	outline: none;
	box-shadow: none;
}

.tgc-form-field input::placeholder {
	color: #ababab;
}

.tgc-form-field input:-webkit-autofill,
.tgc-form-field input:-webkit-autofill:hover,
.tgc-form-field input:-webkit-autofill:focus,
.tgc-form-field input:autofill {
	-webkit-text-fill-color: #fff !important;
	caret-color: #fff !important;
	-webkit-box-shadow: 0 0 0 1000px #223d3b inset !important;
	box-shadow: 0 0 0 1000px #223d3b inset !important;
	background-color: #223d3b !important;
	transition: background-color 600000s 0s, color 600000s 0s;
}

.tgc-form-note {
	color: rgba(255, 255, 255, 0.55);
	font-size: 13px;
	margin-top: -12px;
}

.tgc-form-hp {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.tgc-form-status {
	font-size: 15px;
	line-height: 1.6;
	padding: 14px 18px;
	margin: 0 0 24px;
	border-radius: 2px;
}
.tgc-form-status--success {
	background: rgba(255, 197, 63, 0.12);
	border: 1px solid var(--gold);
	color: var(--cream);
}
.tgc-form-status--error {
	background: rgba(220, 80, 80, 0.12);
	border: 1px solid #dc5050;
	color: #ffb3b3;
}

/* ===== Footer ===== */
.tgc-footer-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	max-width: calc(var(--container) + 2 * var(--gutter));
	margin-inline: auto;
	padding: 26px var(--gutter);
	font-size: 14px;
	background: var(--offwhite);
}

.tgc-footer-bar a {
	color: #000;
	text-decoration: none;
	transition: color 0.2s ease;
}

.tgc-footer-bar a:hover,
.tgc-footer-bar a:focus-visible {
	color: var(--gold);
}

.tgc-footer-social {
	display: flex;
	align-items: center;
	gap: 18px;
	order: 2;
}

.tgc-footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--dark);
	transition: color 0.2s ease, transform 0.2s ease;
}

.tgc-footer-social a:hover,
.tgc-footer-social a:focus-visible {
	color: var(--gold);
	transform: translateY(-2px);
}

.tgc-footer-social svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.tgc-footer-bar p {
	order: 1;
}

.tgc-footer-bar > a {
	order: 3;
}

@media (max-width: 780px) {
	.tgc-footer-bar {
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}

	.tgc-footer-social {
		order: 1;
	}

	.tgc-footer-bar p {
		order: 2;
		margin-inline: auto;
	}

	.tgc-footer-bar > a {
		order: 3;
	}
}

/* ===== Sticky WhatsApp CTA (mobile) ===== */
.tgc-sticky-cta {
	display: none;
}

@media (max-width: 780px) {
	.tgc-sticky-cta {
		display: flex;
		justify-content: center;
		position: fixed;
		inset-inline: 0;
		bottom: 0;
		z-index: 50;
		padding: 8px 20px;
		background: var(--dark);
		box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
		opacity: 0;
		transform: translateY(100%);
		transition: opacity .25s ease, transform .25s ease;
		pointer-events: none;
	}

	.tgc-sticky-cta--visible {
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
	}

	.tgc-sticky-cta .tgc-btn {
		width: 100%;
		max-width: 360px;
		padding: 8px 30px;
		line-height: 24px;
	}
}

/* ===== Decorative leaf / vine accents ===== */
.tgc-leaf {
	position: absolute;
	pointer-events: none;
	user-select: none;
	z-index: -1;
}

@media (max-width: 900px) {
	.tgc-leaf {
		display: none;
	}
}

.tgc-leaf--howwework-l {
	top: 0;
	left: 0;
	width: clamp(50px, 15.28vw, 220px);
}

.tgc-leaf--howwework-r {
	top: 0;
	right: 0;
	width: clamp(60px, 19.03vw, 274px);
}

@media (max-width: 900px) {

	.tgc-leaf--howwework-l,
	.tgc-leaf--howwework-r {
		display: block;
	}
}

.tgc-leaf--cta-l {
	bottom: -100px;
	left: -150px;
	max-width: 580px;
	width: clamp(220px, 37.6vw, 542px);
	transform: rotate(15deg) scaleY(-1);
	z-index: 0;
}

.tgc-leaf--cta-r {
	bottom: 0;
	max-width: 100px;
	right: -100px;
	width: clamp(70px, 7.78vw, 112px);
}

@media (max-width: 1200px) {
	.tgc-leaf--cta-l {
		left: -120px;
		bottom: -60px;
	}

	.tgc-leaf--cta-r {
		right: -40px;
	}
}

.tgc-leaf--income-l {
	top: 0;
	left: -10px;
	width: clamp(140px, 20.97vw, 302px);
}

.tgc-leaf--income-r {
	top: 0;
	right: -10px;
	width: clamp(140px, 20.97vw, 302px);
}

.tgc-leaf--builtlast-r {
	bottom: 0px;
	right: 0;
	width: clamp(130px, 19.1vw, 275px);
}

.tgc-leaf--kindofplace-l {
	top: 0;
	left: 0;
	width: clamp(120px, 17.01vw, 245px);
}

.tgc-leaf--kindofplace-r {
	top: 0;
	right: 0;
	width: clamp(120px, 17.01vw, 245px);
}

.tgc-leaf--faq-l {
	bottom: 0;
	left: 0;
	width: clamp(150px, 21.81vw, 314px);
}

.tgc-leaf--faq-r {
	top: 0;
	right: 0;
	width: clamp(160px, 23.33vw, 336px);
}

.tgc-hero__scroll-icon {
	flex-shrink: 0;
	width: clamp(18px, 2.083vw, 30px);
	height: auto;
	z-index: 1;
	opacity: .85;
}

@media (max-width: 1023px) {
	.tgc-hero__scroll-icon {
		display: none;
	}
}

.tgc-hero__scroll-dot {
	animation: tgc-scroll-dot 1.6s ease-in-out infinite;
}

@keyframes tgc-scroll-dot {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(18px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.tgc-hero__scroll-dot {
		animation: none;
	}
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
	.tgc-card-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tgc-feature-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tgc-testimonial-grid {
		grid-template-columns: 1fr;
	}

	.tgc-video-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tgc-handled {
		flex-direction: column;
		gap: 32px;
	}

	.tgc-handled__media {
		height: 320px;
	}

	.tgc-handled__media img {
		height: 320px;
	}

	.tgc-stats {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 32px;
	}

	.tgc-stats__item:nth-child(3) {
		border-left: none;
	}
}
.tgc-video-grid{
	display: none!important;
}
@media (max-width: 780px) {
	.tgc-topbar {
		padding: 10px 15px 10px 15px;
	}

	.tgc-hero {
		padding-top: 130px;
		padding-bottom: 60px;
	}

	.tgc-step,
	.tgc-split,
	.tgc-twocol,
	.tgc-choice,
	.tgc-contact__inner {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.tgc-step:nth-child(even) .tgc-step__media,
	.tgc-split__media {
		order: -1;
	}

	.tgc-split__media--video {
		width: 100%;
		max-width: 300px;
		height: auto;
	}

	.tgc-split--bleed-right {
		gap: 40px;
	}

	.tgc-card-grid,
	.tgc-feature-grid,
	.tgc-video-grid {
		grid-template-columns: 1fr 1fr;
	}

	.tgc-btn-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.tgc-btn-row .tgc-btn {
		width: 100%;
	}

	.tgc-gallery-header {
		flex-direction: column;
		align-items: stretch;
	}

	.tgc-btn-row--stack {
		flex-direction: row;
	}
}

@media (max-width: 520px) {

	.tgc-card-grid,
	.tgc-feature-grid,
	.tgc-video-grid {
		grid-template-columns: 1fr;
	}

	.tgc-btn-row--stack {
		flex-direction: column;
	}

	.tgc-stats {
		grid-template-columns: 1fr 1fr;
	}

	.tgc-stats__item:nth-child(odd) {
		border-left: none;
	}

	.tgc-choice-card__badge {
		position: static;
		display: inline-block;
		margin-bottom: 16px;
	}

	.tgc-bignum {
		font-size: 20vw;
	}

	.tgc-topbar .tgc-btn--sm {
		font-size: 11px;
		letter-spacing: 0.8px;
		padding: 5px 12px;
	}
}

@media (max-width: 360px) {
	.tgc-topbar__logo img {
		width: 56px;
	}

	.tgc-topbar .tgc-btn--sm {
		font-size: 10px;
		letter-spacing: 0.5px;
		padding: 4px 9px;
	}
}