/* Inamori Mobile Header Quote — only visible on mobile */
.inamori-quote-mobile {
  display: none;
}

@media (max-width: 768px) {
  .inamori-quote-mobile {
    display: block;
    flex: 1;
    min-width: 0;
    font-size: 1rem;
    color: #666;
    font-style: italic;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 10px;
    align-self: center;
    text-decoration: none;
    line-height: 1.3;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .inamori-quote-mobile.quote-visible {
    opacity: 1;
  }
  .inamori-quote-mobile:hover {
    color: #1a237e;
  }
}
