* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #1f2933;
  background-color: #f4f6f8;
}

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

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: #111827;
  color: #ffffff;
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo {
  font-size: 1.25rem;
  font-weight: bold;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.site-nav a {
  color: #ffffff;
  font-weight: 500;
}

.hero {
  background: linear-gradient(135deg, #1f2937, #374151);
  color: #ffffff;
  padding: 5rem 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 800px;
}

.hero-text {
  max-width: 700px;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.3rem;
  border-radius: 0.5rem;
  font-weight: bold;
}

.btn-primary {
  background: #2563eb;
  color: #ffffff;
}

.btn-secondary {
  background: #e5e7eb;
  color: #111827;
}

.intro,
.pillars,
.featured,
.cta {
  padding: 4rem 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.cta {
  background: #e5e7eb;
}

.site-footer {
  background: #111827;
  color: #ffffff;
  padding: 2rem 0;
  text-align: center;
}

.site-footer a {
  color: #ffffff;
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-weight: bold;
  margin: 0 0 0.25rem 0;
}

.footer-copy {
  margin: 0;
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
}

.footer-nav a:hover,
.footer-nav a:focus {
  opacity: 0.85;
}

.page-hero {
  background: #e5e7eb;
  padding: 4rem 0;
}

.page-section {
  padding: 4rem 0;
}

.alt-section {
  background: #eef2f6;
}

.narrow {
  max-width: 800px;
}

.text-link {
  color: #2563eb;
  font-weight: 600;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.project-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #2563eb;
}

.project-tag {
  margin: 0 0 0.75rem 0;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #2563eb;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.feature-list li {
  padding: 0.75rem 0 0.75rem 1.5rem;
  border-bottom: 1px solid #d8dde4;
  position: relative;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 0.5rem;
  height: 0.5rem;
  background: #2563eb;
  border-radius: 50%;
}

.feature-list li:last-child {
  border-bottom: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.contact-card h3 {
  margin-top: 0;
}

.contact-card a {
  color: #2563eb;
  font-weight: 600;
  word-break: break-word;
}

.post-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.post-card {
  background: #ffffff;
  padding: 1.5rem 1.75rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #2563eb;
}

.post-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.post-meta {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 0;
}

.post-body h2 {
  margin-top: 2.5rem;
}

.post-body p,
.post-body ul {
  margin-bottom: 1.1rem;
}

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 0;
}

.legal-page h2 {
  margin-top: 2rem;
}

.resume-section {
  margin-top: 2.5rem;
}

.resume-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #d8dde4;
}

.resume-item:last-child {
  border-bottom: none;
}

.resume-item h3 {
  margin: 0 0 0.25rem 0;
}

.resume-meta {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0 0 0.5rem 0;
}
