:root {
	--bg: #f7f1fb;
	--ink: #26172f;
	--muted: #6c5879;
	--purple-900: #311144;
	--purple-700: #5d2b7f;
	--purple-500: #8f4dc4;
	--purple-300: #c59aea;
	--purple-100: #f0e4fb;
	--card: rgba(255, 255, 255, 0.84);
	--line: rgba(59, 25, 82, 0.15);
	--shadow: 0 18px 38px rgba(58, 25, 83, 0.16);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Sora", sans-serif;
	color: var(--ink);
	line-height: 1.65;
	background:
		radial-gradient(circle at 6% 6%, #ffffff 0%, transparent 30%),
		radial-gradient(circle at 90% 20%, #e9d3fb 0%, transparent 32%),
		linear-gradient(160deg, #f9f4fc 0%, #f3ebf8 50%, #eee2f7 100%);
}

h1,
h2,
h3 {
	font-family: "Marcellus", serif;
	line-height: 1.1;
	margin: 0;
}

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

.hero {
	min-height: 86vh;
	padding: 1.1rem clamp(1rem, 2vw, 2rem) 3rem;
	position: relative;
	background:
		linear-gradient(rgba(33, 14, 47, 0.58), rgba(33, 14, 47, 0.58)),
		url("https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=1800&q=80") center/cover;
	color: #fff;
}

.topbar {
	max-width: 1180px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.6rem 0;
}

.brand {
	font-family: "Marcellus", serif;
	font-size: 1.4rem;
	letter-spacing: 0.04em;
}

.menu {
	display: flex;
	align-items: center;
	gap: 1.1rem;
	font-size: 0.93rem;
	font-weight: 500;
}

.menu a {
	opacity: 0.92;
}

.menu a:hover {
	opacity: 1;
}

.menu__cta {
	padding: 0.5rem 0.95rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.45);
}

.hero__panel {
	max-width: 1180px;
	margin: 8vh auto 0;
	padding: clamp(1.2rem, 2.7vw, 2.2rem);
	width: min(700px, 100%);
	backdrop-filter: blur(5px);
	background: rgba(12, 6, 18, 0.43);
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 20px;
	box-shadow: var(--shadow);
}

.eyebrow {
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.13em;
	font-weight: 600;
	font-size: 0.75rem;
	color: #e8d7f7;
}

h1 {
	margin-top: 0.65rem;
	font-size: clamp(2.2rem, 5vw, 4.1rem);
}

.hero__panel p {
	max-width: 60ch;
	color: #efe5f7;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 1.1rem;
}

.btn {
	border-radius: 999px;
	padding: 0.72rem 1.25rem;
	font-weight: 600;
	font-size: 0.9rem;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.btn--solid {
	background: linear-gradient(120deg, var(--purple-500), #a060d6);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn--ghost {
	border: 1px solid rgba(255, 255, 255, 0.6);
	color: #fff;
	background: rgba(255, 255, 255, 0.12);
}

main {
	max-width: 1180px;
	margin: 0 auto;
	padding: 2.5rem 1rem 4rem;
}

.section {
	margin-top: 1.4rem;
	padding: clamp(1rem, 2vw, 1.5rem);
	border-radius: 18px;
	background: var(--card);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.section__head {
	margin-bottom: 1rem;
}

.kicker {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.11em;
	color: var(--purple-700);
}

h2 {
	margin-top: 0.35rem;
	font-size: clamp(1.65rem, 3vw, 2.5rem);
	color: var(--purple-900);
}

.intro {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 1rem;
	align-items: center;
}

.intro img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	border-radius: 14px;
	border: 1px solid var(--line);
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 0.9rem;
}

.service-card {
	padding: 0.95rem;
	border-radius: 14px;
	background: #fff;
	border: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	min-height: 222px;
}

.service-card img {
	width: 100%;
	height: 145px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 0.75rem;
	border: 1px solid rgba(59, 25, 82, 0.14);
}

.service-card h3 {
	font-size: 1.32rem;
	color: var(--purple-900);
}

.service-card p {
	color: var(--muted);
	font-size: 0.92rem;
}

.service-meta {
	margin-top: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 0.7rem;
	border-top: 1px dashed rgba(59, 25, 82, 0.25);
	font-size: 0.9rem;
}

.service-meta strong {
	font-size: 1.08rem;
	color: var(--purple-700);
	font-family: "Marcellus", serif;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 0.9rem;
}

.team-card {
	padding: 0.85rem;
	border-radius: 14px;
	border: 1px solid var(--line);
	background: #fff;
	text-align: center;
}

.team-card img {
	width: 100%;
	height: 255px;
	object-fit: cover;
	border-radius: 10px;
}

.team-card h3 {
	font-size: 1.35rem;
	margin-top: 0.75rem;
}

.team-card p {
	margin: 0.2rem 0 0;
	font-size: 0.88rem;
	color: var(--muted);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 0.65rem;
}

.gallery-grid img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 10px;
	border: 1px solid var(--line);
	transition: transform 0.25s ease;
}

.gallery-grid img:hover {
	transform: scale(1.03);
}

.booking-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(180px, 1fr));
	gap: 0.8rem;
}

.booking-form label {
	display: grid;
	gap: 0.3rem;
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--purple-900);
}

.booking-form input,
.booking-form select {
	padding: 0.7rem;
	border-radius: 9px;
	border: 1px solid rgba(59, 25, 82, 0.26);
	font-family: inherit;
	font-size: 0.92rem;
	background: #fff;
}

.booking-form button {
	grid-column: 1 / -1;
	cursor: pointer;
	font-family: inherit;
}

#bookingMessage {
	grid-column: 1 / -1;
	margin: 0;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--purple-700);
}

.footer {
	text-align: center;
	padding: 1.2rem 1rem 2.3rem;
	font-size: 0.9rem;
	color: #634d75;
}

.reveal {
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.show {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 860px) {
	.menu {
		display: none;
	}

	.hero {
		min-height: 74vh;
	}

	.hero__panel {
		margin-top: 6.5vh;
	}

	.intro {
		grid-template-columns: 1fr;
	}

	.booking-form {
		grid-template-columns: 1fr;
	}
}
