/* ========================================
   FOOTER — Premium Dark
   ======================================== */

.site-footer {
	width: 100%;
	padding: var(--space-4xl) 1.5rem var(--space-xl);
	background: var(--text-primary);
	color: var(--cream);
}

.site-footer .container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
}

/* ========================================
   FOOTER GRID
   ======================================== */

.footer-grid {
	width: 100%;
	display: grid;
	grid-template-columns: 2fr repeat(3, 1fr);
	column-gap: 60px;
	row-gap: 40px;
	margin-bottom: var(--space-3xl);
}

/* ========================================
   BRAND COLUMN
   ======================================== */

.footer-brand {
	max-width: 360px;
}

.footer-site-title {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--color-white);
	margin-bottom: 1rem;
	display: block;
}

.footer-site-title span {
	font-style: italic;
	opacity: 0.7;
}

.footer-description {
	font-size: var(--text-sm);
	color: rgba(250, 248, 245, 0.65);
	line-height: 1.6;
	max-width: 300px;
}

/* ========================================
   HEADINGS
   ======================================== */

.footer-heading {
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
	color: rgba(250, 248, 245, 0.65);
}

/* ========================================
   LINKS
   ======================================== */

.footer-links ul,
.footer-collections ul,
.contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links li,
.footer-collections li,
.contact-list li {
	margin-bottom: 0.75rem;
}

.footer-links a,
.footer-collections a {
	color: rgba(250, 248, 245, 0.8);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s;
}

.footer-links a:hover,
.footer-collections a:hover {
	color: var(--color-white);
}

/* ========================================
   CONTACT LIST
   ======================================== */

.contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.9rem;
	color: rgba(250, 248, 245, 0.8);
}

.contact-list svg {
	flex-shrink: 0;
	margin-top: 3px;
	opacity: 0.5;
}

/* ========================================
   SOCIAL
   ======================================== */

.footer-social {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 24px;
}

.footer-social a {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(250, 248, 245, 0.2);
	border-radius: 50%;
	flex-shrink: 0;
	color: rgba(250, 248, 245, 0.7);
	transition: all 0.2s;
}

.footer-social a:hover {
	background: var(--color-white);
	color: var(--text-primary);
	border-color: var(--color-white);
}

/* ========================================
   BUTTON
   ======================================== */

.footer-contact .btn-outline {
	color: var(--cream);
	border-color: rgba(250, 248, 245, 0.3);
	font-size: var(--text-xs);
}

.footer-contact .btn-outline:hover {
	background: var(--color-white);
	color: var(--text-primary);
	border-color: var(--color-white);
}

/* ========================================
   FOOTER BOTTOM
   ======================================== */

.footer-bottom {
	width: 100%;
	margin-top: 0;
	padding-top: var(--space-xl);
	border-top: 1px solid rgba(250, 248, 245, 0.12);
}

.footer-bottom-inner {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	font-size: 0.8rem;
	color: rgba(250, 248, 245, 0.55);
}

.footer-bottom-links {
	display: flex;
	gap: var(--space-lg);
}

.footer-bottom-links a {
	color: rgba(250, 248, 245, 0.55);
	text-decoration: none;
	transition: color 0.2s;
}

.footer-bottom-links a:hover {
	color: var(--color-white);
}

/* ========================================
   TABLET
   ======================================== */

@media (max-width: 991px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-brand {
		grid-column: span 2;
		max-width: 100%;
	}
}

/* ========================================
   MOBILE
   ======================================== */

@media (max-width: 767px) {
	.site-footer {
		padding: var(--space-3xl) 1.5rem var(--space-lg);
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: var(--space-xl);
	}

	.footer-brand {
		grid-column: span 1;
	}

	.footer-bottom-inner {
		flex-direction: column;
		text-align: center;
		gap: var(--space-md);
	}

	.footer-bottom-links {
		justify-content: center;
	}
}
