/* Shared contact + site footer — loaded on every page */

.contact-section {
	background: var(--white);
	padding: 88px 0 96px;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 64px;
	align-items: start;
}

.contact-find h2 {
	font-family: var(--font-secondary);
	font-size: 36px;
	font-weight: 700;
	line-height: 120%;
	color: #111;
	margin: 0 0 28px;
}

.contact-cards {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.contact-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 20px;
	background: #f5f5f5;
	border-radius: 16px;
}

.contact-card-icon {
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--primary);
	color: var(--white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

.contact-card-body h3 {
	font-family: var(--font-secondary);
	font-size: 18px;
	font-weight: 700;
	line-height: 130%;
	color: #111;
	margin: 0 0 4px;
}

.contact-card-body p,
.contact-card-body a {
	font-family: var(--font-primary);
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	color: #666;
	margin: 0;
}

.contact-card-body a:hover {
	color: var(--primary);
}

.contact-form-wrap .contact-eyebrow {
	display: block;
	font-family: var(--font-primary);
	font-size: 14px;
	font-weight: 500;
	line-height: 140%;
	color: #999;
	margin-bottom: 8px;
}

.contact-form-wrap h2 {
	font-family: var(--font-secondary);
	font-size: 36px;
	font-weight: 700;
	line-height: 120%;
	color: #111;
	margin: 0 0 12px;
}

.contact-form-wrap > p {
	font-family: var(--font-primary);
	font-size: 15px;
	font-weight: 400;
	line-height: 160%;
	color: #666;
	margin: 0 0 28px;
	max-width: 480px;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid #d9d9d9;
	border-radius: 10px;
	background: var(--white);
	font-family: var(--font-primary);
	font-size: 15px;
	color: #111;
	outline: none;
	box-sizing: border-box;
	resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: #aaa;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--primary);
}

.contact-form .field-error {
	border-color: #d64545;
}

.contact-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.form-feedback {
	font-family: var(--font-primary);
	font-size: 14px;
	line-height: 150%;
	min-height: 20px;
}

.form-feedback.is-error {
	color: #d64545;
}

.form-feedback.is-success {
	color: var(--primary);
}

.contact-form .btn.is-loading {
	position: relative;
	opacity: 0.85;
	cursor: wait;
}

.contact-form .btn.is-loading::after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-left: 8px;
	border: 2px solid rgba(255, 255, 255, 0.45);
	border-top-color: #fff;
	border-radius: 50%;
	vertical-align: -2px;
	animation: contact-btn-spin 0.8s linear infinite;
}

@keyframes contact-btn-spin {
	to {
		transform: rotate(360deg);
	}
}

.contact-form textarea {
	min-height: 140px;
}

.contact-form .btn {
	align-self: flex-start;
	min-height: 48px;
	padding: 12px 28px;
	border-radius: 10px;
	font-family: var(--font-secondary);
	font-size: 15px;
	font-weight: 700;
	margin-top: 4px;
}

.site-footer {
	background: #000;
	color: var(--white);
	padding: 64px 0 0;
}

.footer-main {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr;
	gap: 40px;
	padding-bottom: 48px;
}

.footer-brand .site-logo {
	margin-bottom: 18px;
}

.footer-brand .logo-text small {
	color: rgba(255, 255, 255, 0.85);
}

.footer-brand > p {
	font-family: var(--font-primary);
	font-size: 14px;
	font-weight: 400;
	line-height: 160%;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
	max-width: 360px;
}

.footer-col h4 {
	font-family: var(--font-secondary);
	font-size: 18px;
	font-weight: 700;
	line-height: 130%;
	color: var(--white);
	margin: 0 0 18px;
}

.footer-col a {
	display: block;
	font-family: var(--font-primary);
	font-size: 14px;
	font-weight: 400;
	line-height: 180%;
	color: rgba(255, 255, 255, 0.85);
}

.footer-col a:hover {
	color: var(--primary);
}

.footer-newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-newsletter-form input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 8px;
	background: transparent;
	color: var(--white);
	font-family: var(--font-primary);
	font-size: 14px;
	outline: none;
	box-sizing: border-box;
}

.footer-newsletter-form input::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.footer-newsletter-form input:focus {
	border-color: var(--primary);
}

.footer-newsletter-form .btn {
	align-self: flex-start;
	min-height: 44px;
	padding: 10px 24px;
	border-radius: 8px;
	font-family: var(--font-secondary);
	font-size: 14px;
	font-weight: 700;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	padding: 18px 0;
	text-align: center;
}

.footer-bottom p {
	font-family: var(--font-primary);
	font-size: 13px;
	font-weight: 400;
	line-height: 150%;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
}

@media (max-width: 1100px) {
	.contact-grid {
		gap: 40px;
	}

	.footer-main {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
	}
}

@media (max-width: 900px) {
	.contact-section {
		padding: 56px 0 64px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.contact-find h2,
	.contact-form-wrap h2 {
		font-size: 30px;
	}
}

@media (max-width: 600px) {
	.footer-main {
		grid-template-columns: 1fr;
		gap: 32px;
		padding-bottom: 36px;
	}

	.contact-form .btn,
	.footer-newsletter-form .btn {
		width: 100%;
	}
}
