:root {
	--navy: #07315d;
	--navy-dark: #041f3b;
	--gold: #b98520;
	--gold-dark: #936814;
	--ink: #101b2a;
	--muted: #56616f;
	--line: #dce3e9;
	--paper: #ffffff;
	--soft: #f4f7f9;
	--warm: #f6f1e8;
	--shadow: 0 24px 70px rgba(7, 49, 93, 0.13);
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 104px;
}

body {
	margin: 0;
	overflow-x: hidden;
	background: var(--paper);
	color: var(--ink);
	font-family: "Poppins", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

body.lightbox-open {
	overflow: hidden;
}

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

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

button,
input,
textarea,
select {
	font: inherit;
}

button {
	color: inherit;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	color: var(--ink);
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 1.14;
}

h1 {
	margin-bottom: 20px;
	font-size: clamp(42px, 6vw, 78px);
}

h2 {
	margin-bottom: 22px;
	font-size: clamp(31px, 4vw, 51px);
}

.container {
	width: min(1210px, calc(100% - 48px));
	margin-inline: auto;
}

.skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 10000;
	padding: 12px 18px;
	border-radius: 8px;
	background: var(--navy-dark);
	color: #fff;
	transform: translateY(-150%);
	transition: transform 0.2s ease;
}

.skip-link:focus {
	transform: translateY(0);
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid rgba(7, 49, 93, 0.09);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 8px 30px rgba(7, 49, 93, 0.05);
	backdrop-filter: blur(14px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 90px;
}

.brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.brand img {
	width: 92px;
	height: auto;
}

.header-actions,
.hero-actions,
.cta-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
}

.phone-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
}

.phone-link i {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 50%;
	background: var(--warm);
	color: var(--gold-dark);
}

