/* Travel Theme — layout and components */
:root {
	--navy: #0a0e1a;
	--navy-2: #0d1f3c;
	--gold: #c9a84c;
	--light-bg: #f0f1f3;
	--line: rgba(255, 255, 255, 0.1);
	--text-muted: rgba(255, 255, 255, 0.7);
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: transparent;
	padding: 1rem 0;
	transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
	background: var(--navy);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
.header-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.site-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.site-logo img {
	height: 40px;
	width: auto;
}
.primary-nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	gap: 1.75rem;
}
.primary-nav a {
	color: #fff;
	font-weight: 600;
	letter-spacing: 0.02em;
}
.primary-nav a:hover,
.primary-nav .current-menu-item a,
.primary-nav .current_page_item a {
	color: var(--gold);
}
.nav-toggle {
	display: none;
	background: none;
	border: 0;
	width: 44px;
	height: 44px;
	color: #fff;
	cursor: pointer;
}
.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
	position: relative;
	transition: 0.3s;
}
.nav-toggle__bar::before,
.nav-toggle__bar::after {
	content: "";
	position: absolute;
	left: 0;
}
.nav-toggle__bar::before {
	top: -7px;
}
.nav-toggle__bar::after {
	top: 7px;
}
.nav-open .nav-toggle__bar {
	background: transparent;
}
.nav-open .nav-toggle__bar::before {
	top: 0;
	transform: rotate(45deg);
}
.nav-open .nav-toggle__bar::after {
	top: 0;
	transform: rotate(-45deg);
}
@media (max-width: 900px) {
	.nav-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.primary-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--navy);
		padding: 1.5rem;
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		transition: max-height 0.35s, opacity 0.35s;
	}
	.primary-nav.is-open {
		max-height: 400px;
		opacity: 1;
	}
	.primary-nav ul {
		flex-direction: column;
		gap: 1.25rem;
	}
}
body.nav-open {
	overflow: hidden;
}

/* Generic sections */
section {
	padding: 5rem 1.5rem;
}
.container {
	max-width: 1200px;
	margin: 0 auto;
}
.section-title {
	font-size: 2.25rem;
	color: var(--navy);
	margin: 0 0 0.5rem;
	text-align: center;
}
.section-title--light {
	color: #fff;
}
.underline {
	width: 64px;
	height: 3px;
	background: var(--gold);
	margin: 0.75rem auto 2.5rem;
}
.main-wrap {
	padding-top: 72px;
}

/* Section headings (home + inner pages) */
.section-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 2.5rem;
}
.section-eyebrow {
	font-size: 0.75rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 700;
	margin: 0 0 0.5rem;
}
.section-eyebrow--light {
	color: #e8d9a0;
}
.section-sub {
	margin: 0.75rem 0 0;
	color: #5a5f6b;
	font-size: 1.05rem;
	line-height: 1.6;
}
.section-sub--light {
	color: rgba(255, 255, 255, 0.75);
}

