/**
 * Footer Styles
 * 
 * Mobile-first footer with Palette A styling
 * No social media or newsletter form
 *
 * @package Garage_At_Home
 */

/* Palette A CSS Variables */
:root {
	--gh-bg: #0F1113;
	--gh-surface: #141618;
	--gh-accent: #C62828;
	--gh-accent-2: #FF6F61;
	--gh-text: #F5F6F7;
	--gh-muted: #BFC4C6;
}

/* Footer Container */
.gh-footer {
	background-color: var(--gh-bg);
	background-image: 
		radial-gradient(circle at 20% 0%, rgba(198, 40, 40, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 80% 100%, rgba(255, 111, 97, 0.04) 0%, transparent 50%);
	border-top: 1px solid rgba(198, 40, 40, 0.15);
	padding: 2rem 0 1rem;
	position: relative;
	width: 100%;
	box-sizing: border-box;
}

.gh-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, var(--gh-accent) 20%, var(--gh-accent-2) 50%, var(--gh-accent) 80%, transparent 100%);
	opacity: 0.4;
}

.gh-footer-container {
	max-width: min(1200px, 100%);
	margin: 0 auto;
	padding: 0 1rem;
	width: 100%;
	box-sizing: border-box;
}

/* Footer Top Section: Logo & Office Address */
.gh-footer-top {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 2rem;
	padding: 1.5rem 0;
	border-bottom: 1px solid rgba(198, 40, 40, 0.2);
	margin-bottom: 1.5rem;
	position: relative;
}

.gh-footer-top::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, var(--gh-accent-2) 50%, transparent 100%);
}

.gh-footer-logo-wrapper {
	flex: 0 0 auto;
	max-width: 25%;
	display: flex;
	align-items: center;
	min-width: 0;
}

.gh-footer-logo-link {
	display: block;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.gh-footer-logo-link:hover {
	opacity: 0.9;
	transform: scale(1.02);
}

.gh-footer-logo-wrapper img,
.gh-footer-logo-img {
	max-width: 150px;
	max-height: 50px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.gh-footer-logo-wrapper .gh-footer-logo-text {
	max-width: 150px;
	height: auto;
}

.gh-footer-logo-text {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	color: var(--gh-text);
	text-decoration: none;
	font-size: 1.0625rem;
	font-weight: 700;
	transition: color 0.2s ease;
}

.gh-footer-logo-text:hover {
	color: var(--gh-accent-2);
}

.gh-footer-logo-icon {
	width: 32px;
	height: 32px;
	color: var(--gh-accent);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(198, 40, 40, 0.1) 0%, rgba(255, 111, 97, 0.1) 100%);
	border-radius: 6px;
	border: 1px solid rgba(198, 40, 40, 0.2);
}

.gh-footer-logo-name {
	line-height: 1.2;
}

.gh-footer-office-address {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.5rem;
	background: linear-gradient(135deg, rgba(198, 40, 40, 0.08) 0%, rgba(255, 111, 97, 0.05) 100%);
	border: 1px solid rgba(198, 40, 40, 0.15);
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	max-width: none;
	margin-left: 0;
}

.gh-footer-office-address::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--gh-accent) 0%, var(--gh-accent-2) 50%, var(--gh-accent) 100%);
}

.gh-footer-office-address::after {
	content: '';
	position: absolute;
	bottom: -50%;
	right: -50%;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(255, 111, 97, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.gh-office-address-graphics {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	flex-shrink: 0;
}

.gh-office-address-icon-wrapper {
	position: relative;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gh-office-address-icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gh-accent-2);
	background: linear-gradient(135deg, rgba(198, 40, 40, 0.15) 0%, rgba(255, 111, 97, 0.15) 100%);
	border-radius: 50%;
	border: 2px solid rgba(255, 111, 97, 0.3);
	position: relative;
	z-index: 2;
	box-shadow: 0 2px 8px rgba(255, 111, 97, 0.2), 0 0 12px rgba(255, 111, 97, 0.15);
}

.gh-office-icon-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	background: radial-gradient(circle, rgba(255, 111, 97, 0.2) 0%, transparent 70%);
	border-radius: 50%;
	z-index: 1;
	animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
	0%, 100% {
		opacity: 0.5;
		transform: translate(-50%, -50%) scale(1);
	}
	50% {
		opacity: 0.8;
		transform: translate(-50%, -50%) scale(1.1);
	}
}

.gh-office-address-divider {
	width: 2px;
	height: 40px;
	background: linear-gradient(180deg, transparent 0%, var(--gh-accent-2) 20%, var(--gh-accent-2) 80%, transparent 100%);
	border-radius: 2px;
	opacity: 0.6;
}

