:root {
	--header-height: 92px;
}

/* Base */
body {
	--color-primary: #0b1a2a;
	--color-secondary: #f87b41;
	--color-accent: #2b9fb0;
	--color-dark: #06101c;
	--color-light: #f3f6f9;
	--color-text: #1f2a3a;
	--color-muted: #6b7687;
	--font-heading: "Montserrat", Arial, sans-serif;
	--font-body: "Source Sans Pro", "Segoe UI", Tahoma, sans-serif;
	margin: 0;
	background-color: #ffffff;
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

body.no-scroll {
	overflow: hidden;
	height: 100vh;
}

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

a {
	color: var(--color-accent);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover,
a:focus {
	color: var(--color-secondary);
}

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

.container {
	width: min(1200px, 92%);
	margin: 0 auto;
}

.container--narrow {
	width: min(900px, 92%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	color: var(--color-primary);
	margin: 0 0 0.75em;
	line-height: 1.2;
}

p {
	margin: 0 0 1em;
}

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

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background-color: #ffffff;
	box-shadow: 0 12px 28px rgba(6, 16, 28, 0.08);
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header--scrolled {
	background-color: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(10px);
	box-shadow: 0 18px 38px rgba(6, 16, 28, 0.12);
}

.site-header__top {
	background-color: var(--color-primary);
	color: #ffffff;
}

.site-header__top .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.55rem 0;
	flex-wrap: wrap;
	font-size: 0.92rem;
}

.site-header__cta .btn {
	color: #ffffff;
	padding: 0.55rem 1.2rem;
	font-size: 0.8rem;
}

.site-header__main .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.75rem 0;
}

.site-branding .custom-logo {
	max-height: 52px;
	width: auto;
}

.site-title {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--color-primary);
}

.site-description {
	margin: 0;
	color: var(--color-muted);
	font-size: 0.85rem;
}

.site-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 1.5rem;
	font-weight: 600;
}

.site-nav li {
	position: relative;
}

.site-nav a {
	color: var(--color-dark);
	padding: 0.5rem 0;
	display: inline-block;
}

.site-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.2rem;
	width: 0;
	height: 3px;
	background-color: var(--color-secondary);
	transition: width 0.3s ease;
}

.site-nav a:hover::after,
.site-nav .current-menu-item > a::after {
	width: 100%;
}

.site-nav__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	border: none;
	background: var(--color-primary);
	border-radius: 8px;
}

.site-nav__toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: #ffffff;
}

.site-nav__close {
	display: none;
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 36px;
	height: 36px;
	border: none;
	background: rgba(11, 26, 42, 0.1);
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.site-nav__close span {
	position: absolute;
	width: 18px;
	height: 2px;
	background: var(--color-primary);
	border-radius: 999px;
}

.site-nav__close span:first-child {
	transform: rotate(45deg);
}

.site-nav__close span:last-child {
	transform: rotate(-45deg);
}

/* Breadcrumbs */
.breadcrumbs {
	background-color: var(--color-light);
	padding: 0.6rem 0;
	font-size: 0.875rem;
}

.breadcrumbs .container {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.breadcrumbs a {
	color: var(--color-muted);
}

.breadcrumbs__current {
	color: var(--color-primary);
	font-weight: 600;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.8rem;
	border-radius: 999px;
	font-weight: 600;
	font-family: var(--font-heading);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
	background-color: var(--color-primary);
	color: #ffffff;
	box-shadow: 0 10px 24px rgba(11, 26, 42, 0.25);
}

.btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(11, 26, 42, 0.35);
}

.btn--accent {
	background-color: var(--color-secondary);
	color: var(--color-dark);
}

.btn--accent:hover {
	transform: translateY(-2px);
	color: #ffffff;
}

.btn--outline {
	border: 2px solid var(--color-primary);
	color: var(--color-secondary);
}

.btn--outline:hover {
	background-color: var(--color-primary);
	color: #ffffff;
}

/* Hero */
.hero {
	position: relative;
	padding: 6rem 0 5rem;
	background: linear-gradient(135deg, rgba(11, 26, 42, 0.95), rgba(43, 159, 176, 0.85));
	color: #ffffff;
}

.hero--slider {
	position: relative;
	padding: 0;
	height: clamp(300px, 68vw, 780px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #ffffff;
}

.hero-slider {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	min-height: inherit;
}

.hero-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease, visibility 0.6s ease;
	height: 100%;
}

.hero-slide.is-active {
	opacity: 1;
	visibility: visible;
}

.hero-slide__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(6, 16, 28, 0.85), rgba(11, 26, 42, 0.55));
	pointer-events: none;
}