/* Front page hero */
.home-hero .hero__bg {
	background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2400&q=86");
}
.hero--parallax {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.hero__bg {
	position: absolute;
	inset: 0;
	background: center / cover no-repeat;
	transform: translate3d(0, 0, 0) scale(1.06);
}
.hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(120deg, rgba(10, 14, 26, 0.82) 0%, rgba(10, 14, 26, 0.45) 45%, rgba(10, 14, 26, 0.65) 100%),
		radial-gradient(ellipse 80% 50% at 50% 100%, rgba(201, 168, 76, 0.12) 0%, transparent 55%);
}
.hero__content {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 2.5rem 1.5rem 4rem;
	width: 100%;
}
.hero__glass {
	max-width: 900px;
	margin: 0 auto;
	padding: 2.5rem 2.25rem;
	background: rgba(10, 14, 26, 0.35);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 20px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
@media (max-width: 600px) {
	.hero__glass {
		padding: 1.75rem 1.25rem;
		border-radius: 16px;
	}
}
.hero__kicker {
	color: #e8d9a0;
	font-size: 0.8rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin: 0 0 0.75rem;
	font-weight: 600;
}
.hero h1 {
	font-size: clamp(2.1rem, 5vw, 3.5rem);
	color: #fff;
	margin: 0 0 1rem;
	line-height: 1.12;
	letter-spacing: -0.02em;
}
.hero__lede {
	color: rgba(255, 255, 255, 0.88);
	font-size: 1.1rem;
	line-height: 1.65;
	margin: 0 0 1.75rem;
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 768px) {
	.hero h1 {
		font-size: 1.85rem;
	}
	.hero__lede {
		font-size: 1rem;
	}
}
.hero-ctas {
	display: flex;
	gap: 0.9rem;
	flex-wrap: wrap;
	justify-content: center;
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 1.85rem;
	font-weight: 600;
	border-radius: 6px;
	border: 2px solid transparent;
	cursor: pointer;
	font-family: inherit;
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn--gold {
	background: linear-gradient(145deg, #d4b55c, var(--gold));
	color: var(--navy);
	border-color: rgba(255, 255, 255, 0.1);
}
.btn--ghost {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.45);
	backdrop-filter: blur(4px);
}
.btn:hover {
	box-shadow: 0 8px 28px rgba(201, 168, 76, 0.4);
	transform: translateY(-2px);
}
.hero-scroll {
	position: absolute;
	bottom: 1.75rem;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.85);
	animation: float 2.8s ease-in-out infinite;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}
.hero-scroll__line {
	width: 1px;
	height: 36px;
	background: linear-gradient(180deg, var(--gold), transparent);
}

/* Hero background video (Travlia-style motion hero) */
.hero__bg {
	z-index: 0;
}
.hero__video-wrap {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
	pointer-events: none;
}
.hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.home-hero .hero__overlay {
	z-index: 2;
}
.home-hero .hero__content {
	z-index: 3;
}
.home-hero .hero-scroll {
	z-index: 4;
}
.btn--dark {
	background: var(--navy);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn--dark:hover {
	background: #121a2e;
	color: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Popular Destinations (round pills — insp. Travlia) */
.home-popular {
	background: #fff;
	padding: 4rem 1.5rem 4.5rem;
}
.home-popular__row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem 2.5rem;
	margin-top: 0.5rem;
}
@media (min-width: 1000px) {
	.home-popular__row {
		gap: 2rem 3.5rem;
	}
}
.home-popular__item {
	text-align: center;
	width: 100px;
	flex: 0 0 auto;
}
@media (min-width: 600px) {
	.home-popular__item {
		width: 120px;
	}
}
.home-popular__circle {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin: 0 auto 0.6rem;
	background: center / cover no-repeat;
	border: 3px solid rgba(201, 168, 76, 0.35);
	box-shadow: 0 8px 28px rgba(10, 14, 26, 0.12);
	transition: transform 0.35s, box-shadow 0.35s;
}
@media (min-width: 600px) {
	.home-popular__circle {
		width: 120px;
		height: 120px;
	}
}
.home-popular__item:hover .home-popular__circle {
	transform: scale(1.05);
	box-shadow: 0 12px 36px rgba(10, 14, 26, 0.18);
}
.home-popular__label {
	margin: 0;
	font-size: 0.95rem;
	color: var(--navy);
	font-weight: 700;
	letter-spacing: 0.02em;
}
.home-popular__cta-wrap {
	text-align: center;
	margin: 2.5rem 0 0;
}

/* The Best Holidays Start Here! */
.home-holidays-start {
	background: linear-gradient(180deg, #f3f1ec 0%, #fff 100%);
	padding: 4.5rem 1.5rem;
}
.home-holidays-start__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
	margin-top: 0.5rem;
}
@media (max-width: 900px) {
	.home-holidays-start__grid {
		grid-template-columns: 1fr;
		max-width: 520px;
		margin-left: auto;
		margin-right: auto;
	}
}
.home-hs-card {
	background: #fff;
	border-radius: 16px;
	padding: 2rem 1.5rem 1.75rem;
	text-align: center;
	border: 1px solid rgba(10, 14, 26, 0.06);
	box-shadow: 0 4px 28px rgba(10, 14, 26, 0.06);
}
.home-hs-card__icon {
	display: block;
	font-size: 1.75rem;
	color: var(--gold);
	margin-bottom: 0.5rem;
	line-height: 1;
}
.home-hs-card h3 {
	margin: 0 0 0.5rem;
	font-size: 1.2rem;
	color: var(--navy);
}
.home-hs-card p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
	color: #4a505e;
}
.home-holidays-start__action {
	text-align: center;
	margin-top: 2.25rem;
}

/* The Best Holidays — dark feature strip */
.home-holidays-best {
	background: var(--navy);
	padding: 0;
}
.home-holidays-best__inner {
	padding: 4.5rem 1.5rem 5rem;
}
.home-holidays-best__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 0.5rem;
}
@media (min-width: 1000px) {
	.home-holidays-best__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}
