/* Hero Section */
.hero {
  min-height: 100vh;
  padding: 130px max(6vw, 32px) 50px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr) 52px;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  background: #f2f0e9;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 72px 0 0;
  background: linear-gradient(rgba(21, 44, 49, .055) 1px, transparent 1px),
              linear-gradient(90deg, rgba(21, 44, 49, .055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

.hero > * {
  position: relative;
}

.overline {
  font: 11px "DM Mono", monospace;
  letter-spacing: .08em;
  color: #697878;
  display: flex;
  align-items: center;
  gap: 10px;
}

.overline i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6b4a;
  box-shadow: 0 0 0 7px rgba(255, 107, 74, .12);
}

h1 {
  font-size: clamp(64px, 7.4vw, 118px);
  line-height: .88;
  letter-spacing: -.075em;
  margin: 40px 0 38px;
  font-weight: 600;
}

h1 em {
  color: #e45135;
}

.hero-lead {
  font-size: 18px;
  color: #52686a;
  max-width: 620px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}

.pill {
  padding: 13px 18px;
  border: 1px solid #aeb9b5;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}

.pill.fill {
  background: #16353a;
  color: #fff;
  border-color: #16353a;
}

.portrait-wrap {
  align-self: center;
  width: min(100%, 360px);
  justify-self: center;
}

.portrait-index {
  font: 10px "DM Mono", monospace;
  color: #788584;
  display: block;
  margin-bottom: 12px;
}

.portrait {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 48% 48% 3px 3px;
  background: #d4d6d0;
  box-shadow: 18px 18px 0 #ff6b4a;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.84) contrast(1.03);
}

.portrait-note {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  font: 10px "DM Mono", monospace;
  color: #667575;
}

.portrait-note span:last-child {
  color: #e45135;
}

.hero-rail {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  gap: 26px;
  font: 10px "DM Mono", monospace;
  color: #7c8988;
  border-left: 1px solid #bbc3bf;
  padding-left: 17px;
}
