#slogan {
  margin: 5.5rem auto 2rem;
  text-align: center;
}

#slogan p {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1.2;
}

#slogan .brand {
  color: var(--accent);
  letter-spacing: 0.18em;
  margin-top: 0.55rem;
}

#imgbox {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 1rem;
  align-items: stretch;
}

#imgbox img {
  width: 100%;
  height: min(44vw, 370px);
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

#imgbox img:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.social-icons {
  position: fixed;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 0.8rem;
  z-index: 10;
}

.social-icons img:hover {
  transform: translateX(-6px);
}

@media (max-width: 980px) {
  #slogan {
    margin-top: 2.5rem;
  }

  #imgbox {
    grid-template-columns: 1fr;
  }

  #imgbox img {
    height: 260px;
  }

  .social-icons {
    position: static;
    transform: none;
    margin-top: 1.5rem;
    flex-direction: row;
    justify-content: center;
  }

  .social-icons img:hover {
    transform: translateY(-4px);
  }
}