/*
 * Kamran Tour — Contact page only.
 * Premium centered composition that reuses the existing green/gold tokens.
 */

.kt-contact-page {
	background:
		radial-gradient(circle at 50% 0%, rgba(198, 161, 91, 0.09), transparent 30rem),
		var(--kt-cream);
	color: var(--kt-ink);
	padding: clamp(64px, 8vw, 112px) 16px clamp(80px, 10vw, 136px);
	text-align: center;
}

.kt-contact-shell {
	width: min(100%, 920px);
	margin-inline: auto;
}

.kt-contact-hero,
.kt-contact-intro,
.kt-contact-channels,
.kt-contact-final {
	margin-inline: auto;
}

.kt-contact-hero {
	width: min(100%, 860px);
}

.kt-contact-eyebrow {
	margin: 0 0 18px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--kt-gold-dark);
}

.kt-contact-title,
.kt-contact-section-title {
	font-family: var(--kt-font-display);
	color: var(--kt-forest);
	text-wrap: balance;
}

.kt-contact-title {
	max-width: 780px;
	margin: 0 auto;
	font-size: clamp(44px, 7vw, 78px);
	font-weight: 600;
	line-height: 0.98;
	letter-spacing: -0.035em;
}

.kt-contact-subtitle {
	max-width: 610px;
	margin: 24px auto 0;
	font-size: clamp(17px, 2.2vw, 21px);
	line-height: 1.65;
	color: rgba(28, 35, 33, 0.72);
}

.kt-contact-hero__media {
	position: relative;
	width: min(100%, 820px);
	margin: clamp(38px, 5vw, 56px) auto 0;
	overflow: hidden;
	border-radius: 28px;
	background: #eae4d8;
	box-shadow: 0 28px 70px -34px rgba(18, 58, 46, 0.48);
}

.kt-contact-hero__media::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
	border-radius: inherit;
}

.kt-contact-hero__image {
	width: 100%;
	height: clamp(300px, 46vw, 520px);
	object-fit: cover;
}

.kt-contact-intro {
	width: min(100%, 650px);
	margin-top: clamp(74px, 9vw, 112px);
}

.kt-contact-section-title {
	margin: 0;
	font-size: clamp(34px, 4.5vw, 50px);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -0.025em;
}

.kt-contact-section-copy {
	max-width: 640px;
	margin: 18px auto 0;
	font-size: 17px;
	line-height: 1.75;
	color: rgba(28, 35, 33, 0.68);
}

.kt-contact-channels {
	width: min(100%, 650px);
	margin-top: 38px;
}

.kt-contact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	justify-content: center;
}

.kt-contact-card {
	display: flex;
	min-height: 188px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 28px 22px;
	border: 1px solid rgba(198, 161, 91, 0.28);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 16px 36px -28px rgba(18, 58, 46, 0.48);
	transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.kt-contact-card:last-child:nth-child(odd) {
	grid-column: 1 / -1;
	justify-self: center;
	width: calc(50% - 9px);
}

.kt-contact-card:hover,
.kt-contact-card:focus-visible {
	transform: translateY(-4px);
	border-color: var(--kt-gold);
	background: #fff;
	box-shadow: 0 24px 48px -30px rgba(18, 58, 46, 0.55);
	outline: none;
}

.kt-contact-card__icon {
	display: grid;
	width: 48px;
	height: 48px;
	margin-bottom: 6px;
	place-items: center;
	border-radius: 50%;
	background: var(--kt-forest);
	color: var(--kt-gold);
}

.kt-contact-card__icon svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.kt-contact-card__icon .kt-contact-icon-fill {
	fill: currentColor;
	stroke: none;
}

.kt-contact-card__label {
	font-family: var(--kt-font-display);
	font-size: 22px;
	font-weight: 600;
	color: var(--kt-forest);
}

.kt-contact-card__description {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.5;
	color: rgba(28, 35, 33, 0.58);
}

.kt-contact-final {
	width: min(100%, 760px);
	margin-top: clamp(80px, 10vw, 124px);
}

.kt-contact-final__inner {
	padding: clamp(42px, 7vw, 70px) clamp(24px, 7vw, 72px);
	border-radius: 28px;
	background: var(--kt-forest);
	box-shadow: 0 28px 68px -38px rgba(18, 58, 46, 0.7);
}

.kt-contact-final .kt-contact-section-title {
	color: var(--kt-cream);
}

.kt-contact-final .kt-contact-section-copy {
	color: rgba(250, 247, 241, 0.74);
}

.kt-contact-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	margin-top: 28px;
	padding: 13px 26px;
	border: 1px solid var(--kt-gold);
	border-radius: 999px;
	background: var(--kt-gold);
	color: var(--kt-forest);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.01em;
	transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.kt-contact-cta:hover,
.kt-contact-cta:focus-visible {
	transform: translateY(-2px);
	background: var(--kt-cream);
	color: var(--kt-forest);
	outline: none;
}

[dir="rtl"] .kt-contact-page {
	direction: rtl;
}

@media (max-width: 640px) {
	.kt-contact-page {
		padding-inline: 12px;
	}

	.kt-contact-title {
		font-size: clamp(40px, 13vw, 56px);
	}

	.kt-contact-hero__media {
		border-radius: 20px;
	}

	.kt-contact-hero__image {
		height: clamp(260px, 82vw, 390px);
	}

	.kt-contact-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.kt-contact-card,
	.kt-contact-card:last-child:nth-child(odd) {
		grid-column: auto;
		width: 100%;
		min-height: 160px;
	}

	.kt-contact-final__inner {
		border-radius: 22px;
	}

	.kt-contact-cta {
		width: min(100%, 260px);
	}
}
