:root {
	--powder: #f8f9ff;
	--powder-deep: #eef1fb;
	--ink: #0b2241;
	--ink-soft: #3b4a65;
	--accent: #4a7dff;
	--accent-2: #6ad6c8;
	--line: rgba(10, 34, 65, 0.08);
	--card: rgba(255, 255, 255, 0.82);
	--shadow-soft: 0 25px 60px rgba(11, 34, 65, 0.12);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background: var(--powder);
	color: var(--ink);
	line-height: 1.6;
	min-height: 100vh;
	padding: 2.5rem clamp(1.5rem, 5vw, 4rem) 4rem;
}

img {
	max-width: 100%;
	display: block;
}

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

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 0.75rem;
	color: var(--ink-soft);
	margin-bottom: 0.5rem;
}

.logo-title {
	font-weight: 600;
	font-size: 1.25rem;
	color: var(--ink);
}

.logo-group {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.logo-mark {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	box-shadow: var(--shadow-soft);
}

.site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 1.5rem;
	border: 1px solid var(--line);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(12px);
	margin-bottom: 2.5rem;
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	font-size: 0.95rem;
}

.primary-nav a {
	color: var(--ink-soft);
	font-weight: 500;
}

.primary-nav a:hover {
	color: var(--ink);
}

.nav-cta {
	padding: 0.65rem 1.5rem;
	border: 1px solid var(--ink);
	border-radius: 999px;
}

main {
	max-width: 1150px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 3.5rem;
}

.hero {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 3rem;
	padding: 3.5rem;
	border-radius: 36px;
	border: 1px solid var(--line);
	background: linear-gradient(135deg, #fdfdff, #eff3ff);
	position: relative;
	overflow: hidden;
}

.hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top right, rgba(74, 125, 255, 0.15), transparent 45%);
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.2;
	margin-bottom: 1rem;
}

.lede {
	font-size: 1.05rem;
	color: var(--ink-soft);
	margin-bottom: 1.5rem;
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1.75rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.75rem;
	border-radius: 999px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
	background: var(--ink);
	color: #fff;
	box-shadow: var(--shadow-soft);
}

.btn.secondary {
	border: 1px solid var(--ink);
	color: var(--ink);
	background: transparent;
}

.btn.full {
	width: 100%;
}

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

.trust-badges {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	color: var(--ink);
}

.trust-badges li {
	padding: 0.5rem 1rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid var(--line);
	font-size: 0.85rem;
}

.hero-visual {
	position: relative;
	min-height: 320px;
}

.orb {
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	filter: blur(0.2px);
	opacity: 0.6;
}

.orb-large {
	width: 220px;
	height: 220px;
	top: 10%;
	right: 5%;
}

.orb-medium {
	width: 140px;
	height: 140px;
	bottom: 12%;
	left: 15%;
}

.orb-small {
	width: 90px;
	height: 90px;
	top: 30%;
	left: 35%;
}

.hero-card {
	position: absolute;
	padding: 1.25rem;
	border-radius: 18px;
	background: var(--card);
	backdrop-filter: blur(10px);
	border: 1px solid var(--line);
	width: 180px;
	font-weight: 500;
	color: var(--ink);
	box-shadow: var(--shadow-soft);
}

.hero-card span {
	display: block;
	font-size: 1.85rem;
	font-weight: 700;
}

.hero-card:first-of-type {
	top: 15%;
	left: 5%;
}

.hero-card.alt {
	bottom: 10%;
	right: 5%;
}

.section {
	padding: 3rem;
	border-radius: 28px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(8px);
}

.section-heading h2 {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	margin-bottom: 1rem;
}

.section-heading p {
	color: var(--ink-soft);
}

.highlight-grid,
.service-grid,
.testimonial-grid {
	display: grid;
	gap: 1.5rem;
	margin-top: 2rem;
}