.phone-link small {
	display: block;
	margin-bottom: 2px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	padding: 13px 22px;
	border: 1px solid transparent;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button:focus-visible,
.gallery-card:focus-visible,
.lightbox button:focus-visible,
a:focus-visible {
	outline: 3px solid #ffffff;
	outline-offset: 2px;
	box-shadow: 0 0 0 6px var(--navy);
}

.button-small {
	min-height: 46px;
	padding: 10px 18px;
}

.button-primary {
	background: var(--navy);
	box-shadow: 0 14px 30px rgba(7, 49, 93, 0.2);
	color: #fff;
}

.button-primary:hover {
	background: var(--navy-dark);
	box-shadow: 0 18px 35px rgba(7, 49, 93, 0.28);
}

.button-secondary {
	border-color: rgba(7, 49, 93, 0.25);
	background: rgba(255, 255, 255, 0.82);
	color: var(--navy);
}

.button-secondary:hover {
	border-color: var(--navy);
	background: #fff;
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 76px 0 82px;
	background:
		radial-gradient(circle at 8% 8%, rgba(185, 133, 32, 0.14), transparent 30%),
		linear-gradient(135deg, #fff 0%, #f4f8fb 56%, #e8f0f6 100%);
}

.hero::before {
	position: absolute;
	top: -200px;
	right: -150px;
	width: 500px;
	height: 500px;
	border: 1px solid rgba(185, 133, 32, 0.2);
	border-radius: 50%;
	content: "";
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
	align-items: center;
	gap: clamp(44px, 7vw, 90px);
}

.breadcrumbs {
	margin-bottom: 34px;
	font-size: 13px;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	color: var(--muted);
	list-style: none;
}

.breadcrumbs li + li::before {
	margin-right: 8px;
	color: #95a0aa;
	content: "/";
}

.breadcrumbs a:hover {
	color: var(--navy);
	text-decoration: underline;
}

.eyebrow {
	margin-bottom: 13px;
	color: var(--gold-dark);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.hero-lead {
	max-width: 650px;
	margin-bottom: 32px;
	color: var(--muted);
	font-size: clamp(19px, 2vw, 23px);
	line-height: 1.55;
}

.hero-media {
	position: relative;
	min-height: 510px;
}

.hero-media::before {
	position: absolute;
	inset: 25px -20px -20px 42px;
	border-radius: 32px;
	background: var(--gold);
	content: "";
	opacity: 0.22;
	transform: rotate(3deg);
}

.hero-media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 7px solid #fff;
	border-radius: 30px;
	box-shadow: var(--shadow);
	object-fit: cover;
}

.hero-badge {
	position: absolute;
	right: -24px;
	bottom: 26px;
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 215px;
	padding: 18px 20px;
	border: 5px solid #fff;
	border-radius: 18px;
	background: var(--navy);
	box-shadow: 0 18px 45px rgba(4, 31, 59, 0.28);
	color: #fff;
}

.hero-badge strong {
	font-size: 34px;
	line-height: 1;
}

.hero-badge span {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
}

.intro-section {
	padding: 104px 0;
}

.intro-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
	align-items: start;
	gap: clamp(50px, 8vw, 108px);
}

.intro-copy p:not(.eyebrow) {
	color: var(--muted);
	font-size: 17px;
}

.intro-copy .intro-highlight {
	margin: 32px 0 0;
	padding: 22px 24px;
	border-left: 4px solid var(--gold);
	border-radius: 0 12px 12px 0;
	background: var(--warm);
	color: var(--ink) !important;
	font-weight: 600;
}

.info-panel {
	position: sticky;
	top: 122px;
	overflow: hidden;
	border: 1px solid rgba(7, 49, 93, 0.1);
	border-radius: 22px;
	background: #fff;
	box-shadow: var(--shadow);
}

.info-item {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 25px;
}

.info-item + .info-item {
	border-top: 1px solid var(--line);
}

.info-item > i {
	display: grid;
	flex: 0 0 46px;
	width: 46px;
	height: 46px;
	place-items: center;
	border-radius: 13px;
	background: var(--warm);
	color: var(--gold-dark);
	font-size: 18px;
}

.info-item strong,
.info-item span,
.info-item a {
	display: block;
}

.info-item strong {
	margin-bottom: 4px;
	font-size: 15px;
}

.info-item span,
.info-item a {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.6;
}

.info-item a:hover {
	color: var(--navy);
	text-decoration: underline;
}

.gallery-section {
	padding: 104px 0 112px;
	background:
		linear-gradient(rgba(7, 49, 93, 0.028) 1px, transparent 1px),
		linear-gradient(90deg, rgba(7, 49, 93, 0.028) 1px, transparent 1px),
		var(--soft);
	background-size: 32px 32px;
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
	align-items: end;
	gap: 50px;
	margin-bottom: 52px;
}

.section-heading h2 {
	margin-bottom: 0;
}

.section-heading > p {
	margin-bottom: 6px;
	color: var(--muted);
	font-size: 16px;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 34px 26px;
	width: 100%;
}

.package-card {
	min-width: 0;
}

.package-card h3 {
	margin: 15px 4px 0;
	font-size: 17px;
	letter-spacing: -0.02em;
}

.gallery-card {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden;
	border: 0;
	border-radius: 17px;
	background: #ece8e1;
	box-shadow: 0 16px 38px rgba(7, 49, 93, 0.12);
	cursor: zoom-in;
	isolation: isolate;
	transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.gallery-card::after {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(7, 49, 93, 0.09);
	border-radius: inherit;
	content: "";
	pointer-events: none;
}

.gallery-card img {
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
	transition: transform 0.5s ease, filter 0.3s ease;
}

.gallery-card:hover {
	transform: translateY(-7px);
	box-shadow: 0 26px 52px rgba(7, 49, 93, 0.19);
}

.gallery-card:hover img {
	transform: scale(1.018);
}

.zoom-hint {
	position: absolute;
	right: 13px;
	bottom: 13px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 12px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 999px;
	background: rgba(4, 31, 59, 0.88);
	box-shadow: 0 8px 20px rgba(4, 31, 59, 0.2);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
	backdrop-filter: blur(6px);
}

.final-cta {
	padding: 100px 0;
	background: #fff;
}

.cta-card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 52px;
	overflow: hidden;
	padding: clamp(36px, 5vw, 64px);
	border-radius: 28px;
	background:
		radial-gradient(circle at 85% -20%, rgba(185, 133, 32, 0.35), transparent 33%),
		var(--navy-dark);
	box-shadow: 0 30px 80px rgba(4, 31, 59, 0.25);
	color: #fff;
}

.cta-card::after {
	position: absolute;
	right: -90px;
	bottom: -150px;
	width: 330px;
	height: 330px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	content: "";
}

.cta-card h2,
.cta-card p {
	position: relative;
	z-index: 1;
	color: #fff;
}

.cta-card h2 {
	margin-bottom: 15px;
	font-size: clamp(30px, 4vw, 48px);
}

.cta-card p:not(.eyebrow) {
	max-width: 700px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.75);
}

