/**
 * Site footer — Figma Delco node 2083:1231795
 * Fonts: Montserrat (column titles), Nunito Sans (Avenir stand-in), Playfair Display (Magneta CTA)
 * NOTE: uses .site_footer__wrap (not .wrapper) to avoid main_Copy.css overrides
 */
/* ── tokens ─────────────────────────────────────────────────────────────── */
:root {
	--sf-bg:           #2c2a26;
	--sf-text:         #ffffff;
	--sf-text-muted:   rgba(255, 255, 255, 0.72);
	--sf-text-accent:  #978970; /* matches .hf-areas__eyebrow */
	--sf-border:       rgba(255, 255, 255, 0.45);
	--sf-border-subtle:rgba(255, 255, 255, 0.22);
	--sf-font-display: "Magneta", "Playfair Display", Georgia, "Times New Roman", serif;
	--sf-font-title:   "Montserrat", "Helvetica Neue", Arial, sans-serif;
	--sf-font-body:    "Nunito Sans", "Avenir Next", "Avenir", "Helvetica Neue", Arial, sans-serif;
}

/* ── reset: completely neutralise legacy footer rules inside .site_footer ── */
footer.site_footer,
footer.site_footer *,
footer.site_footer *::before,
footer.site_footer *::after {
	box-sizing: border-box;
}

footer.site_footer {
	z-index: 3 !important;
	position: relative !important;
	background: var(--sf-bg) !important;
	padding: 0 !important;
	color: var(--sf-text) !important;
	font-family: var(--sf-font-body) !important;
	font-size: 1.6rem !important;   /* NOTE: html{font-size:62.5%} → 1rem=10px; 1.6rem=16px base */
	font-weight: 400 !important;
	line-height: normal !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
}

footer.site_footer p,
footer.site_footer li,
footer.site_footer h3,
footer.site_footer ul,
footer.site_footer a,
footer.site_footer address {
	font-family: var(--sf-font-body) !important;
	font-size: inherit !important;
	font-weight: inherit !important;
	line-height: inherit !important;
	letter-spacing: inherit !important;
	text-transform: inherit !important;
	color: var(--sf-text) !important;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	display: revert !important; /* only on these tag-level selectors — not block-level flex containers */
}

footer.site_footer ul {
	list-style: none !important;
	display: block !important;
}

footer.site_footer ul li {
	display: block !important;
}

footer.site_footer a {
	text-decoration: none !important;
	transition: opacity 0.2s ease !important;
	display: inline !important;
}

footer.site_footer a:hover { opacity: 0.75 !important; }

/* ── wrapper ─────────────────────────────────────────────────────────────── */
.site_footer__wrap {
	max-width: 149.2rem; /* 1492px @ 10px base */
	margin: 0 auto;
	padding: 10rem 8rem 5rem; /* 100px 80px 50px */
	display: flex !important;
	flex-direction: column !important;
	gap: 6rem !important; /* 60px */
}

/* ── main two-column row ─────────────────────────────────────────────────── */
.site_footer__main {
	display: flex !important;
	flex-direction: row !important;
	align-items: stretch !important;
	justify-content: space-between !important;
	gap: 0 !important;
	width: 100% !important;
}

/* ── brand column (left) ─────────────────────────────────────────────────── */
.site_footer__brand-col {
	display: flex !important;
	flex-direction: column !important;
	justify-content: space-between !important;
	flex: 1 1 0 !important;
	min-width: 0 !important;
}

.site_footer__brand-top {
	display: flex !important;
	flex-direction: column !important;
	gap: 2.8rem !important; /* 28px */
}

/* Logo */
.site_footer__logo a {
	display: block !important;
	line-height: 0 !important;
}
.site_footer__logo img {
	display: block !important;
	width: 20rem !important; /* 200px */
	height: auto !important;
	filter: brightness(0) invert(1) !important;
}