@media (max-width: 600px) {
	.home-holidays-best__grid {
		grid-template-columns: 1fr;
	}
}
.home-hb-card {
	background: rgba(255, 255, 255, 0.04);
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(4px);
}
.home-hb-card__img {
	height: 150px;
	background-size: cover;
	background-position: center;
}
.home-hb-card__body {
	padding: 1.15rem 1.2rem 1.35rem;
}
.home-hb-card__body h3 {
	margin: 0 0 0.4rem;
	font-size: 1.1rem;
	color: #fff;
}
.home-hb-card__body p {
	margin: 0;
	font-size: 0.86rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.78);
}

/* Why choose us */
.why-choose--premium {
	background: linear-gradient(180deg, #f8f8f6 0%, #fff 32%, #f3f3f0 100%);
}
.icon-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}
.icon-cards--visual {
	gap: 1.25rem;
}
.icon-card--image {
	padding: 0;
	overflow: hidden;
	text-align: left;
	background: #fff;
	border: none;
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(10, 14, 26, 0.07);
}
.icon-card__media {
	height: 150px;
	background-size: cover;
	background-position: center;
}
.icon-card__body {
	padding: 1.35rem 1.35rem 1.5rem;
}
.icon-card--image h3 {
	margin: 0 0 0.4rem;
	font-size: 1.1rem;
	color: var(--navy);
}
.icon-card--image p {
	margin: 0;
	font-size: 0.92rem;
	color: #4a505e;
	line-height: 1.55;
}
.icon-card {
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 12px;
	padding: 1.5rem;
	text-align: center;
}
.icon-card h3 {
	margin-top: 0;
}
@media (max-width: 900px) {
	.icon-cards,
	.icon-cards--visual {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 480px) {
	.icon-cards,
	.icon-cards--visual {
		grid-template-columns: 1fr;
	}
}

/* Featured */
.featured-dest {
	background: var(--navy);
	padding: 5.5rem 1.5rem;
}
.featured-dest .section-head {
	margin-bottom: 3rem;
}
.dest-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.dest-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	height: 420px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.dest-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.65s ease;
}
.dest-card:hover img {
	transform: scale(1.08);
}
.dest-card__bar {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1.5rem 1.35rem 1.25rem;
	background: linear-gradient(0deg, rgba(10, 14, 26, 0.95) 0%, rgba(10, 14, 26, 0.2) 100%);
}
.dest-card__tag {
	font-size: 0.7rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #e8d9a0;
	font-weight: 700;
}
.dest-card__title {
	margin: 0.35rem 0 0.2rem;
	color: #fff;
	font-size: 1.35rem;
}
.dest-card__link {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.88rem;
	font-weight: 600;
}
.dest-card__link:hover {
	color: var(--gold);
}
.dest-card__ov {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 14, 26, 0.15) 0%, rgba(10, 14, 26, 0.88) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
}
.dest-card:hover .dest-card__ov {
	opacity: 1;
	pointer-events: auto;
}
.dest-card__ov .btn {
	margin: 0;
}
@media (max-width: 900px) {
	.dest-card {
		height: 360px;
	}
	.dest-grid {
		grid-template-columns: 1fr;
	}
}

