/**
 * The Green Hub — main stylesheet
 * Mobile-first · fluid type · design tokens from brand palette
 */

/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */
:root {
	--tgh-green: #4a8d32;
	--tgh-green-dark: #3a7227;
	--tgh-green-deep: #2f5f20;
	--tgh-white: #ffffff;
	--tgh-text: #4e575d;
	--tgh-heading: #18221c;
	--tgh-slate: #111d15;
	--tgh-slate-soft: #18221c;
	--tgh-tint: #eaf2e8;
	--tgh-border: #d7e4d3;
	--tgh-font-display: "Fraunces", Georgia, serif;
	--tgh-font-body: "Montserrat", Helvetica, sans-serif;
	--tgh-radius: 1rem;
	--tgh-radius-lg: 1.25rem;
	--tgh-shadow: 0 12px 40px rgba(17, 29, 21, 0.12);
	--tgh-container-max: 75rem;
	--tgh-header-max: 75rem;
	--tgh-container-pad: clamp(1rem, 2.5vw, 1.25rem);
	--tgh-space-section: clamp(3rem, 6vw, 5.5rem);
	--tgh-fs-body: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
	--tgh-fs-h1: clamp(2rem, 1.4rem + 2.8vw, 3.75rem);
	--tgh-fs-h2: clamp(1.625rem, 1.25rem + 1.6vw, 2.75rem);
	--tgh-fs-h3: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
	--tgh-header-h: 4.5rem;
	--tgh-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   Reset / base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--tgh-font-body);
	font-size: var(--tgh-fs-body);
	line-height: 1.65;
	color: var(--tgh-text);
	background: var(--tgh-white);
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
	text-decoration: none;
}

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

h1,
h2,
h3,
h4 {
	font-family: var(--tgh-font-display);
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--tgh-heading);
	margin: 0 0 0.75rem;
}

h5,
h6,
p {
	margin: 0 0 1rem;
}

button,
input {
	font: inherit;
}

.tgh-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.tgh-skip-link {
	position: absolute;
	left: 1rem;
	top: -100%;
	z-index: 1000;
	background: var(--tgh-green);
	color: var(--tgh-white);
	padding: 0.75rem 1rem;
	border-radius: 0.5rem;
}

.tgh-skip-link:focus {
	top: 1rem;
}

/* --------------------------------------------------------------------------
   Layout utilities
   -------------------------------------------------------------------------- */
.tgh-container {
	width: 100%;
	max-width: var(--tgh-container-max);
	margin-inline: auto;
	padding-inline: var(--tgh-container-pad);
}

.tgh-section {
	padding-block: var(--tgh-space-section);
}

.tgh-section--tint {
	background: var(--tgh-tint);
}

.tgh-section--white {
	background: var(--tgh-white);
}

.tgh-section--tint .tgh-heading,
.tgh-section--white .tgh-heading {
	color: var(--tgh-heading);
}

.tgh-section--tint .tgh-copy,
.tgh-section--tint .tgh-blockquote p,
.tgh-section--white .tgh-copy,
.tgh-section--white .tgh-blockquote p {
	color: var(--tgh-text);
}

.tgh-section--tint .tgh-feature-box {
	background: var(--tgh-white);
	border-color: rgba(74, 141, 50, 0.1);
}

.tgh-section--tint .tgh-blockquote {
	background: var(--tgh-white);
}

.tgh-section__header {
	margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.tgh-section__header--center {
	text-align: center;
	max-width: 40rem;
	margin-inline: auto;
	margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.tgh-section__intro,
.tgh-copy {
	color: var(--tgh-text);
	font-size: var(--tgh-fs-body);
}

.tgh-heading {
	font-size: var(--tgh-fs-h2);
}

.tgh-split__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.75rem, 4vw, 3.5rem);
	align-items: center;
}

.tgh-split__grid > * {
	min-width: 0;
}

.tgh-split__content {
	overflow-wrap: break-word;
}

.tgh-split__content > .tgh-btn {
	margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.tgh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 3rem;
	padding: 0.85rem 1.6rem;
	border: 0;
	border-radius: 0.55rem;
	font-family: var(--tgh-font-body);
	font-weight: 600;
	font-size: 0.9375rem;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s var(--tgh-ease), transform 0.2s var(--tgh-ease), box-shadow 0.2s var(--tgh-ease);
}

.tgh-btn--primary {
	background: var(--tgh-green);
	color: var(--tgh-white);
	box-shadow: 0 8px 20px rgba(74, 141, 50, 0.28);
}

.tgh-btn--primary:hover,
.tgh-btn--primary:focus-visible {
	background: var(--tgh-green-dark);
	transform: translateY(-1px);
}

