/**
 * HALINK C9 — Footer (C9 Luxury Spa mockup)
 */

.hl-footer {
	--hl-ft-bg: #0a251c;
	--hl-ft-bg-deep: #071a13;
	--hl-ft-cream: #f5f1e9;
	--hl-ft-gold: #c5a069;
	background: var(--hl-ft-bg);
	color: rgba(255, 255, 255, 0.82);
	margin-top: auto;
	position: relative;
	overflow: hidden;
}

.hl-footer a {
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
	transition: color 0.2s ease;
}

.hl-footer a:hover {
	color: var(--hl-ft-gold);
}

/* ===== TOP ===== */
.hl-footer__top {
	position: relative;
	padding: clamp(2.75rem, 5vw, 4rem) 0 2rem;
	background:
		radial-gradient(circle at 8% 70%, rgba(197, 160, 105, 0.08), transparent 28%),
		var(--hl-ft-bg);
}

.hl-footer__brand {
	position: relative;
	padding-left: 0.25rem;
}

.hl-footer__brand-visual {
	position: absolute;
	left: -0.5rem;
	bottom: -0.5rem;
	width: 7.5rem;
	height: 8.5rem;
	opacity: 0.28;
	pointer-events: none;
	overflow: hidden;
	border-radius: 50% 50% 40% 60%;
	mask-image: radial-gradient(circle, #000 45%, transparent 75%);
}

.hl-footer__brand-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.85);
}

.hl-footer__logo {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.1rem;
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
}

.hl-footer__logo img {
	max-height: 56px;
	width: auto;
	filter: brightness(0) saturate(100%) invert(78%) sepia(28%) saturate(540%) hue-rotate(358deg) brightness(92%);
}

.hl-footer__logo-mark {
	font-family: var(--hl-font-display);
	font-size: 2.75rem;
	font-weight: 600;
	line-height: 0.9;
	color: var(--hl-ft-gold);
	letter-spacing: 0.04em;
}

.hl-footer__logo-sub {
	font-family: var(--hl-font-display);
	font-size: 1.35rem;
	font-weight: 500;
	letter-spacing: 0.35em;
	color: var(--hl-ft-gold);
}

.hl-footer__logo-tag {
	margin-top: 0.2rem;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	color: rgba(255, 255, 255, 0.7);
}

.hl-footer__about {
	position: relative;
	z-index: 1;
	margin: 0 0 0.85rem;
	font-size: 0.92rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.78);
	max-width: 18rem;
}

.hl-footer__slogan {
	position: relative;
	z-index: 1;
	margin: 0;
	font-family: var(--hl-font-script);
	font-size: 1.05rem;
	font-weight: 500;
	font-style: italic;
	letter-spacing: 0.02em;
	color: var(--hl-ft-gold);
	line-height: 1.35;
}

.hl-footer__heading {
	margin: 0 0 1rem;
	font-family: var(--hl-font-display);
	font-size: 1.15rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--hl-ft-gold);
	padding-bottom: 0.55rem;
	border-bottom: 1px solid rgba(197, 160, 105, 0.35);
}

.hl-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hl-footer__menu li + li {
	margin-top: 0.55rem;
}

.hl-footer__menu a {
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.84);
}

.hl-footer__social-link {
	display: inline-flex;
	width: 2.45rem;
	height: 2.45rem;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid rgba(197, 160, 105, 0.65);
	color: var(--hl-ft-gold) !important;
	background: transparent;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hl-footer__social-link:hover {
	background: var(--hl-ft-gold);
	color: var(--hl-ft-bg) !important;
	transform: translateY(-2px);
}

.hl-footer__newsletter-text {
	margin: 0 0 0.85rem;
	font-size: 0.86rem;
	color: rgba(255, 255, 255, 0.72);
}

.hl-footer__newsletter-row {
	display: flex;
	align-items: stretch;
	gap: 0.45rem;
}

.hl-footer__newsletter-input {
	flex: 1;
	min-width: 0;
	min-height: 2.75rem;
	padding: 0.65rem 1rem;
	border: 0;
	border-radius: 999px;
	background: var(--hl-ft-cream);
	color: #1c2218;
	font-size: 0.9rem;
}

.hl-footer__newsletter-input::placeholder {
	color: rgba(28, 34, 24, 0.55);
}

.hl-footer__newsletter-input:focus {
	outline: 2px solid rgba(197, 160, 105, 0.55);
	outline-offset: 1px;
}

.hl-footer__newsletter-btn {
	width: 2.75rem;
	min-height: 2.75rem;
	border: 0;
	border-radius: 0.55rem;
	background: var(--hl-ft-gold);
	color: #fff;
	display: inline-grid;
	place-items: center;
	cursor: pointer;
	transition: background 0.2s ease;
}

.hl-footer__newsletter-btn:hover {
	background: #b08a55;
}

.hl-footer__newsletter-msg {
	margin-top: 0.5rem;
	font-size: 0.8rem;
	color: var(--hl-ft-gold);
}

/* ===== WAVE ===== */
.hl-footer__wave {
	display: block;
	line-height: 0;
	color: var(--hl-ft-cream);
	margin-top: -1px;
}

.hl-footer__wave svg {
	display: block;
	width: 100%;
	height: clamp(42px, 6vw, 72px);
}

/* ===== FEATURES ===== */
.hl-footer__features {
	background: var(--hl-ft-cream);
	color: #1c2218;
	padding: clamp(1.75rem, 3.5vw, 2.5rem) 0;
}

.hl-footer__feature {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
	text-align: center;
}

.hl-footer__feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.85rem;
	height: 2.85rem;
	margin-bottom: 0.35rem;
	border-radius: 50%;
	color: var(--hl-ft-gold);
	border: 1px solid rgba(197, 160, 105, 0.45);
	font-size: 1.15rem;
	line-height: 0;
}