.hero-slide__content {
	position: relative;
	z-index: 1;
	max-width: 540px;
	margin: 0 auto;
	padding: clamp(1.8rem, 4vw, 2.5rem);
}

.hero-slide__content h1 {
	color: #ffffff;
	font-size: clamp(2.6rem, 6vw, 3.8rem);
	margin-bottom: 1.2rem;
}

.hero-slide__subtitle {
	font-size: clamp(1.2rem, 3vw, 1.6rem);
	font-weight: 600;
	margin-bottom: 1rem;
}

.hero-slide__excerpt {
	font-size: 1rem;
	margin-bottom: 1.5rem;
	color: rgba(255, 255, 255, 0.86);
}

.hero-slide__actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.hero-slider__nav {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	pointer-events: none;
	padding: 0 1.5rem;
}

.hero-slider__nav button {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(6px);
	color: #ffffff;
	cursor: pointer;
	pointer-events: auto;
	position: relative;
}

.hero-slider__nav button::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 0;
}

.hero-slider__prev::after,
.hero-slider__next::after {
	content: "";
	position: absolute;
	width: 14px;
	height: 14px;
	border-top: 2px solid currentColor;
	border-left: 2px solid currentColor;
	transform: translate(-50%, -50%) rotate(-45deg);
	top: 50%;
	left: 50%;
}

.hero-slider__next::after {
	transform: translate(-50%, -50%) rotate(135deg);
}
.hero-slider__dots {
	position: absolute;
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%);
	display: flex;
	gap: 0.5rem;
}

.hero-slider__dots button {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease;
}

.hero-slider__dots button.is-active {
	background: #ffffff;
	transform: scale(1.1);
}

.hero-contacts {
	position: relative;
	z-index: 3;
	margin-top: -60px;
	padding: 0 0 2.5rem;
}

.hero-contacts__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem 1.75rem;
	background: #ffffff;
	padding: 1.6rem 1.8rem;
	border-radius: 26px;
	box-shadow: 0 18px 40px rgba(6, 16, 28, 0.12);
	border: 1px solid rgba(11, 26, 42, 0.05);
}

.hero-contacts__intro {
	flex: 1 1 260px;
	min-width: 240px;
}

.hero-contacts__intro h2 {
	margin: 0.45rem 0;
	font-size: clamp(1.25rem, 2.4vw, 1.7rem);
	color: var(--color-primary);
}

.hero-contacts__intro p {
	color: var(--color-muted);
	max-width: 360px;
}

.hero-contacts__badge {
	display: inline-block;
	padding: 0.35rem 0.9rem;
	border-radius: 999px;
	background: var(--color-accent);
	color: #ffffff;
	font-weight: 600;
	font-size: 0.76rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero-contacts__actions {
	display: flex;
	flex: 1 1 auto;
	justify-content: flex-end;
	gap: 0.75rem;
	flex-wrap: wrap;
	min-width: 220px;
}

.hero-contacts__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.55rem 1.1rem;
	border-radius: 999px;
	min-height: 46px;
	text-transform: none;
	letter-spacing: 0;
	font-size: 0.9rem;
	font-weight: 600;
}

.hero-contacts__btn.btn {
	padding: 0.55rem 1.1rem;
}

.hero-contacts__btn-icon {
	font-size: 1.1rem;
	line-height: 1;
}

.hero-contacts__btn-text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.hero-contacts__btn-title {
	font-weight: 600;
	font-size: 0.9rem;
}

.hero-contacts__btn-text small {
	font-size: 0.72rem;
	opacity: 0.75;
	margin-top: 1px;
	white-space: nowrap;
}

.hero-contacts__btn--call .hero-contacts__btn-text small,
.hero-contacts__btn--whatsapp .hero-contacts__btn-text small {
	color: rgba(255, 255, 255, 0.85);
}

