/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* BODY */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #ffffff;
  color: #1f2937;
  line-height: 1.7;
  font-size: 15.5px;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

/* CONTAINER */
.container {
  max-width: 820px;
  margin: 60px auto;
  padding: 0 20px;
}

/* HERO */
.hero {
  text-align: center;
  margin-bottom: 50px;
}

.hero img {
  width: 240px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
}

/* TAGLINE */
.tagline {
  font-size: 17px;
  font-weight: 600;
  color: #1f3a5f;
  margin-bottom: 4px;
}

.subline {
  font-size: 13.5px;
  color: #6b7280;
}

/* ABOUT */
.about {
  text-align: left;
}

.about .lead {
  font-size: 18px;
  font-weight: 600;
  color: #1f3a5f;
  margin-bottom: 12px;
}

.about p {
  margin-bottom: 16px;
  font-size: 15.5px;
  line-height: 1.7;
  color: #1f2937;
}

/* CONNECT */
.connect a {
  color: #1f3a5f;
  font-weight: 500;
  text-decoration: none;
}

.connect a:hover {
  text-decoration: underline;
}

/* SIGNATURE */
.signature {
  text-align: center;
  margin-top: 60px;
  font-size: 14px;
  color: #374151;
  letter-spacing: 1px;
  font-family: "Playfair Display", serif;
  opacity: 0.7;
  font-style: italic;
}

/* FOOTER */
footer {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  font-size: 13px;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero img {
    width: 180px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .tagline {
    font-size: 15px;
  }

  .subline {
    font-size: 12.5px;
  }
}