.gh-office-address-content {
	flex: 1;
	min-width: 0;
}

.gh-office-address-label {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--gh-accent-2);
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin: 0 0 0.5rem 0;
	display: flex;
	align-items: center;
	gap: 0.375rem;
}

.gh-office-label-icon {
	font-size: 1rem;
	filter: drop-shadow(0 2px 4px rgba(255, 111, 97, 0.4));
}

.gh-office-address-text {
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--gh-text);
	margin: 0;
	font-style: normal;
	font-weight: 400;
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.gh-address-line {
	display: block;
	position: relative;
	padding-left: 1rem;
}

.gh-address-line::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	background: var(--gh-accent-2);
	border-radius: 50%;
	box-shadow: 0 0 8px rgba(255, 111, 97, 0.6);
}

.gh-office-address-decoration {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 0.5rem;
}

.gh-decor-line {
	flex: 1;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, var(--gh-accent-2) 50%, transparent 100%);
	border-radius: 2px;
}

.gh-decor-dot {
	width: 6px;
	height: 6px;
	background: var(--gh-accent-2);
	border-radius: 50%;
	box-shadow: 0 0 8px rgba(255, 111, 97, 0.8);
}

/* Footer Content Grid */
.gh-footer-content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-bottom: 2rem;
	width: 100%;
	box-sizing: border-box;
}

/* Footer Column */
.gh-footer-column {
	flex: 1;
	min-width: 0;
	width: 100%;
	box-sizing: border-box;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.gh-footer-column-title {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--gh-text);
	margin: 0 0 1.25rem 0;
	line-height: 1.3;
	position: relative;
	padding-bottom: 0.75rem;
	padding-left: 0;
	border-bottom: 2px solid rgba(198, 40, 40, 0.25);
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.gh-footer-column-title::before {
	content: '';
	width: 4px;
	height: 20px;
	background: linear-gradient(180deg, var(--gh-accent) 0%, var(--gh-accent-2) 100%);
	border-radius: 2px;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(255, 111, 97, 0.4);
}

.gh-footer-column-title::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, var(--gh-accent) 0%, var(--gh-accent-2) 100%);
	border-radius: 2px;
}

/* Footer Menu */
.gh-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.gh-footer-menu li {
	margin: 0;
	padding: 0;
	position: relative;
}

.gh-footer-menu a {
	color: var(--gh-muted);
	text-decoration: none;
	font-size: 0.875rem;
	line-height: 1.8;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	padding: 0.5rem 0.75rem;
	margin-left: -0.75rem;
	padding-left: 1.5rem;
	border-radius: 6px;
	position: relative;
}

.gh-footer-menu a::before {
	content: '';
	position: absolute;
	left: 0.5rem;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	background: linear-gradient(135deg, var(--gh-accent) 0%, var(--gh-accent-2) 100%);
	border-radius: 50%;
	opacity: 0.6;
	transition: all 0.3s ease;
	box-shadow: 0 0 8px rgba(255, 111, 97, 0.4);
}

.gh-footer-menu a::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, var(--gh-accent) 0%, var(--gh-accent-2) 100%);
	border-radius: 3px 0 0 3px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gh-footer-menu a:hover,
.gh-footer-menu a:focus {
	color: var(--gh-text);
	outline: none;
	background: linear-gradient(90deg, rgba(198, 40, 40, 0.1) 0%, rgba(255, 111, 97, 0.05) 100%);
	padding-left: 1.75rem;
	transform: translateX(4px);
}

.gh-footer-menu a:hover::before,
.gh-footer-menu a:focus::before {
	opacity: 1;
	width: 8px;
	height: 8px;
	left: 0.625rem;
	box-shadow: 0 0 12px rgba(255, 111, 97, 0.6);
}

.gh-footer-menu a:hover::after,
.gh-footer-menu a:focus::after {
	opacity: 1;
}

.gh-footer-menu a:focus-visible {
	outline: 2px solid var(--gh-accent);
	outline-offset: 2px;
	border-radius: 6px;
}

/* Footer Contact List */
.gh-footer-contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.gh-footer-contact-list li {
	margin: 0;
	padding: 0;
}

.gh-footer-contact-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--gh-muted);
	text-decoration: none;
	font-size: 0.875rem;
	line-height: 1.6;
	transition: color 0.2s ease;
}

.gh-footer-contact-link:hover,
.gh-footer-contact-link:focus {
	color: var(--gh-accent);
	outline: none;
}

.gh-footer-contact-link:focus-visible {
	outline: 2px solid var(--gh-accent);
	outline-offset: 2px;
	border-radius: 2px;
}