.hero-contacts__btn--whatsapp {
	background: linear-gradient(135deg, #1fb759, #14894a);
	border: none;
	color: #ffffff;
	box-shadow: 0 10px 22px rgba(20, 136, 69, 0.25);
}

.hero-contacts__btn--whatsapp:hover {
	background: linear-gradient(135deg, #1aa44f, #11743d);
}

.hero-contacts__btn--mail {
	border-width: 1px;
}

.hero-contacts__btn--mail .hero-contacts__btn-text small {
	color: var(--color-muted);
}

.hero__text h1 {
	color: #ffffff;
	font-size: clamp(2.5rem, 5vw, 3.6rem);
	margin-bottom: 1rem;
}

.hero__text p {
	font-size: 1.1rem;
	max-width: 540px;
	margin-bottom: 1.5rem;
}

.hero__cta {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.hero__stats {
	margin-top: 3rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 1.2rem;
}

.stat-card {
	background: rgba(255, 255, 255, 0.1);
	padding: 1.4rem;
	border-radius: 20px;
	backdrop-filter: blur(6px);
	text-align: center;
}

.stat-card strong {
	display: block;
	font-size: 2rem;
	font-family: var(--font-heading);
}

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

.section__header {
	text-align: center;
	margin-bottom: 3rem;
}

.section__header p {
	color: var(--color-muted);
	max-width: 640px;
	margin: 0.75rem auto 0;
}

.section__header--left {
	text-align: left;
}

.section__header--left p {
	margin-left: 0;
}

.section__divider {
	display: block;
	width: 120px;
	height: 3px;
	background: var(--color-secondary);
	margin: 1rem auto 1.5rem;
}

.section__header--left .section__divider {
	margin-left: 0;
	margin-right: auto;
}

.section__header + .services-grid,
.section__header + .grid--services,
.section__header + .grid--services-detail,
.section__header--left + .about-grid,
.section__header--left + .contact-block,
.section__header + .carousel {
	margin-top: 1.5rem;
}

.page-hero {
	padding: 4rem 0;
	background: linear-gradient(120deg, rgba(11, 26, 42, 0.9), rgba(11, 26, 42, 0.75));
	color: #ffffff;
	text-align: center;
}

.page-hero--with-image {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.page-hero--with-image::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(6, 16, 28, 0.85), rgba(11, 26, 42, 0.6));
}

.page-hero--with-image .container {
	position: relative;
}

.page-hero h1 {
	color: #ffffff;
	font-size: clamp(2.2rem, 5vw, 3rem);
	margin-bottom: 0.6rem;
}

.page-hero p {
	color: rgba(255, 255, 255, 0.85);
	max-width: 640px;
	margin: 0 auto;
}

.page-hero--services {
	background: linear-gradient(130deg, rgba(11, 26, 42, 0.92), rgba(11, 26, 42, 0.78)), url("https://images.unsplash.com/photo-1526726538690-5cbf956ae2fd?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.page-hero--services p {
	color: rgba(255, 255, 255, 0.78);
}

.page-hero__meta {
	display: flex;
	justify-content: center;
	gap: 1rem;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.95rem;
}

.section--success {
	background-color: var(--color-light);
}

.success-extra {
	margin-top: 2rem;
}

.section--booking {
	background-color: var(--color-light);
}

.section--services-list {
	background-color: #ffffff;
}

.services-overview__grid {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	gap: 2.5rem;
	align-items: start;
}

.services-overview__content p + p {
	margin-top: 1rem;
}

.services-overview__aside {
	background: #0b1a2a;
	color: rgba(255, 255, 255, 0.82);
	border-radius: 24px;
	padding: 2rem;
	box-shadow: 0 22px 40px rgba(6, 16, 28, 0.2);
}

.services-overview__aside h3 {
	color: #ffffff;
	margin-bottom: 1rem;
}

.services-contact-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	font-size: 0.95rem;
}

.services-contact-list__label {
	display: block;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 0.1rem;
}

.services-contact-list a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
}

.services-overview__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.services-pillars {
	background: var(--color-light);
}

.services-pillars__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.8rem;
}

.services-pillars__card {
	background: #ffffff;
	border-radius: 22px;
	padding: 1.9rem;
	box-shadow: 0 20px 36px rgba(6, 16, 28, 0.1);
	border: 1px solid rgba(11, 26, 42, 0.06);
}

.services-pillars__card h3 {
	color: var(--color-primary);
	margin-bottom: 0.8rem;
}

.services-pillars__card p {
	color: var(--color-muted);
}

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

