:root {
	--ink: #14171c;
	--ink-soft: #3a414c;
	--paper: #f1f2f4;
	--paper-2: #e4e6ea;
	--slate: #5c6670;
	--copper: #b56a3a;
	--copper-dark: #8f4f2a;
	--cream: #fafbfc;
	--line: rgba(20, 23, 28, 0.12);
	--font-display: "Instrument Serif", Georgia, serif;
	--font-body: "Sora", system-ui, sans-serif;
	--radius: 3px;
	--header-h: 5rem;
	--top-bar-h: 2.35rem;
	--max: 68rem;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + var(--top-bar-h) + 0.75rem);
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--ink);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--copper);
	text-underline-offset: 0.15em;
}

a:hover {
	color: var(--copper-dark);
}

.skip-link {
	position: absolute;
	left: 1rem;
	top: -100px;
	z-index: 100;
	background: var(--cream);
	padding: 0.5rem 0.75rem;
	border-radius: var(--radius);
}

.skip-link:focus {
	top: 1rem;
}

.wrap {
	width: min(100% - 2rem, var(--max));
	margin-inline: auto;
}

.section-narrow {
	max-width: 42rem;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(241, 242, 244, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
}

.top-bar {
	border-bottom: 1px solid var(--line);
	background: rgba(20, 23, 28, 0.06);
}

.top-bar-inner {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 0.35rem 1.25rem;
	min-height: 2.35rem;
	padding-block: 0.35rem;
	font-size: 0.88rem;
	font-weight: 600;
	letter-spacing: -0.01em;
}

.top-bar a {
	color: var(--ink);
	text-decoration: none;
	white-space: nowrap;
}

.top-bar a:hover {
	color: var(--copper-dark);
}

.top-bar a[href^="tel"] {
	font-variant-numeric: tabular-nums;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: var(--header-h);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	color: var(--ink);
	text-decoration: none;
	font-weight: 700;
	font-size: clamp(1.05rem, 2.2vw, 1.35rem);
	letter-spacing: -0.02em;
}

.brand img {
	width: 3.75rem;
	height: 3.75rem;
	object-fit: cover;
	border-radius: 50%;
	border: 1px solid var(--line);
}

.nav {
	display: none;
	gap: 1.25rem;
}

.nav a {
	color: var(--ink-soft);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	position: relative;
}

.nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: -0.2rem;
	height: 2px;
	background: var(--copper);
	transition: right 0.25s ease;
}

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

.nav a:hover::after {
	right: 0;
}

.header-ctas {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.5rem;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.7rem 1.15rem;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
	background: var(--copper);
	color: #fff;
}

.btn-primary:hover {
	background: var(--copper-dark);
	color: #fff;
}

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

.btn-secondary:hover {
	border-color: var(--copper);
	color: var(--copper-dark);
}

.btn-ghost {
	background: transparent;
	color: var(--ink);
	border-color: var(--line);
	padding-inline: 0.9rem;
}

.btn-ghost:hover {
	border-color: var(--slate);
	color: var(--ink);
}

.btn-light {
	background: rgba(250, 251, 252, 0.12);
	color: #fff;
	border-color: rgba(250, 251, 252, 0.38);
}

.btn-light:hover {
	background: rgba(250, 251, 252, 0.24);
	color: #fff;
}

/* Hero */
.hero {
	position: relative;
	min-height: min(92vh, 52rem);
	display: grid;
	align-items: end;
	color: #fff;
	overflow: hidden;
}

.hero-media {
	position: absolute;
	inset: 0;
}

.hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 35%;
	transform: scale(1.04);
	animation: hero-zoom 8s ease-out forwards;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(14, 16, 20, 0.5) 0%, rgba(14, 16, 20, 0.72) 48%, rgba(14, 16, 20, 0.94) 100%),
		linear-gradient(90deg, rgba(14, 16, 20, 0.72) 0%, rgba(14, 16, 20, 0.2) 75%);
}

.hero-content {
	position: relative;
	z-index: 1;
	padding: 6rem 0 3.5rem;
	color: #fff;
	animation: hero-rise 0.9s ease-out both;
}