.tgh-btn--primary:focus-visible {
	outline: 2px solid var(--tgh-green);
	outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Site header / announcement / navigation
   -------------------------------------------------------------------------- */
.tgh-site-header {
	position: sticky;
	top: 0;
	z-index: 100;
}

.tgh-site-header .tgh-container {
	max-width: var(--tgh-header-max);
}

.tgh-announcement-bar {
	background: #1b4332;
	color: var(--tgh-white);
	padding-block: 0.5rem;
	text-align: center;
}

.tgh-announcement-bar__text {
	margin: 0;
	font-size: clamp(0.6875rem, 0.65rem + 0.15vw, 0.8125rem);
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
}

.tgh-announcement-bar__icon {
	display: inline-block;
	margin-right: 0.35rem;
	color: #ffd54f;
}

.tgh-header {
	position: relative;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(74, 141, 50, 0.12);
}

.tgh-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: var(--tgh-header-h);
}

.tgh-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	color: var(--tgh-heading);
	font-family: var(--tgh-font-body);
	font-weight: 700;
	font-size: 1rem;
}

.tgh-logo img,
.tgh-logo .custom-logo,
.tgh-logo__img {
	max-height: 2.75rem;
	width: auto;
}

.tgh-logo__icon {
	display: inline-flex;
	flex-shrink: 0;
}

.tgh-logo__text {
	white-space: nowrap;
}

.tgh-nav-toggle {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	margin-left: auto;
}

.tgh-nav-toggle__bar {
	display: block;
	width: 1.35rem;
	height: 2px;
	margin-inline: auto;
	background: var(--tgh-heading);
	border-radius: 2px;
	transition: transform 0.25s var(--tgh-ease), opacity 0.2s;
}

.tgh-header.is-nav-open .tgh-nav-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.tgh-header.is-nav-open .tgh-nav-toggle__bar:nth-child(2) {
	opacity: 0;
}

.tgh-header.is-nav-open .tgh-nav-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.tgh-nav {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background: var(--tgh-white);
	border-bottom: 1px solid var(--tgh-border);
	padding: 0.75rem 1rem 1.25rem;
	display: none;
	box-shadow: var(--tgh-shadow);
}

.tgh-header.is-nav-open .tgh-nav {
	display: block;
}

.tgh-nav__list {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.tgh-nav__list li,
.tgh-nav__item {
	list-style: none;
}

.tgh-nav__list a,
.tgh-nav__link {
	display: block;
	padding: 0.75rem 0.5rem;
	font-weight: 500;
	font-size: 0.9375rem;
	color: var(--tgh-heading);
	border-radius: 0.4rem;
}

.tgh-nav__list a:hover,
.tgh-nav__list a:focus-visible,
.tgh-nav__link:hover {
	color: var(--tgh-green);
	background: var(--tgh-tint);
}

/* Submenu — mobile accordion */
.tgh-nav__list .sub-menu {
	display: none;
	flex-direction: column;
	gap: 0.15rem;
	margin: 0.35rem 0 0.5rem;
	padding: 0.35rem 0 0.35rem 0.85rem;
	border-left: 2px solid var(--tgh-border);
}

.tgh-nav__list .menu-item-has-children.is-submenu-open > .sub-menu {
	display: flex;
}

.tgh-nav__list .sub-menu a {
	font-size: 0.875rem;
	padding: 0.5rem 0.75rem;
}

.tgh-nav__submenu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	margin-left: 0.15rem;
	padding: 0;
	border: 0;
	border-radius: 0.35rem;
	background: transparent;
	color: var(--tgh-heading);
	cursor: pointer;
	vertical-align: middle;
}

.tgh-nav__submenu-toggle svg {
	transition: transform 0.2s var(--tgh-ease);
}

.menu-item-has-children.is-submenu-open > .tgh-nav__item-row .tgh-nav__submenu-toggle svg {
	transform: rotate(180deg);
}

.tgh-nav__item-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.25rem;
}

.tgh-nav__item-row > a {
	flex: 1 1 auto;
}

.tgh-header__actions {
	display: none;
	align-items: center;
	gap: 1rem;
}

.tgh-header__phone {
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--tgh-heading);
	white-space: nowrap;
}

.tgh-header__phone:hover {
	color: var(--tgh-green);
}

.tgh-header__cta {
	white-space: nowrap;
	min-height: 2.75rem;
	padding: 0.7rem 1.25rem;
}

/* --------------------------------------------------------------------------
   Hero slider (one slide per service)
   -------------------------------------------------------------------------- */
.tgh-hero-slider {
	position: relative;
	isolation: isolate;
	background: #1a2820;
}

.tgh-hero-slider__viewport {
	position: relative;
	min-height: clamp(28rem, 78vh, 40rem);
	overflow: hidden;
}

.tgh-hero-slider__track {
	position: relative;
	min-height: inherit;
}

.tgh-hero-slider__slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-block: clamp(3rem, 8vw, 5rem) clamp(5rem, 10vw, 7rem);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.65s var(--tgh-ease), visibility 0.65s;
	pointer-events: none;
	z-index: 0;
}

.tgh-hero-slider__slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 1;
}

.tgh-hero-slider__slide:not(.is-active) {
	position: absolute;
}

