/* =====================================================================
   EXPERIENCE ITALY — CLIENT STORIES (reviews wall)
   ---------------------------------------------------------------------
   Loaded only for the "Client Stories" page template. Extends the
   editorial language: greige ground, white quote cards, ghost mark.
   Depends on tokens in the child theme :root and .ei-btn / .ei-stars
   styles from home-editorial.css? No — buttons/stars are redefined
   here so the template stands alone.
   ===================================================================== */

.rev {
	--greige: #F7F5F2;
	background-color: var(--greige);
	font-family: var(--ei-sans);
	color: #5C534B;
	padding: clamp(64px, 8vw, 110px) 24px clamp(80px, 10vw, 130px);
}

/* ---- shared bits (standalone copies) ------------------------------- */
.rev .ei-stars {
	display: block;
	color: #E3B28F;
	font-size: 14px;
	letter-spacing: 0.34em;
	margin-bottom: 14px;
}

.rev .ei-btn {
	display: inline-block;
	font-family: var(--ei-sans);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 20px 54px;
	border-radius: 2px;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease,
		transform 0.3s ease, box-shadow 0.3s ease;
}

.rev .ei-btn--dark {
	color: var(--ei-ivory);
	background-color: var(--ei-espresso);
	border: 1px solid var(--ei-espresso);
}

.rev .ei-btn--dark:hover {
	background-color: var(--ei-terracotta);
	border-color: var(--ei-terracotta);
	transform: translateY(-2px);
	box-shadow: 0 14px 30px -14px rgba(24, 19, 16, 0.45);
}

.rev .ei-btn:focus-visible {
	outline: 2px solid var(--ei-terracotta);
	outline-offset: 3px;
}

/* ---- head ----------------------------------------------------------- */
.rev-head {
	max-width: 720px;
	margin: 0 auto clamp(48px, 6vw, 76px);
	text-align: center;
}

.rev .rev-kicker {
	font-size: 13.5px;
	font-weight: 500;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--ei-terracotta);
	margin: 0 0 18px;
}

.rev .rev-kicker::after {
	content: "";
	display: block;
	width: 44px;
	height: 1px;
	background-color: rgba(161, 92, 56, 0.45);
	margin: 16px auto 0;
}

.rev-title {
	font-family: var(--ei-serif) !important;
	font-weight: 500 !important;
	font-size: clamp(38px, 5vw, 60px) !important;
	line-height: 1.1 !important;
	color: var(--ei-ink);
	margin: 0 0 22px;
}

.rev-title em {
	font-style: italic;
	font-weight: 400;
	color: var(--ei-terracotta);
}

.rev .rev-lede {
	font-size: 18px;
	line-height: 1.75;
	margin: 0;
}

/* ---- review wall ---------------------------------------------------- */
.rev-grid {
	max-width: var(--ei-content-max, 1180px);
	margin-inline: auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(18px, 2.2vw, 30px);
}

.rev-card {
	background-color: #FFFFFF;
	padding: clamp(28px, 3vw, 40px);
	box-shadow: 0 22px 50px -36px rgba(43, 36, 32, 0.35);
	display: flex;
	flex-direction: column;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.rev-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 30px 60px -34px rgba(43, 36, 32, 0.45);
}

.rev-card blockquote {
	border: 0;
	background: none;
	padding: 0;
	margin: 0 0 22px;
	font-family: var(--ei-serif);
	font-style: italic;
	font-size: 19.5px;
	line-height: 1.55;
	color: var(--ei-ink);
	flex: 1;
}

.rev-card footer strong {
	display: block;
	font-family: var(--ei-serif);
	font-size: 17px;
	font-weight: 500;
	color: var(--ei-ink);
}

.rev-card footer span {
	display: block;
	font-size: 13.5px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ei-terracotta);
	margin: 6px 0 4px;
}

.rev-card footer em {
	display: block;
	font-style: normal;
	font-size: 13px;
	color: #9A8C80;
}

/* ---- closing CTA ----------------------------------------------------- */
.rev-cta {
	max-width: 720px;
	margin: clamp(64px, 8vw, 100px) auto 0;
	text-align: center;
}

.rev .rev-cta__script {
	font-family: var(--ei-script);
	font-size: clamp(40px, 5vw, 60px);
	line-height: 1.1;
	color: var(--ei-terracotta);
	margin: 0 0 8px;
}

.rev-cta__title {
	font-family: var(--ei-serif) !important;
	font-weight: 500 !important;
	font-size: clamp(30px, 3.6vw, 44px) !important;
	line-height: 1.15 !important;
	color: var(--ei-ink);
	margin: 0 0 30px;
}

/* ---- responsive ------------------------------------------------------ */
@media (max-width: 1024px) {
	.rev-grid {
		grid-template-columns: 1fr 1fr;
	}
}

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