/* ── four link columns ───────────────────────────────────────────────────── */
.site_footer__columns {
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: flex-start !important;
	gap: 3rem !important; /* 30px */
}

.site_footer__column {
	width: 18rem !important; /* 180px */
	flex-shrink: 0 !important;
}

.site_footer__column-title {
	font-family: var(--sf-font-title) !important;
	font-size: 2rem !important;         /* 20px */
	font-weight: 600 !important;
	line-height: normal !important;
	letter-spacing: 0.2rem !important;  /* 2px */
	text-transform: uppercase !important;
	color: var(--sf-text) !important;
	margin: 0 0 3rem !important;        /* 30px gap below heading */
	display: block !important;
	list-style: none !important;
}

.site_footer__column-title::-webkit-details-marker {
	display: none !important;
}

.site_footer__column-title-text {
	display: block !important;
}

.site_footer__column-icon {
	display: none !important;
	flex: 0 0 auto !important;
	width: 2.4rem !important;
	height: 2.4rem !important;
	position: relative !important;
}

.site_footer__column-icon::before,
.site_footer__column-icon::after {
	content: "" !important;
	position: absolute !important;
	background: currentColor !important;
	border-radius: 1px !important;
}

.site_footer__column-icon::before {
	top: 50% !important;
	left: 0.35rem !important;
	right: 0.35rem !important;
	height: 2px !important;
	transform: translateY(-50%) !important;
}

.site_footer__column-icon::after {
	left: 50% !important;
	top: 0.35rem !important;
	bottom: 0.35rem !important;
	width: 2px !important;
	transform: translateX(-50%) !important;
	transition: transform 0.2s ease !important;
}

.site_footer__column-details[open] .site_footer__column-icon::after {
	transform: translateX(-50%) scaleY(0) !important;
}

.site_footer__column-details > .site_footer__column-links {
	padding-top: 0 !important;
}

.site_footer__column-links {
	display: flex !important;
	flex-direction: column !important;
	gap: 1rem !important; /* 10px */
	list-style: none !important;
}

.site_footer__column-links li {
	display: block !important;
}

.site_footer__column-links a {
	font-family: var(--sf-font-body) !important;
	font-size: 1.6rem !important;       /* 16px */
	font-weight: 400 !important;
	letter-spacing: 0 !important;
	text-transform: uppercase !important;
	color: var(--sf-text) !important;
	display: block !important;
}

/* ── social + badges row ─────────────────────────────────────────────────── */
.site_footer__meta-row {
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: flex-end !important;
	justify-content: space-between !important;
	gap: 2rem !important;        /* 20px */
	padding-top: 2.4rem !important; /* 24px */
}

.site_footer__social {
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	gap: 3.4rem !important;  /* 34px */
}

.site_footer__social a {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 4.2rem !important;   /* 42px */
	height: 4.2rem !important;
}

.site_footer__social .icon {
	width: 100% !important;
	height: 100% !important;
	fill: currentColor !important;
}

.site_footer__badges {
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: flex-end !important;
	gap: 2rem !important;    /* 20px */
}
.site_footer__badges img {
	display: block !important;
	height: 7rem !important;     /* 70px */
	width: auto !important;
	max-width: 18.4rem !important; /* 184px */
	object-fit: contain !important;
}

/* ── contact panel (right) ───────────────────────────────────────────────── */
.site_footer__contact-panel {
	flex: 0 0 52rem !important; /* 520px */
	max-width: 100% !important;
	border-left: 1px solid var(--sf-border) !important;
	padding: 0 0 0 5rem !important; /* 50px left padding */
	display: flex !important;
	flex-direction: column !important;
	justify-content: center !important;
	gap: 2.4rem !important; /* 24px */
}

/* CTA heading */
.site_footer__cta {
	display: flex !important;
	flex-direction: column !important;
	gap: 0 !important;
}