.highlight-grid {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.highlight-grid article,
.service-grid article,
.testimonial-grid blockquote {
	padding: 1.75rem;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid var(--line);
	box-shadow: 0 10px 30px rgba(11, 34, 65, 0.08);
}

.highlight-grid h3,
.service-grid h3 {
	margin-bottom: 0.5rem;
}

.services .service-grid {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.metrics {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1.25rem;
	text-align: center;
}

.metric-card {
	padding: 2rem 1rem;
	border-radius: 24px;
	border: 1px dashed var(--line);
	background: rgba(255, 255, 255, 0.8);
}

.metric-card span {
	display: block;
	font-size: 2.25rem;
	font-weight: 700;
	color: var(--ink);
}

.testimonial-grid {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.testimonial-grid blockquote {
	font-style: italic;
	position: relative;
}

.testimonial-grid cite {
	display: block;
	margin-top: 1rem;
	font-style: normal;
	color: var(--ink-soft);
}

.contact {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
	align-items: start;
}

.contact-card {
	background: #fff;
	border-radius: 24px;
	border: 1px solid var(--line);
	padding: 2rem;
	box-shadow: var(--shadow-soft);
}

.contact-details {
	list-style: none;
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	color: var(--ink-soft);
}

.contact-details strong {
	color: var(--ink);
}

.contact-form {
	display: grid;
	gap: 1rem;
}

.contact-form label {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	font-weight: 500;
	color: var(--ink);
}

.contact-form input,
.contact-form textarea {
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 0.85rem 1rem;
	background: rgba(255, 255, 255, 0.95);
	font: inherit;
	color: var(--ink);
	transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(74, 125, 255, 0.2);
	outline: none;
}

.site-footer {
	margin-top: 3rem;
	text-align: center;
	font-size: 0.9rem;
	color: var(--ink-soft);
}

.text-link {
	color: var(--ink);
	font-weight: 600;
	text-decoration: underline;
}

.booking-main {
	max-width: 1150px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.booking-hero {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	align-items: center;
}

.booking-hero h1 {
	font-size: clamp(1.9rem, 3.2vw, 2.6rem);
	margin-bottom: 0.75rem;
}

.booking-hero p {
	color: var(--ink-soft);
}

.booking-hero-actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	min-width: 200px;
}

.booking-panel {
	display: grid;
	grid-template-columns: minmax(360px, 1.2fr) minmax(280px, 1fr);
	gap: 2rem;
}

.calendar-card {
	background: #fff;
	border-radius: 28px;
	border: 1px solid var(--line);
	padding: 2.25rem;
	box-shadow: var(--shadow-soft);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.calendar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.calendar-nav {
	width: 46px;
	height: 46px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: transparent;
	font-size: 1.4rem;
	color: var(--ink);
	cursor: pointer;
}

.calendar-nav[disabled] {
	opacity: 0.4;
	cursor: not-allowed;
}

.calendar-note {
	font-size: 0.9rem;
	color: var(--ink-soft);
	line-height: 1.4;
}

.calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 0.5rem;
	user-select: none;
}

.dow {
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--ink);
	text-align: center;
}

.dow.muted {
	color: rgba(11, 34, 65, 0.4);
}

.day-input {
	position: absolute;
	opacity: 0;
}

.day {
	border-radius: 16px;
	border: 1px solid transparent;
	background: rgba(247, 248, 255, 0.9);
	padding: 0.9rem 0;
	text-align: center;
	font-weight: 600;
	color: var(--ink);
	cursor: pointer;
	transition: border 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.day:hover {
	border-color: var(--accent);
}

.day.disabled {
	color: rgba(11, 34, 65, 0.3);
	background: rgba(247, 248, 255, 0.5);
	cursor: not-allowed;
}

.day.empty {
	background: transparent;
	border: none;
}

.day-input:checked + .day {
	background: var(--ink);
	color: #fff;
	border-color: var(--ink);
}

.day.today {
	border-color: rgba(11, 34, 65, 0.25);
	background: rgba(247, 248, 255, 1);
	position: relative;
}

.day.today::after {
	content: '';
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: var(--accent);
	opacity: 0.6;
}

.day-input:checked + .day.today::after {
	background: #fff;
	opacity: 0.9;
}

.slot-picker {
	border-top: 1px solid var(--line);
	padding-top: 1.5rem;
	margin-top: 0.5rem;
}

.slot-heading {
	font-weight: 600;
	margin-bottom: 1rem;
}

.slot-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 0.75rem;
}

.slot-input {
	position: absolute;
	opacity: 0;
}

.slot {
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 0.85rem 1rem;
	text-align: center;
	font-weight: 600;
	color: var(--ink);
	cursor: pointer;
	background: rgba(255, 255, 255, 0.85);
	transition: border 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.slot-input:checked + .slot {
	border-color: var(--accent);
	box-shadow: 0 10px 25px rgba(74, 125, 255, 0.25);
	transform: translateY(-2px);
}

.booking-form {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 28px;
	border: 1px solid var(--line);
	padding: 2.25rem;
	box-shadow: 0 20px 50px rgba(11, 34, 65, 0.12);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.booking-form h2 {
	font-size: 1.75rem;
}

.form-note {
	color: var(--ink-soft);
	font-size: 0.95rem;
}

.booking-form label {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	font-weight: 500;
	color: var(--ink);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 0.95rem 1.1rem;
	background: rgba(248, 249, 255, 0.95);
	font: inherit;
	color: var(--ink);
	transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	box-shadow: inset 0 1px 2px rgba(11, 34, 65, 0.04);
}

.booking-form textarea {
	resize: vertical;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
	color: rgba(11, 34, 65, 0.4);
}

.booking-form select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%),
		linear-gradient(135deg, var(--ink) 50%, transparent 50%);
	background-position: calc(100% - 24px) calc(50% - 2px), calc(100% - 17px) calc(50% - 2px);
	background-size: 7px 7px, 7px 7px;
	background-repeat: no-repeat;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(74, 125, 255, 0.15);
	background: #fff;
	outline: none;
}

.booking-form .btn.primary {
	margin-top: 0.5rem;
}

.optional {
	font-weight: 400;
	color: var(--ink-soft);
}

.privacy {
	font-size: 0.85rem;
	color: var(--ink-soft);
	margin-top: 0.5rem;
}

@media (max-width: 768px) {
	body {
		padding: 1.5rem;
	}

	.site-header {
		flex-direction: column;
		gap: 1rem;
	}

	.primary-nav {
		flex-wrap: wrap;
		justify-content: center;
	}

	.hero,
	.section {
		padding: 2rem;
	}

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

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

	.calendar-card,
	.booking-form {
		padding: 1.75rem;
	}

	.slot-grid {
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	}

	.hero-card {
		position: relative;
		margin-bottom: 1rem;
		left: auto;
		right: auto;
		top: auto;
		bottom: auto;
	}

	.hero-visual {
		min-height: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		transition: none !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

	html {
		scroll-behavior: auto;
	}
}