.tgh-hero-slider__bg {
	position: absolute;
	inset: 0;
	background-color: #1a2820;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.tgh-hero-slider__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(105deg, rgba(17, 29, 21, 0.9) 0%, rgba(17, 29, 21, 0.62) 42%, rgba(17, 29, 21, 0.28) 100%),
		radial-gradient(ellipse at 75% 35%, rgba(74, 141, 50, 0.16), transparent 55%);
	pointer-events: none;
}

.tgh-hero-slider__content {
	position: relative;
	z-index: 2;
	text-align: left;
}

.tgh-hero-slider__title {
	font-size: var(--tgh-fs-h1);
	color: var(--tgh-white);
	margin-bottom: 1rem;
	text-wrap: balance;
	max-width: 40rem;
}

.tgh-hero-slider__text {
	color: rgba(255, 255, 255, 0.92);
	font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.125rem);
	margin-bottom: 1.75rem;
	max-width: 36rem;
}

.tgh-hero-slider__footer {
	position: absolute;
	left: 0;
	right: 0;
	bottom: clamp(1.25rem, 3vw, 2rem);
	z-index: 5;
	pointer-events: none;
}

.tgh-hero-slider__controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	pointer-events: auto;
}

.tgh-hero-slider__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	background: rgba(17, 29, 21, 0.45);
	color: var(--tgh-white);
	cursor: pointer;
	backdrop-filter: blur(6px);
	transition: background-color 0.2s var(--tgh-ease), border-color 0.2s var(--tgh-ease);
	flex-shrink: 0;
}

.tgh-hero-slider__arrow:hover,
.tgh-hero-slider__arrow:focus-visible {
	background: var(--tgh-green);
	border-color: var(--tgh-green);
}

.tgh-hero-slider__dots {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	flex: 1;
}

.tgh-hero-slider__dot {
	width: 0.4rem;
	height: 0.4rem;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: white;
	cursor: pointer;
	transition: transform 0.2s var(--tgh-ease), background-color 0.2s var(--tgh-ease);
}

.tgh-hero-slider__dot.is-active {
	transform: scale(1.25);
}

.tgh-hero-slider__dot:focus-visible {
	outline: 2px solid var(--tgh-white);
	outline-offset: 2px;
}

@media (min-width: 1025px) {
	.tgh-hero-slider__viewport {
		min-height: clamp(32rem, 72vh, 44rem);
	}
}

/* --------------------------------------------------------------------------
   Stats bar
   -------------------------------------------------------------------------- */
.tgh-stats {
	background: var(--tgh-tint);
	padding-block: clamp(1.75rem, 4vw, 2.5rem);
}

.tgh-stats__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	text-align: center;
}

.tgh-stats__value {
	display: block;
	font-family: var(--tgh-font-display);
	font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem);
	font-weight: 700;
	color: var(--tgh-green);
	line-height: 1.1;
	margin-bottom: 0.35rem;
}

.tgh-stats__label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--tgh-text);
}

/* --------------------------------------------------------------------------
   Services grid (5 cards)
   -------------------------------------------------------------------------- */
.tgh-services__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

.tgh-service-card {
	background: transparent;
	border-radius: var(--tgh-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	box-shadow: 0 8px 24px rgba(17, 29, 21, 0.08);
	transition: transform 0.25s var(--tgh-ease), box-shadow 0.25s var(--tgh-ease);
}

.tgh-service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(17, 29, 21, 0.12);
}

.tgh-service-card__header {
	display: flex;
	align-items: start;
	flex-direction: column;
	gap: 0.85rem;
	padding: 1em;
	background-color: #1b4332;
	margin-bottom: 0;
	border-radius: var(--tgh-radius) var(--tgh-radius) 0 0;
}

.tgh-service-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 0.5rem;
	background: #ffffff;
	flex-shrink: 0;
}

.tgh-service-card__icon svg {
	color: #1b4332;
}

.tgh-service-card__title {
	font-family: var(--tgh-font-body);
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--tgh-white);
	margin: 0;
	letter-spacing: 0;
	line-height: 1.3;
}

.tgh-service-card__body {
	padding: 1em;
	background-color: #e8f0eb;
	border-radius: 0 0 var(--tgh-radius) var(--tgh-radius);
	flex: 1;
}

.tgh-service-card__description {
	margin: 0 0 0.85rem;
	font-size: 0.9rem;
	line-height: 1.55;
	color: #4e575d;
}

.tgh-service-card__list {
	padding: 0;
	display: grid;
	gap: 0.65rem;
	background-color: transparent;
	border-radius: 0;
	flex: unset;
}

.tgh-service-card__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	font-size: 0.9rem;
	line-height: 1.45;
	color: #4e575d;
}

.tgh-service-card .tgh-check {
	color: #4e575d;
	margin-top: 0.1rem;
}

.tgh-check {
	display: inline-flex;
	flex-shrink: 0;
	color: var(--tgh-green);
}

/* --------------------------------------------------------------------------
   Feature grids + media cards
   -------------------------------------------------------------------------- */
.tgh-feature-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
	margin: 1.5rem 0 1.75rem;
}