.site_footer__cta-title,
.site_footer__cta-line {
	margin: 0 !important;
	font-family: var(--sf-font-display) !important;
	font-size: clamp(2.6rem, 3.5vw, 4rem) !important;
	font-weight: 100 !important;
	line-height: 1.25 !important;
	color: var(--sf-text) !important;
	display: block !important;
	letter-spacing: -0.02em !important;
	text-wrap: balance;
}

/* Contact panel labels — match .hf-areas__eyebrow */
.site_footer__panel-label,
.site_footer__panel-label-sm {
	font-family: var(--sf-font-title) !important;
	font-size: 1.26rem !important;
	font-weight: 600 !important;
	line-height: normal !important;
	letter-spacing: 0.38rem !important;
	text-transform: uppercase !important;
	color: var(--sf-text-accent) !important;
	display: block !important;
}

.site_footer__panel-label {
	margin: 0 0 0.8rem !important;
}

.site_footer__panel-label-sm {
	margin: 0 !important;
}

.site_footer__panel-text {
	font-family: var(--sf-font-body) !important;
	font-size: 1.6rem !important;        /* 16px */
	font-weight: 400 !important;
	color: var(--sf-text-muted) !important;
	display: block !important;
	margin: 0 !important;
	line-height: 1.5 !important;
}

/* Showroom block */
.site_footer__showroom {
	display: flex !important;
	flex-direction: column !important;
	gap: 0.6rem !important;
	align-items: flex-start !important;
}

/* Primary panel CTA (Larson-style white button) */
footer.site_footer a.site_footer__panel-btn,
.site_footer__panel-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 1.2rem !important;
	box-sizing: border-box !important;
	width: 100% !important;
	max-width: 100% !important;
	min-height: 5.2rem !important;
	margin-top: 0.8rem !important;
	padding: 1.2rem 2rem !important;
	border: none !important;
	border-radius: 0.4rem !important;
	background: #ffffff !important;
	color: var(--sf-bg) !important;
	font-family: var(--sf-font-title) !important;
	font-size: 1.4rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.14rem !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
	transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease !important;
}

footer.site_footer a.site_footer__panel-btn:hover,
.site_footer__panel-btn:hover {
	opacity: 1 !important;
	background: rgba(255, 255, 255, 0.92) !important;
	color: var(--sf-bg) !important;
}

.site_footer__panel-btn-icon {
	flex: 0 0 auto !important;
	width: 2rem !important;
	height: 2rem !important;
	background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232c2a26'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 110-5 2.5 2.5 0 010 5z'/%3E%3C/svg%3E") !important;
}

/* Phones block */
.site_footer__phones-block {
	display: flex !important;
	flex-direction: column !important;
	gap: 1rem !important;     /* 10px */
}

.site_footer__phones-row {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 3rem !important;     /* 30px */
	align-items: flex-start !important;
}

.site_footer__phone-col {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	gap: 1.6rem !important;   /* icon gap */
}

/* Icon circle (mimics the chat/phone icon circles in the screenshot) */
.site_footer__phone-col::before {
	content: "" !important;
	display: flex !important;
	flex-shrink: 0 !important;
	width: 3.8rem !important;
	height: 3.8rem !important;
	border: 2px solid var(--sf-border) !important;
	border-radius: 50% !important;
	background: transparent !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07A19.5 19.5 0 013.07 9.8 19.79 19.79 0 01.25 1.22 2 2 0 012.22 0h3a2 2 0 012 1.72c.128.96.361 1.903.7 2.81a2 2 0 01-.45 2.11L6.09 7.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45c.907.339 1.85.572 2.81.7A2 2 0 0122 14.92z'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
	background-size: 1.7rem !important;
}

.site_footer__phone-col-inner {
	display: flex !important;
	flex-direction: column !important;
	gap: 0.1rem !important;
}

.site_footer__panel-num {
	font-family: var(--sf-font-body) !important;
	font-size: 2.2rem !important;        /* 22px — large bold number */
	font-weight: 700 !important;
	color: var(--sf-text) !important;
	display: block !important;
	margin: 0 !important;
	letter-spacing: 0.02em !important;
}

