/* Contact Us Template Styles */

.contact-us-template .contact-hero {
	padding: var(--breadcrumb-offset-top) 0 calc(var(--space-2xl) * 0.75);
	background: transparent;
}

.contact-us-template .contact-title {
	font-family: 'Aboreto', serif;
	font-weight: 400;
	font-style: normal;
	font-size: 50px;
	line-height: 60px;
	letter-spacing: 0px;
	text-transform: uppercase;
	color: rgba(32, 33, 38, 1);
	margin: 0 0 var(--space-xl);
}

.contact-us-template .contact-section { background: transparent; padding: 0; }

.contact-us-template .contact-surface {
	background: rgba(215, 225, 226, 1);
	border-radius: 10px;
	padding: 32px;
	margin-bottom: 96px;
}

.contact-us-template .contact-notice {
	padding: 16px 20px;
	border-radius: 8px;
	margin-bottom: 16px;
	font-family: 'Reddit Sans', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 2%;
}

.contact-us-template .contact-notice--success {
	background: rgba(46, 125, 50, 0.12); /* subtle green that pairs with theme */
	border-left: 4px solid rgba(46, 125, 50, 1);
	color: rgba(46, 125, 50, 1);
}

.contact-us-template .contact-notice--error {
	background: rgba(211, 47, 47, 0.12);
	border-left: 4px solid rgba(211, 47, 47, 1);
	color: rgba(211, 47, 47, 1);
}

.contact-us-template .contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--grid-gutter-col-desktop);
	align-items: stretch;
}

.contact-us-template .contact-address {
	background: rgba(101, 150, 153, 1);
	color: rgba(244, 244, 244, 1);
	border-radius: 10px;
	padding: var(--space-xl);
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.contact-us-template .contact-address a {
	color: rgba(244, 244, 244, 1);
	text-decoration: none;
}

.contact-us-template .contact-address-heading {
	font-family: 'Aboreto', serif;
	font-weight: 400;
	font-style: normal;
	font-size: 50px;
	line-height: 60px;
	letter-spacing: 0px;
	text-transform: uppercase;
	color: rgba(244, 244, 244, 1);
	margin: 0;
}

.contact-us-template .contact-address-subtitle {
	font-family: 'Reddit Sans', sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 2%;
	color: rgba(244, 244, 244, 1);
	margin: 0 0 24px;
}

.contact-us-template .contact-address-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: var(--space-md);
}

.contact-us-template .contact-address-item {
	display: grid;
	grid-template-columns: 32px 1fr;
	align-items: start;
	gap: 12px;
}

.contact-us-template .contact-address-icon {
	width: 32px;
	height: 32px;
	object-fit: contain;
	display: block;
}

.contact-us-template .contact-address-text {
	display: grid;
	gap: 4px;
}

.contact-us-template .contact-address-label {
	font-family: 'Reddit Sans', sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 28px;
	letter-spacing: 2%;
	text-transform: uppercase;
	color: rgba(244, 244, 244, 1);
}

.contact-us-template .contact-address-value {
	font-family: 'Reddit Sans', sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 2%;
	color: rgba(244, 244, 244, 1);
}

.contact-us-template .contact-form-wrap {
	background: transparent;
	border-radius: 10px;
	padding-right: 96px;
}

.contact-us-template .contact-form {
	display: grid;
	gap: var(--space-md);
}

.contact-us-template .contact-form label {
	font-family: 'Reddit Sans', sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 2%;
	color: rgba(32, 33, 38, 1);
	margin-bottom: 4px;
}

.contact-us-template .contact-form input,
.contact-us-template .contact-form textarea {
	width: 100%;
	border: none;
	border-bottom: 1px solid rgba(175, 178, 178, 1);
	border-radius: 0;
	padding: 8px 0;
	font-family: 'Reddit Sans', sans-serif;
	font-size: 16px;
	line-height: 24px;
	color: rgba(32, 33, 38, 1);
	background: transparent;
}

.contact-us-template .contact-form textarea {
	min-height: 88px; /* 3 lines * 24px + 16px vertical padding */
	max-height: 88px;
	resize: none;
	overflow-y: auto;
}

.contact-us-template .contact-form input::placeholder,
.contact-us-template .contact-form textarea::placeholder {
	font-family: 'Reddit Sans', sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 2%;
	color: rgba(175, 178, 178, 1);
}

.contact-us-template .contact-form input:focus,
.contact-us-template .contact-form textarea:focus {
	outline: none;
	border-bottom-color: rgba(101, 150, 153, 1);
	box-shadow: none;
}

.contact-us-template .contact-form .form-actions {
	margin-top: var(--space-md);
}

@media (max-width: 1023px) {
	.contact-us-template .contact-grid {
		grid-template-columns: 1fr;
		gap: var(--space-xl);
	}
}

@media (max-width: 767px) {
	/* Mobile: GET IN TOUCH heading at 32px */
	.contact-us-template .contact-address-heading {
		font-size: 32px;
		line-height: 1.2;
	}

	/* Mobile: keep address card sitting within parent surface, consistent width */
	.contact-us-template .contact-address {
		max-width: 480px;
		margin: 0 auto;
	}

	/* Mobile: center the contact form block */
	.contact-us-template .contact-form-wrap {
		padding-right: 0;
		max-width: 480px;
		margin: 0 auto;
	}
}