.gh-footer-icon {
	flex-shrink: 0;
	color: var(--gh-accent);
	opacity: 0.8;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.gh-footer-contact-link:hover .gh-footer-icon,
.gh-footer-contact-link:focus .gh-footer-icon {
	opacity: 1;
	transform: scale(1.1);
}

/* WhatsApp Link Special Styling */
.gh-footer-whatsapp {
	position: relative;
}

.gh-footer-whatsapp:hover,
.gh-footer-whatsapp:focus {
	color: #25D366;
}

.gh-footer-whatsapp .gh-footer-icon {
	color: #25D366;
	opacity: 0.9;
}

.gh-footer-whatsapp:hover .gh-footer-icon,
.gh-footer-whatsapp:focus .gh-footer-icon {
	color: #25D366;
	opacity: 1;
	transform: scale(1.15);
}

/* Footer Cities List - Available In */
.gh-available-cities,
.gh-footer-cities {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
}

.gh-available-cities li,
.gh-footer-cities li {
	margin: 0;
	padding: 0;
	color: var(--gh-muted);
	font-size: 0.875rem;
	line-height: 1.6;
	position: relative;
	padding-left: 0.75rem;
}

.gh-available-cities li::before,
.gh-footer-cities li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 4px;
	background-color: var(--gh-accent);
	border-radius: 50%;
	opacity: 0.6;
}

/* Footer City Links */
.gh-footer-city-link {
	color: var(--gh-muted);
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
}

.gh-footer-city-link:hover {
	color: var(--gh-accent-2);
	transform: translateX(4px);
}

.gh-footer-city-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--gh-accent-2);
	transition: width 0.3s ease;
}

.gh-footer-city-link:hover::after {
	width: 100%;
}

/* Footer Address */
.gh-footer-address-text {
	color: var(--gh-muted);
	font-size: 0.875rem;
	line-height: 1.7;
	margin: 0;
	font-style: normal;
}

/* Footer Bottom / Copyright */
.gh-footer-bottom {
	border-top: 1px solid rgba(198, 40, 40, 0.15);
	padding-top: 1.5rem;
	text-align: center;
}

.gh-footer-copyright {
	color: var(--gh-muted);
	font-size: 0.8125rem;
	margin: 0;
	line-height: 1.6;
}

/* Small Mobile - Extra small screens */
@media (max-width: 480px) {
	.gh-footer {
		padding: 1.5rem 0 1rem;
	}

	.gh-footer-container {
		padding: 0 0.75rem;
	}

	.gh-footer-top {
		padding: 1.5rem 0;
		gap: 1.25rem;
		margin-bottom: 1.5rem;
		flex-direction: column;
		align-items: stretch;
	}

	.gh-footer-logo-wrapper {
		flex: 0 0 auto;
		max-width: 100%;
	}

	.gh-footer-logo-wrapper img,
	.gh-footer-logo-img {
		max-width: 160px;
		max-height: 60px;
	}

	.gh-footer-logo-wrapper .gh-footer-logo-text {
		max-width: 160px;
	}

	.gh-footer-logo-text {
		font-size: 1.0625rem;
		gap: 0.625rem;
	}

	.gh-footer-logo-icon {
		width: 36px;
		height: 36px;
	}

	.gh-footer-office-address {
		flex-direction: row;
		gap: 1rem;
		padding: 1.25rem;
		border-radius: 12px;
		max-width: 100%;
		margin-left: 0;
		flex: 1 1 auto;
		min-width: 0;
	}

	.gh-office-address-graphics {
		flex-direction: column;
		gap: 0.75rem;
	}

	.gh-office-address-icon-wrapper {
		width: 48px;
		height: 48px;
	}

	.gh-office-address-icon {
		width: 48px;
		height: 48px;
		border-width: 2px;
	}

	.gh-office-icon-glow {
		width: 60px;
		height: 60px;
	}

	.gh-office-address-divider {
		height: 30px;
	}

	.gh-office-address-label {
		font-size: 0.75rem;
		margin-bottom: 0.5rem;
		letter-spacing: 0.5px;
	}

	.gh-office-address-text {
		font-size: 0.875rem;
		line-height: 1.6;
		margin-bottom: 0.5rem;
	}

	.gh-address-line {
		padding-left: 0.875rem;
		font-size: 0.875rem;
	}

	.gh-address-line::before {
		width: 5px;
		height: 5px;
	}

	.gh-footer-content {
		gap: 1.5rem;
		margin-bottom: 1.5rem;
	}

	.gh-footer-column-title {
		font-size: 0.9375rem;
		margin-bottom: 1rem;
		padding-bottom: 0.5rem;
		padding-left: 0;
		gap: 0.625rem;
	}

	.gh-footer-column-title::before {
		width: 3px;
		height: 18px;
	}

	.gh-footer-column-title::after {
		width: 50px;
	}

	.gh-footer-menu {
		gap: 0.375rem;
	}

	.gh-footer-menu a {
		padding: 0.4375rem 0.625rem;
		margin-left: -0.625rem;
		padding-left: 1.25rem;
		font-size: 0.8125rem;
		border-radius: 5px;
	}

	.gh-footer-menu a::before {
		left: 0.4375rem;
		width: 5px;
		height: 5px;
	}

	.gh-footer-menu a:hover,
	.gh-footer-menu a:focus {
		padding-left: 1.5rem;
		transform: translateX(3px);
	}

	.gh-footer-menu a:hover::before,
	.gh-footer-menu a:focus::before {
		width: 6px;
		height: 6px;
		left: 0.5rem;
	}

	.gh-footer-menu {
		gap: 0.5rem;
	}

	.gh-footer-menu a,
	.gh-footer-contact-link,
	.gh-available-cities li,
	.gh-footer-cities li {
		font-size: 0.8125rem;
	}

	.gh-footer-contact-link {
		flex-wrap: wrap;
		gap: 0.5rem;
	}

	.gh-footer-icon {
		width: 14px;
		height: 14px;
	}

	.gh-footer-cities {
		gap: 0.375rem 0.875rem;
	}

	.gh-footer-cities li {
		padding-left: 0.625rem;
		font-size: 0.8125rem;
	}

	.gh-footer-address-text {
		font-size: 0.8125rem;
		line-height: 1.6;
	}

	.gh-footer-bottom {
		padding-top: 1.25rem;
	}

	.gh-footer-copyright {
		font-size: 0.75rem;
	}
}

