/* Amenities
   Centered eyebrow (H1) + headline (H2) on cream, over a two-column list of
   titled amenity descriptions. Each column is led by the gold copy arrow.
   Details / Amenities page, section directly under the hero. */

.amenities--section {
	--amen-gutter: 38px;   /* left space reserved for the lead arrow */
	background: var(--color-body-cream);
	color: var(--color-text-black);
}

/* ---- Head ------------------------------------------------------------- */

.amenities--head {
	max-width: 760px;
	margin: 0 auto 48px;
	text-align: center;
}

.amenities--eyebrow {
	margin: 0 0 0.75em;
	font-family: 'ABC Whyte Inktrap', sans-serif;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-hero-grey);
}

/* Headline — scoped so it beats .text-heading-lg's size/weight. */
.amenities--container .amenities--title {
	margin: 0;
	font-weight: 400;
	font-size: 2rem;
	line-height: 1.15;
}

/* ---- List ------------------------------------------------------------- */

.amenities--list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 36px;
}

.amenities--item {
	position: relative;
	padding-left: var(--amen-gutter);
}

/* Gold lead arrow — hidden by default, shown only at the top of each column
   so the rest of the items align to the same gutter without repeating it. */
.amenities--arrow {
	display: none;
	position: absolute;
	left: 0;
	top: 0.15em;
	width: 22px;
	height: auto;
}

.amenities--item:first-child .amenities--arrow {
	display: block;
}

.amenities--item-title {
	margin: 0 0 0.5em;
	font-family: 'ABC Whyte Inktrap', sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-text-black);
}

.amenities--item-copy {
	line-height: 1.7;
}

.amenities--item-copy > :first-child { margin-top: 0; }
.amenities--item-copy > :last-child { margin-bottom: 0; }

.amenities--item-copy p {
	margin: 0 0 1em;
}

/* ---- Desktop ---------------------------------------------------------- */

@media (min-width: 992px) {
	.amenities--head {
		margin-bottom: 64px;
	}

	.amenities--container .amenities--title {
		font-size: 2.75rem;
	}

	.amenities--list {
		grid-template-columns: 1fr 1fr;
		column-gap: 80px;
		row-gap: 44px;
	}
}
