/* ===== Hero ===== */
h1.name-stack {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-eyebrow {
  position: absolute;
  top: 110px;
  left: 48px;
  max-width: 280px;
  line-height: 1.6;
}

.name-stack {
  position: relative;
  width: 100%;
  line-height: 0.82;
  user-select: none;
}

.name-stack .line {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(64px, 15vw, 220px);
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--bone);
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: rise 0.9s var(--ease) forwards;
}
.name-stack .line:nth-child(1) { animation-delay: 0.05s; }
.name-stack .line:nth-child(2) {
  animation-delay: 0.18s;
  padding-left: 5vw;
  position: relative;
}

/* brush-stroke underline that wipes beneath the surname on load */
.name-stack .line:nth-child(2)::after {
  content: '';
  position: absolute;
  left: 5vw;
  bottom: 0.08em;
  height: 0.16em;
  width: 0;
  background: var(--clay);
  z-index: -1;
  border-radius: 0 8px 8px 0;
  animation: wipe 0.7s var(--ease) forwards;
  animation-delay: 1.05s;
}

@keyframes wipe { to { width: calc(100% - 5vw); } }

.hero-sub {
  margin-top: 36px;
  margin-left: 48px;
  max-width: 480px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--bone);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

.hero-sub em { font-style: italic; color: var(--clay-bright); }

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 48px;
  font-size: 11px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 1s;
}

.scroll-cue .line-cue {
  width: 24px; height: 1px;
  background: var(--gray);
  position: relative;
  overflow: hidden;
}
.scroll-cue .line-cue::after {
  content: '';
  position: absolute;
  left: -100%; top: 0;
  width: 100%; height: 100%;
  background: var(--clay-bright);
  animation: sweep 2.2s ease-in-out infinite;
}
@keyframes sweep {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* ---------- venture spotlight ---------- */
.venture {
  position: relative;
  z-index: 2;
  padding: 0 48px 110px;
}

.venture-card {
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s;
  text-decoration: none;
  color: inherit;
}

.venture-card:hover { border-color: rgba(63,162,139,0.4); }

.venture-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--clay);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--ease);
}
.venture-card:hover::before { transform: scaleY(1); }

.venture-tag {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  border: 1px solid var(--hairline);
  padding: 8px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.venture-body h2 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 32px);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.venture-body p {
  color: var(--gray);
  font-size: 15px;
  max-width: 540px;
  line-height: 1.5;
}

.venture-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.venture-services span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--moss);
  border: 1px solid var(--hairline);
  padding: 5px 10px;
  border-radius: 100px;
}

.venture-arrow {
  font-size: 22px;
  color: var(--clay);
  transition: transform 0.3s var(--ease);
}
.venture-card:hover .venture-arrow { transform: translateX(6px); }

/* ---------- stats strip ---------- */
.stats {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stat .num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--bone);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.stat .num .accent-char { color: var(--clay-bright); }

.stat .label {
  margin-top: 10px;
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
}

/* ---------- contact ---------- */
.contact {
  position: relative;
  z-index: 2;
  padding: 110px 48px 60px;
}

.contact h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 9vw, 110px);
  text-transform: uppercase;
  line-height: 0.95;
}

.contact h2 a {
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.contact h2 a .arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}
.contact h2 a:hover .arrow { transform: translateX(14px); }

.contact h2 a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0.04em;
  height: 0.1em;
  width: 0;
  background: var(--clay);
  border-radius: 0 6px 6px 0;
  transition: width 0.45s var(--ease);
  z-index: -1;
}
.contact h2 a:hover::after { width: 100%; }

.contact-row {
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}

.contact-links { display: flex; gap: 28px; }

.contact-links a {
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bone);
}
.contact-links a:hover { color: var(--clay-bright); }

@media (max-width: 760px) {
  .hero-eyebrow { left: 24px; top: 90px; max-width: 200px; }
  .hero-sub { margin-left: 24px; font-size: 16px; }
  .scroll-cue { left: 24px; }
  .venture, .contact { padding-left: 24px; padding-right: 24px; }
  .venture-card { grid-template-columns: 1fr; padding: 32px 24px; text-align: left; }
  .venture-arrow { display: none; }
  .stats { grid-template-columns: 1fr; padding: 40px 24px; gap: 28px; }
}
