/* ── Layout ── */

.aSection {
	position: relative;
}

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

/* ── Paper sections ── */

.aSection--paper {
	background: var(--bg-paper), url("../assets/images/bgTexture.webp");
	background-blend-mode: multiply;
	background-position: center;
}

.aSection--paper::before,
.aSection--paper::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 5px;
	background: var(--gold-beam);
	z-index: 2;
}

.aSection--paper::before {
	top: 0;
}

.aSection--paper::after {
	bottom: 0;
}

/* ── Green sections ── */

.aSection--green {
	background: url("../assets/images/bgGreenTexture.webp") center / cover
		no-repeat;
}

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

/* ── Section 1: Intro ── */

.aTitle {
	font-family: "Playfair Display", serif;
	font-weight: 700;
	font-size: clamp(26px, 4.5vw, 42px);
	color: var(--ink);
	margin: 0 0 16px;
	letter-spacing: 0.02em;
	font-style: italic;
}

.aIntro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
	margin-top: 10px;
}

.aIntro__text {
	padding-top: 10px;
}

.aBody {
	font-size: 17px;
	line-height: 1.7;
	color: #4a3f31;
	margin: 0 0 20px;
}

.aBullets {
	list-style: none;
	padding: 0;
	margin: 0 0 22px;
	color: #4b463d;
	font-size: 16px;
	line-height: 1.75;
}

.aBullets li {
	padding-left: 18px;
	position: relative;
	margin: 3px 0;
}

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

.aBullets--light {
	color: rgba(255, 255, 255, 0.85);
}

.aBullets--light li::before {
	color: #e7d3ab;
}

.aQuote {
	font-size: 17px;
	color: #6a5d49;
	margin: 0;
	line-height: 1.6;
}

/* ── Section 2: Changed ── */

.aGreenTitle {
	font-family: "Playfair Display", serif;
	font-weight: 700;
	font-size: clamp(22px, 4vw, 38px);
	color: #e7d3ab;
	text-align: center;
	margin: 0 0 4px;
	letter-spacing: 0.04em;
}

.aGreenSubtitle {
	font-family: "Playfair Display", serif;
	font-size: clamp(18px, 3vw, 28px);
	color: rgba(255, 255, 255, 0.8);
	text-align: center;
	margin: 0 0 36px;
	letter-spacing: 0.02em;
}

.aChanged {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.aChanged__text {
	padding: 10px 0;
}

/* ── Section 3: Environments ── */

.aSectionTitle {
	font-family: "Playfair Display", serif;
	font-weight: 700;
	font-size: clamp(20px, 3.5vw, 34px);
	color: var(--ink);
	text-align: center;
	margin: 0 0 32px;
	letter-spacing: 0.04em;
}

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

.aEnvCard {
	text-align: center;
}

.aEnvCard__image {
	border: 2px solid rgba(180, 140, 63, 0.5);
	overflow: hidden;
	margin-bottom: 14px;
}

.aEnvCard__label {
	font-family: "Playfair Display", serif;
	font-size: 16px;
	font-weight: 600;
	color: var(--ink);
	margin: 0;
	letter-spacing: 0.02em;
}

.aEnvCard__sub {
	font-size: 13px;
	color: #6a5d49;
	margin: 4px 0 0;
	line-height: 1.4;
}

/* ── Section 4: Team ── */

.aTeamHeader {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 36px;
}

.aTeamHeader__title {
	font-family: "Playfair Display", serif;
	font-weight: 700;
	font-size: clamp(24px, 4vw, 38px);
	color: #e7d3ab;
	margin: 0;
	letter-spacing: 0.08em;
}

.aTeamHeader__line {
	width: min(160px, 20vw);
	height: 2px;
	background: linear-gradient(
		to right,
		rgba(180, 140, 63, 0),
		rgba(180, 140, 63, 0.6),
		rgba(180, 140, 63, 0)
	);
}

.aTeam {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
}

.aTeamMember {
	text-align: center;
}

.aTeamMember__image {
	border: 2px solid rgba(180, 140, 63, 0.5);
	overflow: hidden;
	margin-bottom: 14px;
}

.aTeamMember__name {
	font-family: "Playfair Display", serif;
	font-size: 18px;
	font-weight: 600;
	color: #e7d3ab;
	margin: 0;
	letter-spacing: 0.02em;
}

.aTeamMember__role {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.7);
	margin: 4px 0 0;
}

/* ── Placeholder images ── */

.aPlaceholder {
	background: linear-gradient(
		135deg,
		rgba(0, 0, 0, 0.08),
		rgba(0, 0, 0, 0)
	),
	linear-gradient(180deg, #ccc7bf, #a8a49c);
	width: 100%;
}

.aPlaceholder--tall {
	height: 380px;
}

.aPlaceholder--medium {
	height: 300px;
}

.aPlaceholder--card {
	height: 200px;
}

.aPlaceholder--team {
	height: 280px;
}

.aPlaceholder--teamWide {
	height: 280px;
}

/* ── Responsive ── */

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

	.aIntro__image {
		order: -1;
		max-width: 400px;
		margin: 0 auto;
	}

	.aPlaceholder--tall {
		height: 300px;
	}

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

	.aChanged__image {
		max-width: 400px;
		margin: 0 auto;
	}

	.aChanged__text {
		text-align: center;
	}

	.aBullets--light {
		display: inline-block;
		text-align: left;
	}

	.aEnvironments {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin: 0 auto;
	}

	.aTeam {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin: 0 auto;
	}
}

@media (max-width: 600px) {
	.aContainer {
		padding: 36px 18px;
	}

	.ornament__crest {
		width: 100px;
		height: 100px;
	}

	.aPlaceholder--tall {
		height: 240px;
	}

	.aPlaceholder--medium {
		height: 220px;
	}

	.aPlaceholder--card {
		height: 180px;
	}

	.aPlaceholder--team,
	.aPlaceholder--teamWide {
		height: 220px;
	}
}
