/* Homepage — brand landing, single screen */
.home {
  display: flex;
  min-height: 100dvh;
  padding: var(--space-lg);
  align-items: center;
}

.home__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  width: 100%;
  max-width: 1060px;
}

/* Right column: photo + credentials stacked */
.home__right {
  order: -1;
  flex-shrink: 0;
}

.home__photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.02);
}

/* Text column */
.home__text {
  order: 1;
}

/* Visually hidden h1 for SEO */
.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;
}

.home__rule {
  border: none;
  height: 1px;
  background: var(--rule-strong);
  margin: 14px 0 12px;
}

/* Bio */
.home__bio {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--text-primary);
}

.home__bio strong {
  font-weight: 600;
  color: #1a1a1a;
}

.home__bio a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration) var(--ease), color var(--duration) var(--ease);
}

.home__bio a:hover {
  border-bottom-color: var(--gold);
  color: var(--gold);
}

.home__aside {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0;
}

.home__aside a {
  color: var(--accent);
  font-weight: 500;
}

/* Credentials — sits under photo */
.home__credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}

.home__cred-title {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-label);
  margin-bottom: 2px;
}

.home__cred-items {
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.home__cred-items a {
  color: var(--text-secondary);
  border-bottom: 1px solid var(--rule);
}

.home__cred-items a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Bottom links - keep but update colors */
.home__link {
  color: var(--gold);
  border-bottom-color: transparent;
}

.home__link:hover {
  border-bottom-color: var(--gold);
}

/* Mobile: clear hamburger */
@media (max-width: 768px) {
  .home {
    padding-top: 56px;
    align-items: flex-start;
  }
}

/* Tablet+ : side by side */
@media (min-width: 769px) {
  .home {
    margin-left: var(--nav-width-tablet);
    padding: var(--space-md) var(--space-xl);
  }

  .home__content {
    flex-direction: row;
    align-items: flex-start;
    gap: 56px;
  }

  .home__text {
    order: 1;
    flex: 1;
    min-width: 0;
    max-width: 560px;
  }

  .home__right {
    order: 2;
    flex: 0 0 260px;
    padding-left: 8px;
  }
}

/* Desktop */
@media (min-width: 1200px) {
  .home {
    margin-left: var(--nav-width);
    padding: var(--space-lg) var(--space-3xl);
  }

  .home__content {
    gap: 64px;
  }

  .home__right {
    flex: 0 0 300px;
  }
}
