:root {
	--bg: #f5f7fa;
	--bg-light: #ffffff;
	--primary: #a24a0c;
	--primary-dark: #793006;
	--text: #33261f;
	--muted: #80746b;
	--radius-lg: 18px;
	--radius-xl: 26px;
	--shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.1);
	--max-width: 1120px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family:
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		sans-serif;
	color: var(--text);
	background: radial-gradient(
		circle at top,
		#e6f1ff 0,
		#f5f7fa 42%,
		#f9fafb 100%
	);
	-webkit-font-smoothing: antialiased;
}

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

a:hover {
	text-decoration: underline;
}

header {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(14px);
	background: rgba(245, 247, 250, 0.88);
	border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 16px;
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 14px;
	padding-bottom: 14px;
}

.nav-left {
	display: flex;
	align-items: center;
	gap: 12px;
}

.logo {
	/* width: 40px;
	height: 40px;
	border-radius: 999px; */
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.22);
}

.logo img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.brand-name {
	font-weight: 700;
	letter-spacing: 0.03em;
	font-size: 15px;
	text-transform: uppercase;
}

.nav-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: flex-end;
}

.nav-menu a {
	font-size: 13px;
	font-weight: 500;
	padding: 6px 10px;
	border-radius: 999px;
	color: #374151;
	text-decoration: none;
	transition:
		background 0.15s ease,
		color 0.15s ease,
		transform 0.1s ease;
}

.nav-menu a:hover {
	background: rgba(12, 77, 162, 0.08);
	color: var(--primary-dark);
	transform: translateY(-1px);
}

.nav-menu a.is-active {
	background: var(--primary);
	color: #fff;
}

main {
	padding-bottom: 60px;
}

.hero {
	padding: 40px 0 32px;
}

.hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
	gap: 30px;
	align-items: center;
}

.hero-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 4px 9px;
	border-radius: 999px;
	background: rgba(12, 77, 162, 0.06);
	color: var(--primary-dark);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.09em;
}

.hero-kicker-dot {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: #22c55e;
}

.hero-title {
	font-size: clamp(26px, 3vw, 32px);
	line-height: 1.1;
	margin: 14px 0 14px;
	letter-spacing: -0.03em;
}

.hero-text {
	font-size: 15px;
	line-height: 1.7;
	color: var(--muted);
	max-width: 520px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
	align-items: center;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	font-weight: 600;
	font-size: 14px;
	padding: 10px 18px;
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition:
		background 0.15s ease,
		color 0.15s ease,
		box-shadow 0.15s ease,
		transform 0.1s ease;
	white-space: nowrap;
}

.btn-primary {
	background: var(--primary);
	color: #fff;
	box-shadow: 0 16px 35px rgba(235, 119, 37, 0.36);
}

.btn-primary:hover {
	background: var(--primary-dark);
	transform: translateY(-1px);
	text-decoration: none;
}

.btn-ghost {
	background: rgba(15, 23, 42, 0.02);
	border-color: rgba(15, 23, 42, 0.06);
	color: #374151;
}

.btn-ghost:hover {
	background: rgba(15, 23, 42, 0.04);
	text-decoration: none;
}

.hero-note {
	font-size: 11px;
	color: #9ca3af;
}

.hero-media {
	position: relative;
}

.hero-card {
	background: var(--bg-light);
	border-radius: var(--radius-xl);
	padding: 20px;
	box-shadow: var(--shadow-soft);
	overflow: hidden;
	position: relative;
}

.hero-card img {
	display: block;
	width: 100%;
	border-radius: 18px;
	object-fit: cover;
}

.hero-badge {
	position: absolute;
	bottom: 16px;
	left: 16px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.72);
	backdrop-filter: blur(10px);
	color: #e5e7eb;
	font-size: 11px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.hero-badge span.dot {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: #22c55e;
}

.section {
	padding: 24px 0;
}

.section-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 16px;
}

.section-header {
	margin-bottom: 8px;
}

.section-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.card {
	background: var(--bg-light);
	border-radius: var(--radius-lg);
	padding: 18px 18px 16px;
	box-shadow: var(--shadow-soft);
}

.card h2 {
	font-size: 17px;
	margin: 0 0 8px;
}

.card p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--muted);
	margin: 0;
}

.card-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.13em;
	color: #afa29c;
}

.card-tag-dot {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: rgb(184, 161, 148);
}

.card-cta {
	margin-top: 12px;
}

.card-cta .btn {
	font-size: 13px;
	padding: 8px 14px;
}

.section-grid-2 {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
	gap: 24px;
	align-items: center;
}

.section-grid-2.reverse {
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.05fr);
}

.media-card img {
	width: 100%;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
	display: block;
}

.section-grid-2-text {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.icon-dot {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: #a23b0c;
	box-shadow: 0 0 0 4px rgba(162, 64, 12, 0.22);
	margin-bottom: 10px;
}

.contact-section {
	padding: 26px 0 10px;
}

.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
	gap: 24px;
	align-items: flex-start;
}

form {
	display: grid;
	gap: 12px;
}

label {
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 4px;
	display: inline-block;
}

