.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 48px 80px;
  gap: 60px;
  z-index: 1;
}

.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0;
  animation: slideUp 1s 1.2s forwards;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.0;
  letter-spacing: -.03em;
  margin-bottom: 32px;
  opacity: 0;
  animation: slideUp 1s 1.4s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #5a5a50;
  max-width: 420px;
  margin-bottom: 48px;
  opacity: 0;
  animation: slideUp 1s 1.6s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--accent);
  padding: 16px 32px;
  text-decoration: none;
  transition: all .3s;
  opacity: 0;
  animation: slideUp 1s 1.8s forwards;
}

.hero-cta:hover {
  background: var(--ink);
  gap: 20px;
}

/* SVG plan drawing */
.hero-drawing {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 560px;
  justify-self: end;
  opacity: 0;
  animation: fadeIn .5s 1.5s forwards;
}

.hero-drawing svg { width: 100%; height: 100%; }

.dp {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}

.dp.thin  { stroke: var(--trace); stroke-width: .8; }
.dp.bold  { stroke: var(--ink);   stroke-width: 2.5; }

.d1 { animation: draw 2.5s cubic-bezier(.4,0,.2,1) 2s    forwards; }
.d2 { animation: draw 2s   cubic-bezier(.4,0,.2,1) 2.8s  forwards; }
.d3 { animation: draw 1.5s cubic-bezier(.4,0,.2,1) 3.8s  forwards; }
.d4 { animation: draw 1.5s cubic-bezier(.4,0,.2,1) 4.5s  forwards; }
.d5 { animation: draw 1.2s cubic-bezier(.4,0,.2,1) 5s    forwards; }
.d6 { animation: draw 1s   cubic-bezier(.4,0,.2,1) 5.8s  forwards; }
.d7 { animation: draw 1s   cubic-bezier(.4,0,.2,1) 6.3s  forwards; }

.dot  { fill: var(--accent); opacity: 0; }
.dot1 { animation: pop .3s 5.5s forwards; }
.dot2 { animation: pop .3s 6.5s forwards; }

.ann {
  font-family: var(--sans);
  font-size: 8.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  fill: var(--accent);
  opacity: 0;
}

.a1 { animation: fadeIn .5s 5.7s forwards; }
.a2 { animation: fadeIn .5s 6.7s forwards; }

.dim  { fill: none; stroke: var(--trace); stroke-width: .5; opacity: 0; }
.dim1 { animation: fadeIn .5s 7s forwards; }