.site_footer__email-row {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	gap: 1.2rem !important;
}

.site_footer__email-row::before {
	content: "" !important;
	flex: 0 0 auto !important;
	width: 3.8rem !important;
	height: 3.8rem !important;
	border: 2px solid var(--sf-border) !important;
	border-radius: 50% !important;
	background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16v16H4z'/%3E%3Cpath d='m22 6-10 7L2 6'/%3E%3C/svg%3E") center / 1.7rem no-repeat !important;
}

.site_footer__email-inner {
	display: flex !important;
	flex-direction: column !important;
	gap: 0.1rem !important;
	flex: 1 1 auto !important;
	min-width: 0 !important;
}

/* Hours */
.site_footer__hours {
	display: flex !important;
	flex-direction: column !important;
	gap: 0.6rem !important;   /* 6px */
}

/* ── copyright bar ───────────────────────────────────────────────────────── */
.site_footer__bottom {
	width: 100% !important;
	text-align: center !important;
	padding: 0 !important;
	border: none !important;
	background: transparent !important;
}

.site_footer__copyright {
	font-family: var(--sf-font-body) !important;
	font-size: 1.4rem !important;   /* 14px */
	font-weight: 400 !important;
	color: var(--sf-text) !important;
	display: block !important;
	margin: 0 !important;
}

/* ── responsive ──────────────────────────────────────────────────────────── */
@media (min-width: 901px) {
	.site_footer__column-title {
		pointer-events: none !important;
		cursor: default !important;
		padding: 0 !important;
	}

	.site_footer__column-icon {
		display: none !important;
	}
}

@media (max-width: 1280px) {
	.site_footer__wrap {
		padding-left: 4.8rem;  /* 48px */
		padding-right: 4.8rem;
	}
}

@media (max-width: 1100px) {
	.site_footer__main {
		flex-direction: column !important;
		gap: 4rem !important;  /* 40px */
	}
	.site_footer__contact-panel {
		flex: 1 1 auto !important;
		border-left: none !important;
		border-top: 1px solid var(--sf-border) !important;
		padding: 4rem 0 0 !important;  /* 40px */
	}
	.site_footer__brand-col {
		flex: 1 1 auto !important;
	}
}

