:root {
	--bg: #121212;
	--bg-soft: #1e1e1e;
	--text: #f5f1e8;
	--muted: #bcb4a2;
	--accent: #c97f3b;
	--accent-strong: #e0994f;
	--line: #3a352f;
	--max: 1100px;
	--radius: 18px;
	--shadow: 0 20px 45px rgba(0, 0, 0, 0.32);
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: "Kanit", sans-serif;
	color: var(--text);
	background:
		radial-gradient(circle at 15% -10%, rgba(201, 127, 59, 0.25), transparent 45%),
		radial-gradient(circle at 90% 10%, rgba(201, 127, 59, 0.12), transparent 35%),
		linear-gradient(135deg, #111111 0%, #171411 50%, #1a1612 100%);
	min-height: 100vh;
	line-height: 1.5;
}

a {
	color: inherit;
	text-decoration: none;
}

.bg-glow {
	position: fixed;
	inset: auto auto -140px -120px;
	width: 380px;
	height: 380px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(224, 153, 79, 0.3), transparent 70%);
	filter: blur(8px);
	pointer-events: none;
	z-index: 0;
}

.site-header,
main,
.site-footer {
	position: relative;
	z-index: 1;
}

.site-header {
	max-width: var(--max);
	margin: 0 auto;
	padding: 1.1rem 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.8rem;
}

.logo {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.03em;
}

.logo-mark {
	width: 2.2rem;
	height: 2.2rem;
	display: grid;
	place-items: center;
	border-radius: 50%;
	border: 1px solid var(--accent);
	font-family: "Bebas Neue", sans-serif;
	font-size: 1.5rem;
	line-height: 1;
	color: var(--accent-strong);
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 0.7rem;
}

.site-nav a {
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	color: var(--muted);
	transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.site-nav a:hover,
.site-nav a.active {
	color: var(--text);
	background: rgba(201, 127, 59, 0.14);
	transform: translateY(-1px);
}

.site-nav .nav-cta {
	color: var(--text);
	border: 1px solid var(--accent);
	background: rgba(201, 127, 59, 0.1);
}

.menu-toggle {
	display: none;
	background: rgba(18, 18, 18, 0.85);
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 0.45rem;
	cursor: pointer;
	backdrop-filter: blur(6px);
}

.menu-toggle span {
	display: block;
	width: 1.55rem;
	height: 2px;
	background: var(--text);
	margin: 4px 0;
	transition: transform 220ms ease, opacity 220ms ease;
	transform-origin: center;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

main {
	max-width: var(--max);
	margin: 0 auto;
	padding: 0.3rem 1rem 3rem;
}

.hero {
	padding: 4.6rem 0 3rem;
}

.page-hero {
	padding: 3.2rem 0 1.8rem;
}

.kicker {
	margin: 0;
	color: var(--accent-strong);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.8rem;
}

h1,
h2,
h3 {
	margin: 0;
	line-height: 1.05;
}

h1 {
	margin-top: 0.6rem;
	max-width: 9.5ch;
	font-family: "Bebas Neue", sans-serif;
	font-size: clamp(3rem, 8vw, 5.5rem);
	letter-spacing: 0.01em;
}

.hero-copy {
	margin-top: 1rem;
	max-width: 60ch;
	color: var(--muted);
}

.hero-actions {
	margin-top: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.7rem 1.15rem;
	border-radius: 999px;
	border: 1px solid transparent;
    cursor: pointer;
	font-weight: 600;
	transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-primary {
	background: var(--accent);
	color: #18120d;
	box-shadow: 0 12px 24px rgba(201, 127, 59, 0.25);
    margin-top: 1rem;
}

.btn-primary:hover {
	background: var(--accent-strong);
	box-shadow: 0 16px 28px rgba(224, 153, 79, 0.26);
}

.btn-ghost {
	border-color: var(--line);
	color: var(--text);
	background: rgba(245, 241, 232, 0.02);
}

.stats {
	margin: 0 0 1rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.7rem;
}

.stats article {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.1rem;
	background: rgba(255, 255, 255, 0.02);
	box-shadow: var(--shadow);
}

.stats h2 {
	font-family: "Bebas Neue", sans-serif;
	font-size: 2.1rem;
	color: var(--accent-strong);
}

.stats p {
	margin: 0.25rem 0 0;
	color: var(--muted);
}

.section {
	margin-top: 3.8rem;
}

.section-head h2 {
	margin-top: 0.4rem;
	font-size: clamp(1.75rem, 3.2vw, 2.5rem);
}

.cards {
	margin-top: 1.2rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.8rem;
}

.card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.2rem;
	background:
		linear-gradient(140deg, rgba(245, 241, 232, 0.04), rgba(245, 241, 232, 0.01));
	transition: transform 260ms ease, border-color 260ms ease, background-color 260ms ease;
}

.card:hover {
	transform: translateY(-4px);
	border-color: rgba(224, 153, 79, 0.55);
	background-color: rgba(224, 153, 79, 0.06);
}

.card h3 {
	font-size: 1.2rem;
}

.card p {
	margin: 0.55rem 0 0;
	color: var(--muted);
}

.service-card {
	min-height: 172px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.text-link {
	margin-top: 0.8rem;
	font-weight: 600;
	color: var(--accent-strong);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.split {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.8rem;
}

.pill-list {
	margin-top: 1.2rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.pill-list span {
	padding: 0.45rem 0.8rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--muted);
	background: rgba(255, 255, 255, 0.02);
}

.timeline {
	margin-top: 1.2rem;
	display: grid;
	gap: 0.7rem;
}

.timeline article {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1rem 1.2rem;
	background: rgba(255, 255, 255, 0.02);
}

.timeline h3 {
	font-size: 1.3rem;
	color: var(--accent-strong);
}

.timeline p {
	margin: 0.4rem 0 0;
	color: var(--muted);
}

.pricing .price-list {
	margin-top: 1.2rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}

.price-list div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.9rem 1.1rem;
	border-top: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.02);
}

.price-list div:first-child {
	border-top: 0;
}

.price-list strong {
	color: var(--accent-strong);
	font-size: 1.05rem;
}

.contact {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 0.8rem;
}

.contact-box {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.2rem;
	background: rgba(255, 255, 255, 0.02);
}

.contact-box h2 {
	font-size: 1.5rem;
}

.contact-box p {
	margin: 0.6rem 0 0;
	color: var(--muted);
}

.map-card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.2rem;
	background: linear-gradient(145deg, rgba(201, 127, 59, 0.18), rgba(255, 255, 255, 0.02));
}

.map-card p {
	margin-top: 0.7rem;
	color: var(--text);
	max-width: 65ch;
}

.faq-list {
	margin-top: 1.2rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.8rem;
}

.booking-layout {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 0.8rem;
	align-items: start;
}

.booking-form h2 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
}

