/* Reset */
*, *::before, *::after {

	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Base */
body {

	background: #0a0a10;
	color: #ddd8d0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 1rem;
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a {

	color: #40d8b0;
	transition: opacity 0.2s;
}

a:hover {

	opacity: 0.65;
}

em {

	font-style: italic;
	color: inherit;
}

s {

	text-decoration-color: rgba(221, 216, 208, 0.65);
}

main {

	max-width: 960px;
	margin: 0 auto;
	padding: 0 3rem;
}

/* ===========================
   HERO — full viewport, asymmetric
   =========================== */

.hero {

	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	max-width: 960px;
	margin: 0 auto;
	padding: 6rem 3rem 4rem;
	gap: 3rem;
}

.eyebrow {

	font-size: 1rem;
	opacity: 0.65;
	margin-bottom: 0.25rem;
}

.hero h1 {

	font-size: clamp(3rem, 8vw, 5rem);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.03em;
	margin-bottom: 1.25rem;
}

.hero-sub {

	font-size: 1.2rem;
	opacity: 0.72;
	line-height: 1.7;
	color: #ddd8d0;
}

.hero-img {

	width: 240px;
	height: 300px;
	object-fit: cover;
	object-position: center top;
	border-radius: 10px;
	border: 2px solid rgba(255, 255, 255, 0.12);
	margin-bottom: 0.5rem;
}

/* ===========================
   STORY GRID — asymmetric 2-col
   =========================== */

.story-grid {

	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem 3rem;
	padding: 1.5rem 0 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.story-lead {

	grid-column: 1 / -1;
	display: flex;
	align-items: flex-start;
	gap: 2.5rem;
	margin-bottom: 1rem;
}

.story-lead-content {

	flex: 1;
}

.story-lead-content p + p {

	margin-top: 1rem;
}

.story-figure {

	flex-shrink: 0;
	width: 220px;
}

.story-img {

	width: 100%;
	object-fit: cover;
	border-radius: 6px;
	opacity: 0.85;
}

.story-figure figcaption {

	font-size: 0.75rem;
	opacity: 0.5;
	text-align: left;
	margin-top: 0.5rem;
	line-height: 1.4;
}

.lead {

	font-size: clamp(1.6rem, 4vw, 2.4rem);
	font-weight: 800;
	line-height: 1.15;
	color: #f0ede6;
	margin-bottom: 1.25rem;
	letter-spacing: -0.02em;
}

/* ===========================
   RESUME — side by side
   =========================== */

.resume {

	padding: 2rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.downloads {

	border-collapse: collapse;
}

.downloads td {

	padding: 0.4rem 0.75rem 0.4rem 0;
	white-space: nowrap;
}

.downloads td:first-child {

	font-size: 0.85rem;
	padding-right: 1.5rem;
}

.downloads a {

	font-size: 0.8rem;
	font-weight: 600;
	text-decoration: none;
	padding: 0.35rem 0.9rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 4px;
	transition: all 0.2s;
}

.downloads a:hover {

	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.25);
	opacity: 1;
}

/* ===========================
   FUN THINGS
   =========================== */

.fun-things {

	padding: 2rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	margin-bottom: 1rem;
}

.fun-things-list {

	padding-left: 1.25rem;
	line-height: 1.75;
}

/* ===========================
   CONNECT
   =========================== */

.connect {

	text-align: center;
	padding: 2.5rem 0 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.connect h2 {

	font-size: clamp(1.6rem, 4vw, 2.4rem);
	font-weight: 800;
	letter-spacing: -0.02em;
}

.connect-links {

	display: flex;
	gap: 0.6rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 1.5rem;
}

.connect-links a {

	text-decoration: none;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 0.6rem 1.4rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 4px;
	transition: all 0.2s;
}

.connect-links a:hover {

	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.25);
	opacity: 1;
}

/* ===========================
   FOOTER
   =========================== */

footer {

	max-width: 960px;
	margin: 0 auto;
	padding: 2rem 3rem 2.5rem;
	font-size: 0.7rem;
	opacity: 0.25;
	text-align: center;
}

.dot {

	margin: 0 0.4rem;
}

.tag {

	font-style: italic;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 768px) {

	main {

		padding: 0 2rem;
	}

	.hero {

		grid-template-columns: 1fr;
		min-height: auto;
		padding: 5rem 2rem 3rem;
		gap: 2rem;
	}

	.hero-img {

		width: 180px;
		height: 230px;
		justify-self: start;
	}

	.story-grid {

		grid-template-columns: 1fr;
		padding: 1rem 0 1.5rem;
	}

	.story-lead {

		flex-direction: column;
	}

	.story-figure {

		width: 100%;
	}

	.story-img {

		object-fit: contain;
		max-height: 300px;
	}

	.resume {

		flex-direction: column;
	}

	footer {

		padding: 2rem;
	}
}

@media (max-width: 480px) {

	.hero h1 {

		font-size: 2.5rem;
	}

	.hero-img {

		width: 150px;
		height: 190px;
	}
}
