:root {
	--navy: #384d48;           
	--navy-light: #6e7271;     
	--slate: #acad94;           
	--light-slate: #d8d4d5;    
	--lightest-slate: #e2e2e2; 
	--white: #e2e2e2;
	--teal: #acad94;            
	--teal-tint: rgba(172, 173, 148, 0.14);
	--font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		Helvetica, Arial, sans-serif;
	--nav-index: 10;
}

*,
*::before,
*::after {
  	box-sizing: border-box;
}

html {
  	scroll-behavior: smooth;
}

body {
	margin: 0;
	background-color: var(--navy);
	color: var(--slate);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}

a {
	color: inherit;
	text-decoration: none;
}

.layout {
	margin: 0 auto;
	max-width: 1152px;
	padding: 0 1.5rem;
}

@media (min-width: 1024px) {
	.layout {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 1rem;
		min-height: 100vh;
		padding: 0 3rem;
	}
}

.header {
 	padding: 3rem 0 1.5rem;
}

@media (min-width: 1024px) {
	.header {
		width: 48%;
		padding: 0;
	}
}

.name {
	margin: 0;
	font-size: clamp(2.25rem, 5vw, 3rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--lightest-slate);
}

.role {
	margin: 0.75rem 0 0;
	font-size: clamp(1.1rem, 2.5vw, 1.25rem);
	font-weight: 500;
	color: var(--lightest-slate);
}

.tagline {
	margin: 1rem 0 0;
	max-width: 20rem;
	color: var(--slate);
}

.socials {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
}

.socials a {
	display: inline-flex;
	color: var(--slate);
	transition: color 0.2s ease, transform 0.2s ease;
}

.socials a:hover {
	color: var(--lightest-slate);
	transform: translateY(-2px);
}

.main {
  	padding-top: 1.5rem;
}

@media (min-width: 1024px) {
	.main {
		width: 52%;
		padding: 0;
	}
}

.section-body p {
  	margin: 0 0 1rem;
}

.section-body p:last-child {
  	margin-bottom: 0;
}

.footer {
	margin-top: 3rem;
	padding-bottom: 1.5rem;
	font-size: 0.85rem;
	color: var(--slate);
	text-align: center;
}

@media (min-width: 1024px) {
	.footer {
		position: fixed;
		left: 50%;
		bottom: 1.25rem;
		margin-top: 0;
		padding-bottom: 0;
		transform: translateX(-50%);
	}
}