/* Packages (home) */
.pack-home {
	background: var(--light-bg);
}
.pack-grid--home {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
}
.travel-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(10, 14, 26, 0.08);
	box-shadow: 0 4px 20px rgba(10, 14, 26, 0.06);
}
.travel-card--premium .travel-card__img {
	height: 220px;
}
.travel-card__img {
	background-size: cover;
	background-position: center;
}
.travel-card__body {
	padding: 1.35rem 1.4rem 1.5rem;
}
.travel-card--premium h3 {
	margin: 0.4rem 0 0.35rem;
	font-size: 1.2rem;
}
.travel-card__price {
	color: var(--gold);
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0.4rem 0 1rem;
}
.badge {
	display: inline-block;
	background: var(--navy);
	color: #fff;
	font-size: 0.72rem;
	padding: 0.3rem 0.6rem;
	border-radius: 6px;
	letter-spacing: 0.02em;
}
.badge--outline {
	background: transparent;
	color: var(--navy);
	border: 1px solid rgba(10, 14, 26, 0.25);
}
.stars {
	color: var(--gold);
	letter-spacing: 2px;
	font-size: 0.85rem;
}
@media (max-width: 900px) {
	.pack-grid--home {
		grid-template-columns: 1fr;
	}
}

/* Testimonials */
.testimonials--image {
	position: relative;
	color: #fff;
	overflow: hidden;
}
.testimonials__bg {
	position: absolute;
	inset: 0;
	background: url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=2000&q=80") center / cover
		no-repeat;
	transform: scale(1.02);
}
.testimonials__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(10, 14, 26, 0.92) 0%, rgba(10, 14, 26, 0.75) 50%, rgba(10, 14, 26, 0.88) 100%);
}
.testimonials__inner {
	position: relative;
	z-index: 1;
}
.testimonial__quote {
	font-size: 1.35rem;
	line-height: 1.6;
	font-family: "Playfair Display", Georgia, serif;
	margin: 0 0 1.25rem;
}
.testimonial-slide cite {
	font-style: normal;
	color: #e8d9a0;
	font-size: 0.95rem;
}
.testimonial-stars {
	text-align: center;
	color: var(--gold);
	letter-spacing: 0.2em;
	margin: 0.5rem 0 0;
	font-size: 1rem;
}
.testimonials {
	background: var(--navy);
	color: #fff;
}
.testimonial-slider {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
	min-height: 200px;
	position: relative;
}
.testimonial-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.5s;
}
.testimonial-slide.is-active {
	position: relative;
	opacity: 1;
}

/* Stats */
.stats-bar--textured {
	background: linear-gradient(135deg, #b8943a 0%, var(--gold) 40%, #d4b55c 100%);
	position: relative;
}
.stats-bar--textured::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=200&q=30") center / 280px
		repeat;
	opacity: 0.12;
	pointer-events: none;
}
.stats-bar {
	color: var(--navy);
	padding: 3rem 1.5rem;
}
.stats-bar__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	text-align: center;
	position: relative;
	z-index: 1;
}
.stat-cell {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.2rem;
}
.stat-cell .stat-number {
	font-size: clamp(1.9rem, 4vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1;
}
.stat-suffix {
	font-size: 1.5rem;
	font-weight: 800;
}
.stat-label {
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	opacity: 0.9;
}
@media (max-width: 700px) {
	.stats-bar__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Newsletter section */
.nl-section,
.nl-section--rich {
	position: relative;
	overflow: hidden;
}
.nl-section--rich {
	padding: 0;
}
.nl-section {
	background: url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1600") center/cover;
}
.nl-section--rich .nl-section__bg {
	position: absolute;
	inset: 0;
	background: url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=2000&q=80") center / cover
		no-repeat;
	transform: scale(1.02);
}
.nl-section--rich .nl-section__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(10, 14, 26, 0.88) 0%, rgba(10, 14, 26, 0.55) 60%, rgba(20, 40, 60, 0.75) 100%);
}
.nl-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(10, 14, 26, 0.72);
}
.nl-section--rich::before {
	display: none;
}
.nl-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	color: #fff;
	padding: 3.5rem 0;
}
.nl-section--rich .nl-inner {
	padding: 4rem 0;
}
.newsletter-form--footer,
.nl-section form {
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
	align-items: center;
}
.nl-section input[type="email"],
.nl-section--rich input[type="email"] {
	padding: 0.85rem 1.1rem;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(6px);
	color: #fff;
	min-width: 260px;
}
.newsletter-form--footer input[type="email"] {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--line);
}