.brand-mark {
	margin: 0 0 0.85rem;
	font-family: var(--font-display);
	font-size: clamp(2rem, 5vw, 3.15rem);
	font-weight: 400;
	letter-spacing: -0.02em;
	color: #fff;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
	line-height: 1.1;
}

.eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(250, 251, 252, 0.78);
}

.hero h1 {
	margin: 0 0 1rem;
	font-family: var(--font-display);
	font-size: clamp(2.4rem, 6vw, 4.1rem);
	line-height: 1.08;
	letter-spacing: -0.03em;
	font-weight: 400;
	max-width: 14ch;
	color: #fff;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.lede {
	margin: 0 0 1.75rem;
	max-width: 36rem;
	font-size: 1.08rem;
	color: rgba(250, 251, 252, 0.9);
}

.cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

@keyframes hero-rise {
	from {
		opacity: 0;
		transform: translateY(1.25rem);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes hero-zoom {
	from {
		transform: scale(1.08);
	}
	to {
		transform: scale(1);
	}
}

/* Proof bar */
.trust-strip {
	background: var(--paper);
	border-bottom: 1px solid var(--line);
	padding: 1.75rem 0 1.9rem;
	text-align: center;
}

.trust-strip-inner {
	display: flex;
	justify-content: center;
}

.trust-hero {
	max-width: 36rem;
}

.trust-stars {
	display: flex;
	justify-content: center;
	gap: 0.15rem;
	margin-bottom: 0.55rem;
	color: var(--copper);
	font-size: 1.15rem;
	letter-spacing: 0.06em;
	line-height: 1;
}

.trust-score {
	margin: 0 0 0.4rem;
	font-family: var(--font-body);
	font-size: clamp(1.15rem, 2.5vw, 1.35rem);
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.3;
	color: var(--ink);
}

.trust-score a {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.trust-score a:hover {
	color: var(--copper-dark);
	border-bottom-color: var(--copper);
}

.trust-sub {
	margin: 0;
	color: var(--ink-soft);
	font-size: 0.98rem;
}

/* Testimonials carousel */
.testimonials {
	background: #12151a;
	color: #e8eaee;
	padding: 3.25rem 0 3.5rem;
}

.testimonials h2,
.section.testimonials h2 {
	margin: 0 0 1.75rem;
	text-align: center;
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 3.5vw, 2.4rem);
	font-weight: 400;
	letter-spacing: -0.02em;
	text-transform: none;
	color: #fff;
}

.testimonials-layout {
	display: grid;
	gap: 1.5rem;
	align-items: center;
}

.testimonials-summary {
	text-align: center;
	padding: 0.5rem 0.75rem;
}

.testimonials-summary-label {
	margin: 0 0 0.35rem;
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
}

.testimonials-summary-score {
	margin: 0 0 0.35rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.2rem;
}

.testimonials-summary-score-value {
	font-size: 1.65rem;
	font-weight: 700;
	line-height: 1;
	color: #fff;
}

.testimonials-stars,
.testimonials-card-stars {
	margin: 0;
	color: var(--copper);
	letter-spacing: 0.08em;
	line-height: 1;
}

.testimonials-stars {
	font-size: 1.15rem;
}

.testimonials-summary-count {
	margin: 0 0 0.85rem;
	font-size: 0.9rem;
	color: rgba(232, 234, 238, 0.72);
}

.testimonials-google {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	font-size: 0.88rem;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
}

.testimonials-google:hover {
	text-decoration: underline;
}

.testimonials-google-mark {
	display: inline-grid;
	place-items: center;
	width: 1.55rem;
	height: 1.55rem;
	border-radius: 50%;
	background: #fff;
	color: #4285f4;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1;
}

.testimonials-carousel {
	position: relative;
	min-width: 0;
}

.testimonials-viewport {
	overflow: hidden;
	border-radius: 0.35rem;
	outline: none;
}

.testimonials-track {
	list-style: none;
	margin: 0;
	padding: 0.15rem 0.15rem 0.35rem;
	display: flex;
	gap: 0.75rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
	display: none;
}

.testimonials-card {
	flex: 0 0 min(78vw, 15.5rem);
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	min-height: 14.5rem;
	padding: 0.9rem 0.95rem 0.85rem;
	border-radius: var(--radius);
	background: var(--cream);
	color: var(--ink);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: none;
}

.testimonials-card-head {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	min-width: 0;
}

.testimonials-avatar {
	flex: 0 0 auto;
	display: inline-grid;
	place-items: center;
	width: 2.15rem;
	height: 2.15rem;
	border-radius: 50%;
	background: #5b6a7a;
	color: #fff;
	font-size: 0.85rem;
	font-weight: 700;
}

.testimonials-name {
	margin: 0;
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--ink);
}

.testimonials-meta {
	margin: 0.1rem 0 0;
	font-size: 0.75rem;
	color: var(--slate);
}

.testimonials-card-stars {
	font-size: 0.82rem;
}

.testimonials-card blockquote {
	margin: 0;
	flex: 1 1 auto;
}

.testimonials-card blockquote p {
	margin: 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
	font-size: 0.88rem;
	line-height: 1.4;
	color: var(--ink-soft);
	text-align: center;
}

.testimonials-card.is-expanded blockquote p {
	display: block;
	-webkit-line-clamp: unset;
	overflow: visible;
}

.testimonials-more {
	appearance: none;
	margin: 0 auto;
	padding: 0;
	border: 0;
	background: none;
	font: inherit;
	font-size: 0.78rem;
	color: var(--slate);
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

.testimonials-more:hover {
	color: var(--ink);
}

.testimonials-nav {
	display: none;
	position: absolute;
	top: 50%;
	z-index: 70;
	width: 2.15rem;
	height: 2.15rem;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: #4a5560;
	font-size: 1.35rem;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

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

.testimonials-nav:disabled {
	opacity: 0.35;
	cursor: default;
}

.testimonials-nav--prev {
	left: -0.35rem;
}

.testimonials-nav--next {
	right: -0.35rem;
}

@media (min-width: 640px) {
	.testimonials {
		padding: 3.75rem 0 4rem;
	}

	.testimonials-layout {
		grid-template-columns: 10.75rem minmax(0, 1fr);
		gap: 1rem;
		align-items: center;
	}

	.testimonials-summary {
		text-align: center;
		padding: 0;
	}

	.testimonials-card {
		flex-basis: calc((100% - 1.5rem) / 3);
		min-height: 15rem;
	}

	.testimonials-nav {
		display: grid;
		place-items: center;
	}

	.testimonials-viewport {
		margin: 0 0.85rem;
	}
}

/* Sections */
.section {
	padding: 4.5rem 0;
}

.section-tint {
	background: var(--paper-2);
}

.section h2 {
	margin: 0 0 0.85rem;
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 3.5vw, 2.5rem);
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.15;
}

.section-intro {
	margin: 0 0 2rem;
	color: var(--ink-soft);
	max-width: 40rem;
}

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

.service-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.5rem;
}

.service-list h3 {
	margin: 0 0 0.35rem;
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: -0.01em;
}

.service-list p {
	margin: 0;
	color: var(--ink-soft);
}

.service-list li {
	padding: 0 0 0 1rem;
	border-left: 2px solid var(--copper);
}

.why-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0;
	border-top: 1px solid var(--line);
}

