/* ---
   CONTACT PAGE
   Clean, contained styles. Reuses global .contact-form / .contact-submit.
   --------------------------------------------------- */

/* --- Hero --- */
.ct-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 56vh;
	padding: 200px 5% 120px;
	background: var(--bg-primary, #141414);
	border-bottom: 1px solid var(--border-color, rgba(212, 212, 212, .06));
	overflow: hidden;
}

.ct-hero .hero-bg {
	position: absolute;
	top: -15%; bottom: -15%; left: 0; right: 0;
	background-image: url('../images/google-map-area-dark.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	will-change: transform;
	z-index: 0;
}

.ct-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20, 20, 20, .72) 0%, rgba(20, 20, 20, .82) 100%);
	z-index: 1;
}

.ct-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 680px;
	width: 100%;
}

.ct-hero__eyebrow {
	display: inline-block;
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--text-muted, #5A5A5A);
	margin-bottom: 1.2rem;
}

.ct-hero h1 {
	font-size: clamp(2.4rem, 4.5vw, 3.2rem);
	font-weight: 900;
	line-height: 1.12;
	color: var(--text-primary, #D4D4D4);
	margin: 0 0 1.1rem;
	letter-spacing: -.02em;
	text-transform: uppercase;
}

.ct-hero__sub {
	font-size: .95rem;
	line-height: 1.7;
	color: var(--text-secondary, #8A8A8A);
	max-width: 560px;
	margin: 0 auto;
}

/* --- Main --- */
.ct-main {
	background: var(--bg-primary, #141414);
	padding: 80px 0 110px;
}

.ct-main__inner {
	max-width: 1040px;
	margin: 0 auto;
	padding: 0 5%;
}

/* --- Direct contact options --- */
.ct-options {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin-bottom: 4.5rem;
}

/* High specificity (a.ct-option) to beat global `a:link { display:inline-block }` */
.ct-options a.ct-option {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
	column-gap: 1.1rem;
	row-gap: .3rem;
	align-content: center;
	position: relative;
	padding: 1.6rem 1.6rem;
	background: var(--bg-surface, #1C1C1C);
	border: 1px solid var(--border-color, rgba(212, 212, 212, .06));
	border-radius: 10px;
	text-decoration: none;
	overflow: hidden;
	transition: border-color .3s ease, transform .3s ease, background .3s ease;
}

/* Top accent line — the single highlight, revealed on hover */
.ct-options a.ct-option::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--primary, #D65A1F);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform .35s ease;
}

.ct-options a.ct-option:hover {
	border-color: rgba(212, 212, 212, .14);
	background: var(--charcoal-lightest, #242424);
	transform: translateY(-4px);
}

.ct-options a.ct-option:hover::before {
	transform: scaleX(1);
}

.ct-option__icon {
	display: inline-flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(212, 212, 212, .05);
	border: 1px solid var(--border-color, rgba(212, 212, 212, .08));
	color: var(--text-secondary, #8A8A8A);
	grid-row: 1 / 3;
	grid-column: 1;
	align-self: center;
	transition: color .3s ease, border-color .3s ease, background .3s ease;
}

.ct-options a.ct-option:hover .ct-option__icon {
	color: var(--primary-light, #E07A4A);
	border-color: rgba(var(--primary-rgb, 214, 90, 31), .4);
	background: rgba(var(--primary-rgb, 214, 90, 31), .1);
}

.ct-option__icon svg {
	width: 21px;
	height: 21px;
}

.ct-option__label {
	font-size: .68rem;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--text-muted, #5A5A5A);
	grid-column: 2;
	grid-row: 1;
	align-self: end;
	line-height: 1;
}

.ct-option__value {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--text-primary, #D4D4D4);
	grid-column: 2;
	grid-row: 2;
	align-self: start;
	line-height: 1.2;
	letter-spacing: -.01em;
}

/* --- Form + meta grid --- */
.ct-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 3rem;
	align-items: start;
}

.ct-form-wrap h2 {
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--text-primary, #D4D4D4);
	margin: 0 0 .4rem;
	letter-spacing: -.01em;
}

.ct-form-intro {
	font-size: .9rem;
	line-height: 1.6;
	color: var(--text-secondary, #8A8A8A);
	margin: 0 0 1.8rem;
}

/* --- Meta / aside --- */
.ct-meta {
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
	background: var(--bg-surface, #1C1C1C);
	border: 1px solid var(--border-color, rgba(212, 212, 212, .06));
	border-radius: 8px;
	overflow: hidden;
}

.ct-meta__map {
	line-height: 0;
}

.ct-meta__map img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
}

.ct-meta__body {
	padding: 0 1.6rem;
}

.ct-meta__hours {
	padding: 0 1.6rem 1.8rem;
}

.ct-meta h3 {
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--text-muted, #5A5A5A);
	margin: 0 0 .7rem;
}

.ct-meta__body p {
	font-size: .9rem;
	line-height: 1.65;
	color: var(--text-secondary, #8A8A8A);
	margin: 0 0 .9rem;
}

.ct-meta__link {
	display: inline-block;
	font-size: .85rem;
	font-weight: 600;
	color: var(--text-secondary, #8A8A8A);
	text-decoration: none;
	transition: color .2s ease;
}

.ct-meta__link:hover {
	color: var(--text-primary, #D4D4D4);
}

.ct-meta__hours ul {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--border-color, rgba(212, 212, 212, .06));
}

.ct-meta__hours li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: .65rem 0;
	font-size: .88rem;
	color: var(--text-secondary, #8A8A8A);
	border-bottom: 1px solid var(--border-dark, rgba(212, 212, 212, .03));
}

.ct-meta__hours li span:first-child {
	color: var(--text-primary, #D4D4D4);
	font-weight: 500;
}

.ct-meta__hours li:last-child {
	border-bottom: none;
}

/* --- Responsive --- */
@media (max-width: 880px) {
	.ct-grid {
		grid-template-columns: 1fr;
		gap: 2.4rem;
	}
}

@media (max-width: 620px) {
	.ct-hero {
		padding: 160px 1.5rem 90px;
		min-height: 48vh;
	}
	.ct-main {
		padding: 56px 0 80px;
	}
	.ct-options {
		grid-template-columns: 1fr;
		gap: .75rem;
		margin-bottom: 3rem;
	}
}