/* Page hero (inner) */
.page-hero {
	position: relative;
	padding: 8rem 1.5rem 5rem;
	text-align: center;
	color: #fff;
}
.page-hero__bg {
	position: absolute;
	inset: 0;
	background: url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=2000")
		center/cover;
}
.page-hero__ov {
	position: absolute;
	inset: 0;
	background: rgba(10, 14, 26, 0.65);
}
.page-hero h1 {
	position: relative;
	font-size: 3rem;
	margin: 0;
}

/* About: story */
.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: center;
}
.split img {
	border-radius: 12px;
	width: 100%;
}
.mvv {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}
.mvv__box {
	background: #fff;
	border-radius: 12px;
	padding: 1.5rem;
	border: 1px solid #e6e6e6;
}
.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}
.team-card {
	text-align: center;
}
.team-avatar {
	width: 96px;
	height: 96px;
	margin: 0 auto 0.5rem;
	border-radius: 50%;
	background: linear-gradient(135deg, #c9a84c, #0a0e1a);
}
.timeline {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	padding-bottom: 0.5rem;
	scroll-snap-type: x mandatory;
}
.timeline__item {
	min-width: 200px;
	scroll-snap-align: start;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 8px;
	padding: 1rem;
}
@media (max-width: 900px) {
	.split,
	.mvv,
	.team-grid {
		grid-template-columns: 1fr;
	}
}

/* Packages page */
.filter-row {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
	justify-content: center;
}
.filter-row button {
	border: 1px solid #ccc;
	background: #fff;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	cursor: pointer;
}
.filter-row button.is-active {
	background: var(--navy);
	color: #fff;
	border-color: var(--navy);
}
.package-card {
	position: relative;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #e6e6e6;
}
.package-card.is-hidden {
	display: none;
}
.pack-grid--page {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.pack-grid--page--inner {
	margin-top: 1rem;
}
.btn-view {
	margin-top: 0.75rem;
	transform: translateY(8px);
	opacity: 0.95;
}
.package-card:hover {
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.package-card--extra {
	display: none;
}
.package-card--extra.is-visible {
	display: block;
}
.skeleton {
	height: 320px;
	border-radius: 12px;
	background: linear-gradient(90deg, #eee, #f7f7f7, #eee);
	background-size: 200% 100%;
	animation: shimmer 1.4s ease infinite;
}
@media (max-width: 1000px) {
	.pack-grid--page {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 600px) {
	.pack-grid--page {
		grid-template-columns: 1fr;
	}
}

/* Blog */
.blog-featured {
	margin-bottom: 2rem;
}
.blog-featured__inner {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 1.5rem;
	align-items: center;
}
.blog-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.post-card {
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 8px;
	overflow: hidden;
}
.post-card__body {
	padding: 1rem;
}
.with-sidebar {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 2rem;
}
.widget {
	margin-bottom: 1.5rem;
	border: 1px solid #e6e6e6;
	padding: 1rem;
	border-radius: 8px;
}
.pagination {
	display: flex;
	gap: 0.5rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}
@media (max-width: 1000px) {
	.with-sidebar,
	.blog-grid-3,
	.blog-featured__inner {
		grid-template-columns: 1fr;
	}
}

/* Contact */
.contact-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}
.contact-info p {
	margin: 0.5rem 0;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 0.7rem 0.85rem;
	margin-bottom: 0.75rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-family: inherit;
}
#contact-form-message {
	margin-top: 0.5rem;
	font-weight: 600;
}
.map-wrap {
	margin-top: 2rem;
	border-radius: 8px;
	overflow: hidden;
}
.map-wrap iframe,
.map-wrap__iframe {
	width: 100%;
	height: 300px;
	border: 0;
	display: block;
}
@media (max-width: 800px) {
	.contact-split {
		grid-template-columns: 1fr;
	}
}

/* Footer */
.site-footer {
	background: var(--navy);
	color: #fff;
	padding: 3rem 1.5rem 0;
}
.footer-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
}
.footer-bottom {
	margin-top: 2rem;
	padding: 1rem 0 2rem;
	border-top: 1px solid var(--line);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.5rem;
	font-size: 0.9rem;
}
.footer-cols a {
	color: #fff;
	opacity: 0.85;
}
.list-plain {
	list-style: none;
	margin: 0;
	padding: 0;
}
.list-plain a {
	color: #fff;
	display: block;
	margin-bottom: 0.4rem;
}
.back-to-top {
	position: fixed;
	right: 1.5rem;
	bottom: 1.5rem;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--gold);
	color: var(--navy);
	border: 0;
	font-size: 1.2rem;
	cursor: pointer;
	z-index: 1001;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
	opacity: 0;
	pointer-events: none;
	transition: 0.3s;
}
.back-to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
}
.social-row a {
	color: #fff;
	margin-right: 0.75rem;
}
@media (max-width: 900px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 480px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}
}

