﻿html { scroll-behavior: smooth; }
body { font-family: Inter, system-ui, sans-serif; }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', Georgia, serif; }

#mobile-menu {
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

#mobile-menu.open {
  max-height: 540px;
  opacity: 1;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-panel.faq-open {
  max-height: 1000px;
  opacity: 1;
}

.fade-up,
.reveal-left,
.reveal-right,
.reveal-up,
.reveal-scale {
  opacity: 0;
}

.revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up { transform: translateY(30px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up { transform: translateY(20px); }
.reveal-scale { transform: scale(0.96); }

.scroll-dot {
  animation: dot-bounce 1.5s ease-in-out infinite;
}

@keyframes dot-bounce {
  0% { transform: translateY(0); }
  50% { transform: translateY(12px); }
  100% { transform: translateY(0); }
}

@media (max-width: 1024px) {
  #about .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #about .about-media,
  #about .about-copy {
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
  }

  #about .about-media > div:nth-child(2),
  #about .about-media > div:nth-child(3) {
    display: none;
  }

  #about .about-title {
    font-size: clamp(1.8rem, 4vw, 2.25rem);
    line-height: 1.2;
  }

  #about .about-lead {
    font-size: 1.05rem;
  }

  #about .reveal-left,
  #about .reveal-right {
    transform: translateX(0);
  }
}

@media (max-width: 640px) {
  #about .about-copy {
    gap: 1.25rem;
  }

  #about .about-title {
    font-size: 1.75rem;
  }

  #about .about-lead,
  #about .about-list {
    font-size: 0.98rem;
  }
}
