:root {
	--bg: #f8f4e9;
	--panel: #fffdf7;
	--ink: #182128;
	--ink-soft: #4b5a66;
	--accent: #f2a900;
	--accent-2: #0b7e8c;
	--line: #d8d2c6;
	--shadow: 0 18px 40px rgba(24, 33, 40, 0.12);
	--radius: 18px;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	min-height: 100%;
}

body {
	font-family: "Manrope", sans-serif;
	color: var(--ink);
	background:
		radial-gradient(1200px 600px at -10% -10%, rgba(242, 169, 0, 0.2), transparent 60%),
		radial-gradient(800px 500px at 120% 10%, rgba(11, 126, 140, 0.18), transparent 65%),
		var(--bg);
	overflow-x: hidden;
}

body[data-theme="dark"] {
	--bg: #0f1418;
	--panel: #162027;
	--ink: #eaf1f6;
	--ink-soft: #aec0cc;
	--accent: #f5b73c;
	--accent-2: #26a6b6;
	--line: #2b3b46;
	--shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.site-wrap {
	width: min(1100px, 100% - 2rem);
	margin: 0 auto;
	padding: 1.1rem 0 2.5rem;
	position: relative;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
	animation: rise 0.55s ease both;
}

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

.header-actions {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
}

.badge {
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 12px;
	object-fit: contain;
	display: block;
	box-shadow: 0 10px 24px rgba(242, 169, 0, 0.35);
}

.brand strong {
	font-size: 1rem;
	line-height: 1;
	letter-spacing: 0.01em;
}

.brand span {
	display: block;
	font-size: 0.75rem;
	color: var(--ink-soft);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.phone-link {
	text-decoration: none;
	font-weight: 800;
	color: var(--ink);
	border: 2px solid var(--line);
	border-radius: 999px;
	padding: 0.62rem 1rem;
	background: rgba(255, 255, 255, 0.7);
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.theme-toggle {
	cursor: pointer;
	font: inherit;
	font-weight: 800;
	color: var(--ink);
	border: 2px solid var(--line);
	border-radius: 999px;
	padding: 0.62rem 0.95rem;
	background: rgba(255, 255, 255, 0.7);
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.theme-toggle:hover {
	transform: translateY(-2px);
	border-color: var(--accent-2);
}

.phone-link:hover {
	transform: translateY(-2px);
	border-color: var(--accent-2);
}

body[data-theme="dark"] .phone-link,
body[data-theme="dark"] .theme-toggle {
	background: rgba(20, 29, 35, 0.78);
}

.hero {
	position: relative;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 1.25rem;
	align-items: stretch;
	margin-bottom: 2.2rem;
}

.hero-main {
	border: 2px solid var(--line);
	border-radius: calc(var(--radius) + 8px);
	background: var(--panel);
	box-shadow: var(--shadow);
	padding: clamp(1.2rem, 4vw, 2.4rem);
	position: relative;
	overflow: hidden;
	animation: rise 0.7s ease 0.15s both;
}

.hero-main::after {
	content: "";
	position: absolute;
	inset: auto -12% -35% auto;
	width: 280px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: rgba(11, 126, 140, 0.14);
}

.eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	font-weight: 800;
	color: #0d5e68;
	margin-bottom: 0.6rem;
}

h1 {
	margin: 0;
	font-family: "Archivo Black", sans-serif;
	font-size: clamp(2rem, 8vw, 3.5rem);
	line-height: 0.96;
	letter-spacing: 0.01em;
}

.subhead {
	margin: 1rem 0 1.2rem;
	font-size: 1.05rem;
	color: var(--ink-soft);
	max-width: 48ch;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	align-items: center;
}

.btn {
	text-decoration: none;
	border-radius: 999px;
	padding: 0.78rem 1.15rem;
	font-weight: 800;
	border: 2px solid transparent;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}

.btn.primary {
	background: linear-gradient(95deg, var(--accent), #f67f2f);
	color: #151515;
	box-shadow: 0 12px 22px rgba(246, 127, 47, 0.25);
}

.btn.secondary {
	border-color: #bac6ce;
	color: var(--ink);
	background: #f5fbfc;
}

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

.quick-list {
	margin: 1.15rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.45rem 0.85rem;
}

.quick-list li {
	font-weight: 700;
	color: var(--ink);
	font-size: 0.94rem;
}

.quick-list li::before {
	content: "→";
	margin-right: 0.38rem;
	color: var(--accent-2);
	font-weight: 800;
}

.hero-side {
	display: grid;
	gap: 1rem;
	animation: rise 0.7s ease 0.25s both;
}

.panel {
	border: 2px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.88);
	padding: 1rem;
	box-shadow: var(--shadow);
}

body[data-theme="dark"] .panel {
	background: rgba(20, 31, 38, 0.92);
}

.panel h2 {
	margin: 0 0 0.55rem;
	font-size: 1rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.hours-grid {
	display: grid;
	grid-template-columns: auto 1fr;
	row-gap: 0.45rem;
	column-gap: 0.8rem;
	font-size: 0.92rem;
}

.hours-grid dt {
	color: var(--ink-soft);
}

.hours-grid dd {
	margin: 0;
	font-weight: 700;
}

.coverage {
	position: relative;
	overflow: hidden;
}

.coverage::after {
	content: "";
	position: absolute;
	width: 150px;
	height: 150px;
	right: -34px;
	top: -46px;
	border-radius: 50%;
	background: rgba(242, 169, 0, 0.24);
}

.coverage p {
	margin: 0;
	font-size: 0.95rem;
	max-width: 30ch;
	color: var(--ink-soft);
}

.strip {
	border: 2px solid var(--line);
	border-radius: var(--radius);
	background: #ffffff;
	padding: 1.05rem;
	margin-bottom: 2rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.8rem;
	animation: rise 0.7s ease 0.35s both;
}

body[data-theme="dark"] .strip {
	background: #121b22;
}

.strip article {
	border-radius: 12px;
	padding: 0.8rem 0.9rem;
	background: linear-gradient(160deg, #fff9ef, #f3fcfd);
	border: 1px solid #dce4e9;
}

body[data-theme="dark"] .strip article {
	background: linear-gradient(160deg, #1a242b, #162d35);
	border-color: #2e404b;
}

.strip h3 {
	margin: 0;
	font-size: 0.98rem;
}

.strip p {
	margin: 0.3rem 0 0;
	color: var(--ink-soft);
	font-size: 0.9rem;
}

.services {
	margin-bottom: 2rem;
}

.services-head {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: flex-end;
	margin-bottom: 0.9rem;
}

.services-head h2 {
	margin: 0;
	font-size: clamp(1.4rem, 4vw, 2rem);
	font-family: "Archivo Black", sans-serif;
	line-height: 1;
}

.services-head p {
	margin: 0;
	color: var(--ink-soft);
	max-width: 45ch;
	font-size: 0.95rem;
}

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

.service-card {
	border-radius: 14px;
	border: 2px solid #d2dce2;
	background: rgba(255, 255, 255, 0.9);
	padding: 0.85rem;
	min-height: 130px;
	transition: transform 0.2s ease, border-color 0.2s ease;
}

body[data-theme="dark"] .service-card {
	background: rgba(19, 30, 37, 0.95);
	border-color: #31434f;
}

.service-card:hover {
	transform: translateY(-2px);
	border-color: var(--accent-2);
}

.service-card h3 {
	margin: 0;
	font-size: 0.98rem;
}

.service-card p {
	margin: 0.45rem 0 0;
	color: var(--ink-soft);
	font-size: 0.9rem;
}

.booking {
	border: 2px solid var(--line);
	border-radius: calc(var(--radius) + 4px);
	background: rgba(255, 255, 255, 0.92);
	padding: clamp(1rem, 3vw, 1.6rem);
	box-shadow: var(--shadow);
	margin-bottom: 2rem;
	animation: rise 0.7s ease 0.38s both;
}

body[data-theme="dark"] .booking {
	background: rgba(18, 28, 34, 0.95);
}

.booking-head {
	margin-bottom: 0.9rem;
}

.booking-head h2 {
	margin: 0;
	font-size: clamp(1.35rem, 4vw, 1.9rem);
	font-family: "Archivo Black", sans-serif;
	line-height: 1;
}

.booking-head p {
	margin: 0.45rem 0 0;
	color: var(--ink-soft);
	max-width: 56ch;
}

.booking-status {
	margin: 0 0 0.9rem;
	padding: 0.7rem 0.85rem;
	border-radius: 12px;
	font-weight: 700;
	font-size: 0.92rem;
	border: 2px solid transparent;
}

.booking-status.success {
	background: rgba(46, 174, 96, 0.13);
	border-color: rgba(46, 174, 96, 0.45);
	color: #1d7c47;
}

.booking-status.error {
	background: rgba(201, 52, 52, 0.12);
	border-color: rgba(201, 52, 52, 0.42);
	color: #9c1f1f;
}

.booking-status.warning {
	background: rgba(193, 122, 0, 0.14);
	border-color: rgba(193, 122, 0, 0.42);
	color: #7f5000;
}

body[data-theme="dark"] .booking-status.success {
	background: rgba(46, 174, 96, 0.18);
	border-color: rgba(99, 214, 145, 0.45);
	color: #8ce4b2;
}

body[data-theme="dark"] .booking-status.error {
	background: rgba(201, 52, 52, 0.2);
	border-color: rgba(235, 111, 111, 0.45);
	color: #ffabab;
}

body[data-theme="dark"] .booking-status.warning {
	background: rgba(193, 122, 0, 0.24);
	border-color: rgba(243, 181, 75, 0.48);
	color: #ffd48f;
}

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

.booking-form label {
	display: grid;
	gap: 0.35rem;
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--ink);
}

.booking-message,
.booking-actions {
	grid-column: 1 / -1;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
	width: 100%;
	font: inherit;
	color: var(--ink);
	background: rgba(255, 255, 255, 0.9);
	border: 2px solid var(--line);
	border-radius: 12px;
	padding: 0.7rem 0.75rem;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-form textarea {
	resize: vertical;
	min-height: 112px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
	border-color: var(--accent-2);
	box-shadow: 0 0 0 3px rgba(38, 166, 182, 0.18);
}

body[data-theme="dark"] .booking-form input,
body[data-theme="dark"] .booking-form select,
body[data-theme="dark"] .booking-form textarea {
	background: rgba(13, 22, 28, 0.95);
}

.booking-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.7rem;
	flex-wrap: wrap;
}

.booking-actions p {
	margin: 0;
	color: var(--ink-soft);
	font-size: 0.92rem;
}

.booking-actions a {
	color: var(--accent-2);
	font-weight: 700;
}

body[data-theme="dark"] .btn.secondary {
	background: #1a2a32;
	border-color: #3f5361;
	color: #dce8ee;
}

.contact {
	border: 2px solid var(--line);
	border-radius: calc(var(--radius) + 4px);
	background: linear-gradient(145deg, #0f2d35, #184752);
	color: #ebf3f4;
	padding: clamp(1.1rem, 4vw, 2rem);
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: center;
	animation: rise 0.7s ease 0.42s both;
}

.contact h2 {
	margin: 0;
	font-family: "Archivo Black", sans-serif;
	font-size: clamp(1.35rem, 5vw, 2rem);
	line-height: 1;
}

.contact p {
	margin: 0.55rem 0 0;
	color: #cde2e5;
	max-width: 44ch;
	font-size: 0.95rem;
}

.contact .btn {
	white-space: nowrap;
}

.contact .btn.primary {
	box-shadow: none;
}

footer {
	text-align: center;
	color: #51606b;
	font-size: 0.86rem;
	margin-top: 1rem;
}

@keyframes rise {
	from {
		opacity: 0;
		transform: translateY(14px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 980px) {
	.hero {
		grid-template-columns: 1fr;
	}

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

	.service-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

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

@media (max-width: 620px) {
	.site-wrap {
		width: min(1100px, 100% - 1.1rem);
		padding-top: 0.75rem;
	}

	.phone-link {
		padding: 0.52rem 0.82rem;
		font-size: 0.9rem;
	}

	.theme-toggle {
		padding: 0.52rem 0.82rem;
		font-size: 0.9rem;
	}

	.quick-list {
		grid-template-columns: 1fr;
	}

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

	.hero-main {
		padding: 1rem;
	}
}