.hl-footer__feature-icon .fa {
	display: block;
	line-height: 1;
	text-align: center;
}

.hl-footer__feature-title {
	display: block;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--hl-ft-gold);
}

.hl-footer__feature-text {
	display: block;
	font-size: 0.84rem;
	line-height: 1.45;
	color: rgba(28, 34, 24, 0.72);
	max-width: 16rem;
}

/* ===== CONTACT STRIP ===== */
.hl-footer__contact {
	position: relative;
	padding: clamp(1.75rem, 3.5vw, 2.5rem) 0;
	background:
		radial-gradient(circle at 92% 50%, rgba(197, 160, 105, 0.12), transparent 30%),
		var(--hl-ft-bg);
}

.hl-footer__contact::after {
	content: "";
	position: absolute;
	right: 4%;
	top: 50%;
	width: 8rem;
	height: 8rem;
	transform: translateY(-50%);
	opacity: 0.18;
	pointer-events: none;
	background:
		radial-gradient(circle at 50% 50%, transparent 42%, var(--hl-ft-gold) 43%, var(--hl-ft-gold) 45%, transparent 46%),
		radial-gradient(circle at 50% 50%, transparent 58%, var(--hl-ft-gold) 59%, var(--hl-ft-gold) 61%, transparent 62%);
	border-radius: 50%;
}

.hl-footer__contact-item {
	display: flex;
	gap: 0.85rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hl-footer__contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 50%;
	border: 1px solid rgba(197, 160, 105, 0.5);
	color: var(--hl-ft-gold);
	flex-shrink: 0;
	line-height: 0;
	font-size: inherit;
}

.hl-footer__contact-icon svg {
	display: block;
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
}

.hl-footer__contact-icon .fa {
	display: block;
	line-height: 1;
	font-size: 0.95rem;
}

.hl-footer__contact-item strong {
	display: block;
	margin-bottom: 0.2rem;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
}

.hl-footer__contact-item > div > span,
.hl-footer__contact-item > div > a {
	display: block;
	font-size: 0.88rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.78);
}

.hl-footer__contact-item a:hover {
	color: var(--hl-ft-gold);
}

/* ===== COPYRIGHT ===== */
.hl-footer__cr {
	background: var(--hl-ft-bg-deep);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-block: 1rem;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.58);
}

.hl-footer__cr a {
	color: rgba(255, 255, 255, 0.68);
}

.hl-footer__cr a:hover {
	color: var(--hl-ft-gold);
}

.hl-footer__cr-sep {
	margin-inline: 0.45rem;
	opacity: 0.45;
}

.hl-footer__payments img {
	height: 24px;
	width: auto;
	max-width: 52px;
	object-fit: contain;
	filter: grayscale(0.15) brightness(1.05);
	opacity: 0.9;
}

@media (max-width: 991.98px) {
	.hl-footer__brand-visual {
		opacity: 0.16;
		width: 5.5rem;
		height: 6rem;
	}

	.hl-footer__contact::after {
		display: none;
	}
}

@media (max-width: 575.98px) {
	.hl-footer__feature {
		align-items: flex-start;
		text-align: left;
	}

	.hl-footer__cr-text {
		text-align: center;
	}

	.hl-footer__payments {
		justify-content: center !important;
	}
}