.input {
	width: 100%;
	border-radius: 999px;
	border: 1px solid #e5e7eb;
	padding: 9px 12px;
	font-size: 14px;
	outline: none;
	transition:
		border 0.15s ease,
		box-shadow 0.15s ease;
}

.input:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 1px rgba(162, 77, 12, 0.22);
}

textarea.input {
	border-radius: 16px;
	min-height: 110px;
	resize: vertical;
}

.helper-text {
	font-size: 11px;
	color: #9ca3af;
}

.map-card iframe {
	width: 100%;
	min-height: 260px;
	border: 0;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
}

footer {
	border-top: 1px solid rgba(15, 23, 42, 0.06);
	padding: 16px 0 22px;
	background: rgba(249, 250, 251, 0.96);
}

.footer-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px;
	font-size: 12px;
	color: #9ca3af;
	align-items: center;
}

.footer-links {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.footer-links a {
	color: #6b7280;
	font-weight: 500;
	text-decoration: none;
}

.footer-links a:hover {
	text-decoration: underline;
}

.cookie-bar {
	position: fixed;
	bottom: 12px;
	right: 12px;
	max-width: 340px;
	background: #2a170f;
	color: #e5e7eb;
	padding: 14px 14px 12px;
	border-radius: 18px;
	font-size: 12px;
	box-shadow: 0 20px 45px rgba(42, 27, 15, 0.55);
	z-index: 60;
}

.cookie-bar-buttons {
	display: flex;
	gap: 8px;
	margin-top: 10px;
	justify-content: flex-end;
}

.btn-cookie {
	border-radius: 999px;
	border: 1px solid rgba(248, 250, 252, 0.25);
	background: transparent;
	color: #e5e7eb;
	padding: 5px 11px;
	font-size: 11px;
	cursor: pointer;
}

.btn-cookie-primary {
	background: #10b981;
	border-color: #10b981;
	color: #0b1120;
}

.btn-cookie:hover {
	opacity: 0.9;
}

@media (max-width: 900px) {
	.hero-inner,
	.section-grid-3,
	.section-grid-2,
	.section-grid-2.reverse,
	.section-grid-2-text,
	.contact-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	header {
		position: static;
	}

	.nav {
		flex-direction: column;
		align-items: flex-start;
	}

	.nav-menu {
		justify-content: flex-start;
	}

	.hero {
		padding-top: 24px;
	}
}

@media (max-width: 520px) {
	.cookie-bar {
		left: 12px;
		right: 12px;
	}
}

footer {
	background: #0d1117;
	color: #ffffff;
	padding: 60px 0 35px;
	font-size: 16px;
	line-height: 1.6;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
	display: flex;
	flex-direction: column;
	gap: 45px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-info p {
	max-width: 650px;
	color: #c9d1d9;
	margin-top: 12px;
}

.footer-columns {
	display: flex;
	justify-content: space-between;
	width: 100%;
	gap: 40px;
}

.footer-col h4 {
	font-size: 18px;
	margin-bottom: 14px;
	font-weight: 600;
	color: #ffffff;
}

.footer-col p {
	color: #c9d1d9;
	margin: 4px 0;
	font-size: 15px;
}

.footer-col ul {
	list-style: none;
	padding: 0;
}

.footer-col ul li {
	margin-bottom: 9px;
}

.footer-col a {
	color: #ff9e58;
	text-decoration: none;
	transition: 0.2s ease;
}

.footer-col a:hover {
	color: #ffb879;
	text-decoration: underline;
}

.footer-bottom {
	margin-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding-top: 20px;
	color: #9ba3b4;
	font-size: 14px;
	max-width: 950px;
}

/* ================================
   DESKTOP (LARGE SCREENS ≥ 1200px)
   ================================ */
@media (min-width: 1200px) {
	footer {
		padding: 70px 0 40px;
	}

	.footer-columns {
		gap: 50px;
	}

	.footer-col h4 {
		font-size: 19px;
	}

	.footer-info p {
		font-size: 17px;
	}
}

/* ================================
   TABLET (768px – 1199px)
   ================================ */
@media (max-width: 1199px) and (min-width: 768px) {
	.footer-columns {
		/* grid-template-columns: repeat(1, 1fr); */
		gap: 35px;
	}

	.footer-info p {
		font-size: 15px;
	}

	.footer-col h4 {
		font-size: 17px;
	}
}

/* ================================
   MOBILE (≤ 767px)
   ================================ */
@media (max-width: 767px) {
	footer {
		padding: 45px 0 30px;
	}

	.footer-inner {
		gap: 35px;
	}

	.footer-columns {
		grid-template-columns: 2fr;
		gap: 30px;
	}

	.footer-col h4 {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.footer-col a,
	.footer-col p,
	.footer-info p {
		font-size: 14px;
	}

	.footer-bottom {
		font-size: 13px;
		line-height: 1.5;
	}
}

/* ================================
   SMALL MOBILE (≤ 420px)
   ================================ */
@media (max-width: 420px) {
	footer {
		padding: 35px 0 25px;
	}

	.footer-col h4 {
		font-size: 15px;
	}

	.footer-info p {
		font-size: 13.5px;
	}

	.footer-col a {
		font-size: 13.5px;
	}

	.footer-bottom {
		font-size: 12.5px;
	}
}