.why-list li {
	display: grid;
	gap: 0.35rem;
	padding: 1.35rem 0;
	border-bottom: 1px solid var(--line);
}

.why-list strong {
	font-size: 1.05rem;
	letter-spacing: -0.01em;
}

.why-list span {
	color: var(--ink-soft);
}

/* Gallery mosaic */
.gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-auto-rows: 5.75rem;
	gap: 0.5rem;
}

.gallery-item {
	position: relative;
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--paper-2);
	cursor: pointer;
	grid-row: span 2;
	isolation: isolate;
}

.gallery-item:focus-visible {
	outline: 2px solid var(--copper);
	outline-offset: 3px;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.gallery-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, transparent 45%, rgba(18, 20, 24, 0.42));
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.gallery-item::before {
	content: "";
	position: absolute;
	right: 0.7rem;
	bottom: 0.7rem;
	width: 1.55rem;
	height: 1.55rem;
	border: 1.5px solid rgba(250, 251, 252, 0.85);
	border-radius: 2px;
	opacity: 0;
	transform: scale(0.9);
	transition: opacity 0.3s ease, transform 0.3s ease;
	z-index: 1;
	pointer-events: none;
	box-shadow: inset 0 0 0 1px rgba(18, 20, 24, 0.15);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
	transform: scale(1.04);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after,
.gallery-item:hover::before,
.gallery-item:focus-visible::before {
	opacity: 1;
	transform: scale(1);
}

.gallery-item--hero {
	grid-column: span 2;
	grid-row: span 2;
}

.gallery-item--wide {
	grid-column: span 2;
	grid-row: span 2;
}

.gallery-item--tall {
	grid-row: span 2;
}

.gallery-hint {
	margin: 1rem 0 0;
	font-size: 0.9rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ink-soft);
}

