/* =============================================================================
   E5 — Home / landing page styles. Loaded AFTER global.css + fonts.css.
   Scope: / only. Font declarations are in fonts.css (global).
   ============================================================================= */

.home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80vh;
  max-width: 40rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.home__hero {
  margin-bottom: 3rem;
}

.home__name {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #111;
  margin: 0 0 1rem;
}

.home__tagline {
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
  margin: 0;
}

.home__bio {
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.7;
  color: #444;
  max-width: 52ch;
  margin: 1.5rem 0 0;
}

.home__cta {
  margin-top: 2rem;
}

.home__cta ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.home__cta a {
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-weight: 500;
  font-size: 1.0625rem;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 0.125rem;
  display: inline-block;
  transition: opacity 0.15s;
}

.home__cta a:hover {
  opacity: 0.45;
}

.home__focus {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e8e8e8;
}

.home__focus-heading {
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 2rem;
}

.home__focus-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.home__focus-item dt {
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-weight: 500;
  font-size: 0.9375rem;
  color: #111;
  margin-bottom: 0.375rem;
}

.home__focus-item dd {
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.home__contact {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #e8e8e8;
}

.home__contact h2 {
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 1.25rem;
}

.home__contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.home__contact a {
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-weight: 400;
  font-size: 0.9375rem;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 0.125rem;
  display: inline-block;
  transition: opacity 0.15s;
}

.home__contact a:hover {
  opacity: 0.45;
}

/* From the blog */
.from-the-blog {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e8e8e8;
}
.from-the-blog__heading {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #888;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}
.from-the-blog__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.from-the-blog__item {
  display: flex;
  flex-direction: column;
}
.from-the-blog__title {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 0.125rem;
  transition: opacity 0.15s;
}
.from-the-blog__title:hover {
  opacity: 0.45;
}
.from-the-blog__desc {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.875rem;
  color: #555;
  margin: 0.35rem 0 0;
  line-height: 1.6;
}
