/* =============================================================================
   Bogdanbor Child — Site Footer
   ============================================================================= */

.site-footer {
	background:  #1a1a1a;
	color:       #8a8278;
	padding:     4.5rem 0 2rem;
	font-size:   0.875rem;
	line-height: 1.75;
}

.site-footer__inner {
	display:               grid;
	grid-template-columns: 1fr 1fr;
	gap:                   3.5rem;
	padding-bottom:        3rem;
	border-bottom:         1px solid rgba(255, 255, 255, 0.07);
	margin-bottom:         2rem;
}

@media (max-width: 600px) {
	.site-footer__inner {
		grid-template-columns: 1fr;
		gap:                   2.5rem;
	}
}

/* Brand column */
.site-footer__name {
	font-family:    var( --font-serif );
	font-size:      0.9375rem;
	font-weight:    400;
	letter-spacing: var( --tracking-wider );
	text-transform: uppercase;
	color:          #e6dfd6;
	margin-bottom:  0.625rem;
}

.site-footer__tagline {
	font-style:    italic;
	color:         #b0a89e;
	margin-bottom: 0.875rem;
	font-size:     0.8125rem;
}

.site-footer__desc {
	color:     inherit;
	max-width: 30ch;
}

/* Contact column */
.site-footer__contact-label {
	font-family:    var( --font-ui );
	font-size:      0.625rem;
	letter-spacing: var( --tracking-widest );
	text-transform: uppercase;
	color:          #8a8278; /* was #5c564e — 2.4:1 on #1a1a1a, now ≥4.5:1 (WCAG 1.4.3) */
	margin-bottom:  1rem;
}

.site-footer__contact-list {
	list-style:     none;
	padding:        0;
	margin:         0;
	display:        flex;
	flex-direction: column;
	gap:            0.5rem;
}

.site-footer__contact-list a,
.site-footer__contact-list address {
	color:           inherit;
	text-decoration: none;
	font-style:      normal;
	transition:      color 0.2s ease;
}

.site-footer__contact-list a:hover,
.site-footer__contact-list a:focus-visible {
	color:   #e6dfd6;
	outline: none;
}

/* Bottom bar */
.site-footer__copy {
	color:          #8a8278; /* was #5c564e — 2.4:1 on #1a1a1a, now ≥4.5:1 (WCAG 1.4.3) */
	font-size:      0.6875rem;
	letter-spacing: 0.04em;
	margin: 0;
}

/* Legal nav — sits beside copyright in the bottom bar */
.site-footer__bottom .container {
	display:         flex;
	align-items:     center;
	justify-content: space-between;
	flex-wrap:       wrap;
	gap:             0.5rem 1.5rem;
}

.site-footer__legal-nav ul {
	display:     flex;
	flex-wrap:   wrap;
	gap:         0.25rem 1.25rem;
	list-style:  none;
	padding:     0;
	margin:      0;
}

.site-footer__legal-nav a {
	color:           #8a8278; /* was #5c564e — 2.4:1 on #1a1a1a, now ≥4.5:1 (WCAG 1.4.3) */
	font-size:       0.6875rem;
	letter-spacing:  0.04em;
	text-decoration: none;
	transition:      color 0.2s ease;
}

.site-footer__legal-nav a:hover,
.site-footer__legal-nav a:focus-visible {
	color:   #b0a89e;
	outline: none;
}

@media (max-width: 480px) {
	.site-footer__bottom .container {
		flex-direction: column;
		align-items:    flex-start;
		gap:            0.625rem;
	}
}