.services-details__card {
	background: #ffffff;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 18px 30px rgba(6, 16, 28, 0.08);
}

.services-details__card h3 {
	color: var(--color-primary);
	margin-bottom: 0.8rem;
}

.services-details__card p + p {
	margin-top: 0.8rem;
}

.services-cta-box {
	max-width: 720px;
	margin: 0 auto;
	padding: 3rem;
	border-radius: 26px;
	background: linear-gradient(130deg, #0b1a2a, rgba(11, 26, 42, 0.92));
	color: #ffffff;
	text-align: center;
	box-shadow: 0 26px 48px rgba(6, 16, 28, 0.35);
}

.services-cta-box p {
	color: rgba(255, 255, 255, 0.78);
	margin-bottom: 2rem;
}

.services-cta-box__actions {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.section--testimonials-list {
	background-color: var(--color-light);
}

.section--pricing {
	background-color: #ffffff;
}
.page-hero--gallery {
	background: linear-gradient(135deg, rgba(11, 26, 42, 0.92), rgba(43, 159, 176, 0.7)), url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.page-hero--legal {
	background: linear-gradient(130deg, rgba(11, 26, 42, 0.94), rgba(11, 26, 42, 0.75));
}

.gallery-section {
	background-color: #ffffff;
}

.gallery-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.gallery-header h2 {
	margin-bottom: 0.6rem;
	color: var(--color-primary);
}

.gallery-header p {
	color: var(--color-muted);
	max-width: 680px;
	margin: 0 auto;
}

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

.gallery-card {
	position: relative;
	display: block;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 18px 36px rgba(6, 16, 28, 0.12);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 48px rgba(6, 16, 28, 0.2);
}

.gallery-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section--legal {
	background: #ffffff;
}

.legal-content {
	background: #ffffff;
	border-radius: 28px;
	padding: clamp(2.5rem, 4vw, 3.25rem);
	box-shadow: 0 22px 48px rgba(6, 16, 28, 0.08);
	font-size: 1.05rem;
	color: var(--color-text);
	display: grid;
	gap: 1.8rem;
}

.legal-content p {
	margin: 0;
	line-height: 1.8;
}

.legal-section {
	display: grid;
	gap: 0.75rem;
}

.legal-section h2 {
	margin: 0;
	font-size: clamp(1.35rem, 3vw, 1.6rem);
	color: var(--color-primary);
}

.legal-section + .legal-section {
	padding-top: 1.8rem;
	border-top: 1px solid rgba(11, 26, 42, 0.08);
}

.gallery-lightbox {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	background: rgba(6, 16, 28, 0.85);
	backdrop-filter: blur(4px);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.is-active {
	opacity: 1;
	visibility: visible;
}

.gallery-lightbox__backdrop {
	position: absolute;
	inset: 0;
}

.gallery-lightbox__frame {
	position: relative;
	margin: 0;
	background: #0b1a2a;
	border-radius: 22px;
	box-shadow: 0 32px 68px rgba(4, 12, 22, 0.45);
	max-width: min(960px, 92vw);
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	padding: 1.5rem;
	gap: 1rem;
}

.gallery-lightbox__image {
	width: 100%;
	height: auto;
	max-height: 70vh;
	object-fit: contain;
	border-radius: 14px;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.gallery-lightbox__caption {
	display: none;
	margin: 0;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.95rem;
	letter-spacing: 0.01em;
}

.gallery-lightbox__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	padding: 0.35rem 0.85rem;
	font-size: 0.85rem;
	font-weight: 600;
	background: rgba(6, 16, 28, 0.75);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus {
	background: rgba(249, 178, 52, 0.9);
	color: #0b1a2a;
	outline: none;
	transform: translateY(-2px);
}

.section--404 {
	background-color: var(--color-light);
	text-align: center;
	padding: 6rem 0;
}

.section--highlight {
	background-color: var(--color-light);
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
}

.highlight-box {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	align-items: center;
	gap: 2rem;
	background: #ffffff;
	border-radius: 28px;
	padding: 3rem;
	box-shadow: 0 16px 40px rgba(6, 16, 28, 0.1);
	border: 1px solid rgba(248, 123, 65, 0.35);
}

.highlight-box__content h2 {
	margin-bottom: 1rem;
}

.highlight-box__content p {
	margin-bottom: 1.5rem;
	color: var(--color-muted);
}

.highlight-box__media img {
	width: 100%;
	border-radius: 18px;
	box-shadow: 0 12px 24px rgba(6, 16, 28, 0.12);
}

.section--about {
	background-color: #f0f4f9;
}

.about-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
	align-items: stretch;
}

.about-grid__text {
	color: var(--color-muted);
}

.about-grid__text p {
	line-height: 1.7;
}

.about-grid__cta {
	margin-top: 2rem;
}

.about-gallery {
	margin-top: 2.5rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 1rem;
}

.about-gallery__item {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 24px rgba(6, 16, 28, 0.1);
}

.about-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-grid__form {
	display: flex;
	align-items: stretch;
}

.about-form {
	width: 100%;
	background: transparent;
	border-radius: 28px;
	padding: 0.5rem;
}

.about-form h3 {
	margin-bottom: 0.5rem;
}

.about-form p {
	color: var(--color-muted);
	margin-bottom: 2rem;
}

.section--stats {
	background-color: #ffffff;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1.5rem;
}

.stats-card {
	background: var(--color-light);
	border-radius: 24px;
	text-align: center;
	padding: 2.2rem 1.5rem;
	box-shadow: 0 12px 24px rgba(6, 16, 28, 0.1);
}

.stats-card__value {
	font-size: 2.4rem;
	font-family: var(--font-heading);
	color: var(--color-primary);
	margin-bottom: 0.5rem;
}

.stats-card__suffix {
	font-size: 1.4rem;
	margin-left: 0.15rem;
}

.stats-card__label {
	color: var(--color-muted);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 0.9rem;
}

.section--services {
	background-color: #ffffff;
}

.section--testimonials {
	position: relative;
	background: linear-gradient(135deg, rgba(11, 26, 42, 0.95), rgba(11, 26, 42, 0.8));
	color: #ffffff;
	overflow: hidden;
}

.section--testimonials__overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 55%), radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.1), transparent 50%);
	opacity: 0.6;
	pointer-events: none;
}

