/* ---------- HERO ---------- */
#hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-large);
  padding: var(--spacing-large);
  align-items: center;
  min-height: 100vh;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-image {
  border-radius: var(--border-radius);
  overflow: hidden;
}

@media (max-width: 768px) {
  #hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-medium);
    padding: var(--spacing-medium);
    min-height: 100vh;
  }

  .hero-image {
    order: -1;
    width: auto;
    max-width: 250px;
    height: auto;
    margin-bottom: var(--spacing-medium);
  }

  .hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hero-text {
    order: 1;
    text-align: center;
  }

  .hero-text h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--fg-muted);
  }

  .hero-text span.accent {
    font-size: 1.05em;
  }
}


/* Scroll Arrow */
#scroll-arrow {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  font-size: 2.5rem;
  color: var(--fg-light);
  opacity: 0.8;
  pointer-events: none;
  z-index: 1000;
  animation: bounce 1.5s infinite;
  transition: opacity 0.5s ease;
}

#scroll-arrow.hide {
  opacity: 0;
  pointer-events: none;
}

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