@media (max-width: 900px) {
	.site_footer__wrap {
		padding: 4.8rem 2.4rem 3.2rem;
		gap: 0 !important;
	}

	.site_footer__main {
		flex-direction: column !important;
		gap: 0 !important;
	}

	.site_footer__brand-col {
		display: contents !important;
	}

	.site_footer__brand-top {
		order: 1;
		gap: 2.4rem !important;
	}

	.site_footer__contact-panel {
		order: 2;
		flex: 1 1 auto !important;
		border-left: none !important;
		border-top: 1px solid var(--sf-border-subtle) !important;
		padding: 2.4rem 0 0 !important;
		gap: 0 !important;
		justify-content: flex-start !important;
	}

	.site_footer__contact-panel > * {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
		border-top: 1px solid var(--sf-border-subtle) !important;
	}

	.site_footer__contact-panel > *:first-child {
		padding-top: 0 !important;
		border-top: none !important;
	}

	.site_footer__cta-title,
	.site_footer__cta-line {
		font-size: clamp(2.4rem, 6.8vw, 3.2rem) !important;
		font-weight: 100 !important;
		line-height: 1.3 !important;
		text-align: left !important;
	}

	.site_footer__showroom {
		gap: 0.8rem !important;
	}

	.site_footer__panel-label {
		margin-bottom: 0.4rem !important;
	}

	.site_footer__panel-text {
		font-size: 1.5rem !important;
		line-height: 1.45 !important;
		color: var(--sf-text) !important;
	}

	.site_footer__showroom .site_footer__panel-text a {
		color: var(--sf-text) !important;
		font-weight: 600 !important;
	}

	.site_footer__showroom .site_footer__panel-text + .site_footer__panel-text {
		color: var(--sf-text-muted) !important;
		font-size: 1.4rem !important;
		font-weight: 400 !important;
	}

	.site_footer__phones-block {
		gap: 0 !important;
	}

	.site_footer__phones-row {
		flex-direction: column !important;
		gap: 2rem !important;
	}

	.site_footer__phone-col {
		width: 100% !important;
		align-items: center !important;
	}

	.site_footer__panel-num {
		font-size: 2rem !important;
		font-weight: 700 !important;
		letter-spacing: 0.02em !important;
	}

	.site_footer__panel-num a {
		color: var(--sf-text) !important;
	}

	.site_footer__email-row {
		margin-top: 2rem !important;
		padding-top: 2rem !important;
		border-top: 1px solid var(--sf-border-subtle) !important;
	}

	.site_footer__email-row::before {
		width: 3.2rem !important;
		height: 3.2rem !important;
		background-size: 1.4rem !important;
	}

	.site_footer__hours {
		gap: 0.6rem !important;
	}

	.site_footer__hours .site_footer__panel-text {
		color: var(--sf-text-muted) !important;
		font-size: 1.4rem !important;
	}

	.site_footer__panel-btn {
		min-height: 4.8rem !important;
		margin-top: 1.2rem !important;
		font-size: 1.3rem !important;
	}

	.site_footer__meta-row {
		order: 3;
		flex-direction: column !important;
		align-items: flex-start !important;
		justify-content: flex-start !important;
		gap: 2.4rem !important;
		padding: 3.2rem 0 !important;
		border-top: 1px solid var(--sf-border-subtle) !important;
	}

	.site_footer__logo img {
		width: 16rem !important;
	}

	.site_footer__columns {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
		gap: 0 !important;
		width: 100% !important;
	}

	.site_footer__column {
		width: 100% !important;
		border-bottom: 1px solid var(--sf-border-subtle) !important;
	}

	.site_footer__column-details {
		width: 100% !important;
	}

	.site_footer__column-title {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		gap: 1.6rem !important;
		margin: 0 !important;
		padding: 1.6rem 0 !important;
		font-size: 1.4rem !important;
		letter-spacing: 0.12rem !important;
		cursor: pointer !important;
	}

	.site_footer__column-icon {
		display: block !important;
		color: var(--sf-text) !important;
	}

	.site_footer__column-details > .site_footer__column-links {
		padding: 0 0 1.6rem !important;
		gap: 1.2rem !important;
	}

	.site_footer__column-links a {
		font-size: 1.6rem !important;
		font-weight: 400 !important;
		text-transform: none !important;
		color: var(--sf-text-muted) !important;
	}

	.site_footer__phone-col {
		gap: 1.2rem !important;
	}

	.site_footer__phone-col::before {
		width: 3.2rem !important;
		height: 3.2rem !important;
		background-size: 1.4rem !important;
	}

	.site_footer__social {
		gap: 2rem !important;
	}

	.site_footer__social a {
		width: 2.8rem !important;
		height: 2.8rem !important;
	}

	.site_footer__badges img {
		height: 5.6rem !important;
	}

	.site_footer__bottom {
		margin-top: 0 !important;
		padding-top: 1.6rem !important;
		border-top: 1px solid var(--sf-border-subtle) !important;
		text-align: left !important;
	}

	.site_footer__copyright {
		font-size: 1.4rem !important;
		color: var(--sf-text-muted) !important;
		line-height: 1.5 !important;
	}
}

@media (max-width: 640px) {
	.site_footer__wrap {
		padding: 4.8rem 2.4rem 3.2rem;
	}
	.site_footer__columns {
		gap: 0 !important;
	}
	.site_footer__column {
		width: 100% !important;
	}
	.site_footer__phones-row {
		flex-direction: column !important;
		gap: 1.6rem !important;
	}
}