/* Lightbox */
body.lightbox-open {
	overflow: hidden;
}

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: grid;
	place-items: center;
	padding: 1rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.lightbox[hidden] {
	display: none !important;
}

.lightbox.is-visible {
	opacity: 1;
	pointer-events: auto;
}

.lightbox-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(12, 14, 17, 0.88);
	cursor: zoom-out;
}

.lightbox-dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 68rem);
	height: min(100%, 92vh);
	display: grid;
	grid-template-columns: auto 1fr auto;
	grid-template-rows: auto 1fr auto;
	align-items: center;
	gap: 0.5rem 0.75rem;
	outline: none;
}

.lightbox-stage {
	grid-column: 2;
	grid-row: 1 / -1;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 0;
	height: 100%;
}

.lightbox-stage img {
	max-width: 100%;
	max-height: calc(92vh - 3.5rem);
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: var(--radius);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
	background: #0c0e11;
}

.lightbox-meta {
	margin-top: 0.85rem;
	color: rgba(232, 234, 238, 0.78);
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lightbox-close,
.lightbox-nav {
	appearance: none;
	border: 0;
	background: rgba(250, 251, 252, 0.1);
	color: var(--cream);
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
	background: rgba(250, 251, 252, 0.2);
}

.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
	outline: 2px solid var(--cream);
	outline-offset: 2px;
}

.lightbox-close {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	font-size: 1.75rem;
	line-height: 1;
}

.lightbox-nav {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	font-size: 2rem;
	line-height: 1;
	align-self: center;
}

.lightbox-nav--prev {
	grid-column: 1;
	grid-row: 2;
}

.lightbox-nav--next {
	grid-column: 3;
	grid-row: 2;
}

/* Contact */
.contact-grid {
	display: grid;
	gap: 2.5rem;
}

.contact-list {
	list-style: none;
	margin: 0 0 1.75rem;
	padding: 0;
	display: grid;
	gap: 1rem;
}

.contact-list li {
	display: grid;
	gap: 0.15rem;
}

.contact-list .label {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--slate);
}

.contact-list a {
	font-size: 1.15rem;
	font-weight: 600;
	text-decoration: none;
	color: var(--ink);
}

.contact-list a:hover {
	color: var(--copper);
}

.contact-ctas .btn-secondary {
	background: var(--cream);
}

.contact-form {
	position: relative;
	display: grid;
	gap: 1rem;
	padding: 1.35rem 0 0;
	border-top: 1px solid var(--line);
}

.contact-form label {
	display: grid;
	gap: 0.35rem;
	font-weight: 600;
	color: var(--ink);
}

.contact-form label em {
	font-style: normal;
	font-weight: 500;
	color: var(--ink-soft);
	font-size: 0.9rem;
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
	width: 100%;
	padding: 0.75rem 0.85rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--cream);
	color: var(--ink);
	font: inherit;
}

.contact-form select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--slate) 50%),
		linear-gradient(135deg, var(--slate) 50%, transparent 50%);
	background-position: calc(100% - 1.15rem) 55%, calc(100% - 0.85rem) 55%;
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 2.25rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
	outline: 2px solid var(--copper);
	outline-offset: 1px;
}

.contact-form textarea {
	resize: vertical;
	min-height: 8rem;
}

.contact-form .btn {
	justify-self: start;
	margin-top: 0.25rem;
}

.contact-form .btn:disabled {
	opacity: 0.65;
	transform: none;
	cursor: wait;
}

