/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: var(--nav-height) var(--space-lg) var(--space-xl);
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--space-sm);
  position: relative;
  animation: sketch-in 0.8s ease forwards;
  opacity: 0;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--text-secondary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: sketch-in 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero-brush {
  position: absolute;
  width: clamp(300px, 50vw, 600px);
  height: auto;
  opacity: 0.12;
  z-index: -1;
  pointer-events: none;
}

.hero-brush--left {
  left: -5%;
  top: 30%;
  transform: rotate(-15deg);
}

.hero-brush--right {
  right: -5%;
  bottom: 20%;
  transform: rotate(10deg);
}

.scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  animation: bounce 2s ease infinite 1.5s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.scroll-hint svg {
  width: 28px;
  height: 28px;
  stroke: var(--text-secondary);
  stroke-width: 2;
  fill: none;
}

@keyframes sketch-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    opacity: 0.6;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(8px);
  }
}

/* About */
.about {
  padding: var(--space-2xl) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-text h2 {
  margin-bottom: var(--space-lg);
  position: relative;
  display: inline-block;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-text p + p {
  margin-top: var(--space-md);
}

.about-decoration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-decoration svg {
  width: 100%;
  max-width: 320px;
  height: auto;
  opacity: 0.15;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-decoration {
    order: -1;
  }

  .about-decoration svg {
    max-width: 200px;
  }
}