.section--testimonials .section__header p {
	color: rgba(255, 255, 255, 0.8);
}

.section--cta {
	background: linear-gradient(130deg, var(--color-primary), rgba(11, 26, 42, 0.95));
	color: #ffffff;
	text-align: center;
}

.cta-box {
	max-width: 640px;
	margin: 0 auto;
	padding: 3rem;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-box h2 {
	color: #ffffff;
}

.cta-box p {
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

.section__cta {
	margin-top: 2.5rem;
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

/* Grid */
.grid {
	display: grid;
	gap: 2rem;
}

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

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

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

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

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 2rem;
}

.carousel {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.carousel .testimonial-card {
	height: 100%;
}

/* Cards */
.service-teaser,
.service-card,
.testimonial-card,
.content-card,
.page-content {
	background-color: #ffffff;
	border-radius: 20px;
	box-shadow: 0 16px 30px rgba(6, 16, 28, 0.08);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card {
	overflow: visible;
}

.service-teaser:hover,
.service-card:hover,
.testimonial-card:hover,
.content-card:hover,
.page-content:hover {
	box-shadow: 0 22px 44px rgba(6, 16, 28, 0.12);
}

.service-teaser__media img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.service-teaser__body {
	padding: 1.5rem;
}

.service-teaser__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: 1rem;
	font-weight: 600;
	color: var(--color-primary);
}

.service-card__media img {
	width: 100%;
	height: 260px;
	object-fit: cover;
}

.service-card__body {
	padding: 2rem;
}

.services-grid .service-card__body {
	text-align: center;
}

.service-card__icon {
	width: 110px;
	height: 110px;
	margin: -55px auto 1rem;
	border-radius: 50%;
	background: var(--color-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 24px rgba(248, 123, 65, 0.35);
	border: 6px solid #ffffff;
	overflow: hidden;
}

.service-card__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-card__emoji {
	font-size: 1.8rem;
}

.services-grid .service-card__body h3 {
	font-size: 1.3rem;
	margin-bottom: 0.75rem;
}

.services-grid .service-card__text {
	text-align: center;
	color: var(--color-muted);
}

.service-card__actions {
	margin-top: 1.4rem;
	display: flex;
	justify-content: center;
}

.btn--sm {
	padding: 0.55rem 1.2rem;
	font-size: 0.85rem;
}

.service-card--fallback {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(243, 246, 249, 0.9));
}

.testimonial-card {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.testimonial-card__body {
	font-size: 1.05rem;
	color: var(--color-dark);
}

.testimonial-card__author {
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 0.3rem;
}

.testimonial-card__meta {
	color: var(--color-muted);
	font-size: 0.9rem;
}

.content-card__header,
.content-card__body,
.page-content__body {
	padding: 2rem;
}

.content-card__meta {
	display: flex;
	gap: 1rem;
	color: var(--color-muted);
	font-size: 0.9rem;
}

/* Forms */
.booking-form {
	background-color: #ffffff;
	padding: 2.5rem;
	border-radius: 24px;
	box-shadow: 0 20px 48px rgba(6, 16, 28, 0.12);
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.5rem;
}

.form-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--color-primary);
}

.form-field input,
.form-field textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	border-radius: 12px;
	border: 1px solid #d9e2ec;
	background-color: #f9fbfd;
	font-size: 1rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
	border-color: var(--color-accent);
	box-shadow: 0 0 0 3px rgba(43, 159, 176, 0.2);
	outline: none;
}

.form-field--full {
	grid-column: 1 / -1;
}

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

.form-field--checkbox {
	display: flex;
	align-items: flex-start;
	gap: 0.25rem;
	padding-left: 0;
	font-size: 0.9rem;
	color: var(--color-muted);
}

.form-field--checkbox input[type="checkbox"] {
	width: auto;
	height: auto;
	margin: 0.2rem 0 0;
	accent-color: var(--color-secondary);
}

.form-field--checkbox label {
	margin: 0;
	line-height: 1.4;
	display: inline-flex;
	align-items: flex-start;
	flex: 1;
}

.form-submit {
	margin-top: 2rem;
	text-align: right;
}

.about-grid__form .form-submit {
	text-align: left;
}

.booking-info {
	margin-top: 2.5rem;
	color: var(--color-muted);
}

.notice {
	padding: 1.2rem 1.5rem;
	border-radius: 14px;
	margin-bottom: 1.5rem;
	font-weight: 600;
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.notice__actions {
	margin-top: 1.5rem;
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.notice--visible {
	opacity: 1;
	transform: translateY(0);
}

.notice--error {
	background-color: #ffe7e7;
	color: #c03434;
}

.notice--success {
	background-color: #e7f7f1;
	color: #1a7f5a;
}

/* Contact block */
.contact-block {
	display: flex;
	gap: 1.5rem;
	align-items: center;
	flex-wrap: wrap;
	font-weight: 600;
}

.contact-block__label {
	color: rgba(255, 255, 255, 0.7);
	margin-right: 0.4rem;
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.04em;
}

.site-header .contact-block__item a {
	color: #ffffff;
}

.site-footer .contact-block__label {
	color: var(--color-muted);
}

/* Footer */
.site-footer {
	background: radial-gradient(circle at top, rgba(43, 159, 176, 0.08), transparent 55%), #07121e;
	color: rgba(255, 255, 255, 0.8);
	margin-top: 4rem;
}

.site-footer__top {
	padding: 3.5rem 0;
}

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

.footer-column {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-column--brand {
	max-width: 320px;
}

.footer-logo img {
	max-height: 56px;
	width: auto;
}

.footer-title {
	font-size: 1.4rem;
	color: #ffffff;
	margin: 0;
}

.footer-heading {
	font-size: 1.1rem;
	color: #ffffff;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.footer-description {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.6;
}

.footer-links,
.footer-contact {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	transition: color 0.2s ease;
}

.footer-links a:hover {
	color: var(--color-secondary);
}

.footer-contact__label {
	display: block;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 0.15rem;
}

.footer-contact a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
}

.footer-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.footer-social {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: flex;
	gap: 0.75rem;
}

.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	font-size: 0.8rem;
	text-transform: uppercase;
	font-weight: 700;
}

.footer-social a:hover {
	background: var(--color-secondary);
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 1.4rem 0;
}

.site-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
	text-align: center;
}

#footer-menu {
	display: none;
}