/* Tablet Layout */
@media (min-width: 768px) {
	.gh-footer {
		padding: 2.5rem 0 1.25rem;
	}

	.gh-footer-container {
		padding: 0 1.5rem;
	}

	.gh-footer-top {
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		gap: 1.5rem;
		padding: 1.5rem 0;
		margin-bottom: 1.5rem;
	}

	.gh-footer-logo-wrapper {
		flex: 0 0 auto;
		max-width: 25%;
	}
	
	.gh-footer-logo-wrapper img,
	.gh-footer-logo-img {
		max-width: 140px;
		max-height: 45px;
	}
	
	.gh-footer-logo-wrapper .gh-footer-logo-text {
		max-width: 140px;
	}
	
	.gh-footer-logo-text {
		font-size: 1rem;
		gap: 0.5rem;
	}
	
	.gh-footer-logo-icon {
		width: 30px;
		height: 30px;
	}

	.gh-footer-office-address {
		flex: 1 1 auto;
		min-width: 0;
		max-width: none;
		padding: 1rem 1.25rem;
		margin-left: 0;
		gap: 0.875rem;
	}
	
	.gh-office-address-icon-wrapper {
		width: 36px;
		height: 36px;
	}
	
	.gh-office-address-icon {
		width: 36px;
		height: 36px;
		border-width: 2px;
	}
	
	.gh-office-icon-glow {
		width: 45px;
		height: 45px;
	}
	
	.gh-office-address-label {
		font-size: 0.6875rem;
		margin-bottom: 0.375rem;
	}
	
	.gh-office-address-text {
		font-size: 0.8125rem;
		line-height: 1.5;
	}

	.gh-office-address-icon-wrapper {
		width: 60px;
		height: 60px;
	}

	.gh-office-address-icon {
		width: 60px;
		height: 60px;
	}

	.gh-office-icon-glow {
		width: 80px;
		height: 80px;
	}

	.gh-footer-content {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem 2.5rem;
		margin-bottom: 2.5rem;
	}

	.gh-footer-column-title {
		font-size: 1.0625rem;
		margin-bottom: 1.5rem;
		padding-bottom: 0.875rem;
		padding-left: 0;
		gap: 0.875rem;
	}

	.gh-footer-column-title::before {
		width: 4px;
		height: 22px;
	}

	.gh-footer-column-title::after {
		width: 70px;
	}

	.gh-footer-menu {
		gap: 0.5rem;
	}

	.gh-footer-menu a {
		padding: 0.5625rem 0.875rem;
		margin-left: -0.875rem;
		padding-left: 1.625rem;
		font-size: 0.9375rem;
	}

	.gh-footer-menu a::before {
		left: 0.5625rem;
		width: 6px;
		height: 6px;
	}

	.gh-footer-menu a:hover,
	.gh-footer-menu a:focus {
		padding-left: 1.875rem;
		transform: translateX(4px);
	}

	.gh-footer-menu a:hover::before,
	.gh-footer-menu a:focus::before {
		width: 8px;
		height: 8px;
		left: 0.6875rem;
	}

	.gh-footer-menu a {
		font-size: 0.9375rem;
	}

	.gh-footer-contact-link {
		font-size: 0.9375rem;
	}

	.gh-available-cities li,
	.gh-footer-cities li {
		font-size: 0.9375rem;
	}

	.gh-footer-address-text {
		font-size: 0.9375rem;
	}
}