.tgh-feature-box {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 1rem;
	background: var(--tgh-tint);
	border-radius: 0.75rem;
	border: 1px solid rgba(74, 141, 50, 0.12);
}

.tgh-feature-box__title {
	display: block;
	font-family: var(--tgh-font-body);
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--tgh-heading);
	margin-bottom: 0.2rem;
}

.tgh-feature-box__text {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.45;
	color: var(--tgh-text);
}

.tgh-media-card {
	position: relative;
	margin: 0;
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: var(--tgh-radius-lg);
	overflow: hidden;
	min-height: 16rem;
	box-shadow: var(--tgh-shadow);
	background: #dfe8db;
	isolation: isolate;
}

.tgh-media-card::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, #478636 0%, #1b4332 100%);
	opacity: 0.9;
	pointer-events: none;
}

.tgh-media-card__img {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	display: block;
}

.tgh-media-card__placeholder {
	position: absolute;
	inset: 0;
	min-height: 0;
	height: 100%;
	background:
		linear-gradient(160deg, rgba(17, 29, 21, 0.35), transparent 50%),
		radial-gradient(circle at 30% 40%, #6aa84f, transparent 45%),
		linear-gradient(135deg, #2a4630 0%, #4a8d32 45%, #1a2820 100%);
}

.tgh-media-card__placeholder--alt {
	background:
		linear-gradient(200deg, rgba(17, 29, 21, 0.4), transparent 55%),
		radial-gradient(circle at 70% 30%, #8fbf75, transparent 40%),
		linear-gradient(150deg, #18221c 0%, #3d6b2e 50%, #5ea043 100%);
}

.tgh-media-card__badge {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	z-index: 2;
	max-width: min(16rem, calc(100% - 2rem));
	padding: 0.85rem 1rem;
	border-radius: 0.75rem;
	background: transparent;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	color: var(--tgh-white);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.tgh-media-card__badge-value {
	display: block;
	font-family: var(--tgh-font-display);
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 0.2rem;
}

.tgh-media-card__badge-label {
	display: block;
	font-size: 0.75rem;
	line-height: 1.35;
	opacity: 0.92;
}

.tgh-blockquote {
	margin: 0 0 0.5rem;
	padding: 1rem 1.15rem;
	border-left: 4px solid var(--tgh-green);
	background: var(--tgh-tint);
	border-radius: 0 0.75rem 0.75rem 0;
}

.tgh-blockquote p {
	margin: 0;
	font-weight: 600;
	color: var(--tgh-heading);
	font-size: 0.975rem;
}

/* --------------------------------------------------------------------------
   Plans card + timeline
   -------------------------------------------------------------------------- */
.tgh-plans-card {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #478636 0%, #1b4332 100%);
	color: var(--tgh-white);
	border-radius: var(--tgh-radius-lg);
	padding: clamp(1.5rem, 3vw, 2rem);
	box-shadow: var(--tgh-shadow);
	align-self: stretch;
}

.tgh-plans-card::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: var(--tgh-plans-bg, none);
	background-size: cover;
	background-position: center;
	opacity: 0.22;
	pointer-events: none;
}

.tgh-plans-card > * {
	position: relative;
	z-index: 1;
}

.tgh-plans-card__badge {
	display: inline-block;
	margin-bottom: 1rem;
	padding: 0.4rem 0.75rem;
	border-radius: 0.35rem;
	background: rgba(184, 224, 168, 0.28);
	color: var(--tgh-white);
	font-family: var(--tgh-font-body);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1;
	text-transform: uppercase;
}

.tgh-plans-card__title {
	font-family: var(--tgh-font-display);
	font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.75rem);
	color: var(--tgh-white);
	margin-bottom: 1.25rem;
}

.tgh-plans-card__list {
	display: grid;
	gap: 0.65rem;
}

.tgh-plans-card__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.5rem 1rem;
	border-radius: 0.55rem;
	background: rgb(255 255 255 / 10%);
	border: 1px solid rgba(255, 255, 255, 0.45);
	color: var(--tgh-white);
	font-weight: 500;
	font-size: 0.9375rem;
	transition: background-color 0.2s var(--tgh-ease), border-color 0.2s var(--tgh-ease);
}

.tgh-plans-card__link:hover,
.tgh-plans-card__link:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.75);
}

.tgh-plans-card__label {
	flex: 1 1 auto;
	line-height: 1.35;
}

.tgh-plans-card__value {
	flex-shrink: 0;
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 600;
	white-space: nowrap;
	text-transform: uppercase;
}

.tgh-eyebrow {
	margin: 0 0 0.65rem;
	font-family: var(--tgh-font-body);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--tgh-green);
}

.tgh-timeline {
	display: grid;
	gap: 1.15rem;
	margin: 1.5rem 0 1.75rem;
}

.tgh-timeline__item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.9rem;
	align-items: flex-start;
}

.tgh-timeline__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 999px;
	background: #1b4332;
	color: var(--tgh-white);
	font-family: var(--tgh-font-display);
	font-weight: 700;
	font-size: 1rem;
	flex-shrink: 0;
}