.cta-card .eyebrow {
	color: #e7bc68;
}

.cta-actions {
	position: relative;
	z-index: 2;
	flex-direction: column;
	align-items: stretch;
	width: min(100%, 350px);
}

.cta-actions .button {
	width: 100%;
}

.cta-card .button-primary {
	background: var(--gold-dark);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.19);
}

.cta-card .button-primary:hover {
	background: #996e18;
}

.button-light {
	border-color: rgba(255, 255, 255, 0.34);
	background: transparent;
	color: #fff;
}

.button-light:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

.site-footer {
	padding: 66px 0 24px;
	border-top: 1px solid var(--line);
	background: var(--soft);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 0.8fr;
	gap: 60px;
}

.footer-brand img {
	width: 115px;
	height: auto;
	margin-bottom: 18px;
}

.footer-brand p,
.site-footer li,
.site-footer a {
	color: var(--muted);
	font-size: 14px;
}

.site-footer h2 {
	margin: 6px 0 14px;
	font-size: 16px;
	letter-spacing: 0;
}

.site-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer li + li {
	margin-top: 7px;
}

.site-footer a:hover {
	color: var(--navy);
	text-decoration: underline;
}

.footer-bottom {
	margin-top: 46px;
	padding-top: 22px;
	border-top: 1px solid var(--line);
}

.footer-bottom p {
	margin: 0;
	color: var(--muted);
	font-size: 12px;
}

.lightbox[hidden] {
	display: none;
}

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: grid;
	place-items: center;
	padding: 24px;
	background: rgba(1, 12, 25, 0.94);
}

.lightbox-backdrop {
	position: absolute;
	inset: 0;
	background: transparent;
	backdrop-filter: blur(10px);
}

.lightbox-panel {
	position: relative;
	z-index: 1;
	display: grid;
	width: min(100%, 1020px);
	height: min(92vh, 980px);
	place-items: center;
}

.lightbox figure {
	display: flex;
	width: 100%;
	height: 100%;
	margin: 0;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 13px;
}

.lightbox figure img {
	width: auto;
	max-width: min(100%, 850px);
	height: auto;
	max-height: calc(92vh - 78px);
	border-radius: 12px;
	background: #eee;
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
	object-fit: contain;
}

.lightbox figcaption {
	max-width: calc(100% - 150px);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
}

.lightbox-close,
.lightbox-nav {
	position: absolute;
	z-index: 4;
	display: grid;
	width: 50px;
	height: 50px;
	padding: 0;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 50%;
	background: rgba(7, 49, 93, 0.78);
	color: #fff;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
	background: var(--gold-dark);
	transform: scale(1.06);
}

.lightbox-close {
	top: 0;
	right: 0;
}

.lightbox-prev {
	top: 50%;
	left: -70px;
	transform: translateY(-50%);
}

.lightbox-prev:hover {
	transform: translateY(-50%) scale(1.06);
}