.field {
	display: block;
	margin-top: 0.9rem;
}

.field span {
	display: inline-block;
	margin-bottom: 0.35rem;
	font-size: 0.95rem;
	color: var(--muted);
}

.field input,
.field select,
.field textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 0.7rem 0.8rem;
	color: var(--text);
	font: inherit;
	outline: none;
	transition: border-color 200ms ease, box-shadow 200ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	border-color: var(--accent-strong);
	box-shadow: 0 0 0 3px rgba(224, 153, 79, 0.2);
}

.site-footer {
	max-width: var(--max);
	margin: 2.2rem auto 0;
	padding: 1.2rem 1rem 2rem;
	color: var(--muted);
	border-top: 1px solid var(--line);
}

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.in-view {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 900px) {
	body.menu-open {
		overflow: hidden;
	}

	body.menu-open::before {
		content: "";
		position: fixed;
		inset: 0;
		background: rgba(8, 8, 8, 0.5);
		backdrop-filter: blur(2px);
		z-index: 6;
	}

	.site-header {
		z-index: 8;
	}

	.cards,
	.contact,
	.stats,
	.split,
	.faq-list,
	.booking-layout {
		grid-template-columns: 1fr;
	}

	.hero {
		padding-top: 3.5rem;
	}

	.site-nav {
		position: absolute;
		top: calc(100% + 0.55rem);
		right: 1rem;
		left: 1rem;
		flex-direction: column;
		align-items: stretch;
		padding: 0.85rem;
		border: 1px solid rgba(245, 241, 232, 0.1);
		border-radius: 16px;
		background: linear-gradient(150deg, rgba(23, 22, 20, 0.98), rgba(17, 17, 17, 0.97));
		box-shadow: 0 24px 44px rgba(0, 0, 0, 0.45);
		transform: translateY(-8px) scale(0.98);
		opacity: 0;
		pointer-events: none;
		transition: opacity 230ms ease, transform 230ms ease;
		z-index: 9;
		backdrop-filter: blur(10px);
	}

	.site-nav a {
		padding: 0.7rem 0.8rem;
		border-radius: 10px;
	}

	.site-nav.open {
		opacity: 1;
		transform: translateY(0) scale(1);
		pointer-events: all;
	}

	.menu-toggle {
		display: block;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
		scroll-behavior: auto !important;
	}
}
