/* Noor Travels minimal landing */

:root {
	--bg: #f6f1e7;
	--ink: #1f1c18;
	--muted: #5f574e;
	--accent: #c87025;
	--accent-strong: #b5601e;
	--card: #ffffff;
	--border: #e8dcc7;
	--shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
	--radius: 18px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: "Karla", "Trebuchet MS", Tahoma, sans-serif;
	color: var(--ink);
	background: var(--bg);
	line-height: 1.6;
}

body::before,
body::after {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

body::before {
	background:
		radial-gradient(circle at 12% 18%, rgba(250, 223, 178, 0.8), transparent 55%),
		radial-gradient(circle at 85% 12%, rgba(226, 240, 235, 0.9), transparent 50%);
}

body::after {
	background:
		radial-gradient(circle at 82% 80%, rgba(240, 210, 192, 0.65), transparent 55%),
		radial-gradient(circle at 18% 78%, rgba(208, 227, 224, 0.5), transparent 50%);
}

a {
	color: var(--accent);
	text-decoration: none;
}

a:hover {
	color: var(--accent-strong);
}

h1, h2, h3 {
	font-family: "Sora", "Trebuchet MS", Tahoma, sans-serif;
	margin: 0 0 12px 0;
}

p {
	margin: 0 0 12px 0;
}

.page {
	position: relative;
	z-index: 1;
	max-width: 1120px;
	margin: 0 auto;
	padding: 32px 20px 40px;
}

.site-header {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 44px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--ink);
}

.brand__logo {
	width: 180px;
	height: auto;
	padding: 12px;
	border-radius: 16px;
	background: transparent;
	box-shadow: none;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: 32px;
	align-items: center;
}

.hero__content {
	animation: fadeUp 0.8s ease;
}

.hero__card {
	animation: fadeUp 0.8s ease 0.15s both;
}

.status-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 16px;
	background: linear-gradient(120deg, #fff2d6, #fde8c1);
	color: #7a531e;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 700;
}

.hero h1 {
	font-size: 36px;
	line-height: 1.15;
}

.hero__lead {
	font-size: 16px;
	color: var(--muted);
	margin-bottom: 22px;
}

.hero__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	border-radius: 12px;
	font-weight: 700;
	border: 1px solid transparent;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button--primary {
	background: var(--accent);
	color: #ffffff;
}

.button--primary:hover {
	background: var(--accent-strong);
	color: #ffffff;
	box-shadow: 0 12px 24px rgba(200, 112, 37, 0.28);
	transform: translateY(-1px);
}

.info-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 22px;
	box-shadow: var(--shadow);
}

.info-card__title {
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin: 0 0 8px 0;
	color: var(--muted);
}

.info-card__list {
	display: grid;
	gap: 12px;
}

.info-card__row {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 12px;
	font-size: 14px;
	align-items: start;
}

.info-card__label {
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 1px;
	color: var(--muted);
}

.info-card__value {
	font-weight: 600;
	line-height: 1.5;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.contact {
	display: grid;
	gap: 24px;
}

.contact__header {
	max-width: 720px;
	animation: fadeUp 0.8s ease;
}

.contact__lead {
	font-size: 16px;
	color: var(--muted);
}

.contact__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: 24px;
	align-items: start;
}

.info-card--wide {
	animation: fadeUp 0.8s ease 0.1s both;
}

.map-card {
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
	animation: fadeUp 0.8s ease 0.2s both;
	background: #ffffff;
}

.map-card__frame {
	width: 100%;
	height: 340px;
	border: 0;
	display: block;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 900px) {
	.site-header {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 32px;
	}

	.hero,
	.contact__grid {
		grid-template-columns: 1fr;
	}

	.info-card__row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.page {
		padding: 22px 16px 28px;
	}

	.hero h1 {
		font-size: 28px;
	}

	.status-pill {
		margin-bottom: 12px;
	}

	.brand__logo {
		width: 150px;
	}

	.button {
		width: 100%;
	}

	.hero__actions {
		flex-direction: column;
	}
}