/* Pricing */
.pricing-table {
	background-color: #ffffff;
	border-radius: 24px;
	box-shadow: 0 18px 42px rgba(6, 16, 28, 0.12);
	padding: 2.5rem;
}

.pricing-table table {
	width: 100%;
	border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
	padding: 1rem;
	border-bottom: 1px solid #e3e9f0;
	text-align: left;
}

.pricing-table th {
	background-color: var(--color-light);
	color: var(--color-primary);
}

.pricing-note {
	margin-top: 1.5rem;
	color: var(--color-muted);
}

/* Search form */
.search-form {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.search-form input[type="search"] {
	flex: 1;
	min-width: 220px;
	padding: 0.75rem 1rem;
	border-radius: 12px;
	border: 1px solid #d9e2ec;
}

.search-form button {
	border: none;
}

/* Responsive */
@media (max-width: 1024px) {
	:root {
		--header-height: 84px;
	}
	.site-nav__toggle {
		display: flex;
	}

	.site-nav {
		position: fixed;
		top: 45px;
		right: -100%;
		width: 80%;
		height: calc(100vh - 45px);
		background-color: #ffffff;
		padding: 2.5rem 2rem 2rem;
		box-shadow: -12px 0 30px rgba(6, 16, 28, 0.15);
		transition: right 0.3s ease;
		overflow-y: auto;
		position: fixed;
	}

	.site-nav--open {
		right: 0;
	}

	.site-nav ul {
		flex-direction: column;
		gap: 1.2rem;
	}

	.site-nav__close {
		display: inline-flex;
	}

	.hero {
		padding: 5rem 0 4rem;
	}

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

	.highlight-box {
		padding: 2.5rem;
	}

	.about-grid {
		gap: 2rem;
	}

	.services-overview__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.services-overview__aside {
		padding: 1.8rem;
	}

	.services-pillars__grid {
		gap: 1.6rem;
	}

	.services-details__grid {
		gap: 1.6rem;
	}

	.hero-contacts {
		margin-top: -40px;
		padding-bottom: 2rem;
	}

	.hero-contacts__inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 1.4rem 1.35rem;
	}

	.hero-contacts__actions {
		width: 100%;
		justify-content: flex-start;
	}

	.hero-contacts__btn {
		width: 100%;
	}

	.contact-ribbon__content {
		padding: 2.4rem;
	}

	.legal-content {
		padding: 2rem;
		border-radius: 22px;
	}

	.legal-section + .legal-section {
		padding-top: 1.4rem;
	}

}

