.hero {
  width: 100vw;
  min-height: calc(100svh - 6rem);
  position: relative;
  z-index: 1;

  display: flex;
  justify-content: center;
  align-items: center;      /* Vertical centering */

  padding-top: 2rem;       /* Space for navbar only */
  padding-bottom: 4rem;      /* ✅ NO layout padding on bottom */

  border-bottom: 1px solid var(--ink);
}

.hero .inner {
  max-width: var(--max-width);
  width: 100%;
  padding-left: var(--padding);
  padding-right: var(--padding);
  box-sizing: border-box;

  h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
  }

  h2 {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    margin-top: -5px;
    font-weight: 300;
    color: var(--ink);
    line-height: 1;
  }

  p {
    font-size: 18px;
    max-width: 550px;
    text-align: left;
    font-weight: 300;
    line-height: 1.5;
  }
}

/* Big Drift wordmark — the hero's centrepiece, replacing the old headline. */
.hero-logo {
  font-family: 'Tinos', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(3rem, 15vw, 8rem);
  line-height: 1;
  margin-bottom: 2rem;
  color: var(--ink);
}

/* Motto under the wordmark — "Weekend project → Monday product." */
.hero .inner .hero-motto {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  max-width: none;
  margin: 0 0 0.9rem;
}
.hero .inner .hero-motto .sep {
  color: var(--brand-1);
  font-weight: 700;
  padding: 0 0.08em;
}

/* Supporting line under the motto. */
.hero .inner .hero-sub {
  font-size: 18px;
  max-width: 560px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 2.5rem;
}
.hero .inner .hero-sub b {
  font-weight: 600;
}

.scroll-indicator {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);

  opacity: 0.5;

  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.04em;

  cursor: pointer;
  text-decoration: none;
  color: var(--ink);

  animation: float 2.5s ease-in-out infinite;
}

.scroll-indicator:hover {
  opacity: 1;
}

@keyframes float {
  0%,100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

