/* ═══════════════════════════════════════════════════════════
   Packages & Pricing page
   ═══════════════════════════════════════════════════════════ */

.packages-page {
	background-color: #F5EBE9;
	color: #2A4345;
}

/* ── Eyebrow label (shared utility) ── */
.wf-eyebrow {
	font-family: 'Alegreya Sans', sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #E6FE6E;
	margin: 0 0 0.75rem;
}

/* ── Hero ── */
.pkg-hero {
	position: relative;
	height: clamp(480px, 70vh, 760px);
	overflow: hidden;
}

.pkg-hero__image {
	position: absolute;
	inset: 0;
}

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

.pkg-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(26, 41, 42, 0.55) 0%,
		rgba(26, 41, 42, 0.2) 100%
	);
}

.pkg-hero__text {
	position: absolute;
	bottom: clamp(2rem, 5vw, 3.5rem);
	left: clamp(1.5rem, 5vw, 4rem);
	z-index: 1;
	max-width: 480px;
	color: #F5EBE9;
	/* glassmorphism card */
	background: rgba(26, 41, 42, 0.52);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(230, 254, 110, 0.2);
	border-radius: 6px;
	padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 2.5vw, 2rem);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pkg-hero__text h1 {
	font-family: 'Alegreya', serif;
	font-size: clamp(2.5rem, 5.5vw, 4.5rem);
	line-height: 1.1;
	color: #F5EBE9;
	margin: 0 0 1rem;
}

.pkg-hero__sub {
	font-family: 'Lora', serif;
	font-size: clamp(1rem, 1.6vw, 1.2rem);
	line-height: 1.75;
	color: rgba(245, 235, 233, 0.85);
	margin: 0 0 2rem;
	max-width: 520px;
}

/* ── Shared CTA button ── */
.pkg-cta-button {
	display: inline-block;
	padding: 0.85rem 2.2rem;
	background-color: #E6FE6E;
	color: #2A4345;
	font-family: 'Alegreya Sans', sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	text-decoration: none;
	border: 2px solid #E6FE6E;
	border-radius: 3px;
	letter-spacing: 0.04em;
	transition: background-color 0.25s ease, color 0.25s ease;
}

.pkg-cta-button:hover {
	background-color: transparent;
	color: #E6FE6E;
}

.pkg-cta-button--dark {
	background-color: transparent;
	color: #E6FE6E;
	border-color: #E6FE6E;
}

.pkg-cta-button--dark:hover {
	background-color: #E6FE6E;
	color: #2A4345;
}

/* ── Package cards ── */
.pkg-cards-section {
	padding: clamp(3rem, 7vw, 6rem) clamp(1.25rem, 5vw, 3.5rem);
}

.pkg-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	align-items: start;
}