.hp {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-status {
	margin: 0;
	padding: 0.75rem 0.9rem;
	border-radius: var(--radius);
	background: var(--cream);
	border: 1px solid var(--line);
	font-weight: 500;
}

.form-status--ok {
	border-color: #2f6b45;
	color: #1f4d30;
	background: #e8f5ec;
}

.form-status--err {
	border-color: var(--copper);
	color: var(--copper-dark);
	background: #f3e8e2;
}

/* Footer */
.site-footer {
	border-top: 1px solid var(--line);
	padding: 2rem 0;
	background: var(--ink);
	color: rgba(232, 234, 238, 0.72);
}

.footer-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.75rem;
}

.site-footer p {
	margin: 0;
}

.site-footer a {
	color: #fff;
}

.site-footer strong {
	color: #fff;
}

/* WhatsApp widget */
.wa-widget {
	position: fixed;
	right: 1.1rem;
	bottom: 1.1rem;
	z-index: 60;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.75rem;
}

.wa-fab {
	position: relative;
	width: 3.75rem;
	height: 3.75rem;
	border: 0;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	display: grid;
	place-items: center;
	cursor: pointer;
	box-shadow: 0 10px 28px rgba(18, 20, 24, 0.28);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-fab:hover {
	transform: translateY(-2px) scale(1.03);
	box-shadow: 0 14px 32px rgba(18, 20, 24, 0.34);
}

.wa-dot {
	position: absolute;
	top: 0.35rem;
	right: 0.35rem;
	width: 0.7rem;
	height: 0.7rem;
	border-radius: 50%;
	background: #e11d48;
	border: 2px solid #fff;
}

.wa-panel {
	width: min(22rem, calc(100vw - 2rem));
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 18px 50px rgba(18, 20, 24, 0.22);
	animation: wa-rise 0.22s ease-out;
	display: flex;
	flex-direction: column;
}

.wa-panel[hidden] {
	display: none !important;
}

.wa-panel-head {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 0.75rem;
	align-items: center;
	padding: 0.85rem 0.9rem;
	background: #075e54;
	color: #fff;
}

.wa-panel-head img {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid rgba(255, 255, 255, 0.25);
}

.wa-panel-head strong {
	display: block;
	font-size: 0.98rem;
}

.wa-panel-head span,
.wa-online {
	display: block;
	font-size: 0.78rem;
	opacity: 0.85;
}

.wa-online::before {
	content: "";
	display: inline-block;
	width: 0.45rem;
	height: 0.45rem;
	margin-right: 0.35rem;
	border-radius: 50%;
	background: #25d366;
	vertical-align: middle;
}

.wa-close {
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	padding: 0.15rem 0.35rem;
	opacity: 0.85;
}

.wa-close:hover {
	opacity: 1;
}

.wa-panel-body {
	padding: 1rem;
	background:
		radial-gradient(circle at 12% 0%, rgba(7, 94, 84, 0.08), transparent 45%),
		#efeae2;
	min-height: 10rem;
	max-height: 14rem;
	overflow-y: auto;
}

.wa-bubble {
	position: relative;
	max-width: 92%;
	background: #fff;
	border-radius: 4px 12px 12px 12px;
	padding: 0.75rem 0.85rem 1.35rem;
	box-shadow: 0 1px 2px rgba(18, 20, 24, 0.08);
}

.wa-bubble p {
	margin: 0;
	color: var(--ink);
	font-size: 0.95rem;
	line-height: 1.45;
}

.wa-bubble p + p {
	margin-top: 0.45rem;
}

.wa-time {
	position: absolute;
	right: 0.65rem;
	bottom: 0.35rem;
	font-size: 0.68rem;
	letter-spacing: 0.02em;
	color: var(--ink-soft);
	opacity: 0.75;
}

.wa-composer {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 0.45rem;
	align-items: end;
	padding: 0.65rem 0.7rem 0.75rem;
	background: var(--paper-2);
	border-top: 1px solid var(--line);
}

.wa-composer textarea {
	width: 100%;
	resize: none;
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 0.65rem 0.9rem;
	font: inherit;
	font-size: 0.92rem;
	line-height: 1.35;
	background: #fff;
	color: var(--ink);
	max-height: 6rem;
}

.wa-composer textarea:focus {
	outline: 2px solid rgba(37, 211, 102, 0.45);
	outline-offset: 1px;
	border-color: #25d366;
}

.wa-send {
	width: 2.65rem;
	height: 2.65rem;
	border: 0;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	display: grid;
	place-items: center;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
	transition: background 0.2s ease, transform 0.2s ease;
}

.wa-send:hover {
	background: #1ebe57;
	transform: scale(1.04);
}

.wa-widget.has-opened .wa-dot {
	display: none;
}

/* WhatsApp handoff modal */
body.wa-handoff-open {
	overflow: hidden;
}

.wa-handoff {
	position: fixed;
	inset: 0;
	z-index: 180;
	display: grid;
	place-items: center;
	padding: 1rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.wa-handoff[hidden] {
	display: none !important;
}

.wa-handoff.is-visible {
	opacity: 1;
	pointer-events: auto;
}

.wa-handoff-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(12, 14, 17, 0.55);
	cursor: pointer;
}

.wa-handoff-dialog {
	position: relative;
	z-index: 1;
	width: min(22rem, calc(100vw - 2rem));
	padding: 1.35rem 1.25rem 1.2rem;
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: 14px;
	box-shadow: 0 18px 50px rgba(18, 20, 24, 0.28);
	outline: none;
	animation: wa-rise 0.22s ease-out;
}

.wa-handoff-dialog h2 {
	margin: 0;
	font-size: 1.2rem;
	line-height: 1.25;
	color: var(--ink);
}

.wa-handoff-dialog p {
	margin: 0.55rem 0 0;
	font-size: 0.95rem;
	line-height: 1.45;
	color: var(--ink-soft);
}

.wa-handoff-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.55rem;
	margin-top: 1.15rem;
}

