
:root {
	color-scheme: light;
	--text: #1d1d1d;
	--muted: #3a3a3a;
	--accent: #1772d0;
	--accent-hover: #f09228;
}

* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	min-height: 100%;
}

body {
	font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
	color: var(--text);
	background: #ffffff;
	padding: 22px 18px;
	line-height: 1.66;
	font-size: 17px;
	font-weight: 400;
}

.page-shell {
	max-width: 880px;
	margin: 0 auto;
}

.hero-card {
	display: grid;
	grid-template-columns: 245px minmax(0, 1fr);
	gap: 24px;
	align-items: start;
}

.content-section {
	margin-top: 26px;
}

.section-title {
	margin: 0 0 8px;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.2;
}

.simple-list {
	margin: 0;
	padding-left: 1.2em;
	color: var(--muted);
}

.simple-list li {
	margin: 0 0 6px;
}

.last-updated-text {
	margin: 0;
	color: #7b7b7b;
	font-size: 0.82rem;
}

.page-footer {
	max-width: 880px;
	margin: 44px auto 6px;
	padding-top: 10px;
	border-top: 1px solid #ececec;
	text-align: right;
}

.profile-photo {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border-radius: 0;
}

.profile-links {
	display: grid;
	gap: 8px;
	padding: 12px 0 0;
	margin: 0;
	list-style: none;
}

.profile-links a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	color: var(--text);
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
}

.link-symbol {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border: 1px solid #d9d9d9;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 700;
	color: #111111;
	flex: 0 0 auto;
}

.link-symbol svg {
	width: 13px;
	height: 13px;
	fill: currentColor;
	display: block;
}

.link-label {
	font-size: 0.98rem;
}

.hero-copy {
	padding: 0;
}

h1 {
	margin: 0 0 10px;
	font-size: clamp(2.55rem, 5.3vw, 3.1rem);
	line-height: 1.08;
	font-weight: 600;
	letter-spacing: -0.015em;
}

.subtitle {
	margin: 0 0 14px;
	font-size: 1.03rem;
	color: var(--muted);
	font-weight: 400;
	font-style: italic;
}

.lead,
.hero-copy p {
	margin: 0 0 15px;
	font-size: 1.01rem;
	line-height: 1.7;
	color: var(--muted);
	max-width: 62ch;
}

.lead {
	color: #2f2f2f;
}

.contact {
	color: var(--text);
	font-weight: 400;
}

a {
	color: var(--accent);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.11em;
}

a:hover {
	color: var(--accent-hover);
}

.profile-links a:hover .link-label {
	color: var(--accent-hover);
}

@media (max-width: 820px) {
	body {
		padding: 16px 12px;
	}

	.hero-card {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.portrait-wrap {
		max-width: 240px;
	}

	h1 {
		font-size: clamp(2rem, 10vw, 2.4rem);
	}
}
