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

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
	background: #ffffff;
	color: #333;
	min-height: 100vh;
}

/* ── Header ── */
header {
	text-align: center;
	padding: 4rem 2rem 2rem;
}

header h1 {
	font-size: 2.5rem;
	font-weight: 400;
	color: #222;
	letter-spacing: 0.5px;
	margin-bottom: 0.5rem;
}

header .tagline {
	font-size: 1.1rem;
	font-weight: 400;
	color: #666;
	margin-bottom: 0.4rem;
}

header .location {
	font-size: 0.95rem;
	color: #999;
}

/* ── Services Grid ── */
.services {
	max-width: 760px;
	margin: 3rem auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1rem;
}

.service-card {
	display: block;
	padding: 1.25rem 1rem;
	border: 1px solid #e8e8e8;
	border-radius: 6px;
	text-align: center;
	text-decoration: none;
	color: #333;
	transition: border-color 0.2s, color 0.2s;
}

.service-card:hover {
	border-color: #0066cc;
	color: #0066cc;
	text-decoration: none;
}

.service-card .icon {
	font-size: 1.6rem;
	display: block;
	margin-bottom: 0.5rem;
}

.service-card .label {
	font-size: 0.9rem;
	line-height: 1.3;
}

/* ── Contact ── */
.contact {
	text-align: center;
	padding: 2rem 2rem 4rem;
	max-width: 600px;
	margin: 0 auto;
}

.contact ul {
	list-style: none;
	line-height: 2;
	color: #555;
}

.contact a {
	color: #0066cc;
	text-decoration: none;
}

.contact a:hover {
	text-decoration: underline;
}

.contact .divider {
	border: none;
	border-top: 1px solid #eee;
	margin: 2rem auto;
	width: 60px;
}

/* ── Landing Page Nav ── */
.site-nav {
	padding: 1.25rem 2rem;
	font-size: 0.9rem;
	color: #999;
	border-bottom: 1px solid #f0f0f0;
}

.site-nav a.nav-home {
	color: #0066cc;
	text-decoration: none;
}

.site-nav a.nav-home:hover {
	text-decoration: underline;
}

.site-nav .nav-sep {
	margin: 0 0.5rem;
	color: #ccc;
}

.site-nav .nav-current {
	color: #555;
}

/* ── Landing Page Header ── */
.page-header {
	text-align: center;
	padding: 3rem 2rem 1.5rem;
}

.page-header h1 {
	font-size: 2.2rem;
	font-weight: 400;
	color: #222;
	margin-bottom: 0.5rem;
}

/* ── Landing Page Content ── */
.page-content {
	max-width: 760px;
	margin: 0 auto;
	padding: 0 2rem 4rem;
}

.page-content section {
	margin-bottom: 3rem;
}

.page-content h2 {
	font-size: 1rem;
	font-weight: 600;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1.25rem;
}

/* ── Intro ── */
.intro p {
	font-size: 1.05rem;
	line-height: 1.75;
	color: #444;
}

/* ── Capabilities ── */
.capability-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.capability-list li {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	padding: 1rem;
	border: 1px solid #eee;
	border-radius: 6px;
}

.capability-list li strong {
	color: #222;
	font-size: 0.95rem;
}

.capability-list li span {
	color: #666;
	font-size: 0.9rem;
	line-height: 1.5;
}

/* ── Tools Tag List ── */
.tag-list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.tag-list li {
	background: #f5f5f5;
	color: #444;
	font-size: 0.85rem;
	padding: 0.3rem 0.75rem;
	border-radius: 20px;
}

/* ── Portfolio Grid ── */
.portfolio-note {
	color: #888;
	font-size: 0.9rem;
	margin-bottom: 1.25rem;
}

.portfolio-note a {
	color: #0066cc;
	text-decoration: none;
}

.portfolio-note a:hover {
	text-decoration: underline;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 1rem;
}

.portfolio-item {
	border-radius: 6px;
	overflow: hidden;
}

.portfolio-item img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
}

.portfolio-item.placeholder .placeholder-img {
	width: 100%;
	height: 180px;
	background: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	border-radius: 6px;
}

.portfolio-label {
	font-size: 0.85rem;
	color: #666;
	margin-top: 0.4rem;
	text-align: center;
}

/* ── Highlights ── */
.highlight-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.highlight-list li {
	padding-left: 1.2rem;
	position: relative;
	color: #444;
	font-size: 0.95rem;
	line-height: 1.5;
}

.highlight-list li::before {
	content: "→";
	position: absolute;
	left: 0;
	color: #0066cc;
}

/* ── CTA Section ── */
.cta p {
	color: #555;
	margin-bottom: 1rem;
	font-size: 0.95rem;
}

.contact-links {
	list-style: none;
	line-height: 2;
	color: #555;
}

.contact-links a {
	color: #0066cc;
	text-decoration: none;
}

.contact-links a:hover {
	text-decoration: underline;
}

/* ── Footer ── */
.site-footer {
	text-align: center;
	padding: 2rem;
	border-top: 1px solid #f0f0f0;
	font-size: 0.9rem;
}

.site-footer a {
	color: #0066cc;
	text-decoration: none;
}

.site-footer a:hover {
	text-decoration: underline;
}