.wa-handoff-confirm {
	background: #25d366;
	color: #fff;
	border-color: #25d366;
}

.wa-handoff-confirm:hover {
	background: #1ebe57;
	border-color: #1ebe57;
	color: #fff;
}

.linkish {
	appearance: none;
	border: 0;
	background: none;
	padding: 0;
	margin: 0;
	font: inherit;
	color: var(--copper);
	text-decoration: underline;
	text-underline-offset: 0.15em;
	cursor: pointer;
	text-align: left;
}

.linkish:hover {
	color: var(--copper-dark);
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@keyframes wa-rise {
	from {
		opacity: 0;
		transform: translateY(0.6rem);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.wa-panel,
	.wa-fab {
		animation: none !important;
		transition: none !important;
		transform: none !important;
	}
}

@media (min-width: 760px) {
	.nav {
		display: flex;
	}

	.top-bar-inner {
		font-size: 0.92rem;
		justify-content: flex-end;
		gap: 1.5rem;
	}

	.trust-strip-inner {
		gap: 1.75rem;
	}

	.trust-strip {
		padding: 2.1rem 0 2.25rem;
	}

	.service-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.75rem 2.5rem;
	}

	.why-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0 2rem;
		border-top: 0;
	}

	.why-list li {
		border-bottom: 0;
		border-top: 1px solid var(--line);
		padding-top: 1.35rem;
	}

	.gallery {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		grid-auto-rows: 7rem;
		gap: 0.65rem;
	}

	.gallery-item--hero {
		grid-column: span 2;
		grid-row: span 2;
	}

	.gallery-item--wide {
		grid-column: span 2;
		grid-row: span 2;
	}

	.gallery-item--tall {
		grid-row: span 2;
	}

	.lightbox-dialog {
		gap: 0.75rem 1rem;
	}

	.lightbox-nav {
		width: 3.1rem;
		height: 3.1rem;
	}

	.contact-grid {
		grid-template-columns: 0.9fr 1.1fr;
		gap: 3rem;
		align-items: start;
	}

	.contact-form {
		padding: 0;
		border-top: 0;
	}

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

	.contact-list li {
		grid-template-columns: 7rem 1fr;
		align-items: baseline;
		gap: 1rem;
	}
}

@media (min-width: 980px) {
	.hero-content {
		padding-bottom: 4.5rem;
	}

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

	.gallery {
		grid-auto-rows: 8rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.hero-media img,
	.hero-content,
	.gallery-item img,
	.gallery-item::before,
	.gallery-item::after,
	.lightbox,
	.wa-handoff,
	.wa-handoff-dialog,
	.btn {
		animation: none !important;
		transition: none !important;
		transform: none !important;
	}
}