.tgh-timeline__title {
	display: block;
	font-family: var(--tgh-font-body);
	font-size: 1rem;
	font-weight: 700;
	color: var(--tgh-heading);
	margin-bottom: 0.25rem;
}

.tgh-timeline__text {
	margin: 0;
	font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   Trust banner
   -------------------------------------------------------------------------- */
.tgh-trust {
	background: linear-gradient(180deg, #478636 0%, #1b4332 100%);
	padding-block: clamp(2.5rem, 5vw, 4rem);
	color: var(--tgh-white);
	text-align: center;
}

.tgh-trust .tgh-eyebrow {
	color: #b5d9a8;
}

.tgh-trust__title {
	font-size: var(--tgh-fs-h2);
	color: var(--tgh-white);
	max-width: 42rem;
	margin: 0 auto 2.5rem;
	text-wrap: balance;
}

.tgh-trust__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

.tgh-trust__item {
	display: grid;
	justify-items: center;
	gap: 0.75rem;
	max-width: 16rem;
	margin-inline: auto;
}

.tgh-trust__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 6px;
	background: var(--tgh-white);
	padding: 0;
}

.tgh-trust__icon img {
	display: block;
	width: 50%;
	height: 50%;
	object-fit: contain;
}

.tgh-trust__item-title {
	font-family: var(--tgh-font-body);
	font-weight: 700;
	font-size: 14px;
	line-height: 1.3;
	color: var(--tgh-white);
	text-transform: uppercase;
}

.tgh-trust__item-text {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.92);
}

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */
.tgh-accordion {
	display: grid;
	gap: 0.75rem;
}

.tgh-accordion__item {
	border: 1px solid var(--tgh-border);
	border-radius: 0.75rem;
	background: var(--tgh-white);
	overflow: hidden;
}

.tgh-accordion__heading {
	margin: 0;
}

.tgh-accordion__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.15rem;
	border: 0;
	background: transparent;
	text-align: left;
	cursor: pointer;
	font-family: var(--tgh-font-body);
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--tgh-heading);
}

.tgh-accordion__trigger:hover,
.tgh-accordion__trigger:focus-visible {
	background: var(--tgh-tint);
}

.tgh-accordion__icon {
	display: inline-flex;
	color: var(--tgh-green);
	flex-shrink: 0;
}

.tgh-accordion__icon-minus {
	display: none;
}

.tgh-accordion__item.is-open .tgh-accordion__icon-plus {
	display: none;
}

.tgh-accordion__item.is-open .tgh-accordion__icon-minus {
	display: inline-flex;
}

.tgh-accordion__panel {
	padding: 0 1.15rem 1.15rem;
	color: var(--tgh-text);
	font-size: 0.9rem;
}

.tgh-accordion__panel p {
	margin: 0;
}

.tgh-accordion__panel[hidden] {
	display: none;
}

/* --------------------------------------------------------------------------
   Bottom CTA banner
   -------------------------------------------------------------------------- */
.tgh-cta-banner {
	position: relative;
	isolation: isolate;
	background-color: #1b4332;
	background-image:
		linear-gradient(135deg, rgba(71, 134, 54, 0.28) 0%, rgba(17, 29, 21, 0.42) 55%, rgba(17, 29, 21, 0.58) 100%),
		var(--tgh-cta-bg, none);
	background-size: cover;
	background-position: center;
	color: var(--tgh-white);
	padding-block: clamp(3rem, 7vw, 5rem);
	text-align: center;
	overflow: hidden;
}

.tgh-cta-banner__pattern {
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0.55;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 18% 85%, rgba(184, 224, 168, 0.22), transparent 42%),
		radial-gradient(ellipse at 82% 18%, rgba(74, 141, 50, 0.28), transparent 38%),
		linear-gradient(125deg, transparent 35%, rgba(255, 255, 255, 0.06) 50%, transparent 65%);
}

.tgh-cta-banner__inner {
	position: relative;
	z-index: 1;
	max-width: 40rem;
}

.tgh-cta-banner__title {
	font-size: var(--tgh-fs-h2);
	color: var(--tgh-white);
	margin-bottom: 0.85rem;
}

.tgh-cta-banner__text {
	color: rgba(255, 255, 255, 0.82);
	margin-bottom: 1.75rem;
}

.tgh-postcode-form {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	width: 100%;
	max-width: 36rem;
	margin-inline: auto;
}

.tgh-postcode-form__input {
	width: 100%;
	min-height: 3rem;
	padding: 0.75rem 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 999px;
	background: rgba(17, 29, 21, 0.35);
	color: var(--tgh-white);
}

.tgh-postcode-form__input::placeholder {
	color: rgba(255, 255, 255, 0.65);
}