@media (max-width: 768px) {
	:root {
		--header-height: 72px;
	}
	.site-header__top {
		padding: 0;
	}
	
	.site-header__top .container {
		display: none;
	}

	.site-header__cta .btn {
		padding: 0.45rem 1rem;
		font-size: 0.75rem;
	}

	.site-header__main .container {
		padding: 0.7rem 0;
		gap: 1rem;
	}

	.site-branding .custom-logo {
		max-height: 46px;
	}

	.site-title {
		font-size: 1.2rem;
	}

	.site-nav ul {
		gap: 1rem;
	}

	.hero {
		text-align: center;
	}

	.hero__text p {
		margin-left: auto;
		margin-right: auto;
	}

	.hero__cta {
		justify-content: center;
	}

	.hero-slider__nav {
		display: none;
	}

	.highlight-box {
		text-align: center;
	}

	.about-form {
		padding: 0.5rem;
	}

	.about-grid__cta {
		text-align: center;
	}

	.hero-contacts__inner {
		gap: 1rem 1.1rem;
	}

	.hero-contacts__actions {
		gap: 0.55rem;
	}

	.hero-contacts__btn {
		width: 100%;
		justify-content: flex-start;
	}

	.hero-contacts__btn-text {
		align-items: flex-start;
	}

	.services-overview__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.services-overview__aside {
		padding: 1.6rem;
	}

	.services-cta-box {
		padding: 2.5rem 2rem;
	}

	.gallery-grid {
		gap: 1rem;
	}

	.footer-grid {
		gap: 2rem;
	}

	.footer-actions {
		justify-content: flex-start;
	}

	.footer-social {
		justify-content: flex-start;
	}

	.legal-content {
		padding: 1.75rem;
		gap: 1.5rem;
	}

	.legal-section + .legal-section {
		padding-top: 1.2rem;
	}

	.booking-form {
		padding: 1.8rem;
	}

	.form-submit {
		text-align: left;
	}
}

