#home {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 80px);
  color: var(--cream);
  letter-spacing: 3px;
  line-height: 1;
}

.hero-accent {
  margin: 18px 0;
  width: 70%;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 17px;
  font-style: italic;
  color: var(--gray);
  letter-spacing: 0.3px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.hero-bio {
  font-family: var(--font-body);
  font-size: 19px;
  color: #cccccc;
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 20px;
}

.hero-bio strong {
  color: var(--cream);
  font-weight: 600;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 20px;
}

.hero-icons {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  justify-content: center;
  color: var(--gray);
  transition: border-color 0.2s, color 0.2s;
  position: relative;
}

.hero-icon:hover {
  border-color: var(--green);
  color: var(--green);
}

.hero-icon-label {
  position: absolute;
  bottom: -22px;
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-dark);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
}

.hero-icon:hover .hero-icon-label {
  opacity: 1;
}

.hero-cta {
  display: inline-block;
  border: 1px solid var(--cream);
  color: var(--cream);
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 3px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.hero-cta:hover {
  background: var(--cream);
  color: var(--black);
}

.hero-photo {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-photo-frame {
  position: relative;
  display: inline-block;
  padding: 16px;
}

.hero-photo-frame::before,
.hero-photo-frame::after,
.hero-photo::before,
.hero-photo::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--green);
  border-style: solid;
}

/* Top-left */
.hero-photo-frame::before {
  top: 0;
  left: 0;
  border-width: 4px 0 0 4px;
}

/* Top-right */
.hero-photo-frame::after {
  top: 0;
  right: 0;
  border-width: 4px 4px 0 0;
}

/* Bottom-left */
.hero-photo::before {
  bottom: 0;
  left: 0;
  border-width: 0 0 4px 4px;
}

/* Bottom-right */
.hero-photo::after {
  bottom: 0;
  right: 0;
  border-width: 0 4px 4px 0;
}

.hero-portrait {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(10%);
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 48px 24px 64px;
  }

  .hero-photo {
    order: -1;
  }

  .hero-portrait {
    max-width: 200px;
  }
}