.tgh-postcode-form__input:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.75);
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.tgh-postcode-form__btn {
	width: 100%;
	min-height: 3rem;
	padding-inline: 1.75rem;
	border-radius: 999px;
	box-shadow: none;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.tgh-footer {
	background-color: var(--tgh-slate);
	background-image:
		linear-gradient(180deg, rgba(17, 29, 21, 0.92) 0%, rgba(17, 29, 21, 0.96) 100%),
		var(--tgh-footer-bg, none);
	background-size: cover;
	background-position: center top;
	color: rgba(255, 255, 255, 0.85);
	padding-top: clamp(2.75rem, 5vw, 4rem);
}

.tgh-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	padding-bottom: 2.5rem;
}

.tgh-logo--footer {
	color: var(--tgh-white);
	margin-bottom: 1.25rem;
}

.tgh-logo--footer .tgh-logo__img {
	max-height: 3.25rem;
}

.tgh-social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.tgh-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 999px;
	background: var(--tgh-green);
	color: var(--tgh-white);
	transition: background-color 0.2s var(--tgh-ease), transform 0.2s var(--tgh-ease);
}

.tgh-social__link:hover,
.tgh-social__link:focus-visible {
	background: var(--tgh-green-dark);
	transform: translateY(-2px);
}

.tgh-footer__heading {
	font-family: var(--tgh-font-body);
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0;
	color: var(--tgh-white);
	margin-bottom: 1rem;
}

.tgh-footer__menu,
.tgh-footer__contact {
	display: grid;
	gap: 0.65rem;
}

.tgh-footer__menu a,
.tgh-footer__contact a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
}

.tgh-footer__menu a:hover,
.tgh-footer__contact a:hover {
	color: var(--tgh-white);
}

.tgh-footer__contact li {
	font-size: 0.9rem;
	line-height: 1.55;
}

.tgh-footer__bottom {
	border-top: 1px solid rgba(74, 141, 50, 0.45);
	padding-block: 1.1rem;
}

.tgh-footer__copy {
	margin: 0;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.65);
	text-align: center;
}

/* --------------------------------------------------------------------------
   Tablets: 768px – 1024px
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
	:root {
		--tgh-container-pad: clamp(1.25rem, 3vw, 1.5rem);
	}

	.tgh-stats__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem 2rem;
	}

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

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

	.tgh-trust__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.75rem;
	}

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

	.tgh-postcode-form {
		flex-direction: row;
		align-items: stretch;
	}

	.tgh-postcode-form__input {
		flex: 1 1 auto;
	}

	.tgh-postcode-form__btn {
		width: auto;
		flex: 0 0 auto;
		min-width: 7.5rem;
	}

	.tgh-media-card {
		min-height: 18rem;
	}
}

/* --------------------------------------------------------------------------
   Laptops: 1025px – 1440px
   -------------------------------------------------------------------------- */
@media (min-width: 1025px) {
	:root {
		--tgh-header-max: 90rem;
	}

	.tgh-nav-toggle {
		display: none;
	}

	.tgh-header__inner {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
		align-items: center;
		column-gap: clamp(1rem, 2vw, 2rem);
	}

	.tgh-header__brand {
		grid-column: 1;
		justify-self: start;
	}

	.tgh-nav {
		position: static;
		grid-column: 2;
		justify-self: center;
		display: flex !important;
		justify-content: center;
		width: max-content;
		max-width: 100%;
		background: transparent;
		border: 0;
		padding: 0;
		box-shadow: none;
	}

	.tgh-header__actions {
		grid-column: 3;
		display: flex;
		justify-self: end;
	}

	.tgh-nav__list {
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		gap: 0.15rem;
	}

	.tgh-nav__list > li {
		display: flex;
		align-items: center;
	}

	.tgh-nav__list a,
	.tgh-nav__link {
		padding: 0.55rem 0.85rem;
	}

	.tgh-nav__list > .menu-item-has-children {
		position: relative;
	}

	.tgh-nav__submenu-toggle {
		display: none;
	}

	.tgh-nav__item-row {
		display: inline-flex;
		align-items: center;
	}

	.tgh-nav__list .sub-menu {
		display: none;
		position: absolute;
		top: calc(100% + 0.35rem);
		left: 50%;
		transform: translateX(-50%);
		min-width: 15.5rem;
		margin: 0;
		padding: 0.45rem;
		border: 1px solid var(--tgh-border);
		border-left: 1px solid var(--tgh-border);
		border-radius: 0.75rem;
		background: var(--tgh-white);
		box-shadow: var(--tgh-shadow);
		z-index: 120;
	}

	.tgh-nav__list .menu-item-has-children:hover > .sub-menu,
	.tgh-nav__list .menu-item-has-children:focus-within > .sub-menu,
	.tgh-nav__list .menu-item-has-children.is-submenu-open > .sub-menu {
		display: flex;
	}

	.tgh-nav__list .sub-menu a {
		white-space: nowrap;
	}

	.tgh-nav__list > .menu-item-has-children > .tgh-nav__item-row > a::after,
	.tgh-nav__list > .menu-item-has-children > a::after {
		content: '';
		display: inline-block;
		width: 0.4rem;
		height: 0.4rem;
		margin-left: 0.4rem;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		transform: rotate(45deg) translateY(-2px);
		vertical-align: middle;
	}

	.tgh-split__grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: clamp(2rem, 4vw, 4rem);
		align-items: stretch;
	}

	.tgh-split__grid > .tgh-media-card {
		aspect-ratio: auto;
		height: 100%;
		min-height: 100%;
	}

	.tgh-stats__grid {
		grid-template-columns: repeat(4, 1fr);
	}

	/* 5 cards: 3 + 2 centered row */
	.tgh-services__grid {
		grid-template-columns: repeat(6, 1fr);
		gap: 1.35rem;
	}

	.tgh-service-card:nth-child(1) { grid-column: 1 / 3; }
	.tgh-service-card:nth-child(2) { grid-column: 3 / 5; }
	.tgh-service-card:nth-child(3) { grid-column: 5 / 7; }
	.tgh-service-card:nth-child(4) { grid-column: 2 / 4; }
	.tgh-service-card:nth-child(5) { grid-column: 4 / 6; }

	.tgh-trust__grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.tgh-footer__grid {
		grid-template-columns: 1.4fr 1fr 1.2fr;
		gap: 2.5rem;
	}

	.tgh-footer__copy {
		text-align: left;
	}
}

