/**
 * BudClub Contact page.
 * Simple, compact layout scoped to the dedicated contact template.
 */

.bc-contact {
	min-height: 55vh;
	background: #080b07;
	color: #f4f3ec;
}

.bc-contact__section {
	padding: clamp(54px, 8vw, 92px) 0 clamp(64px, 9vw, 110px);
}

.bc-contact__panel {
	width: min(760px, 100%);
	margin: 0 auto;
	padding: clamp(24px, 4vw, 42px);
	border: 1px solid #27301f;
	border-radius: 18px;
	background: #11150f;
	box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
}

.bc-contact__eyebrow {
	margin: 0 0 8px;
	color: #9ef01a;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.bc-contact h1 {
	margin: 0 0 20px;
	color: #fff;
	font-family: 'Anton', Impact, sans-serif;
	font-size: clamp(38px, 6vw, 58px);
	font-weight: 400;
	line-height: 1;
	letter-spacing: .01em;
	text-transform: uppercase;
}

.bc-contact__copy {
	max-width: 660px;
	color: #d7dccf;
	font-size: 16px;
	line-height: 1.72;
}

.bc-contact__copy p {
	margin: 0 0 14px;
}

.bc-contact__copy p:last-child {
	margin-bottom: 0;
}

.bc-contact__copy strong {
	color: #fff;
}

.bc-contact__email {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	margin-top: 24px;
	padding: 12px 16px;
	border: 1px solid #3e4a34;
	border-radius: 11px;
	background: #181d15;
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	text-decoration: none;
	transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
}

.bc-contact__email:hover,
.bc-contact__email:focus-visible {
	border-color: #9ef01a;
	background: #20291a;
	color: #9ef01a;
	transform: translateY(-1px);
}

.bc-contact__email:focus-visible {
	outline: 2px solid #9ef01a;
	outline-offset: 3px;
}

.bc-contact__email-icon {
	width: 21px;
	height: 21px;
	flex: 0 0 auto;
	fill: #9ef01a;
}

@media (max-width: 640px) {
	.bc-contact__section {
		padding: 38px 0 66px;
	}

	.bc-contact__panel {
		padding: 23px 19px 25px;
		border-radius: 14px;
	}

	.bc-contact h1 {
		font-size: 38px;
	}

	.bc-contact__copy {
		font-size: 15px;
		line-height: 1.66;
	}

	.bc-contact__email {
		width: 100%;
		justify-content: center;
		overflow-wrap: anywhere;
	}
}