/* 404 */
.error-404 {
	text-align: center;
	padding: 5rem 1.5rem;
}
.error-404 h1 {
	font-size: 5rem;
	margin: 0 0 1rem;
	color: var(--navy);
}

/* Single / legal */
.prose {
	max-width: 800px;
	margin: 0 auto;
}
.single-hero {
	padding: 1rem 0 2rem;
}
.package-meta {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin: 0.5rem 0 1.5rem;
}

/* Fix invalid CSS - map-wrap if iframe nested wrong */
.map-wrap__iframe {
	width: 100%;
	height: 300px;
	border: 0;
}

/* Coming soon (also styled inline in file; classes here) */
.coming-soon-page {
	margin: 0;
	min-height: 100vh;
	background-color: #0a0e1a;
	background-image: linear-gradient(125deg, #0a0e1a, #0d1f3c, #0a0e1a);
	background-size: 400% 400%;
	animation: gradBg 20s ease-in-out infinite;
	color: #fff;
}
@keyframes gradBg {
	0%,
	100% {
		background-color: #0a0e1a;
	}
	50% {
		background-color: #0d1f3c;
	}
}
#particles {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}
.coming-content {
	position: relative;
	z-index: 1;
	padding: 2rem 1rem 4rem;
}
.coming-glass {
	max-width: 640px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 60px 40px;
}
.coming-h1 {
	font-size: 56px;
	color: #fff;
	margin: 0.5rem 0;
	animation: fadeSlideUp 0.8s ease 0.3s both;
}
.coming-sub {
	color: #c9a84c;
	margin: 0.25rem 0 0.5rem;
	animation: fadeSlideUp 0.8s ease 0.5s both;
}
.coming-timer {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.75rem;
	margin: 1.5rem 0;
}
.timer-box {
	text-align: center;
	padding: 0.9rem 0.4rem;
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	transition: 0.3s;
}
.timer-box.is-pulsing {
	animation: pulse 0.5s ease;
}
.timer-box span {
	font-size: 1.5rem;
	font-weight: 700;
}
.coming-cta {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin: 1.5rem 0 1rem;
}
.coming-cta input {
	flex: 1 1 200px;
	padding: 0.85rem 1rem;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}
.coming-cta .btn--gold {
	border: 0;
}
.coming-cta .btn--gold:hover {
	box-shadow: 0 0 20px rgba(201, 168, 76, 0.6);
	transform: scale(1.05);
}
.coming-socials a {
	color: #c9a84c;
	margin: 0 0.4rem;
	display: inline-flex;
}
.coming-socials a:hover {
	transform: scale(1.12);
	filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.8));
}
.coming-contact {
	font-size: 0.8rem;
	opacity: 0.7;
	margin-top: 1.5rem;
	line-height: 1.5;
}
@media (max-width: 768px) {
	.coming-h1 {
		font-size: 32px;
	}
	.coming-glass {
		padding: 30px 20px;
	}
	.coming-timer {
		grid-template-columns: repeat(2, 1fr);
	}
	.coming-socials a {
		padding: 0.4rem;
	}
}
.logo-anim {
	animation: fadeIn 0.6s ease both;
}
.tag-anim {
	animation: fadeSlideUp 0.6s ease 0.5s both;
}
.anim-delay-3 {
	animation: fadeSlideUp 0.6s ease 0.3s both;
}
.anim-delay-7 {
	animation: fadeSlideUp 0.6s ease 0.7s both;
}
.anim-delay-9 {
	animation: fadeSlideUp 0.6s ease 0.9s both;
}
.pulse-on-change {
	/* class toggled in JS for seconds */
}

/* Blog meta line */
.post-meta {
	font-size: 0.85rem;
	color: #666;
}