/* --------------------------------------------------------------------------
   Large desktops: > 1440px
   -------------------------------------------------------------------------- */
@media (min-width: 1441px) {
	:root {
		--tgh-container-pad: 1.5rem;
		--tgh-header-max: 96rem;
		--tgh-fs-h1: clamp(3rem, 2rem + 1.2vw, 4rem);
		--tgh-fs-h2: clamp(2.25rem, 1.8rem + 0.7vw, 3rem);
	}

	.tgh-services__grid {
		gap: 1.5rem;
	}
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* --------------------------------------------------------------------------
   About Us page
   -------------------------------------------------------------------------- */
.tgh-media-card--about::after {
	opacity: 0.35;
}

.tgh-stats--about {
	background: var(--tgh-white);
	border-block: 1px solid var(--tgh-border);
}

.tgh-about-mission__inner {
	max-width: 42rem;
	margin-inline: auto;
	text-align: center;
}

.tgh-about-mission__text {
	margin: 0;
	font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
	line-height: 1.7;
}

.tgh-about-values__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.tgh-about-values__card {
	background: var(--tgh-white);
	border: 1px solid rgba(74, 141, 50, 0.1);
	border-radius: var(--tgh-radius);
	padding: 1.35rem 1.25rem;
	box-shadow: 0 4px 18px rgba(17, 29, 21, 0.04);
}

.tgh-about-values__title {
	font-family: var(--tgh-font-body);
	font-size: var(--tgh-fs-h3);
	font-weight: 700;
	color: var(--tgh-heading);
	margin: 0 0 0.5rem;
}

.tgh-about-values__text {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.55;
	color: var(--tgh-text);
}

.tgh-about-approach__inner {
	max-width: 40rem;
}

.tgh-about-approach__timeline {
	margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
	.tgh-about-values__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}
}

@media (min-width: 1025px) {
	.tgh-about-approach__inner {
		max-width: 44rem;
	}

	.tgh-about-values__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* --------------------------------------------------------------------------
   Shared inner pages (Financing, FAQ, Contact, Reviews)
   -------------------------------------------------------------------------- */
.tgh-page-hero,
.tgh-about-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background-color: #1b4332;
	background-image:
		linear-gradient(135deg, rgba(71, 134, 54, 0.45) 0%, rgba(17, 29, 21, 0.78) 100%),
		var(--tgh-page-hero-bg, var(--tgh-about-hero-bg, none));
	background-size: cover;
	background-position: center;
	color: var(--tgh-white);
	padding-block: clamp(3rem, 8vw, 5.5rem);
	text-align: center;
}

.tgh-page-hero__overlay,
.tgh-about-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		radial-gradient(ellipse at 20% 80%, rgba(184, 224, 168, 0.15), transparent 45%),
		linear-gradient(180deg, rgba(17, 29, 21, 0.15) 0%, rgba(17, 29, 21, 0.35) 100%);
	pointer-events: none;
}

.tgh-page-hero__inner,
.tgh-about-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 46rem;
	margin-inline: auto;
}

.tgh-page-hero .tgh-eyebrow,
.tgh-about-hero .tgh-eyebrow {
	color: #b5d9a8;
}

.tgh-page-hero__title,
.tgh-about-hero__title {
	font-family: var(--tgh-font-display);
	font-size: var(--tgh-fs-h1);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: var(--tgh-white);
	margin: 0 0 1rem;
	text-wrap: balance;
}

.tgh-page-hero__text,
.tgh-about-hero__text {
	margin: 0;
	font-size: var(--tgh-fs-body);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.88);
	max-width: 38rem;
	margin-inline: auto;
}

.tgh-stats--inner {
	background: var(--tgh-white);
	border-block: 1px solid var(--tgh-border);
}

.tgh-financing-steps__inner,
.tgh-about-approach__inner {
	max-width: 40rem;
}

