/* ===== About Us page ===== */

.aw-hero__art { display: flex; align-items: center; justify-content: center; }
.aw-hero__art img { max-width: 420px; width: 100%; filter: drop-shadow(0 24px 34px rgba(55, 59, 64, 0.2)); }
.aw-hero__art img { animation: aw-float 6s ease-in-out infinite 0.6s; }
@keyframes aw-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) {
  .aw-hero__art img { animation: none; }
}

.aw-believe { background: var(--bg); border-radius: var(--radius); padding: 36px; }
.aw-believe ul { margin: 0; padding: 0; list-style: none; }
.aw-believe li { border-left: 3px solid var(--cta); padding-left: 18px; margin-bottom: 22px; }
.aw-believe li:last-child { margin-bottom: 0; }
.aw-believe li h3 { margin: 0 0 4px; font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.aw-believe li p { margin: 0; color: var(--accent); font-size: 0.92rem; line-height: 1.5; }

.aw-quote { background: var(--bg); border-radius: var(--radius); padding: 48px; text-align: center; }
.aw-quote__mark { font-family: var(--font-display); font-weight: 800; font-size: 4rem; color: var(--cta-tint); line-height: 1; margin-bottom: -14px; }
.aw-quote__text { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--ink); max-width: 680px; margin: 0 auto 18px; line-height: 1.45; }
.aw-quote cite { color: var(--accent); font-style: normal; font-size: 0.92rem; }
