/* ── Page background (paper) ── */

body {
	background-image: url("../assets/images/bgTexture.webp");
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
	mix-blend-mode: multiply;
	opacity: 0.35;
}

/* ── Layout ── */

.pSection {
	position: relative;
}

.pContainer {
	max-width: 1110px;
	margin: 0 auto;
	padding: 50px 35px;
	position: relative;
	z-index: 1;
}

.pSection--paper .pContainer {
	padding-bottom: 40px;
}

/* ── Intro typography ── */

.pTitle {
	font-family: "Playfair Display", serif;
	font-weight: 500;
	text-align: center;
	font-size: clamp(26px, 4vw, 44px);
	color: var(--ink);
	margin: 0 0 12px;
	letter-spacing: 0.02em;
}

.pLede {
	font-family: "Libre Baskerville", serif;
	text-align: center;
	max-width: 780px;
	margin: 0 auto;
	color: #5a554b;
	font-size: 17px;
	line-height: 1.6;
}

.pLede--tight {
	margin-top: 10px;
}

/* ── Gold divider ── */

.pDivider {
	height: 1px;
	margin: 28px auto 26px;
	background: linear-gradient(to right, rgba(180, 140, 63, 0), rgba(180, 140, 63, 0.55), rgba(180, 140, 63, 0));
}

/* ── Partnership cards ── */

.cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.44)), linear-gradient(180deg, #f5f0e9, #efe9e0);
	border: 1px solid rgba(0, 0, 0, 0.16);
	box-shadow:
		0 10px 10px rgba(0, 0, 0, 0.18),
		0 8px 10px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.card::before {
	content: "";
	position: absolute;
	inset: 8px;
	border: 1.5px solid;
	border-image: linear-gradient(180deg, #dbb842, #b8952a 40%, #9e7a1e 70%, #c9a033) 1;
	pointer-events: none;
	z-index: 2;
}

.card__img {
	height: 196px;
	position: relative;
	z-index: 2;
	margin: 0;
	border: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0)), linear-gradient(180deg, #ccc7bf, #a8a49c);
}

.card__img--gym {
	background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)), url("../assets/images/gym.webp");
	background-size: cover;
	background-position: center;
}

.card__img--hotel {
	background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)), url("../assets/images/hotel.webp");
	background-size: cover;
	background-position: center;
}

.card__img--golf {
	background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)), url("../assets/images/golf.webp");
	background-size: cover;
	background-position: center;
}

.card__body {
	padding: 18px 22px 24px;
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.card__title {
	margin: 0 0 10px;
	font-family: "Playfair Display", serif;
	font-size: 19px;
	font-weight: 600;
	text-align: center;
	color: var(--ink);
	letter-spacing: 0.02em;
}

.card__copy {
	margin: 0 0 14px;
	font-size: 15px;
	line-height: 1.55;
	color: #4e4a41;
	text-align: center;
	max-width: 280px;
}

.card__bullets {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
	color: #4b463d;
	font-size: 14px;
	line-height: 1.65;
	width: 100%;
	max-width: 220px;
}

.card__bullets li {
	padding-left: 14px;
	position: relative;
	margin: 3px 0;
}

.card__bullets li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--gold);
}

/* ── Button variant for cards (dark green) ── */

.btn--primary {
	background: url("../assets/images/bgGreenTexture.webp") center;
	color: #ead7b2;
	box-shadow:
		0 10px 18px rgba(0, 0, 0, 0.18),
		inset 0 0 0 1.5px rgba(198, 163, 93, 0.7);
	border: 1px solid rgba(198, 163, 93, 0.78);
	width: calc(100% - 44px);
	text-align: center;
	font-size: 13px;
	padding: 13px 0;
	letter-spacing: 0.1em;
	white-space: nowrap;
}

.btn--primary:hover {
	filter: brightness(1.08);
}

/* ── Dark band section ── */

.pSection--band {
	background: url("../assets/images/bgGreenTexture.webp") center / 100% auto no-repeat;
	border-top: 1px solid rgba(180, 140, 63, 0.45);
	overflow: hidden;
}

.pBand {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0;
	align-items: center;
}

.pBand__title {
	font-family: "Playfair Display", serif;
	font-size: clamp(26px, 4vw, 44px);
	font-weight: 600;
	color: #e7d3ab;
	margin: 0 0 18px;
	letter-spacing: 0.02em;
	line-height: 1.2;
}

.pBand__brand {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: #efe3c8;
}

.pBand__p {
	font-size: 17px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.82);
	margin: 0 0 14px;
	max-width: 520px;
}

.pBand__p em {
	font-style: italic;
	color: #fff;
}

.pBand__btn {
	background-image: url("../assets/images/bgGreenTexture.webp");
	margin-top: 6px;
	min-width: 220px;
	text-align: center;
	border: 1px solid rgba(198, 163, 93, 0.78);
}

.pBand__btn::before {
	content: "";
	position: absolute;
	inset: 4px;
	border: 1.5px solid transparent;
	border-image: var(--gold-metallic) 1;
	pointer-events: none;
}

.pBand__copy {
	padding: 50px 35px;
}

.pBand__visual {
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: stretch;
}

.pBand__bottle {
	max-width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

/* ── Features section ── */

.pSection--features {
	background: url("../assets/images/bgGreenTexture.webp") center / 100% auto no-repeat;
	background-blend-mode: multiply;
	position: relative;
}

.pSection--features::before {
	content: "";
	display: block;
	height: 6px;
	background: var(--gold-scale);
}

.pFeatures__title {
	font-family: "Playfair Display", serif;
	font-size: clamp(20px, 3.5vw, 34px);
	font-weight: 600;
	text-align: center;
	color: #e7d3ab;
	letter-spacing: 0.04em;
	margin: 0 0 36px;
}

.features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
	align-items: start;
}

.feature {
	text-align: center;
	padding: 6px 6px 0;
	position: relative;
}

.feature:not(:first-child)::before {
	content: "";
	position: absolute;
	left: -13px;
	top: 6px;
	bottom: 8px;
	width: 1px;
	background: linear-gradient(to bottom, rgba(180, 140, 63, 0), rgba(180, 140, 63, 0.28), rgba(180, 140, 63, 0));
}

.feature__icon {
	width: 56px;
	height: 56px;
	object-fit: contain;
	display: block;
	margin: 0 auto 16px;
	opacity: 0.9;
}

.feature__title {
	font-family: "Playfair Display", serif;
	font-size: 15px;
	font-weight: 600;
	color: #e7d3ab;
	margin: 0 0 8px;
	letter-spacing: 0.04em;
}

.feature__copy {
	margin: 0 auto;
	max-width: 200px;
	color: rgba(255, 255, 255, 0.75);
	font-size: 14px;
	line-height: 1.5;
}

/* ── Responsive ── */

@media (max-width: 1020px) {
	.cards {
		grid-template-columns: 1fr;
	}

	.card__img {
		height: 220px;
	}

	.pBand {
		grid-template-columns: 1fr;
	}

	.pBand__visual {
		justify-content: center;
	}

	.pBand__btn {
		display: block;
		margin-left: auto;
		margin-right: auto;
	}

	.pBand__p,
	.pBand__title {
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}

	.features {
		grid-template-columns: 1fr 1fr;
	}

	.feature:not(:first-child)::before {
		display: none;
	}
}

@media (max-width: 560px) {
	.features {
		grid-template-columns: 1fr;
	}
}