.tgh-financing-steps__inner .tgh-timeline,
.tgh-about-approach__timeline {
	margin-bottom: 1.75rem;
}

.tgh-accordion--page {
	max-width: 48rem;
	margin-inline: auto;
}

.tgh-faq-page-list__cta,
.tgh-reviews-grid__cta {
	margin-top: 2rem;
	text-align: center;
}

.tgh-contact-cards {
	display: grid;
	gap: 1rem;
	margin-top: 1.5rem;
}

.tgh-contact-cards__item {
	background: var(--tgh-white);
	border: 1px solid rgba(74, 141, 50, 0.1);
	border-radius: var(--tgh-radius);
	padding: 1rem 1.1rem;
}

.tgh-contact-cards__item strong {
	display: block;
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--tgh-green);
	margin-bottom: 0.35rem;
}

.tgh-contact-cards__item span,
.tgh-contact-cards__item a {
	color: var(--tgh-heading);
	font-size: 0.9375rem;
	line-height: 1.5;
}

.tgh-contact-form-wrap {
	background: var(--tgh-white);
	border: 1px solid rgba(74, 141, 50, 0.1);
	border-radius: var(--tgh-radius-lg);
	padding: clamp(1.25rem, 3vw, 1.75rem);
	box-shadow: 0 8px 28px rgba(17, 29, 21, 0.06);
}

.tgh-contact-form-wrap__title {
	font-family: var(--tgh-font-display);
	font-size: var(--tgh-fs-h3);
	color: var(--tgh-heading);
	margin: 0 0 0.5rem;
}

.tgh-contact-form {
	display: grid;
	gap: 0.65rem;
	margin-top: 1.25rem;
}

.tgh-contact-form__label {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--tgh-heading);
}

.tgh-contact-form__input,
.tgh-contact-form__textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--tgh-border);
	border-radius: 0.55rem;
	background: var(--tgh-white);
	color: var(--tgh-heading);
}

.tgh-contact-form__input:focus,
.tgh-contact-form__textarea:focus {
	outline: 2px solid var(--tgh-green);
	outline-offset: 1px;
	border-color: var(--tgh-green);
}

.tgh-contact-form__textarea {
	resize: vertical;
	min-height: 7rem;
}

.tgh-contact-form__btn {
	width: 100%;
	margin-top: 0.35rem;
}

.tgh-contact-form__success {
	margin: 1rem 0 0;
	padding: 0.85rem 1rem;
	border-radius: 0.55rem;
	background: #e8f5e3;
	color: #1b4332;
	font-weight: 600;
}

.tgh-reviews__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.tgh-reviews__card {
	background: var(--tgh-white);
	border: 1px solid rgba(74, 141, 50, 0.1);
	border-radius: var(--tgh-radius);
	padding: 1.35rem 1.25rem;
	box-shadow: 0 4px 18px rgba(17, 29, 21, 0.04);
}

.tgh-reviews__stars {
	display: flex;
	gap: 0.15rem;
	margin-bottom: 0.75rem;
	color: #d7e4d3;
	font-size: 1rem;
	line-height: 1;
}

.tgh-reviews__star.is-filled {
	color: #f5b301;
}

.tgh-reviews__quote {
	margin: 0 0 1rem;
}

.tgh-reviews__quote p {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--tgh-text);
}

.tgh-reviews__meta {
	display: grid;
	gap: 0.15rem;
}

.tgh-reviews__meta strong {
	font-size: 0.9375rem;
	color: var(--tgh-heading);
}

.tgh-reviews__meta span {
	font-size: 0.8125rem;
	color: var(--tgh-text);
}

@media (min-width: 768px) {
	.tgh-reviews__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}

	.tgh-contact-form__btn {
		width: auto;
	}
}

@media (min-width: 1025px) {
	.tgh-financing-steps__inner {
		max-width: 44rem;
	}

	.tgh-reviews__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* --------------------------------------------------------------------------
   Service pages
   -------------------------------------------------------------------------- */
.tgh-service-hero .tgh-page-hero__inner {
	max-width: 50rem;
}

.tgh-service-hero__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	margin: 0 auto 1rem;
	border-radius: 0.85rem;
	background: rgba(255, 255, 255, 0.14);
	color: var(--tgh-white);
}

.tgh-service-hero__cta {
	margin-top: 1.35rem;
}

.tgh-media-card--service::after {
	opacity: 0.4;
}

.tgh-service-media-badge {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.65rem 0.85rem;
	border-radius: 0.65rem;
	background: rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(10px);
	color: var(--tgh-white);
}

.tgh-service-media-badge__icon {
	display: inline-flex;
	color: #b5d9a8;
}

.tgh-service-media-badge__label {
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.tgh-service-steps__inner {
	max-width: 40rem;
}

.tgh-service-steps__inner .tgh-timeline {
	margin-bottom: 1.75rem;
}

@media (min-width: 1025px) {
	.tgh-service-steps__inner {
		max-width: 44rem;
	}
}