.lightbox-next {
	top: 50%;
	right: -70px;
	transform: translateY(-50%);
}

.lightbox-next:hover {
	transform: translateY(-50%) scale(1.06);
}

.lightbox-counter {
	position: absolute;
	top: 10px;
	left: 10px;
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
	font-weight: 600;
}

@media (max-width: 1150px) {
	.hero-grid {
		grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
		gap: 50px;
	}

	.hero-media {
		min-height: 450px;
	}

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

	.cta-card {
		grid-template-columns: 1fr;
	}

	.cta-actions {
		width: 100%;
		flex-direction: row;
	}

	.cta-actions .button {
		width: auto;
		flex: 1 1 250px;
	}

	.lightbox-prev {
		left: 8px;
	}

	.lightbox-next {
		right: 8px;
	}
}

@media (max-width: 900px) {
	.hero {
		padding: 56px 0 70px;
	}

	.hero-grid,
	.intro-grid,
	.section-heading {
		grid-template-columns: 1fr;
	}

	.hero-media {
		min-height: 460px;
	}

	.hero-badge {
		right: 18px;
	}

	.intro-grid,
	.section-heading {
		gap: 36px;
	}

	.info-panel {
		position: static;
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.info-item + .info-item {
		border-top: 0;
		border-left: 1px solid var(--line);
	}

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

	.footer-grid {
		grid-template-columns: 1.3fr 1fr 1fr;
		gap: 30px;
	}
}

@media (max-width: 680px) {
	html {
		scroll-padding-top: 90px;
	}

	.container {
		width: min(100% - 28px, 1210px);
	}

	.header-inner {
		min-height: 76px;
	}

	.brand img {
		width: 75px;
	}

	.phone-link {
		display: none;
	}

	.button-small {
		min-height: 43px;
		padding: 9px 14px;
		font-size: 13px;
	}

	.hero {
		padding-top: 34px;
	}

	.breadcrumbs {
		margin-bottom: 28px;
	}

	.hero-actions .button {
		width: 100%;
	}

	.hero-media {
		min-height: 360px;
	}

	.hero-media::before {
		inset: 16px -8px -14px 20px;
	}

	.hero-media img {
		border-width: 5px;
		border-radius: 22px;
	}

	.hero-badge {
		right: 10px;
		bottom: 16px;
		max-width: 176px;
		padding: 13px 15px;
		border-width: 3px;
	}

	.hero-badge strong {
		font-size: 27px;
	}

	.hero-badge span {
		font-size: 11px;
	}

	.intro-section,
	.gallery-section,
	.final-cta {
		padding: 74px 0;
	}

	.info-panel {
		display: block;
	}

	.info-item + .info-item {
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.package-card h3 {
		font-size: 18px;
	}

	.gallery-card:hover {
		transform: none;
	}

	.cta-card {
		padding: 34px 22px;
		border-radius: 22px;
	}

	.cta-actions {
		flex-direction: column;
	}

	.cta-actions .button {
		width: 100%;
		flex: 0 0 auto;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.lightbox {
		padding: 12px;
	}

	.lightbox-panel {
		height: calc(100vh - 24px);
	}

	.lightbox figure img {
		max-height: calc(100vh - 122px);
		border-radius: 8px;
	}

	.lightbox-close,
	.lightbox-nav {
		width: 44px;
		height: 44px;
	}

	.lightbox-close {
		top: 4px;
		right: 4px;
	}

	.lightbox-prev {
		left: 4px;
	}

	.lightbox-next {
		right: 4px;
	}

	.lightbox figcaption {
		max-width: calc(100% - 110px);
		font-size: 12px;
	}

	.lightbox-counter {
		top: 15px;
		left: 12px;
	}

	.zoom-hint span {
		display: none;
	}

	.zoom-hint {
		width: 38px;
		height: 38px;
		justify-content: center;
		padding: 0;
	}
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