.pkg-card {
	background-color: #fff;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(42, 67, 69, 0.08);
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pkg-card:hover {
	box-shadow: 0 8px 32px rgba(42, 67, 69, 0.14);
	transform: translateY(-4px);
}

.pkg-card--featured {
	outline: 3px solid #E6FE6E;
	box-shadow: 0 6px 24px rgba(42, 67, 69, 0.14);
}

.pkg-card--featured:hover {
	box-shadow: 0 12px 40px rgba(42, 67, 69, 0.2);
}

/* Card image */
.pkg-card__image {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.pkg-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.pkg-card:hover .pkg-card__image img {
	transform: scale(1.04);
}

.pkg-card__badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background-color: #E6FE6E;
	color: #2A4345;
	font-family: 'Alegreya Sans', sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.35rem 0.8rem;
	border-radius: 2px;
}

/* Card body */
.pkg-card__body {
	padding: 2rem 1.75rem 2.25rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.pkg-card__name {
	font-family: 'Alegreya', serif;
	font-size: 1.9rem;
	line-height: 1.15;
	color: #2A4345;
	margin: 0 0 0.4rem;
}

.pkg-card__tagline {
	font-family: 'Lora', serif;
	font-style: italic;
	font-size: 1rem;
	color: #7a9a9b;
	margin: 0 0 1.1rem;
}

.pkg-card__description {
	font-family: 'Merriweather Sans', sans-serif;
	font-size: 0.92rem;
	line-height: 1.7;
	color: #4a6568;
	margin: 0 0 1.5rem;
}

/* Includes list */
.pkg-card__includes {
	list-style: none;
	padding: 0;
	margin: 0 0 1.75rem;
	border-top: 1px solid rgba(42, 67, 69, 0.12);
	padding-top: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	flex: 1;
}

.pkg-card__includes li {
	font-family: 'Merriweather Sans', sans-serif;
	font-size: 0.88rem;
	color: #2A4345;
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
}

.pkg-card__includes li::before {
	content: '✦';
	color: #E6FE6E;
	font-size: 0.65rem;
	flex-shrink: 0;
	margin-top: 0.2rem;
}

/* Price */
.pkg-card__price {
	font-family: 'Alegreya Sans', sans-serif;
	font-size: 1.15rem;
	font-weight: 700;
	color: #2A4345;
	margin: 0 0 1.25rem;
}

/* Card CTA */
.pkg-card__cta {
	display: block;
	text-align: center;
	padding: 0.8rem 1.5rem;
	border: 2px solid #2A4345;
	color: #2A4345;
	font-family: 'Alegreya Sans', sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
	border-radius: 3px;
	transition: background-color 0.25s ease, color 0.25s ease;
	margin-top: auto;
}

.pkg-card__cta:hover {
	background-color: #2A4345;
	color: #E6FE6E;
}

.pkg-card--featured .pkg-card__cta {
	border-color: #E6FE6E;
	background-color: #E6FE6E;
	color: #2A4345;
}

.pkg-card--featured .pkg-card__cta:hover {
	background-color: transparent;
	color: #2A4345;
	border-color: #2A4345;
}

/* ── Custom quote banner ── */
.pkg-custom {
	background-color: #1a292a;
	padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 3.5rem);
	text-align: center;
	position: relative;
	overflow: hidden;
}

/* subtle radial glow behind the text */
.pkg-custom::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 50% 60%, rgba(230, 254, 110, 0.07) 0%, transparent 70%);
	pointer-events: none;
}

.pkg-custom__inner {
	position: relative;
	max-width: 640px;
	margin: 0 auto;
}

.pkg-custom__eyebrow {
	font-family: 'Alegreya Sans', sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #E6FE6E;
	margin: 0 0 1rem;
}

.pkg-custom h2 {
	font-family: 'Alegreya', serif;
	font-size: clamp(2rem, 4.5vw, 3.2rem);
	color: #F5EBE9;
	margin: 0 0 1.25rem;
	line-height: 1.15;
}

.pkg-custom p {
	font-family: 'Lora', serif;
	font-size: 1.05rem;
	line-height: 1.85;
	color: rgba(245, 235, 233, 0.75);
	margin: 0 0 2.5rem;
}

/* divider line above the banner */
.pkg-custom__rule {
	width: 48px;
	height: 2px;
	background-color: #E6FE6E;
	margin: 0 auto 2rem;
	border: none;
}

/* ── Responsive ── */
@media (max-width: 900px) {
	.pkg-cards {
		grid-template-columns: 1fr;
		max-width: 520px;
	}

	.pkg-card--featured {
		order: -1;
	}
}

@media (max-width: 600px) {
	.pkg-hero {
		height: clamp(480px, 80vh, 620px);
	}

	.pkg-hero__text {
		left: 1rem;
		right: 1rem;
		bottom: 1.5rem;
		max-width: none;
		padding: 1.25rem;
	}

	.pkg-hero__text h1 {
		font-size: clamp(2rem, 9vw, 2.8rem);
	}

	.pkg-cards-section {
		padding: 2.5rem 1.25rem;
	}
}
