body {
  background: #f9ecdf;
  font-family: 'Inter', Arial, sans-serif;
  color: #222;
  margin: 0;
  padding: 0;
}
/* Accessible focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #e48c7c;
  outline-offset: 3px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 9999;
  padding: 0.5rem 0.75rem;
  background: #000;
  color: #fff;
  border-radius: 6px;
  transform: translateY(-200%);
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
}

.consulting-banner {
  background: #f8d97f;
  color: #222;
  text-align: center;
  padding: 1rem;
  font-weight: 700;
}

.consulting-banner a {
  color: inherit;
  text-decoration: underline;
}

.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
}

.main-header {
  text-align: center;
  padding: 3rem 0 2rem 0;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 0.5rem 0 0.2rem 0;
}

.tagline {
  font-size: 1.2rem;
  color: #7a6f5c;
  margin-bottom: 1.5rem;
}

.main-nav {
  margin: 1.5rem 0;
}
.main-nav a {
  color: #222;
  text-decoration: none;
  font-weight: 700;
  margin: 0 1rem;
  font-size: 1rem;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus-visible {
  color: #e48c7c;
}

.social-links {
  margin-bottom: 2rem;
}
.social-links a {
  color: #7a6f5c;
  text-decoration: none;
  margin: 0 0.5rem;
  font-size: 1rem;
  transition: color 0.2s;
}
.social-links a:hover,
.social-links a:focus-visible {
  color: #e48c7c;
}

.section {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  margin-bottom: 2.5rem;
  padding: 2.5rem 2rem;
}

h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
}

ul {
  padding-left: 1.2rem;
}

.achievements-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
}
.skills-list li {
  background: #f9ecdf;
  border-radius: 1rem;
  padding: 0.7rem 1.2rem;
  font-weight: 700;
  color: #7a6f5c;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

form {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
input[type="email"] {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: 1rem;
  border: 1px solid #e4d5c3;
  font-size: 1rem;
}
input[type="email"]:focus-visible {
  box-shadow: 0 0 0 3px rgba(228, 140, 124, 0.35);
  border-color: #e48c7c;
}
button {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 1rem;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
button:hover {
  background: #e48c7c;
}

/* Screen-reader-only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

.main-footer {
  text-align: center;
  color: #b3a89c;
  font-size: 1rem;
  padding: 2rem 0 1rem 0;
}

@media (max-width: 600px) {
  .container {
    padding: 1rem;
  }
  .section {
    padding: 1.2rem 0.7rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
} 
