/* =====================================================================
   EXPERIENCE ITALY — ABOUT
   ---------------------------------------------------------------------
   Loaded only for the "About" template. A roster rather than a grid:
   each person gets a portrait beside their bio, separated by hairlines,
   with the long half of the bio behind a disclosure.

   The team photographs are small squares (377–533px), so the portrait
   column is deliberately fixed and modest — scaling them up to a
   full-bleed editorial row would render them soft.
   ===================================================================== */

.abt {
	background-color: #FFFFFF;
	font-family: var(--ei-sans);
	color: #5C534B;
}

.abt-team {
	padding: clamp(52px, 6.5vw, 92px) 24px clamp(56px, 7vw, 92px);
}

.abt .ei-reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.abt .ei-reveal.is-visible { opacity: 1; transform: none; }

/* ---- section intro ---------------------------------------------------- */

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

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

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

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

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

.abt .abt-intro { font-size: 17.5px; line-height: 1.8; margin: 0; }

/* ---- the roster -------------------------------------------------------
   On the shared site container, so the portraits line up with the
   breadcrumb, the logo and every other page's content. Bio copy still
   caps at 66ch for readability — the container sets the left edge, the
   measure sets the line length. */
.abt-people {
	list-style: none;
	max-width: var(--ei-content-max, 1180px);
	margin: 0 auto;
	padding: 0;
}

.abt-person {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: clamp(28px, 4vw, 56px);
	align-items: start;
	padding: clamp(36px, 4.5vw, 56px) 0;
	border-top: 1px solid rgba(107, 97, 88, 0.16);
}

.abt-person:first-child { border-top: 0; padding-top: 0; }

/* ---- portrait --------------------------------------------------------- */
.abt-person__fig {
	position: relative;
	isolation: isolate;
	margin: 0;
}

.abt-person__fig img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	box-shadow: 0 22px 46px -30px rgba(43, 36, 32, 0.5);
}

/* offset terracotta keyline — the house gesture, escaping left away
   from the text column */
.abt-person__fig::before {
	content: "";
	position: absolute;
	inset: 0;
	transform: translate(-14px, 14px);
	border: 1px solid rgba(161, 92, 56, 0.4);
	z-index: -1;
}

/* ---- name + bio ------------------------------------------------------- */
.abt-person__name {
	font-family: var(--ei-serif) !important;
	font-weight: 500 !important;
	font-size: clamp(24px, 2.6vw, 32px) !important;
	line-height: 1.15 !important;
	color: var(--ei-ink);
	margin: 0 0 6px;
}

.abt .abt-person__role {
	font-family: var(--ei-serif);
	font-style: italic;
	font-size: 16px;
	color: var(--ei-terracotta);
	margin: 0 0 16px;
}

.abt .abt-person__role::after {
	content: "";
	display: block;
	width: 34px;
	height: 1px;
	background-color: rgba(161, 92, 56, 0.4);
	margin-top: 14px;
}

.abt .abt-person__short {
	font-size: 16.5px;
	line-height: 1.8;
	margin: 0;
	max-width: 66ch;
}

/* ---- "read more" disclosure -------------------------------------------
   A native <details> so it works without JavaScript and stays keyboard
   and screen-reader accessible. */
.abt-person__more { margin-top: 16px; }

.abt-person__more summary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	list-style: none;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ei-terracotta);
	padding-bottom: 3px;
	border-bottom: 1px solid rgba(161, 92, 56, 0.4);
	transition: color 0.25s ease, border-color 0.25s ease;
}

.abt-person__more summary::-webkit-details-marker { display: none; }

.abt-person__more summary::after {
	content: "";
	width: 7px;
	height: 7px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform 0.25s ease;
}

.abt-person__more[open] summary::after { transform: translateY(1px) rotate(-135deg); }

.abt-person__more summary:hover {
	color: var(--ei-terracotta-deep);
	border-bottom-color: var(--ei-terracotta-deep);
}

.abt-person__more summary:focus-visible {
	outline: 2px solid var(--ei-terracotta);
	outline-offset: 4px;
}

/* Swap the label without needing script. */
.abt-person__more .abt-person__more-close { display: none; }
.abt-person__more[open] .abt-person__more-open { display: none; }
.abt-person__more[open] .abt-person__more-close { display: inline; }

.abt-person__long {
	margin-top: 18px;
	padding-left: 18px;
	border-left: 1px solid rgba(161, 92, 56, 0.28);
}

.abt .abt-person__long p {
	font-size: 16px;
	line-height: 1.85;
	margin: 0 0 15px;
	max-width: 66ch;
}

.abt .abt-person__long p:last-child { margin-bottom: 0; }

/* ---- closing ----------------------------------------------------------
   The roster used to run straight into the footer, leaving a large dead
   band at the bottom of the page. This closes it and hands the reader
   somewhere to go. */
.abt-close {
	background-color: var(--ei-ivory);
	text-align: center;
	padding: clamp(64px, 8vw, 100px) 24px clamp(72px, 9vw, 112px);
	border-top: 1px solid rgba(107, 97, 88, 0.12);
}

.abt-close__inner { max-width: 640px; margin: 0 auto; }

/* Element in the selector so it beats `.abt-close p`. */
.abt .abt-close p.abt-close__script {
	font-family: var(--ei-script);
	font-size: clamp(46px, 6vw, 72px);
	line-height: 1.1;
	color: var(--ei-terracotta);
	margin: 0 0 4px;
}

.abt-close__title {
	font-family: var(--ei-serif) !important;
	font-weight: 500 !important;
	font-size: clamp(28px, 3.4vw, 40px) !important;
	color: var(--ei-ink);
	margin: 0 0 16px;
}

.abt .abt-close__text {
	font-size: 17.5px;
	line-height: 1.75;
	margin: 0 0 32px;
}

.abt .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;
	color: var(--ei-ivory);
	background-color: var(--ei-espresso);
	border: 1px solid var(--ei-espresso);
	transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.abt .ei-btn: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);
}

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

/* ---- responsive -------------------------------------------------------- */
@media (max-width: 780px) {
	.abt-person {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	/* Keep the portrait from ballooning to full width on a phone. */
	.abt-person__fig {
		max-width: 220px;
	}

	.abt-person__fig::before { transform: translate(-10px, 10px); }
}