@media (max-width: 520px) {
	:root {
		--header-height: 64px;
	}
	.site-header__main .container {
		padding: 0.6rem 0;
	}

	.site-nav ul {
		gap: 0.8rem;
		font-size: 0.95rem;
	}

	.section {
		padding: 3rem 0;
	}

	.cta-box {
		padding: 2.5rem 1.5rem;
	}

	.booking-form {
		padding: 1.5rem;
	}

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

	.hero-contacts__intro h2 {
		font-size: 1.5rem;
	}

	.hero-contacts__intro p {
		max-width: none;
	}

	.hero-contacts {
		margin-top: 0;
	}

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

	.gallery-card {
		border-radius: 16px;
	}

	.gallery-card::after {
		display: none;
	}

	.gallery-lightbox {
		padding: 1.25rem;
	}

	.gallery-lightbox__frame {
		padding: 1rem;
		border-radius: 16px;
	}

	.gallery-lightbox__image {
		max-height: 55vh;
	}

	.services-overview__aside {
		padding: 1.4rem;
	}

	.services-cta-box {
		padding: 2.2rem 1.6rem;
	}

	.services-cta-box__actions {
		gap: 0.75rem;
	}

	.footer-actions {
		width: 100%;
	}

	.footer-actions .btn {
		width: 100%;
		justify-content: center;
	}

	.footer-social {
		justify-content: center;
	}

	.legal-content {
		padding: 1.5rem;
		border-radius: 18px;
		gap: 1.3rem;
	}

	.legal-section + .legal-section {
		padding-top: 1rem;
	}

	.site-footer__bottom-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.6rem;
	}

	.hero--slider {
		min-height: calc(480px - var(--header-height, 0px));
	}

	.hero-slide {
		align-items: flex-end;
	}

	.hero-slide__content {
		max-width: none;
		padding: 0 1rem 2.75rem;
		text-align: center;
	}

	.hero-slide__content h1 {
		font-size: clamp(2rem, 7.6vw, 2.6rem);
	}

	.hero-slide__subtitle {
		font-size: 1.05rem;
	}

	.hero-slide__excerpt {
		font-size: 0.95rem;
	}

	.hero-slide__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 0.65rem;
	}

	.hero-slide__actions .btn {
		width: 100%;
		justify-content: center;
	}

	.hero-slider__dots {
		bottom: 16px;
	}

	.hero-contacts {
		margin-top: 0;
		padding: 3rem 0 2rem;
	}

	.hero-contacts__inner {
		padding: 1.4rem 1.2rem;
		gap: 1.25rem;
		text-align: center;
	}

	.hero-contacts__badge {
		margin: 0 auto;
	}

	.hero-contacts__intro {
		text-align: center;
	}

	.hero-contacts__intro p {
		margin: 0 auto;
	}

	.hero-contacts__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 0.65rem;
	}

	.hero-contacts__btn {
		width: 100%;
		justify-content: center;
		padding: 0.65rem 1.05rem;
	}

	.hero-contacts__btn-icon {
		font-size: 1.25rem;
	}

	.hero-contacts__btn-text small {
		white-space: normal;
		font-size: 0.78rem;
	}

	.section__header {
		margin-bottom: 1.75rem;
	}

	.section__header h2 {
		font-size: clamp(1.7rem, 7vw, 2rem);
	}

	.section__divider {
		margin-bottom: 1rem;
	}

	.section__header p {
		margin-top: 0.65rem;
	}

	.services-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 1.5rem;
	}

	.service-card__body {
		padding: 1.6rem 1.5rem 1.85rem;
	}

	.service-card__icon {
		width: 90px;
		height: 90px;
		margin: -45px auto 0.9rem;
	}

	.service-card__text {
		font-size: 0.95rem;
	}

	.highlight-box {
		grid-template-columns: minmax(0, 1fr);
		padding: 2.25rem 1.5rem;
		gap: 1.5rem;
	}

	.about-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 2rem;
	}

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

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

	.stats-card {
		padding: 1.8rem 1.2rem;
	}

	.stats-card__value {
		font-size: 2rem;
	}

	.carousel,
	.grid--services-detail,
	.grid--testimonials,
	.grid--archive {
		grid-template-columns: minmax(0, 1fr);
	}

	.footer-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 1.75rem;
	}

	.footer-column {
		align-items: center;
		text-align: center;
	}

	.site-footer__top {
		padding: 2.5rem 0;
	}

}