/* Desktop Layout */
@media (min-width: 1024px) {
	.gh-footer {
		padding: 3rem 0 1.5rem;
	}

	.gh-footer-container {
		padding: 0 2rem;
	}

	.gh-footer-top {
		padding: 1.75rem 0;
		margin-bottom: 2rem;
		gap: 2rem;
	}
	
	.gh-footer-logo-wrapper {
		max-width: 25%;
	}
	
	.gh-footer-logo-wrapper img,
	.gh-footer-logo-img {
		max-width: 160px;
		max-height: 50px;
	}
	
	.gh-footer-logo-wrapper .gh-footer-logo-text {
		max-width: 160px;
	}
	
	.gh-footer-logo-text {
		font-size: 1.0625rem;
	}

	.gh-footer-office-address {
		flex: 1 1 auto;
		min-width: 0;
		max-width: none;
		padding: 1.125rem 1.5rem;
		margin-left: 0;
	}

	.gh-office-address-icon-wrapper {
		width: 42px;
		height: 42px;
	}

	.gh-office-address-icon {
		width: 42px;
		height: 42px;
		border-width: 2px;
	}

	.gh-office-icon-glow {
		width: 55px;
		height: 55px;
	}

	.gh-office-address-label {
		font-size: 0.75rem;
		margin-bottom: 0.5rem;
		letter-spacing: 0.8px;
	}

	.gh-office-address-text {
		font-size: 0.9375rem;
		line-height: 1.6;
		margin-bottom: 0;
	}

	.gh-address-line {
		padding-left: 1rem;
		font-size: 0.9375rem;
	}

	.gh-address-line::before {
		width: 6px;
		height: 6px;
	}

	.gh-footer-content {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 2rem 3rem;
		margin-bottom: 3rem;
	}

	/* If address column exists, make it 5 columns */
	.gh-footer-content:has(.gh-footer-address) {
		grid-template-columns: repeat(5, 1fr);
	}

	.gh-footer-column-title {
		font-size: 1.125rem;
		margin-bottom: 1.75rem;
		padding-bottom: 1rem;
		padding-left: 0;
		gap: 1rem;
	}

	.gh-footer-column-title::before {
		width: 5px;
		height: 24px;
	}

	.gh-footer-column-title::after {
		width: 80px;
	}

	.gh-footer-menu {
		gap: 0.625rem;
	}

	.gh-footer-menu a {
		padding: 0.625rem 1rem;
		margin-left: -1rem;
		padding-left: 1.75rem;
		font-size: 0.9375rem;
	}

	.gh-footer-menu a::before {
		left: 0.625rem;
		width: 6px;
		height: 6px;
	}

	.gh-footer-menu a:hover,
	.gh-footer-menu a:focus {
		padding-left: 2rem;
		transform: translateX(5px);
	}

	.gh-footer-menu a:hover::before,
	.gh-footer-menu a:focus::before {
		width: 9px;
		height: 9px;
		left: 0.75rem;
	}

	.gh-footer-menu a {
		font-size: 0.9375rem;
	}

	.gh-footer-contact-link {
		font-size: 0.9375rem;
	}

	.gh-available-cities,
	.gh-footer-cities {
		gap: 0.5rem 1.25rem;
	}

	.gh-available-cities li,
	.gh-footer-cities li {
		font-size: 0.9375rem;
	}

	.gh-footer-address-text {
		font-size: 0.9375rem;
	}

	.gh-footer-copyright {
		font-size: 0.875rem;
	}
}

/* Large Desktop */
@media (min-width: 1280px) {
	.gh-footer-content {
		gap: 2.5rem 4rem;
	}
}

/* Accessibility - Focus Styles */
.gh-footer a:focus-visible {
	outline: 2px solid var(--gh-accent);
	outline-offset: 2px;
	border-radius: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
	.gh-footer-menu a,
	.gh-footer-contact-link,
	.gh-footer-icon {
		transition: none;
	}
}

